com.azure.resourcemanager.dnsresolver.implementation.ForwardingRulesImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dnsresolver Show documentation
Show all versions of azure-resourcemanager-dnsresolver Show documentation
This package contains Microsoft Azure SDK for DnsResolver Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The DNS Resolver Management Client. Package tag package-2022-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dnsresolver.implementation;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.dnsresolver.fluent.ForwardingRulesClient;
import com.azure.resourcemanager.dnsresolver.fluent.models.ForwardingRuleInner;
import com.azure.resourcemanager.dnsresolver.models.ForwardingRule;
import com.azure.resourcemanager.dnsresolver.models.ForwardingRules;
public final class ForwardingRulesImpl implements ForwardingRules {
private static final ClientLogger LOGGER = new ClientLogger(ForwardingRulesImpl.class);
private final ForwardingRulesClient innerClient;
private final com.azure.resourcemanager.dnsresolver.DnsResolverManager serviceManager;
public ForwardingRulesImpl(ForwardingRulesClient innerClient,
com.azure.resourcemanager.dnsresolver.DnsResolverManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response deleteWithResponse(String resourceGroupName, String dnsForwardingRulesetName,
String forwardingRuleName, String ifMatch, Context context) {
return this.serviceClient()
.deleteWithResponse(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName, ifMatch, context);
}
public void delete(String resourceGroupName, String dnsForwardingRulesetName, String forwardingRuleName) {
this.serviceClient().delete(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName);
}
public Response getWithResponse(String resourceGroupName, String dnsForwardingRulesetName,
String forwardingRuleName, Context context) {
Response inner = this.serviceClient()
.getWithResponse(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new ForwardingRuleImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public ForwardingRule get(String resourceGroupName, String dnsForwardingRulesetName, String forwardingRuleName) {
ForwardingRuleInner inner
= this.serviceClient().get(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName);
if (inner != null) {
return new ForwardingRuleImpl(inner, this.manager());
} else {
return null;
}
}
public PagedIterable list(String resourceGroupName, String dnsForwardingRulesetName) {
PagedIterable inner
= this.serviceClient().list(resourceGroupName, dnsForwardingRulesetName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ForwardingRuleImpl(inner1, this.manager()));
}
public PagedIterable list(String resourceGroupName, String dnsForwardingRulesetName, Integer top,
Context context) {
PagedIterable inner
= this.serviceClient().list(resourceGroupName, dnsForwardingRulesetName, top, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ForwardingRuleImpl(inner1, this.manager()));
}
public ForwardingRule getById(String id) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String dnsForwardingRulesetName = ResourceManagerUtils.getValueFromIdByName(id, "dnsForwardingRulesets");
if (dnsForwardingRulesetName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'dnsForwardingRulesets'.", id)));
}
String forwardingRuleName = ResourceManagerUtils.getValueFromIdByName(id, "forwardingRules");
if (forwardingRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'forwardingRules'.", id)));
}
return this.getWithResponse(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName, Context.NONE)
.getValue();
}
public Response getByIdWithResponse(String id, Context context) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String dnsForwardingRulesetName = ResourceManagerUtils.getValueFromIdByName(id, "dnsForwardingRulesets");
if (dnsForwardingRulesetName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'dnsForwardingRulesets'.", id)));
}
String forwardingRuleName = ResourceManagerUtils.getValueFromIdByName(id, "forwardingRules");
if (forwardingRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'forwardingRules'.", id)));
}
return this.getWithResponse(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName, context);
}
public void deleteById(String id) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String dnsForwardingRulesetName = ResourceManagerUtils.getValueFromIdByName(id, "dnsForwardingRulesets");
if (dnsForwardingRulesetName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'dnsForwardingRulesets'.", id)));
}
String forwardingRuleName = ResourceManagerUtils.getValueFromIdByName(id, "forwardingRules");
if (forwardingRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'forwardingRules'.", id)));
}
String localIfMatch = null;
this.deleteWithResponse(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName, localIfMatch,
Context.NONE);
}
public Response deleteByIdWithResponse(String id, String ifMatch, Context context) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String dnsForwardingRulesetName = ResourceManagerUtils.getValueFromIdByName(id, "dnsForwardingRulesets");
if (dnsForwardingRulesetName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'dnsForwardingRulesets'.", id)));
}
String forwardingRuleName = ResourceManagerUtils.getValueFromIdByName(id, "forwardingRules");
if (forwardingRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'forwardingRules'.", id)));
}
return this.deleteWithResponse(resourceGroupName, dnsForwardingRulesetName, forwardingRuleName, ifMatch,
context);
}
private ForwardingRulesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.dnsresolver.DnsResolverManager manager() {
return this.serviceManager;
}
public ForwardingRuleImpl define(String name) {
return new ForwardingRuleImpl(name, this.manager());
}
}