diff --git a/client/src/schema/schema.ts b/client/src/schema/schema.ts index 7a8b54651a20..1ea7124d5327 100644 --- a/client/src/schema/schema.ts +++ b/client/src/schema/schema.ts @@ -2258,6 +2258,27 @@ export interface components { */ overwrite_existing?: boolean; }; + /** + * CloudDatasetsResponse + * @description Base model definition with common configuration used by all derived models. + */ + CloudDatasetsResponse: { + /** + * Bucket + * @description The name of bucket to which the listed datasets are queued to be sent + */ + bucket_name: string; + /** + * Failed datasets + * @description The datasets for which Galaxy failed to create (and queue) send job + */ + failed_dataset_labels: string[]; + /** + * Send datasets + * @description The datasets for which Galaxy succeeded to create (and queue) send job + */ + sent_dataset_labels: string[]; + }; /** * CloudObjects * @description Base model definition with common configuration used by all derived models. @@ -3048,32 +3069,6 @@ export interface components { | components["schemas"]["NestedElement"] )[]; }; - /** - * Dataset - * @description Base model definition with common configuration used by all derived models. - */ - Dataset: { - /** Create time */ - create_time?: Record; - /** Deleted */ - deleted?: Record; - /** File size */ - file_size?: Record; - /** ID */ - id?: Record; - /** Purgable */ - purgable?: Record; - /** Purged */ - purged?: Record; - /** State */ - state?: Record; - /** Total size */ - total_size?: Record; - /** Update time */ - update_time?: Record; - /** UUID */ - uuid?: Record; - }; /** * DatasetAssociationRoles * @description Base model definition with common configuration used by all derived models. @@ -3297,6 +3292,56 @@ export interface components { */ sources: Record[]; }; + /** + * DatasetSummary + * @description Base model definition with common configuration used by all derived models. + */ + DatasetSummary: { + /** + * Create Time + * Format: date-time + * @description The time and date this item was created. + */ + create_time?: string; + /** Deleted */ + deleted: boolean; + /** File Size */ + file_size: number; + /** + * ID + * @description The encoded ID of this entity. + * @example 0123456789ABCDEF + */ + id: string; + /** Purgable */ + purgable: boolean; + /** Purged */ + purged: boolean; + /** + * State + * @description The current state of this dataset. + */ + state: components["schemas"]["DatasetState"]; + /** Total Size */ + total_size: number; + /** + * Update Time + * Format: date-time + * @description The last time and date this item was updated. + */ + update_time?: string; + /** + * UUID + * Format: uuid4 + * @description Universal unique identifier for this dataset. + */ + uuid: string; + }; + /** + * DatasetSummaryList + * @description Base model definition with common configuration used by all derived models. + */ + DatasetSummaryList: components["schemas"]["DatasetSummary"][]; /** * DatasetTextContentDetails * @description Base model definition with common configuration used by all derived models. @@ -8078,27 +8123,6 @@ export interface components { * @description Collection of converters that can be used on a particular dataset collection. */ SuitableConverters: components["schemas"]["SuitableConverter"][]; - /** - * SummarySendDatasets - * @description Base model definition with common configuration used by all derived models. - */ - SummarySendDatasets: { - /** - * Bucket - * @description The name of bucket to which the listed datasets are queued to be sent - */ - bucket_name: string; - /** - * Failed datasets - * @description The datasets for which Galaxy failed to create (and queue) send job - */ - failed_dataset_labels: string[]; - /** - * Send datasets - * @description The datasets for which Galaxy succeeded to create (and queue) send job - */ - sent_dataset_labels: string[]; - }; /** * TagCollection * @description The collection of tags associated with an item. @@ -9059,7 +9083,7 @@ export interface operations { /** @description Successful Response */ 200: { content: { - "application/json": components["schemas"]["Dataset"][]; + "application/json": components["schemas"]["DatasetSummaryList"]; }; }; /** @description Validation Error */ @@ -9090,7 +9114,7 @@ export interface operations { /** @description Successful Response */ 200: { content: { - "application/json": components["schemas"]["SummarySendDatasets"]; + "application/json": components["schemas"]["CloudDatasetsResponse"]; }; }; /** @description Validation Error */