vault/ui/api-client/dist/esm/models/SystemWriteNamespacesApiLockUnlockRequest.d.ts

33 lines
1.4 KiB
TypeScript

/**
* HashiCorp Vault API
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
*
* The version of the OpenAPI document: 1.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface SystemWriteNamespacesApiLockUnlockRequest
*/
export interface SystemWriteNamespacesApiLockUnlockRequest {
/**
* Key to unlock the namespace.
* @type {string}
* @memberof SystemWriteNamespacesApiLockUnlockRequest
*/
unlockKey?: string;
}
/**
* Check if a given object implements the SystemWriteNamespacesApiLockUnlockRequest interface.
*/
export declare function instanceOfSystemWriteNamespacesApiLockUnlockRequest(value: object): value is SystemWriteNamespacesApiLockUnlockRequest;
export declare function SystemWriteNamespacesApiLockUnlockRequestFromJSON(json: any): SystemWriteNamespacesApiLockUnlockRequest;
export declare function SystemWriteNamespacesApiLockUnlockRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteNamespacesApiLockUnlockRequest;
export declare function SystemWriteNamespacesApiLockUnlockRequestToJSON(json: any): SystemWriteNamespacesApiLockUnlockRequest;
export declare function SystemWriteNamespacesApiLockUnlockRequestToJSONTyped(value?: SystemWriteNamespacesApiLockUnlockRequest | null, ignoreDiscriminator?: boolean): any;