All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.security.keyvault.administration.models.KeyVaultBackupOperation Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.security.keyvault.administration.models;

import com.azure.core.annotation.Immutable;

import java.time.OffsetDateTime;

/**
 * A class that contains the details of a backup operation.
 */
@Immutable
public final class KeyVaultBackupOperation extends KeyVaultLongRunningOperation {
    private final String azureStorageBlobContainerUrl;

    /**
     * Creates an object containing the details of a {@link KeyVaultBackupOperation}.
     *
     * @param status Status of the {@link KeyVaultBackupOperation}.
     * @param statusDetails The status details of the {@link KeyVaultBackupOperation}.
     * @param error Error encountered, if any, during the {@link KeyVaultBackupOperation}.
     * @param startTime The start time of the {@link KeyVaultBackupOperation}.
     * @param endTime The end time of the {@link KeyVaultBackupOperation}.
     * @param operationId Identifier for the full {@link KeyVaultBackupOperation}.
     * @param azureStorageBlobContainerUrl The Azure blob storage container URI which contains the backup.
     */
    public KeyVaultBackupOperation(String status, String statusDetails, KeyVaultAdministrationError error,
                                   String operationId, OffsetDateTime startTime, OffsetDateTime endTime,
                                   String azureStorageBlobContainerUrl) {
        super(status, statusDetails, error, operationId, startTime, endTime);
        this.azureStorageBlobContainerUrl = azureStorageBlobContainerUrl;
    }

    /**
     * Get the Azure Blob Storage container URI where the backup resides.
     *
     * @return The backup URI in {@link String} form.
     */
    public String getAzureStorageBlobContainerUrl() {
        return azureStorageBlobContainerUrl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy