com.azure.resourcemanager.recoveryservicesbackup.implementation.ItemLevelRecoveryConnectionsImpl 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.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.ItemLevelRecoveryConnectionsClient;
import com.azure.resourcemanager.recoveryservicesbackup.models.IlrRequestResource;
import com.azure.resourcemanager.recoveryservicesbackup.models.ItemLevelRecoveryConnections;
public final class ItemLevelRecoveryConnectionsImpl implements ItemLevelRecoveryConnections {
private static final ClientLogger LOGGER = new ClientLogger(ItemLevelRecoveryConnectionsImpl.class);
private final ItemLevelRecoveryConnectionsClient innerClient;
private final com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager serviceManager;
public ItemLevelRecoveryConnectionsImpl(ItemLevelRecoveryConnectionsClient innerClient,
com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response provisionWithResponse(String vaultName, String resourceGroupName, String fabricName,
String containerName, String protectedItemName, String recoveryPointId, IlrRequestResource parameters,
Context context) {
return this.serviceClient().provisionWithResponse(vaultName, resourceGroupName, fabricName, containerName,
protectedItemName, recoveryPointId, parameters, context);
}
public void provision(String vaultName, String resourceGroupName, String fabricName, String containerName,
String protectedItemName, String recoveryPointId, IlrRequestResource parameters) {
this.serviceClient().provision(vaultName, resourceGroupName, fabricName, containerName, protectedItemName,
recoveryPointId, parameters);
}
public Response revokeWithResponse(String vaultName, String resourceGroupName, String fabricName,
String containerName, String protectedItemName, String recoveryPointId, Context context) {
return this.serviceClient().revokeWithResponse(vaultName, resourceGroupName, fabricName, containerName,
protectedItemName, recoveryPointId, context);
}
public void revoke(String vaultName, String resourceGroupName, String fabricName, String containerName,
String protectedItemName, String recoveryPointId) {
this.serviceClient().revoke(vaultName, resourceGroupName, fabricName, containerName, protectedItemName,
recoveryPointId);
}
private ItemLevelRecoveryConnectionsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy