mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
57 lines
1.9 KiB
TypeScript
57 lines
1.9 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 PkiGenerateEabKeyForRoleResponse
|
|
*/
|
|
export interface PkiGenerateEabKeyForRoleResponse {
|
|
/**
|
|
* The ACME directory to which the key belongs
|
|
* @type {string}
|
|
* @memberof PkiGenerateEabKeyForRoleResponse
|
|
*/
|
|
acmeDirectory?: string;
|
|
/**
|
|
* An RFC3339 formatted date time when the EAB token was created
|
|
* @type {Date}
|
|
* @memberof PkiGenerateEabKeyForRoleResponse
|
|
*/
|
|
createdOn?: Date;
|
|
/**
|
|
* The EAB key identifier
|
|
* @type {string}
|
|
* @memberof PkiGenerateEabKeyForRoleResponse
|
|
*/
|
|
id?: string;
|
|
/**
|
|
* The EAB hmac key
|
|
* @type {string}
|
|
* @memberof PkiGenerateEabKeyForRoleResponse
|
|
*/
|
|
key?: string;
|
|
/**
|
|
* The EAB key type
|
|
* @type {string}
|
|
* @memberof PkiGenerateEabKeyForRoleResponse
|
|
*/
|
|
keyType?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiGenerateEabKeyForRoleResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiGenerateEabKeyForRoleResponse(value: object): value is PkiGenerateEabKeyForRoleResponse;
|
|
export declare function PkiGenerateEabKeyForRoleResponseFromJSON(json: any): PkiGenerateEabKeyForRoleResponse;
|
|
export declare function PkiGenerateEabKeyForRoleResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiGenerateEabKeyForRoleResponse;
|
|
export declare function PkiGenerateEabKeyForRoleResponseToJSON(json: any): PkiGenerateEabKeyForRoleResponse;
|
|
export declare function PkiGenerateEabKeyForRoleResponseToJSONTyped(value?: PkiGenerateEabKeyForRoleResponse | null, ignoreDiscriminator?: boolean): any;
|