mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
57 lines
2.1 KiB
TypeScript
57 lines
2.1 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 AwsWriteStaticRolesNameRequest
|
|
*/
|
|
export interface AwsWriteStaticRolesNameRequest {
|
|
/**
|
|
* The AWS ARN for the role to be assumed when interacting with the account specified.
|
|
* @type {string}
|
|
* @memberof AwsWriteStaticRolesNameRequest
|
|
*/
|
|
assumeRoleArn?: string;
|
|
/**
|
|
* An identifier for the assumed role session.
|
|
* @type {string}
|
|
* @memberof AwsWriteStaticRolesNameRequest
|
|
*/
|
|
assumeRoleSessionName?: string;
|
|
/**
|
|
* An external ID to be passed to the assumed role session.
|
|
* @type {string}
|
|
* @memberof AwsWriteStaticRolesNameRequest
|
|
*/
|
|
externalId?: string;
|
|
/**
|
|
* Period by which to rotate the backing credential of the adopted user. This can be a Go duration (e.g, '1m', 24h'), or an integer number of seconds.
|
|
* @type {string}
|
|
* @memberof AwsWriteStaticRolesNameRequest
|
|
*/
|
|
rotationPeriod?: string;
|
|
/**
|
|
* The IAM user to adopt as a static role.
|
|
* @type {string}
|
|
* @memberof AwsWriteStaticRolesNameRequest
|
|
*/
|
|
username?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the AwsWriteStaticRolesNameRequest interface.
|
|
*/
|
|
export declare function instanceOfAwsWriteStaticRolesNameRequest(value: object): value is AwsWriteStaticRolesNameRequest;
|
|
export declare function AwsWriteStaticRolesNameRequestFromJSON(json: any): AwsWriteStaticRolesNameRequest;
|
|
export declare function AwsWriteStaticRolesNameRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AwsWriteStaticRolesNameRequest;
|
|
export declare function AwsWriteStaticRolesNameRequestToJSON(json: any): AwsWriteStaticRolesNameRequest;
|
|
export declare function AwsWriteStaticRolesNameRequestToJSONTyped(value?: AwsWriteStaticRolesNameRequest | null, ignoreDiscriminator?: boolean): any;
|