/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { StorageConfigInput } from '../models/StorageConfigInput'; import { HttpFile } from '../http/http'; /** * Input type for storage destination configuration. */ export class StorageDestinationInput { /** * Type of storage destination. Example: \"AWS_S3\" */ 'storage_type': StorageDestinationInputStorageTypeEnum; 'storage_config': StorageConfigInput; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "storage_type", "baseName": "storage_type", "type": "StorageDestinationInputStorageTypeEnum", "format": "" }, { "name": "storage_config", "baseName": "storage_config", "type": "StorageConfigInput", "format": "" } ]; static getAttributeTypeMap() { return StorageDestinationInput.attributeTypeMap; } public constructor() { } } export type StorageDestinationInputStorageTypeEnum = "AWS_S3" ;