Package version:

Interface RestorePointCollections

Interface representing a RestorePointCollections.

interface RestorePointCollections {
    beginDelete(resourceGroupName: string, restorePointCollectionName: string, options?: RestorePointCollectionsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
    beginDeleteAndWait(resourceGroupName: string, restorePointCollectionName: string, options?: RestorePointCollectionsDeleteOptionalParams): Promise<void>;
    createOrUpdate(resourceGroupName: string, restorePointCollectionName: string, parameters: RestorePointCollection, options?: RestorePointCollectionsCreateOrUpdateOptionalParams): Promise<RestorePointCollection>;
    get(resourceGroupName: string, restorePointCollectionName: string, options?: RestorePointCollectionsGetOptionalParams): Promise<RestorePointCollection>;
    list(resourceGroupName: string, options?: RestorePointCollectionsListOptionalParams): PagedAsyncIterableIterator<RestorePointCollection>;
    listAll(options?: RestorePointCollectionsListAllOptionalParams): PagedAsyncIterableIterator<RestorePointCollection>;
    update(resourceGroupName: string, restorePointCollectionName: string, parameters: RestorePointCollectionUpdate, options?: RestorePointCollectionsUpdateOptionalParams): Promise<RestorePointCollection>;
}

Methods

  • The operation to delete the restore point collection. This operation will also delete all the contained restore points.

    Parameters

    • resourceGroupName: string

      The name of the resource group.

    • restorePointCollectionName: string

      The name of the Restore Point Collection.

    • Optionaloptions: RestorePointCollectionsDeleteOptionalParams

      The options parameters.

    Returns Promise<SimplePollerLike<OperationState<void>, void>>

  • The operation to delete the restore point collection. This operation will also delete all the contained restore points.

    Parameters

    • resourceGroupName: string

      The name of the resource group.

    • restorePointCollectionName: string

      The name of the Restore Point Collection.

    • Optionaloptions: RestorePointCollectionsDeleteOptionalParams

      The options parameters.

    Returns Promise<void>