Skip to content

Commit

Permalink
Rebuild schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 20, 2024
1 parent b16dd88 commit 28a2747
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,10 @@ export interface paths {
/** Remove the object from user's favorites */
delete: operations["remove_favorite_api_users__user_id__favorites__object_type___object_id__delete"];
};
"/api/users/{user_id}/objectstore_usage": {
/** Return the user's object store usage summary broken down by object store ID */
get: operations["get_user_objectstore_usage_api_users__user_id__objectstore_usage_get"];
};
"/api/users/{user_id}/recalculate_disk_usage": {
/** Triggers a recalculation of the current user disk usage. */
put: operations["recalculate_disk_usage_by_user_id_api_users__user_id__recalculate_disk_usage_put"];
Expand Down Expand Up @@ -10928,6 +10932,13 @@ export interface components {
*/
notification_ids: string[];
};
/** UserObjectstoreUsage */
UserObjectstoreUsage: {
/** Object Store Id */
object_store_id: string;
/** Total Disk Usage */
total_disk_usage: number;
};
/** UserQuota */
UserQuota: {
/**
Expand Down Expand Up @@ -20917,6 +20928,33 @@ export interface operations {
};
};
};
get_user_objectstore_usage_api_users__user_id__objectstore_usage_get: {
/** Return the user's object store usage summary broken down by object store ID */
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 user to get or 'current'. */
path: {
user_id: string | "current";
};
};
responses: {
/** @description Successful Response */
200: {
content: {
"application/json": components["schemas"]["UserObjectstoreUsage"][];
};
};
/** @description Validation Error */
422: {
content: {
"application/json": components["schemas"]["HTTPValidationError"];
};
};
};
};
recalculate_disk_usage_by_user_id_api_users__user_id__recalculate_disk_usage_put: {
/** Triggers a recalculation of the current user disk usage. */
parameters: {
Expand Down

0 comments on commit 28a2747

Please sign in to comment.