
com.azure.resourcemanager.mysqlflexibleserver.implementation.ServersImpl 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.ServersClient;
import com.azure.resourcemanager.mysqlflexibleserver.fluent.models.ServerInner;
import com.azure.resourcemanager.mysqlflexibleserver.models.Server;
import com.azure.resourcemanager.mysqlflexibleserver.models.ServerRestartParameter;
import com.azure.resourcemanager.mysqlflexibleserver.models.Servers;
public final class ServersImpl implements Servers {
private static final ClientLogger LOGGER = new ClientLogger(ServersImpl.class);
private final ServersClient innerClient;
private final com.azure.resourcemanager.mysqlflexibleserver.MySqlManager serviceManager;
public ServersImpl(ServersClient innerClient,
com.azure.resourcemanager.mysqlflexibleserver.MySqlManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public void deleteByResourceGroup(String resourceGroupName, String serverName) {
this.serviceClient().delete(resourceGroupName, serverName);
}
public void delete(String resourceGroupName, String serverName, Context context) {
this.serviceClient().delete(resourceGroupName, serverName, context);
}
public Response getByResourceGroupWithResponse(String resourceGroupName, String serverName,
Context context) {
Response inner
= this.serviceClient().getByResourceGroupWithResponse(resourceGroupName, serverName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new ServerImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public Server getByResourceGroup(String resourceGroupName, String serverName) {
ServerInner inner = this.serviceClient().getByResourceGroup(resourceGroupName, serverName);
if (inner != null) {
return new ServerImpl(inner, this.manager());
} else {
return null;
}
}
public PagedIterable listByResourceGroup(String resourceGroupName) {
PagedIterable inner = this.serviceClient().listByResourceGroup(resourceGroupName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ServerImpl(inner1, this.manager()));
}
public PagedIterable listByResourceGroup(String resourceGroupName, Context context) {
PagedIterable inner = this.serviceClient().listByResourceGroup(resourceGroupName, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ServerImpl(inner1, this.manager()));
}
public PagedIterable list() {
PagedIterable inner = this.serviceClient().list();
return ResourceManagerUtils.mapPage(inner, inner1 -> new ServerImpl(inner1, this.manager()));
}
public PagedIterable list(Context context) {
PagedIterable inner = this.serviceClient().list(context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ServerImpl(inner1, this.manager()));
}
public void failover(String resourceGroupName, String serverName) {
this.serviceClient().failover(resourceGroupName, serverName);
}
public void failover(String resourceGroupName, String serverName, Context context) {
this.serviceClient().failover(resourceGroupName, serverName, context);
}
public void restart(String resourceGroupName, String serverName, ServerRestartParameter parameters) {
this.serviceClient().restart(resourceGroupName, serverName, parameters);
}
public void restart(String resourceGroupName, String serverName, ServerRestartParameter parameters,
Context context) {
this.serviceClient().restart(resourceGroupName, serverName, parameters, context);
}
public void start(String resourceGroupName, String serverName) {
this.serviceClient().start(resourceGroupName, serverName);
}
public void start(String resourceGroupName, String serverName, Context context) {
this.serviceClient().start(resourceGroupName, serverName, context);
}
public void stop(String resourceGroupName, String serverName) {
this.serviceClient().stop(resourceGroupName, serverName);
}
public void stop(String resourceGroupName, String serverName, Context context) {
this.serviceClient().stop(resourceGroupName, serverName, context);
}
public Server 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)));
}
return this.getByResourceGroupWithResponse(resourceGroupName, serverName, 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)));
}
return this.getByResourceGroupWithResponse(resourceGroupName, serverName, 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)));
}
this.delete(resourceGroupName, serverName, 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)));
}
this.delete(resourceGroupName, serverName, context);
}
private ServersClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.mysqlflexibleserver.MySqlManager manager() {
return this.serviceManager;
}
public ServerImpl define(String name) {
return new ServerImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy