UNPKG

@herd/angular-client

Version:

Swagger generated client for @herd/angular-client

59 lines (58 loc) 1.84 kB
/** * herd * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 0.220.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { StorageFile } from './storageFile'; export interface BusinessObjectDataStorageFilesCreateRequest { /** * The namespace of the business object data */ namespace: string; /** * The definition name of the business object data */ businessObjectDefinitionName: string; /** * The format usage of the business object data */ businessObjectFormatUsage: string; /** * The format file type of the business object data */ businessObjectFormatFileType: string; /** * The format version of the business object data */ businessObjectFormatVersion?: number; /** * The the primary partition value of the business object data */ partitionValue: string; /** * The subpartition values of the business object data */ subPartitionValues?: Array<string>; /** * The version of the business object data */ businessObjectDataVersion?: number; /** * The name of the storage */ storageName: string; /** * The list of storage files to be added. Storage files are required, unless discovery of storage files is enabled. In that case, the storage files are not allowed to be specified */ storageFiles?: Array<StorageFile>; /** * If true, enables the auto-discovery of all storage files in the relative S3 storage under the relative storage directory */ discoverStorageFiles?: boolean; }