
com.azure.resourcemanager.mysqlflexibleserver.implementation.FirewallRulesImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mysqlflexibleserver.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.mysqlflexibleserver.fluent.FirewallRulesClient;
import com.azure.resourcemanager.mysqlflexibleserver.fluent.models.FirewallRuleInner;
import com.azure.resourcemanager.mysqlflexibleserver.models.FirewallRule;
import com.azure.resourcemanager.mysqlflexibleserver.models.FirewallRules;
public final class FirewallRulesImpl implements FirewallRules {
private static final ClientLogger LOGGER = new ClientLogger(FirewallRulesImpl.class);
private final FirewallRulesClient innerClient;
private final com.azure.resourcemanager.mysqlflexibleserver.MySqlManager serviceManager;
public FirewallRulesImpl(FirewallRulesClient innerClient,
com.azure.resourcemanager.mysqlflexibleserver.MySqlManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public void delete(String resourceGroupName, String serverName, String firewallRuleName) {
this.serviceClient().delete(resourceGroupName, serverName, firewallRuleName);
}
public void delete(String resourceGroupName, String serverName, String firewallRuleName, Context context) {
this.serviceClient().delete(resourceGroupName, serverName, firewallRuleName, context);
}
public Response getWithResponse(String resourceGroupName, String serverName, String firewallRuleName,
Context context) {
Response inner
= this.serviceClient().getWithResponse(resourceGroupName, serverName, firewallRuleName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new FirewallRuleImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public FirewallRule get(String resourceGroupName, String serverName, String firewallRuleName) {
FirewallRuleInner inner = this.serviceClient().get(resourceGroupName, serverName, firewallRuleName);
if (inner != null) {
return new FirewallRuleImpl(inner, this.manager());
} else {
return null;
}
}
public PagedIterable listByServer(String resourceGroupName, String serverName) {
PagedIterable inner = this.serviceClient().listByServer(resourceGroupName, serverName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new FirewallRuleImpl(inner1, this.manager()));
}
public PagedIterable listByServer(String resourceGroupName, String serverName, Context context) {
PagedIterable inner
= this.serviceClient().listByServer(resourceGroupName, serverName, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new FirewallRuleImpl(inner1, this.manager()));
}
public FirewallRule 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 serverName = ResourceManagerUtils.getValueFromIdByName(id, "flexibleServers");
if (serverName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'flexibleServers'.", id)));
}
String firewallRuleName = ResourceManagerUtils.getValueFromIdByName(id, "firewallRules");
if (firewallRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'firewallRules'.", id)));
}
return this.getWithResponse(resourceGroupName, serverName, firewallRuleName, 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 serverName = ResourceManagerUtils.getValueFromIdByName(id, "flexibleServers");
if (serverName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'flexibleServers'.", id)));
}
String firewallRuleName = ResourceManagerUtils.getValueFromIdByName(id, "firewallRules");
if (firewallRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'firewallRules'.", id)));
}
return this.getWithResponse(resourceGroupName, serverName, firewallRuleName, 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 serverName = ResourceManagerUtils.getValueFromIdByName(id, "flexibleServers");
if (serverName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'flexibleServers'.", id)));
}
String firewallRuleName = ResourceManagerUtils.getValueFromIdByName(id, "firewallRules");
if (firewallRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'firewallRules'.", id)));
}
this.delete(resourceGroupName, serverName, firewallRuleName, Context.NONE);
}
public void deleteByIdWithResponse(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 serverName = ResourceManagerUtils.getValueFromIdByName(id, "flexibleServers");
if (serverName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'flexibleServers'.", id)));
}
String firewallRuleName = ResourceManagerUtils.getValueFromIdByName(id, "firewallRules");
if (firewallRuleName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'firewallRules'.", id)));
}
this.delete(resourceGroupName, serverName, firewallRuleName, context);
}
private FirewallRulesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.mysqlflexibleserver.MySqlManager manager() {
return this.serviceManager;
}
public FirewallRuleImpl define(String name) {
return new FirewallRuleImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy