vault/ui/api-client/dist/models/AwsReadStaticRolesNameResponse.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.2 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 AwsReadStaticRolesNameResponse
*/
export interface AwsReadStaticRolesNameResponse {
/**
* The AWS ARN for the role to be assumed when interacting with the account specified.
* @type {string}
* @memberof AwsReadStaticRolesNameResponse
*/
assumeRoleArn?: string;
/**
* An identifier for the assumed role session.
* @type {string}
* @memberof AwsReadStaticRolesNameResponse
*/
assumeRoleSessionName?: string;
/**
* An external ID to be passed to the assumed role session.
* @type {string}
* @memberof AwsReadStaticRolesNameResponse
*/
externalId?: string;
/**
* The name of this role.
* @type {string}
* @memberof AwsReadStaticRolesNameResponse
*/
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 AwsReadStaticRolesNameResponse
*/
rotationPeriod?: string;
/**
* The IAM user to adopt as a static role.
* @type {string}
* @memberof AwsReadStaticRolesNameResponse
*/
username?: string;
}
/**
* Check if a given object implements the AwsReadStaticRolesNameResponse interface.
*/
export declare function instanceOfAwsReadStaticRolesNameResponse(value: object): value is AwsReadStaticRolesNameResponse;
export declare function AwsReadStaticRolesNameResponseFromJSON(json: any): AwsReadStaticRolesNameResponse;
export declare function AwsReadStaticRolesNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AwsReadStaticRolesNameResponse;
export declare function AwsReadStaticRolesNameResponseToJSON(json: any): AwsReadStaticRolesNameResponse;
export declare function AwsReadStaticRolesNameResponseToJSONTyped(value?: AwsReadStaticRolesNameResponse | null, ignoreDiscriminator?: boolean): any;