@parallelworks/client 7.83.0 → 7.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/api.d.ts +65 -0
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -9186,6 +9186,28 @@ export interface paths {
|
|
|
9186
9186
|
patch?: never;
|
|
9187
9187
|
trace?: never;
|
|
9188
9188
|
};
|
|
9189
|
+
"/api/organizations/{organization}/users/{user}/environments": {
|
|
9190
|
+
parameters: {
|
|
9191
|
+
query?: never;
|
|
9192
|
+
header?: never;
|
|
9193
|
+
path?: never;
|
|
9194
|
+
cookie?: never;
|
|
9195
|
+
};
|
|
9196
|
+
/**
|
|
9197
|
+
* List all environments
|
|
9198
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
9199
|
+
*
|
|
9200
|
+
* Returns every environment across the clusters the user can schedule on, for the compute picker.
|
|
9201
|
+
*/
|
|
9202
|
+
get: operations["list-all-environments"];
|
|
9203
|
+
put?: never;
|
|
9204
|
+
post?: never;
|
|
9205
|
+
delete?: never;
|
|
9206
|
+
options?: never;
|
|
9207
|
+
head?: never;
|
|
9208
|
+
patch?: never;
|
|
9209
|
+
trace?: never;
|
|
9210
|
+
};
|
|
9189
9211
|
"/api/organizations/{organization}/users/{user}/external-auth": {
|
|
9190
9212
|
parameters: {
|
|
9191
9213
|
query?: never;
|
|
@@ -17607,8 +17629,14 @@ export interface components {
|
|
|
17607
17629
|
* @description Number of available nodes.
|
|
17608
17630
|
*/
|
|
17609
17631
|
readonly availNodes?: number;
|
|
17632
|
+
/** @description Display name of the environment's cluster. Populated only by the all-environments listing. */
|
|
17633
|
+
readonly clusterDisplayName?: string;
|
|
17610
17634
|
/** @description The cluster this environment belongs to. */
|
|
17611
17635
|
readonly clusterId: string;
|
|
17636
|
+
/** @description Canonical name of the environment's cluster. Populated only by the all-environments listing. */
|
|
17637
|
+
readonly clusterName?: string;
|
|
17638
|
+
/** @description Owner username of the environment's cluster, empty for managed clusters. Populated only by the all-environments listing. */
|
|
17639
|
+
readonly clusterUser?: string;
|
|
17612
17640
|
/**
|
|
17613
17641
|
* Format: date-time
|
|
17614
17642
|
* @description Creation time.
|
|
@@ -44894,6 +44922,43 @@ export interface operations {
|
|
|
44894
44922
|
};
|
|
44895
44923
|
};
|
|
44896
44924
|
};
|
|
44925
|
+
"list-all-environments": {
|
|
44926
|
+
parameters: {
|
|
44927
|
+
query?: {
|
|
44928
|
+
/** @description Filter by status. */
|
|
44929
|
+
status?: "active" | "inactive" | "";
|
|
44930
|
+
};
|
|
44931
|
+
header?: never;
|
|
44932
|
+
path: {
|
|
44933
|
+
/** @description The name of the organization. */
|
|
44934
|
+
organization: string;
|
|
44935
|
+
/** @description Username of the target user. */
|
|
44936
|
+
user: string;
|
|
44937
|
+
};
|
|
44938
|
+
cookie?: never;
|
|
44939
|
+
};
|
|
44940
|
+
requestBody?: never;
|
|
44941
|
+
responses: {
|
|
44942
|
+
/** @description OK */
|
|
44943
|
+
200: {
|
|
44944
|
+
headers: {
|
|
44945
|
+
[name: string]: unknown;
|
|
44946
|
+
};
|
|
44947
|
+
content: {
|
|
44948
|
+
"application/json": components["schemas"]["Environment"][] | null;
|
|
44949
|
+
};
|
|
44950
|
+
};
|
|
44951
|
+
/** @description Error */
|
|
44952
|
+
default: {
|
|
44953
|
+
headers: {
|
|
44954
|
+
[name: string]: unknown;
|
|
44955
|
+
};
|
|
44956
|
+
content: {
|
|
44957
|
+
"application/json": components["schemas"]["Error"];
|
|
44958
|
+
};
|
|
44959
|
+
};
|
|
44960
|
+
};
|
|
44961
|
+
};
|
|
44897
44962
|
"list-user-external-auth": {
|
|
44898
44963
|
parameters: {
|
|
44899
44964
|
query?: never;
|