Skip to content

Add short term storage expiration indicator to history items #20332

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 13 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 61 additions & 5 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7316,6 +7316,8 @@ export interface components {
device?: string | null;
/** Name */
name?: string | null;
/** Object Expires After Days */
object_expires_after_days?: number | null;
/** Object Store Id */
object_store_id?: string | null;
/** Private */
Expand Down Expand Up @@ -11385,6 +11387,11 @@ export interface components {
* @description The name of the item.
*/
name?: string | null;
/**
* Object Store ID
* @description The ID of the object store that this dataset is stored in.
*/
object_store_id?: string | null;
/**
* Peek
* @description A few lines of contents from the start of the file.
Expand Down Expand Up @@ -11499,9 +11506,10 @@ export interface components {
copied_from_ldda_id?: string | null;
/**
* Create Time
* Format: date-time
* @description The time and date this item was created.
*/
create_time: string | null;
create_time: string;
/**
* Created from basename
* @description The basename of the output that produced this dataset.
Expand Down Expand Up @@ -11637,6 +11645,11 @@ export interface components {
* @description The name of the item.
*/
name: string | null;
/**
* Object Store ID
* @description The ID of the object store that this dataset is stored in.
*/
object_store_id?: string | null;
/**
* Peek
* @description A few lines of contents from the start of the file.
Expand Down Expand Up @@ -11732,9 +11745,10 @@ export interface components {
copied_from_ldda_id?: string | null;
/**
* Create Time
* Format: date-time
* @description The time and date this item was created.
*/
create_time: string | null;
create_time: string;
/**
* Deleted
* @description Whether this item is marked as deleted.
Expand Down Expand Up @@ -11851,9 +11865,10 @@ export interface components {
copied_from_ldda_id?: string | null;
/**
* Create Time
* Format: date-time
* @description The time and date this item was created.
*/
create_time: string | null;
create_time: string;
/**
* Dataset ID
* @description The encoded ID of the dataset associated with this item.
Expand Down Expand Up @@ -11902,6 +11917,11 @@ export interface components {
* @description The name of the item.
*/
name: string | null;
/**
* Object Store ID
* @description The ID of the object store that this dataset is stored in.
*/
object_store_id?: string | null;
/**
* Purged
* @description Whether this dataset has been removed from disk.
Expand Down Expand Up @@ -12048,6 +12068,11 @@ export interface components {
* @description Optional message with further information in case the population of the dataset collection failed.
*/
populated_state_message?: string | null;
/**
* Store Times Summary
* @description A list of objects containing the object store ID and the oldest creation time of the datasets stored in that object store for this collection.This is used to determine the age of the datasets in the collection when the object store is short-lived.
*/
store_times_summary?: components["schemas"]["OldestCreateTimeByObjectStoreId"][] | null;
tags?: components["schemas"]["TagCollection"] | null;
/**
* Type
Expand Down Expand Up @@ -12098,9 +12123,10 @@ export interface components {
contents_url: string;
/**
* Create Time
* Format: date-time
* @description The time and date this item was created.
*/
create_time: string | null;
create_time: string;
/**
* Deleted
* @description Whether this item is marked as deleted.
Expand Down Expand Up @@ -12189,6 +12215,11 @@ export interface components {
* @description Optional message with further information in case the population of the dataset collection failed.
*/
populated_state_message?: string | null;
/**
* Store Times Summary
* @description A list of objects containing the object store ID and the oldest creation time of the datasets stored in that object store for this collection.This is used to determine the age of the datasets in the collection when the object store is short-lived.
*/
store_times_summary?: components["schemas"]["OldestCreateTimeByObjectStoreId"][] | null;
tags: components["schemas"]["TagCollection"];
/**
* Type
Expand Down Expand Up @@ -12241,9 +12272,10 @@ export interface components {
contents_url: string;
/**
* Create Time
* Format: date-time
* @description The time and date this item was created.
*/
create_time: string | null;
create_time: string;
/**
* Deleted
* @description Whether this item is marked as deleted.
Expand Down Expand Up @@ -12316,6 +12348,11 @@ export interface components {
* @description Optional message with further information in case the population of the dataset collection failed.
*/
populated_state_message?: string | null;
/**
* Store Times Summary
* @description A list of objects containing the object store ID and the oldest creation time of the datasets stored in that object store for this collection.This is used to determine the age of the datasets in the collection when the object store is short-lived.
*/
store_times_summary?: components["schemas"]["OldestCreateTimeByObjectStoreId"][] | null;
tags: components["schemas"]["TagCollection"];
/**
* Type
Expand Down Expand Up @@ -16633,6 +16670,23 @@ export interface components {
*/
version: number;
};
/**
* OldestCreateTimeByObjectStoreId
* @description Represents the oldest creation time of a set of datasets stored in a specific object store.
*/
OldestCreateTimeByObjectStoreId: {
/**
* Object Store ID
* @description The ID of the object store.
*/
object_store_id: string;
/**
* Oldest Create Time
* Format: date-time
* @description The oldest creation time of a set of datasets stored in this object store.
*/
oldest_create_time: string;
};
/** OutputReferenceByLabel */
OutputReferenceByLabel: {
/**
Expand Down Expand Up @@ -20197,6 +20251,8 @@ export interface components {
hidden: boolean;
/** Name */
name?: string | null;
/** Object Expires After Days */
object_expires_after_days?: number | null;
/** Object Store Id */
object_store_id?: string | null;
/** Private */
Expand Down

This file was deleted.

Loading
Loading