/** * 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 CloudAccount */ export interface CloudAccount { /** * * @type {number} * @memberof CloudAccount */ id: number; /** * * @type {string} * @memberof CloudAccount */ name: string; /** * * @type {string} * @memberof CloudAccount */ provider?: CloudAccountProviderEnum; /** * * @type {string} * @memberof CloudAccount */ accessId?: string | null; /** * * @type {string} * @memberof CloudAccount */ secret?: string | null; /** * * @type {string} * @memberof CloudAccount */ tenant?: string | null; /** * * @type {string} * @memberof CloudAccount */ subscription?: string | null; /** * * @type {string} * @memberof CloudAccount */ endpoint?: string | null; /** * * @type {string} * @memberof CloudAccount */ mountCredentialsManagement?: CloudAccountMountCredentialsManagementEnum; } /** * @export * @enum {string} */ export declare enum CloudAccountProviderEnum { Azure = "azure", Aws = "aws", Gcloud = "gcloud" } /** * @export * @enum {string} */ export declare enum CloudAccountMountCredentialsManagementEnum { Null = "null", Share = "share" } export declare function CloudAccountFromJSON(json: any): CloudAccount; export declare function CloudAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloudAccount; export declare function CloudAccountToJSON(value?: CloudAccount | null): any;