Skip to content

Commit

Permalink
Rebuild client schema for object store APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 21, 2023
1 parent 760ee32 commit 1e926d1
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,14 @@ export interface paths {
*/
post: operations["create_api_metrics_post"];
};
"/api/object_store": {
/** Index */
get: operations["index_api_object_store_get"];
};
"/api/object_store/{object_store_id}": {
/** Return boolean to indicate if Galaxy's default object store allows selection. */
get: operations["show_info_api_object_store__object_store_id__get"];
};
"/api/pages": {
/**
* Lists all Pages viewable by the user.
Expand Down Expand Up @@ -2455,6 +2463,11 @@ export interface components {
* @description Base model definition with common configuration used by all derived models.
*/
DatasetStorageDetails: {
/**
* Badges
* @description Fast summary parsed for digging into about target object store dataset is stored on.
*/
badges: Record<string, never>[];
/**
* Dataset State
* @description The model state of the supplied dataset instance.
Expand Down Expand Up @@ -12554,6 +12567,59 @@ export interface operations {
};
};
};
index_api_object_store_get: {
/** Index */
parameters?: {
/** @description Restrict index query to user selectable object stores. */
query?: {
selectable?: boolean;
};
/** @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;
};
};
responses: {
200: {
content: {
"application/json": Record<string, never>[];
};
};
/** @description Validation Error */
422: {
content: {
"application/json": components["schemas"]["HTTPValidationError"];
};
};
};
};
show_info_api_object_store__object_store_id__get: {
/** Return boolean to indicate if Galaxy's default object store allows selection. */
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;
};
/** @description The concrete object store ID. */
path: {
object_store_id: string;
};
};
responses: {
/** @description A list with details about the remote files available to the user. */
200: {
content: {
"application/json": Record<string, never>;
};
};
/** @description Validation Error */
422: {
content: {
"application/json": components["schemas"]["HTTPValidationError"];
};
};
};
};
index_api_pages_get: {
/**
* Lists all Pages viewable by the user.
Expand Down

0 comments on commit 1e926d1

Please sign in to comment.