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

45 lines
1.3 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 PkiWriteKeyResponse
*/
export interface PkiWriteKeyResponse {
/**
* Key Id
* @type {string}
* @memberof PkiWriteKeyResponse
*/
keyId?: string;
/**
* Key Name
* @type {string}
* @memberof PkiWriteKeyResponse
*/
keyName?: string;
/**
* Key Type
* @type {string}
* @memberof PkiWriteKeyResponse
*/
keyType?: string;
}
/**
* Check if a given object implements the PkiWriteKeyResponse interface.
*/
export declare function instanceOfPkiWriteKeyResponse(value: object): value is PkiWriteKeyResponse;
export declare function PkiWriteKeyResponseFromJSON(json: any): PkiWriteKeyResponse;
export declare function PkiWriteKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiWriteKeyResponse;
export declare function PkiWriteKeyResponseToJSON(json: any): PkiWriteKeyResponse;
export declare function PkiWriteKeyResponseToJSONTyped(value?: PkiWriteKeyResponse | null, ignoreDiscriminator?: boolean): any;