vault/ui/api-client/dist/models/AwsWriteStaticRolesNameResponse.d.ts
Jordan Reimer 5905f43e1f
[UI] Check-in Built API Client (#29955)
* removes dist from api-client gitignore

* ignores api-client/dist directory for eslint and prettier

* builds api client
2025-03-19 11:50:15 -06:00

63 lines
2.3 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.20.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 AwsWriteStaticRolesNameResponse
*/
export interface AwsWriteStaticRolesNameResponse {
/**
* The AWS ARN for the role to be assumed when interacting with the account specified.
* @type {string}
* @memberof AwsWriteStaticRolesNameResponse
*/
assumeRoleArn?: string;
/**
* An identifier for the assumed role session.
* @type {string}
* @memberof AwsWriteStaticRolesNameResponse
*/
assumeRoleSessionName?: string;
/**
* An external ID to be passed to the assumed role session.
* @type {string}
* @memberof AwsWriteStaticRolesNameResponse
*/
externalId?: string;
/**
* The name of this role.
* @type {string}
* @memberof AwsWriteStaticRolesNameResponse
*/
name?: 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 AwsWriteStaticRolesNameResponse
*/
rotationPeriod?: string;
/**
* The IAM user to adopt as a static role.
* @type {string}
* @memberof AwsWriteStaticRolesNameResponse
*/
username?: string;
}
/**
* Check if a given object implements the AwsWriteStaticRolesNameResponse interface.
*/
export declare function instanceOfAwsWriteStaticRolesNameResponse(value: object): value is AwsWriteStaticRolesNameResponse;
export declare function AwsWriteStaticRolesNameResponseFromJSON(json: any): AwsWriteStaticRolesNameResponse;
export declare function AwsWriteStaticRolesNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AwsWriteStaticRolesNameResponse;
export declare function AwsWriteStaticRolesNameResponseToJSON(json: any): AwsWriteStaticRolesNameResponse;
export declare function AwsWriteStaticRolesNameResponseToJSONTyped(value?: AwsWriteStaticRolesNameResponse | null, ignoreDiscriminator?: boolean): any;