@azure/keyvault-secrets
Version:
Isomorphic client library for Azure KeyVault's secrets.
44 lines • 1.76 kB
TypeScript
import { OperationOptions } from "@azure-rest/core-client";
/** Optional parameters. */
export interface RestoreSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface BackupSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface RecoverDeletedSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface PurgeDeletedSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface GetDeletedSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface GetDeletedSecretsOptionalParams extends OperationOptions {
/** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */
maxresults?: number;
}
/** Optional parameters. */
export interface GetSecretVersionsOptionalParams extends OperationOptions {
/** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */
maxresults?: number;
}
/** Optional parameters. */
export interface GetSecretsOptionalParams extends OperationOptions {
/** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */
maxresults?: number;
}
/** Optional parameters. */
export interface GetSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface UpdateSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface DeleteSecretOptionalParams extends OperationOptions {
}
/** Optional parameters. */
export interface SetSecretOptionalParams extends OperationOptions {
}
//# sourceMappingURL=options.d.ts.map