/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 AWSAccount */ export interface AWSAccount { /** * * @type {number} * @memberof AWSAccount */ id: number; /** * * @type {string} * @memberof AWSAccount */ name: string; /** * * @type {string} * @memberof AWSAccount */ accessKeyId: string; /** * * @type {string} * @memberof AWSAccount */ secretAccessKey: string; /** * * @type {string} * @memberof AWSAccount */ endpointUrl?: string | null; /** * * @type {string} * @memberof AWSAccount */ defaultRegion?: AWSAccountDefaultRegionEnum; } /** * @export * @enum {string} */ export declare enum AWSAccountDefaultRegionEnum { UsEast2 = "us-east-2", UsEast1 = "us-east-1", UsWest1 = "us-west-1", UsWest2 = "us-west-2", ApEast1 = "ap-east-1", ApSouth1 = "ap-south-1", ApNortheast2 = "ap-northeast-2", ApSoutheast1 = "ap-southeast-1", ApSoutheast2 = "ap-southeast-2", ApNortheast1 = "ap-northeast-1", CaCentral1 = "ca-central-1", CnNorth1 = "cn-north-1", CnNorthwest1 = "cn-northwest-1", EuCentral1 = "eu-central-1", EuWest1 = "eu-west-1", EuWest2 = "eu-west-2", EuWest3 = "eu-west-3", EuNorth1 = "eu-north-1", MeSouth1 = "me-south-1", SaEast1 = "sa-east-1" } export declare function AWSAccountFromJSON(json: any): AWSAccount; export declare function AWSAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): AWSAccount; export declare function AWSAccountToJSON(value?: AWSAccount | null): any;