Skip to content

Commit

Permalink
Rebuild schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jan 19, 2024
1 parent 629bd1a commit df351d0
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ export interface paths {
*/
get: operations["get_metrics_api_datasets__dataset_id__metrics_get"];
};
"/api/datasets/{dataset_id}/object_store_id": {
/** Update an object store ID for a dataset you own. */
put: operations["datasets__update_object_store_id"];
};
"/api/datasets/{dataset_id}/parameters_display": {
/**
* Resolve parameters as a list for nested display.
Expand Down Expand Up @@ -2902,6 +2906,8 @@ export interface components {
badges: components["schemas"]["BadgeDict"][];
/** Description */
description?: string | null;
/** Device */
device?: string | null;
/** Name */
name?: string | null;
/** Object Store Id */
Expand Down Expand Up @@ -10569,6 +10575,14 @@ export interface components {
*/
synopsis?: string | null;
};
/** UpdateObjectStoreIdPayload */
UpdateObjectStoreIdPayload: {
/**
* Object Store Id
* @description Object store ID to update to, it must be an object store with the same device ID as the target dataset currently.
*/
object_store_id: string;
};
/** UpdateQuotaParams */
UpdateQuotaParams: {
/**
Expand Down Expand Up @@ -12186,6 +12200,38 @@ export interface operations {
};
};
};
datasets__update_object_store_id: {
/** Update an object store ID for a dataset you own. */
parameters: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
"run-as"?: string | null;
};
/** @description The ID of the History Dataset. */
path: {
dataset_id: string;
};
};
requestBody: {
content: {
"application/json": components["schemas"]["UpdateObjectStoreIdPayload"];
};
};
responses: {
/** @description Successful Response */
200: {
content: {
"application/json": components["schemas"]["AsyncTaskResultSummary"];
};
};
/** @description Validation Error */
422: {
content: {
"application/json": components["schemas"]["HTTPValidationError"];
};
};
};
};
resolve_parameters_display_api_datasets__dataset_id__parameters_display_get: {
/**
* Resolve parameters as a list for nested display.
Expand Down

0 comments on commit df351d0

Please sign in to comment.