mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
45 lines
1.6 KiB
TypeScript
45 lines
1.6 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 AliCloudLoginRequest
|
|
*/
|
|
export interface AliCloudLoginRequest {
|
|
/**
|
|
* The request headers. This must include the headers over which AliCloud has included a signature.
|
|
* @type {string}
|
|
* @memberof AliCloudLoginRequest
|
|
*/
|
|
identityRequestHeaders?: string;
|
|
/**
|
|
* Base64-encoded full URL against which to make the AliCloud request.
|
|
* @type {string}
|
|
* @memberof AliCloudLoginRequest
|
|
*/
|
|
identityRequestUrl?: string;
|
|
/**
|
|
* Name of the role against which the login is being attempted. If a matching role is not found, login fails.
|
|
* @type {string}
|
|
* @memberof AliCloudLoginRequest
|
|
*/
|
|
role: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the AliCloudLoginRequest interface.
|
|
*/
|
|
export declare function instanceOfAliCloudLoginRequest(value: object): value is AliCloudLoginRequest;
|
|
export declare function AliCloudLoginRequestFromJSON(json: any): AliCloudLoginRequest;
|
|
export declare function AliCloudLoginRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AliCloudLoginRequest;
|
|
export declare function AliCloudLoginRequestToJSON(json: any): AliCloudLoginRequest;
|
|
export declare function AliCloudLoginRequestToJSONTyped(value?: AliCloudLoginRequest | null, ignoreDiscriminator?: boolean): any;
|