![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.fluent.DiskRestorePointsClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.fluent;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.management.polling.PollResult;
import com.azure.core.util.Context;
import com.azure.core.util.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.compute.fluent.models.AccessUriInner;
import com.azure.resourcemanager.compute.fluent.models.DiskRestorePointInner;
import com.azure.resourcemanager.compute.models.GrantAccessData;
import java.nio.ByteBuffer;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in DiskRestorePointsClient.
*/
public interface DiskRestorePointsClient {
/**
* Get disk restorePoint resource.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return disk restorePoint resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> getWithResponseAsync(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName);
/**
* Get disk restorePoint resource.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return disk restorePoint resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono getAsync(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName, String diskRestorePointName);
/**
* Get disk restorePoint resource.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return disk restorePoint resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getWithResponse(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName, String diskRestorePointName, Context context);
/**
* Get disk restorePoint resource.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return disk restorePoint resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
DiskRestorePointInner get(String resourceGroupName, String restorePointCollectionName, String vmRestorePointName,
String diskRestorePointName);
/**
* Lists diskRestorePoints under a vmRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the List Disk Restore Points operation response as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedFlux listByRestorePointAsync(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName);
/**
* Lists diskRestorePoints under a vmRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the List Disk Restore Points operation response as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByRestorePoint(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName);
/**
* Lists diskRestorePoints under a vmRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the List Disk Restore Points operation response as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByRestorePoint(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName, Context context);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a disk access SAS uri along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> grantAccessWithResponseAsync(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName,
GrantAccessData grantAccessData);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of a disk access SAS uri.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, AccessUriInner> beginGrantAccessAsync(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName,
GrantAccessData grantAccessData);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of a disk access SAS uri.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, AccessUriInner> beginGrantAccess(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName,
GrantAccessData grantAccessData);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of a disk access SAS uri.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, AccessUriInner> beginGrantAccess(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName,
GrantAccessData grantAccessData, Context context);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a disk access SAS uri on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono grantAccessAsync(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName, String diskRestorePointName, GrantAccessData grantAccessData);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a disk access SAS uri.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AccessUriInner grantAccess(String resourceGroupName, String restorePointCollectionName, String vmRestorePointName,
String diskRestorePointName, GrantAccessData grantAccessData);
/**
* Grants access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param grantAccessData Access data object supplied in the body of the get disk access operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a disk access SAS uri.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AccessUriInner grantAccess(String resourceGroupName, String restorePointCollectionName, String vmRestorePointName,
String diskRestorePointName, GrantAccessData grantAccessData, Context context);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> revokeAccessWithResponseAsync(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, Void> beginRevokeAccessAsync(String resourceGroupName,
String restorePointCollectionName, String vmRestorePointName, String diskRestorePointName);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginRevokeAccess(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName, String diskRestorePointName);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginRevokeAccess(String resourceGroupName, String restorePointCollectionName,
String vmRestorePointName, String diskRestorePointName, Context context);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono revokeAccessAsync(String resourceGroupName, String restorePointCollectionName, String vmRestorePointName,
String diskRestorePointName);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void revokeAccess(String resourceGroupName, String restorePointCollectionName, String vmRestorePointName,
String diskRestorePointName);
/**
* Revokes access to a diskRestorePoint.
*
* @param resourceGroupName The name of the resource group.
* @param restorePointCollectionName The name of the restore point collection that the disk restore point belongs.
* @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs.
* @param diskRestorePointName The name of the disk restore point created.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void revokeAccess(String resourceGroupName, String restorePointCollectionName, String vmRestorePointName,
String diskRestorePointName, Context context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy