/** * 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'; /** * Configuration for storage destination. Example: {\"storage_type\": \"AWS_S3\", \"storage_config\": {\"aws_s3_config\": {\"bucket_name\": \"my-webhook-files\", \"region\": \"us-west-2\", \"role_arn\": \"arn:aws:iam::123456789012:role/ThoughtSpotDeliveryRole\", \"external_id\": \"ts-webhook-a1b2c3d4-7890\", \"path_prefix\": \"thoughtspot-webhooks/\"}}} Version: 26.3.0.cl or later */ export class CreateWebhookConfigurationRequestStorageDestination { /** * Type of storage destination. Example: \"AWS_S3\" */ 'storage_type': CreateWebhookConfigurationRequestStorageDestinationStorageTypeEnum; '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": "CreateWebhookConfigurationRequestStorageDestinationStorageTypeEnum", "format": "" }, { "name": "storage_config", "baseName": "storage_config", "type": "StorageConfigInput", "format": "" } ]; static getAttributeTypeMap() { return CreateWebhookConfigurationRequestStorageDestination.attributeTypeMap; } public constructor() { } } export type CreateWebhookConfigurationRequestStorageDestinationStorageTypeEnum = "AWS_S3" ;