ResourceNavigationLinksClientImpl.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.implementation;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.network.fluent.ResourceNavigationLinksClient;
import com.azure.resourcemanager.network.fluent.models.ResourceNavigationLinksListResultInner;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in ResourceNavigationLinksClient. */
public final class ResourceNavigationLinksClientImpl implements ResourceNavigationLinksClient {
private final ClientLogger logger = new ClientLogger(ResourceNavigationLinksClientImpl.class);
/** The proxy service used to perform REST calls. */
private final ResourceNavigationLinksService service;
/** The service client containing this operation class. */
private final NetworkManagementClientImpl client;
/**
* Initializes an instance of ResourceNavigationLinksClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
ResourceNavigationLinksClientImpl(NetworkManagementClientImpl client) {
this.service =
RestProxy
.create(ResourceNavigationLinksService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for NetworkManagementClientResourceNavigationLinks to be used by the
* proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "NetworkManagementCli")
private interface ResourceNavigationLinksService {
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ResourceNavigationLinks")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ResourceNavigationLinksListResultInner>> list(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("virtualNetworkName") String virtualNetworkName,
@PathParam("subnetName") String subnetName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
}
/**
* Gets a list of resource navigation links for a subnet.
*
* @param resourceGroupName The name of the resource group.
* @param virtualNetworkName The name of the virtual network.
* @param subnetName The name of the subnet.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of resource navigation links for a subnet.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<ResourceNavigationLinksListResultInner>> listWithResponseAsync(
String resourceGroupName, String virtualNetworkName, String subnetName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (virtualNetworkName == null) {
return Mono
.error(new IllegalArgumentException("Parameter virtualNetworkName is required and cannot be null."));
}
if (subnetName == null) {
return Mono.error(new IllegalArgumentException("Parameter subnetName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.list(
this.client.getEndpoint(),
resourceGroupName,
virtualNetworkName,
subnetName,
apiVersion,
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets a list of resource navigation links for a subnet.
*
* @param resourceGroupName The name of the resource group.
* @param virtualNetworkName The name of the virtual network.
* @param subnetName The name of the subnet.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of resource navigation links for a subnet.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<ResourceNavigationLinksListResultInner>> listWithResponseAsync(
String resourceGroupName, String virtualNetworkName, String subnetName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (virtualNetworkName == null) {
return Mono
.error(new IllegalArgumentException("Parameter virtualNetworkName is required and cannot be null."));
}
if (subnetName == null) {
return Mono.error(new IllegalArgumentException("Parameter subnetName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.list(
this.client.getEndpoint(),
resourceGroupName,
virtualNetworkName,
subnetName,
apiVersion,
this.client.getSubscriptionId(),
context);
}
/**
* Gets a list of resource navigation links for a subnet.
*
* @param resourceGroupName The name of the resource group.
* @param virtualNetworkName The name of the virtual network.
* @param subnetName The name of the subnet.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of resource navigation links for a subnet.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<ResourceNavigationLinksListResultInner> listAsync(
String resourceGroupName, String virtualNetworkName, String subnetName) {
return listWithResponseAsync(resourceGroupName, virtualNetworkName, subnetName)
.flatMap(
(Response<ResourceNavigationLinksListResultInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Gets a list of resource navigation links for a subnet.
*
* @param resourceGroupName The name of the resource group.
* @param virtualNetworkName The name of the virtual network.
* @param subnetName The name of the subnet.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of resource navigation links for a subnet.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceNavigationLinksListResultInner list(
String resourceGroupName, String virtualNetworkName, String subnetName) {
return listAsync(resourceGroupName, virtualNetworkName, subnetName).block();
}
/**
* Gets a list of resource navigation links for a subnet.
*
* @param resourceGroupName The name of the resource group.
* @param virtualNetworkName The name of the virtual network.
* @param subnetName The name of the subnet.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of resource navigation links for a subnet.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<ResourceNavigationLinksListResultInner> listWithResponse(
String resourceGroupName, String virtualNetworkName, String subnetName, Context context) {
return listWithResponseAsync(resourceGroupName, virtualNetworkName, subnetName, context).block();
}
}