com.azure.resourcemanager.recoveryservicesbackup.implementation.PrivateEndpointConnectionsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.implementation;
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.recoveryservicesbackup.fluent.PrivateEndpointConnectionsClient;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.models.PrivateEndpointConnectionResourceInner;
import com.azure.resourcemanager.recoveryservicesbackup.models.PrivateEndpointConnectionResource;
import com.azure.resourcemanager.recoveryservicesbackup.models.PrivateEndpointConnections;
public final class PrivateEndpointConnectionsImpl implements PrivateEndpointConnections {
private static final ClientLogger LOGGER = new ClientLogger(PrivateEndpointConnectionsImpl.class);
private final PrivateEndpointConnectionsClient innerClient;
private final com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager serviceManager;
public PrivateEndpointConnectionsImpl(PrivateEndpointConnectionsClient innerClient,
com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response getWithResponse(String vaultName, String resourceGroupName,
String privateEndpointConnectionName, Context context) {
Response inner = this.serviceClient().getWithResponse(vaultName,
resourceGroupName, privateEndpointConnectionName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new PrivateEndpointConnectionResourceImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public PrivateEndpointConnectionResource get(String vaultName, String resourceGroupName,
String privateEndpointConnectionName) {
PrivateEndpointConnectionResourceInner inner
= this.serviceClient().get(vaultName, resourceGroupName, privateEndpointConnectionName);
if (inner != null) {
return new PrivateEndpointConnectionResourceImpl(inner, this.manager());
} else {
return null;
}
}
public void delete(String vaultName, String resourceGroupName, String privateEndpointConnectionName) {
this.serviceClient().delete(vaultName, resourceGroupName, privateEndpointConnectionName);
}
public void delete(String vaultName, String resourceGroupName, String privateEndpointConnectionName,
Context context) {
this.serviceClient().delete(vaultName, resourceGroupName, privateEndpointConnectionName, context);
}
public PrivateEndpointConnectionResource getById(String id) {
String vaultName = ResourceManagerUtils.getValueFromIdByName(id, "vaults");
if (vaultName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'vaults'.", 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 privateEndpointConnectionName
= ResourceManagerUtils.getValueFromIdByName(id, "privateEndpointConnections");
if (privateEndpointConnectionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(String
.format("The resource ID '%s' is not valid. Missing path segment 'privateEndpointConnections'.", id)));
}
return this.getWithResponse(vaultName, resourceGroupName, privateEndpointConnectionName, Context.NONE)
.getValue();
}
public Response getByIdWithResponse(String id, Context context) {
String vaultName = ResourceManagerUtils.getValueFromIdByName(id, "vaults");
if (vaultName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'vaults'.", 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 privateEndpointConnectionName
= ResourceManagerUtils.getValueFromIdByName(id, "privateEndpointConnections");
if (privateEndpointConnectionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(String
.format("The resource ID '%s' is not valid. Missing path segment 'privateEndpointConnections'.", id)));
}
return this.getWithResponse(vaultName, resourceGroupName, privateEndpointConnectionName, context);
}
public void deleteById(String id) {
String vaultName = ResourceManagerUtils.getValueFromIdByName(id, "vaults");
if (vaultName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'vaults'.", 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 privateEndpointConnectionName
= ResourceManagerUtils.getValueFromIdByName(id, "privateEndpointConnections");
if (privateEndpointConnectionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(String
.format("The resource ID '%s' is not valid. Missing path segment 'privateEndpointConnections'.", id)));
}
this.delete(vaultName, resourceGroupName, privateEndpointConnectionName, Context.NONE);
}
public void deleteByIdWithResponse(String id, Context context) {
String vaultName = ResourceManagerUtils.getValueFromIdByName(id, "vaults");
if (vaultName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'vaults'.", 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 privateEndpointConnectionName
= ResourceManagerUtils.getValueFromIdByName(id, "privateEndpointConnections");
if (privateEndpointConnectionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(String
.format("The resource ID '%s' is not valid. Missing path segment 'privateEndpointConnections'.", id)));
}
this.delete(vaultName, resourceGroupName, privateEndpointConnectionName, context);
}
private PrivateEndpointConnectionsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager manager() {
return this.serviceManager;
}
public PrivateEndpointConnectionResourceImpl define(String name) {
return new PrivateEndpointConnectionResourceImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy