mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
63 lines
1.7 KiB
TypeScript
63 lines
1.7 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 PkiReadKeyResponse
|
|
*/
|
|
export interface PkiReadKeyResponse {
|
|
/**
|
|
* Key Id
|
|
* @type {string}
|
|
* @memberof PkiReadKeyResponse
|
|
*/
|
|
keyId?: string;
|
|
/**
|
|
* Key Name
|
|
* @type {string}
|
|
* @memberof PkiReadKeyResponse
|
|
*/
|
|
keyName?: string;
|
|
/**
|
|
* Key Type
|
|
* @type {string}
|
|
* @memberof PkiReadKeyResponse
|
|
*/
|
|
keyType?: string;
|
|
/**
|
|
* Managed Key Id
|
|
* @type {string}
|
|
* @memberof PkiReadKeyResponse
|
|
*/
|
|
managedKeyId?: string;
|
|
/**
|
|
* Managed Key Name
|
|
* @type {string}
|
|
* @memberof PkiReadKeyResponse
|
|
*/
|
|
managedKeyName?: string;
|
|
/**
|
|
* RFC 5280 Subject Key Identifier of the public counterpart
|
|
* @type {string}
|
|
* @memberof PkiReadKeyResponse
|
|
*/
|
|
subjectKeyId?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiReadKeyResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiReadKeyResponse(value: object): value is PkiReadKeyResponse;
|
|
export declare function PkiReadKeyResponseFromJSON(json: any): PkiReadKeyResponse;
|
|
export declare function PkiReadKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadKeyResponse;
|
|
export declare function PkiReadKeyResponseToJSON(json: any): PkiReadKeyResponse;
|
|
export declare function PkiReadKeyResponseToJSONTyped(value?: PkiReadKeyResponse | null, ignoreDiscriminator?: boolean): any;
|