Interface Disks

All Superinterfaces:
com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager<ComputeManager>, com.azure.resourcemanager.resources.fluentcore.collection.SupportsBatchCreation<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsBatchDeletion, com.azure.resourcemanager.resources.fluentcore.collection.SupportsCreating<Disk.DefinitionStages.Blank>, com.azure.resourcemanager.resources.fluentcore.collection.SupportsDeletingById, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup<Disk>, com.azure.resourcemanager.resources.fluentcore.collection.SupportsListing<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsListingByResourceGroup<Disk>

public interface Disks extends com.azure.resourcemanager.resources.fluentcore.collection.SupportsCreating<Disk.DefinitionStages.Blank>, com.azure.resourcemanager.resources.fluentcore.collection.SupportsListing<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsListingByResourceGroup<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById<Disk>, com.azure.resourcemanager.resources.fluentcore.collection.SupportsDeletingById, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup, com.azure.resourcemanager.resources.fluentcore.collection.SupportsBatchCreation<Disk>, com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsBatchDeletion, com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager<ComputeManager>
Entry point to managed disk management API in Azure.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void>
    Begins deleting a disk from Azure, identifying it by its resource ID.
    default com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void>
    beginDeleteById(String id, com.azure.core.util.Context context)
    Begins deleting a disk from Azure, identifying it by its resource ID.
    com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void>
    beginDeleteByResourceGroup(String resourceGroupName, String name)
    Begins deleting a disk from Azure, identifying it by its name and its resource group.
    default com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void>
    beginDeleteByResourceGroup(String resourceGroupName, String name, com.azure.core.util.Context context)
    Begins deleting a disk from Azure, identifying it by its name and its resource group.
    grantAccess(String resourceGroupName, String diskName, AccessLevel accessLevel, int accessDuration)
    Grants access to a disk.
    grantAccessAsync(String resourceGroupName, String diskName, AccessLevel accessLevel, int accessDuration)
    Grants access to the disk asynchronously.
    void
    revokeAccess(String resourceGroupName, String diskName)
    Revoke access granted to a disk.
    revokeAccessAsync(String resourceGroupName, String diskName)
    Revoke access granted to the snapshot asynchronously.

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager

    manager

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsBatchCreation

    create, create, createAsync, createAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsBatchDeletion

    deleteByIds, deleteByIds, deleteByIdsAsync, deleteByIdsAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsCreating

    define

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsDeletingById

    deleteById, deleteByIdAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup

    deleteByResourceGroup, deleteByResourceGroupAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById

    getById, getByIdAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup

    getByResourceGroup, getByResourceGroupAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsListing

    list, listAsync

    Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsListingByResourceGroup

    listByResourceGroup, listByResourceGroupAsync
  • Method Details

    • grantAccess

      String grantAccess(String resourceGroupName, String diskName, AccessLevel accessLevel, int accessDuration)
      Grants access to a disk.
      Parameters:
      resourceGroupName - a resource group name
      diskName - a disk name
      accessLevel - access level
      accessDuration - access duration
      Returns:
      the read-only SAS URI to the disk
    • grantAccessAsync

      Mono<String> grantAccessAsync(String resourceGroupName, String diskName, AccessLevel accessLevel, int accessDuration)
      Grants access to the disk asynchronously.
      Parameters:
      resourceGroupName - the resource group name
      diskName - the disk name
      accessLevel - access level
      accessDuration - access duration
      Returns:
      a representation of the deferred computation of this call returning a read-only SAS URI to the disk
    • revokeAccess

      void revokeAccess(String resourceGroupName, String diskName)
      Revoke access granted to a disk.
      Parameters:
      resourceGroupName - the resource group name
      diskName - the disk name
    • revokeAccessAsync

      Mono<Void> revokeAccessAsync(String resourceGroupName, String diskName)
      Revoke access granted to the snapshot asynchronously.
      Parameters:
      resourceGroupName - the resource group name
      diskName - the disk name
      Returns:
      a representation of the deferred computation of this call
    • beginDeleteById

      com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void> beginDeleteById(String id)
      Begins deleting a disk from Azure, identifying it by its resource ID.
      Parameters:
      id - the resource ID of the disk to delete
      Returns:
      the accepted deleting operation
    • beginDeleteById

      default com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void> beginDeleteById(String id, com.azure.core.util.Context context)
      Begins deleting a disk from Azure, identifying it by its resource ID.
      Parameters:
      id - the resource ID of the disk to delete
      context - the Context of the request
      Returns:
      the accepted deleting operation
    • beginDeleteByResourceGroup

      com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void> beginDeleteByResourceGroup(String resourceGroupName, String name)
      Begins deleting a disk from Azure, identifying it by its name and its resource group.
      Parameters:
      resourceGroupName - the resource group the resource is part of
      name - the disk name
      Returns:
      the accepted deleting operation
    • beginDeleteByResourceGroup

      default com.azure.resourcemanager.resources.fluentcore.model.Accepted<Void> beginDeleteByResourceGroup(String resourceGroupName, String name, com.azure.core.util.Context context)
      Begins deleting a disk from Azure, identifying it by its name and its resource group.
      Parameters:
      resourceGroupName - the resource group the resource is part of
      name - the disk name
      context - the Context of the request
      Returns:
      the accepted deleting operation