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

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 PkiGenerateEabKeyForIssuerResponse
*/
export interface PkiGenerateEabKeyForIssuerResponse {
/**
* The ACME directory to which the key belongs
* @type {string}
* @memberof PkiGenerateEabKeyForIssuerResponse
*/
acmeDirectory?: string;
/**
* An RFC3339 formatted date time when the EAB token was created
* @type {Date}
* @memberof PkiGenerateEabKeyForIssuerResponse
*/
createdOn?: Date;
/**
* The EAB key identifier
* @type {string}
* @memberof PkiGenerateEabKeyForIssuerResponse
*/
id?: string;
/**
* The EAB hmac key
* @type {string}
* @memberof PkiGenerateEabKeyForIssuerResponse
*/
key?: string;
/**
* The EAB key type
* @type {string}
* @memberof PkiGenerateEabKeyForIssuerResponse
*/
keyType?: string;
}
/**
* Check if a given object implements the PkiGenerateEabKeyForIssuerResponse interface.
*/
export declare function instanceOfPkiGenerateEabKeyForIssuerResponse(value: object): value is PkiGenerateEabKeyForIssuerResponse;
export declare function PkiGenerateEabKeyForIssuerResponseFromJSON(json: any): PkiGenerateEabKeyForIssuerResponse;
export declare function PkiGenerateEabKeyForIssuerResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiGenerateEabKeyForIssuerResponse;
export declare function PkiGenerateEabKeyForIssuerResponseToJSON(json: any): PkiGenerateEabKeyForIssuerResponse;
export declare function PkiGenerateEabKeyForIssuerResponseToJSONTyped(value?: PkiGenerateEabKeyForIssuerResponse | null, ignoreDiscriminator?: boolean): any;