35 lines
1.7 KiB
TypeScript
35 lines
1.7 KiB
TypeScript
import type { AbortSignalLike } from "@azure/abort-controller";
|
|
import type { OperationOptions } from "@azure-rest/core-client";
|
|
import type { KeyVaultClient } from "../../generated/keyVaultClient.js";
|
|
import type { KeyVaultKey } from "../../keysModels.js";
|
|
import type { KeyVaultKeyPollOperationState } from "../keyVaultKeyPoller.js";
|
|
import { KeyVaultKeyPollOperation } from "../keyVaultKeyPoller.js";
|
|
/**
|
|
* An interface representing the state of a delete key's poll operation
|
|
*/
|
|
export interface RecoverDeletedKeyPollOperationState extends KeyVaultKeyPollOperationState<KeyVaultKey> {
|
|
}
|
|
export declare class RecoverDeletedKeyPollOperation extends KeyVaultKeyPollOperation<RecoverDeletedKeyPollOperationState, KeyVaultKey> {
|
|
state: RecoverDeletedKeyPollOperationState;
|
|
private client;
|
|
private operationOptions;
|
|
constructor(state: RecoverDeletedKeyPollOperationState, client: KeyVaultClient, operationOptions?: OperationOptions);
|
|
/**
|
|
* The getKey method gets a specified key and is applicable to any key stored in Azure Key Vault.
|
|
* This operation requires the keys/get permission.
|
|
*/
|
|
private getKey;
|
|
/**
|
|
* Sends a request to recover a deleted Key Vault Key based on the given name.
|
|
* Since the Key Vault Key won't be immediately recover the deleted key, we have {@link beginRecoverDeletedKey}.
|
|
*/
|
|
private recoverDeletedKey;
|
|
/**
|
|
* Reaches to the service and updates the delete key's poll operation.
|
|
*/
|
|
update(options?: {
|
|
abortSignal?: AbortSignalLike;
|
|
fireProgress?: (state: RecoverDeletedKeyPollOperationState) => void;
|
|
}): Promise<RecoverDeletedKeyPollOperation>;
|
|
}
|
|
//# sourceMappingURL=operation.d.ts.map
|