UNPKG

@azure/keyvault-secrets

Version:
76 lines 3.07 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { KeyVaultSecretPollOperation } from "../keyVaultSecretPoller.js"; import { getSecretFromSecretBundle } from "../../transformations.js"; import { tracingClient } from "../../tracing.js"; /** * An interface representing a delete secret's poll operation */ export class DeleteSecretPollOperation extends KeyVaultSecretPollOperation { state; client; operationOptions; constructor(state, client, operationOptions = {}) { super(state, { cancelMessage: "Canceling the deletion of a secret is not supported." }); this.state = state; this.client = client; this.operationOptions = operationOptions; } /** * Sends a delete request for the given Key Vault Key's name to the Key Vault service. * Since the Key Vault Key won't be immediately deleted, we have {@link beginDeleteKey}. */ deleteSecret(name, options = {}) { return tracingClient.withSpan("DeleteSecretPoller.deleteSecret", options, async (updatedOptions) => { const response = await this.client.deleteSecret(name, updatedOptions); return getSecretFromSecretBundle(response); }); } /** * The getDeletedSecret method returns the specified deleted secret along with its properties. * This operation requires the secrets/get permission. */ getDeletedSecret(name, options = {}) { return tracingClient.withSpan("DeleteSecretPoller.getDeletedSecret", options, async (updatedOptions) => { const response = await this.client.getDeletedSecret(name, updatedOptions); return getSecretFromSecretBundle(response); }); } /** * Reaches to the service and updates the delete secret's poll operation. */ async update(options = {}) { const state = this.state; const { name } = state; if (options.abortSignal) { this.operationOptions.abortSignal = options.abortSignal; } if (!state.isStarted) { const deletedSecret = await this.deleteSecret(name, this.operationOptions); state.isStarted = true; state.result = deletedSecret; if (!deletedSecret.properties.recoveryId) { state.isCompleted = true; } } if (!state.isCompleted) { try { state.result = await this.getDeletedSecret(name, this.operationOptions); state.isCompleted = true; } catch (error) { if (error.statusCode === 403) { // At this point, the resource exists but the user doesn't have access to it. state.isCompleted = true; } else if (error.statusCode !== 404) { state.error = error; state.isCompleted = true; throw error; } } } return this; } } //# sourceMappingURL=operation.js.map