mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
39 lines
1.4 KiB
TypeScript
39 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 AwsReadStaticCredsNameResponse
|
|
*/
|
|
export interface AwsReadStaticCredsNameResponse {
|
|
/**
|
|
* The access key of the AWS Credential
|
|
* @type {string}
|
|
* @memberof AwsReadStaticCredsNameResponse
|
|
*/
|
|
accessKey?: string;
|
|
/**
|
|
* The secret key of the AWS Credential
|
|
* @type {string}
|
|
* @memberof AwsReadStaticCredsNameResponse
|
|
*/
|
|
secretKey?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the AwsReadStaticCredsNameResponse interface.
|
|
*/
|
|
export declare function instanceOfAwsReadStaticCredsNameResponse(value: object): value is AwsReadStaticCredsNameResponse;
|
|
export declare function AwsReadStaticCredsNameResponseFromJSON(json: any): AwsReadStaticCredsNameResponse;
|
|
export declare function AwsReadStaticCredsNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AwsReadStaticCredsNameResponse;
|
|
export declare function AwsReadStaticCredsNameResponseToJSON(json: any): AwsReadStaticCredsNameResponse;
|
|
export declare function AwsReadStaticCredsNameResponseToJSONTyped(value?: AwsReadStaticCredsNameResponse | null, ignoreDiscriminator?: boolean): any;
|