@parallelworks/client 7.100.0 → 7.101.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 +538 -110
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -5356,7 +5356,7 @@ export interface paths {
|
|
|
5356
5356
|
* Get organization billing settings
|
|
5357
5357
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
5358
5358
|
*
|
|
5359
|
-
* Returns the organization's effective billing settings, resolved from the flexible-allocation-system,
|
|
5359
|
+
* Returns the organization's effective billing settings, resolved from the flexible-allocation-system, allocation-start-date, and default-billing-username policies with defaults applied.
|
|
5360
5360
|
*/
|
|
5361
5361
|
get: operations["get-organization-billing-settings"];
|
|
5362
5362
|
put?: never;
|
|
@@ -7991,6 +7991,28 @@ export interface paths {
|
|
|
7991
7991
|
patch?: never;
|
|
7992
7992
|
trace?: never;
|
|
7993
7993
|
};
|
|
7994
|
+
"/api/organizations/{organization}/policies/allocation-start-date": {
|
|
7995
|
+
parameters: {
|
|
7996
|
+
query?: never;
|
|
7997
|
+
header?: never;
|
|
7998
|
+
path?: never;
|
|
7999
|
+
cookie?: never;
|
|
8000
|
+
};
|
|
8001
|
+
get?: never;
|
|
8002
|
+
put?: never;
|
|
8003
|
+
/**
|
|
8004
|
+
* Set organization policy: allocation-start-date
|
|
8005
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8006
|
+
*
|
|
8007
|
+
* Sets allocation-start-date policy for the organization as MM-DD. When unset, billing and reports calculate costs over all time.
|
|
8008
|
+
*/
|
|
8009
|
+
post: operations["set-organization-allocation-start-date-policy"];
|
|
8010
|
+
delete?: never;
|
|
8011
|
+
options?: never;
|
|
8012
|
+
head?: never;
|
|
8013
|
+
patch?: never;
|
|
8014
|
+
trace?: never;
|
|
8015
|
+
};
|
|
7994
8016
|
"/api/organizations/{organization}/policies/allow-public-sessions": {
|
|
7995
8017
|
parameters: {
|
|
7996
8018
|
query?: never;
|
|
@@ -8145,28 +8167,6 @@ export interface paths {
|
|
|
8145
8167
|
patch?: never;
|
|
8146
8168
|
trace?: never;
|
|
8147
8169
|
};
|
|
8148
|
-
"/api/organizations/{organization}/policies/fiscal-year-start-date": {
|
|
8149
|
-
parameters: {
|
|
8150
|
-
query?: never;
|
|
8151
|
-
header?: never;
|
|
8152
|
-
path?: never;
|
|
8153
|
-
cookie?: never;
|
|
8154
|
-
};
|
|
8155
|
-
get?: never;
|
|
8156
|
-
put?: never;
|
|
8157
|
-
/**
|
|
8158
|
-
* Set organization policy: fiscal-year-start-date
|
|
8159
|
-
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8160
|
-
*
|
|
8161
|
-
* Sets fiscal-year-start-date policy for the organization as MM-DD. When unset, billing and reports calculate costs over all time.
|
|
8162
|
-
*/
|
|
8163
|
-
post: operations["set-organization-fiscal-year-start-date-policy"];
|
|
8164
|
-
delete?: never;
|
|
8165
|
-
options?: never;
|
|
8166
|
-
head?: never;
|
|
8167
|
-
patch?: never;
|
|
8168
|
-
trace?: never;
|
|
8169
|
-
};
|
|
8170
8170
|
"/api/organizations/{organization}/policies/flexible-allocation-system": {
|
|
8171
8171
|
parameters: {
|
|
8172
8172
|
query?: never;
|
|
@@ -8360,7 +8360,7 @@ export interface paths {
|
|
|
8360
8360
|
* Get summarized costs for an allocation
|
|
8361
8361
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8362
8362
|
*
|
|
8363
|
-
* Returns rated usage and cloud costs for an allocation grouped by day and by type, subtype, user, or SKU for charting and reporting.
|
|
8363
|
+
* Returns rated usage and cloud costs for an allocation grouped by day and by type, subtype, user, or SKU for charting and reporting. Cloud rows without a user tag are attributed to the organization's default billing username, and live realtime estimates are included on request.
|
|
8364
8364
|
*/
|
|
8365
8365
|
get: operations["get-allocation-usage-events-summary"];
|
|
8366
8366
|
put?: never;
|
|
@@ -8382,7 +8382,7 @@ export interface paths {
|
|
|
8382
8382
|
* Get filter options for allocation costs
|
|
8383
8383
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8384
8384
|
*
|
|
8385
|
-
* Returns distinct type, subtype, user, and SKU values across the allocation's rated usage and cloud costs.
|
|
8385
|
+
* Returns distinct type, subtype, user, and SKU values across the allocation's rated usage and cloud costs, including live realtime estimates on request.
|
|
8386
8386
|
*/
|
|
8387
8387
|
get: operations["get-allocation-usage-events-filter-options"];
|
|
8388
8388
|
put?: never;
|
|
@@ -11280,6 +11280,84 @@ export interface paths {
|
|
|
11280
11280
|
patch?: never;
|
|
11281
11281
|
trace?: never;
|
|
11282
11282
|
};
|
|
11283
|
+
"/api/organizations/{organization}/users/{user}/kernels": {
|
|
11284
|
+
parameters: {
|
|
11285
|
+
query?: never;
|
|
11286
|
+
header?: never;
|
|
11287
|
+
path?: never;
|
|
11288
|
+
cookie?: never;
|
|
11289
|
+
};
|
|
11290
|
+
/**
|
|
11291
|
+
* List notebook kernels
|
|
11292
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11293
|
+
*
|
|
11294
|
+
* Returns the notebook kernels for the specified user.
|
|
11295
|
+
*/
|
|
11296
|
+
get: operations["list-kernels"];
|
|
11297
|
+
put?: never;
|
|
11298
|
+
/**
|
|
11299
|
+
* Create notebook kernel
|
|
11300
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11301
|
+
*
|
|
11302
|
+
* Starts a Jupyter kernel on a cluster or instance, scheduling a compute worker for it when needed.
|
|
11303
|
+
*/
|
|
11304
|
+
post: operations["create-kernel"];
|
|
11305
|
+
delete?: never;
|
|
11306
|
+
options?: never;
|
|
11307
|
+
head?: never;
|
|
11308
|
+
patch?: never;
|
|
11309
|
+
trace?: never;
|
|
11310
|
+
};
|
|
11311
|
+
"/api/organizations/{organization}/users/{user}/kernels/{kernel}": {
|
|
11312
|
+
parameters: {
|
|
11313
|
+
query?: never;
|
|
11314
|
+
header?: never;
|
|
11315
|
+
path?: never;
|
|
11316
|
+
cookie?: never;
|
|
11317
|
+
};
|
|
11318
|
+
/**
|
|
11319
|
+
* Get notebook kernel
|
|
11320
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11321
|
+
*
|
|
11322
|
+
* Returns a specific notebook kernel by ID.
|
|
11323
|
+
*/
|
|
11324
|
+
get: operations["get-kernel"];
|
|
11325
|
+
put?: never;
|
|
11326
|
+
post?: never;
|
|
11327
|
+
/**
|
|
11328
|
+
* Delete notebook kernel
|
|
11329
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11330
|
+
*
|
|
11331
|
+
* Stops a notebook kernel and the worker it scheduled.
|
|
11332
|
+
*/
|
|
11333
|
+
delete: operations["delete-kernel"];
|
|
11334
|
+
options?: never;
|
|
11335
|
+
head?: never;
|
|
11336
|
+
patch?: never;
|
|
11337
|
+
trace?: never;
|
|
11338
|
+
};
|
|
11339
|
+
"/api/organizations/{organization}/users/{user}/kernels/{kernel}/restart": {
|
|
11340
|
+
parameters: {
|
|
11341
|
+
query?: never;
|
|
11342
|
+
header?: never;
|
|
11343
|
+
path?: never;
|
|
11344
|
+
cookie?: never;
|
|
11345
|
+
};
|
|
11346
|
+
get?: never;
|
|
11347
|
+
put?: never;
|
|
11348
|
+
/**
|
|
11349
|
+
* Restart notebook kernel
|
|
11350
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
11351
|
+
*
|
|
11352
|
+
* Restarts the Jupyter server backing a notebook kernel.
|
|
11353
|
+
*/
|
|
11354
|
+
post: operations["restart-kernel"];
|
|
11355
|
+
delete?: never;
|
|
11356
|
+
options?: never;
|
|
11357
|
+
head?: never;
|
|
11358
|
+
patch?: never;
|
|
11359
|
+
trace?: never;
|
|
11360
|
+
};
|
|
11283
11361
|
"/api/organizations/{organization}/users/{user}/language": {
|
|
11284
11362
|
parameters: {
|
|
11285
11363
|
query?: never;
|
|
@@ -13080,6 +13158,28 @@ export interface paths {
|
|
|
13080
13158
|
patch?: never;
|
|
13081
13159
|
trace?: never;
|
|
13082
13160
|
};
|
|
13161
|
+
"/api/platform/policies/allocation-start-date": {
|
|
13162
|
+
parameters: {
|
|
13163
|
+
query?: never;
|
|
13164
|
+
header?: never;
|
|
13165
|
+
path?: never;
|
|
13166
|
+
cookie?: never;
|
|
13167
|
+
};
|
|
13168
|
+
get?: never;
|
|
13169
|
+
put?: never;
|
|
13170
|
+
/**
|
|
13171
|
+
* Set platform policy: allocation-start-date
|
|
13172
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
13173
|
+
*
|
|
13174
|
+
* Sets the allocation-start-date policy for the platform as MM-DD. When unset, billing and reports calculate costs over all time.
|
|
13175
|
+
*/
|
|
13176
|
+
post: operations["set-platform-allocation-start-date-policy"];
|
|
13177
|
+
delete?: never;
|
|
13178
|
+
options?: never;
|
|
13179
|
+
head?: never;
|
|
13180
|
+
patch?: never;
|
|
13181
|
+
trace?: never;
|
|
13182
|
+
};
|
|
13083
13183
|
"/api/platform/policies/allow-public-sessions": {
|
|
13084
13184
|
parameters: {
|
|
13085
13185
|
query?: never;
|
|
@@ -13234,28 +13334,6 @@ export interface paths {
|
|
|
13234
13334
|
patch?: never;
|
|
13235
13335
|
trace?: never;
|
|
13236
13336
|
};
|
|
13237
|
-
"/api/platform/policies/fiscal-year-start-date": {
|
|
13238
|
-
parameters: {
|
|
13239
|
-
query?: never;
|
|
13240
|
-
header?: never;
|
|
13241
|
-
path?: never;
|
|
13242
|
-
cookie?: never;
|
|
13243
|
-
};
|
|
13244
|
-
get?: never;
|
|
13245
|
-
put?: never;
|
|
13246
|
-
/**
|
|
13247
|
-
* Set platform policy: fiscal-year-start-date
|
|
13248
|
-
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
13249
|
-
*
|
|
13250
|
-
* Sets the fiscal-year-start-date policy for the platform as MM-DD. When unset, billing and reports calculate costs over all time.
|
|
13251
|
-
*/
|
|
13252
|
-
post: operations["set-platform-fiscal-year-start-date-policy"];
|
|
13253
|
-
delete?: never;
|
|
13254
|
-
options?: never;
|
|
13255
|
-
head?: never;
|
|
13256
|
-
patch?: never;
|
|
13257
|
-
trace?: never;
|
|
13258
|
-
};
|
|
13259
13337
|
"/api/platform/policies/flexible-allocation-system": {
|
|
13260
13338
|
parameters: {
|
|
13261
13339
|
query?: never;
|
|
@@ -14755,7 +14833,7 @@ export interface paths {
|
|
|
14755
14833
|
* Delete user thumbnail
|
|
14756
14834
|
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
14757
14835
|
*
|
|
14758
|
-
* Removes an image from the authenticated user's thumbnail library
|
|
14836
|
+
* Removes an image from the authenticated user's thumbnail library and detaches it from the owner's resources that use it. Platform and organization admins may remove other users' thumbnails.
|
|
14759
14837
|
*/
|
|
14760
14838
|
delete: operations["delete-user-thumbnail"];
|
|
14761
14839
|
options?: never;
|
|
@@ -16073,6 +16151,8 @@ export interface components {
|
|
|
16073
16151
|
refreshInterval?: string;
|
|
16074
16152
|
/** @description AI provider region (for managed providers) */
|
|
16075
16153
|
region?: string;
|
|
16154
|
+
/** @description Resource group the provider bills against */
|
|
16155
|
+
resourceGroup?: string;
|
|
16076
16156
|
/** @description Current status of the AI provider */
|
|
16077
16157
|
status: string;
|
|
16078
16158
|
/** @description Whether the provider endpoint supports the OpenAI Responses API */
|
|
@@ -16096,7 +16176,7 @@ export interface components {
|
|
|
16096
16176
|
displayName?: string;
|
|
16097
16177
|
/** @description Billing group the provider is provisioned under (managed providers) */
|
|
16098
16178
|
group?: string;
|
|
16099
|
-
/** @description Whether the provider's billing
|
|
16179
|
+
/** @description Whether the provider's billing target is over its allocation and blocks new usage */
|
|
16100
16180
|
groupBlocked?: boolean;
|
|
16101
16181
|
/** @description Whether the tunnel's remote destination is reachable (tunnel providers only). */
|
|
16102
16182
|
healthy?: boolean;
|
|
@@ -16110,6 +16190,8 @@ export interface components {
|
|
|
16110
16190
|
name: string;
|
|
16111
16191
|
/** @description AI provider region */
|
|
16112
16192
|
region: string | null;
|
|
16193
|
+
/** @description Resource group the provider bills against */
|
|
16194
|
+
resourceGroup?: string;
|
|
16113
16195
|
/** @description Current status of the AI provider */
|
|
16114
16196
|
status: string;
|
|
16115
16197
|
/** @description The provider is blocked by platform catalog policy until a platform administrator maps or re-enables its integration */
|
|
@@ -16166,6 +16248,8 @@ export interface components {
|
|
|
16166
16248
|
* @description Number of resource groups currently billing this allocation
|
|
16167
16249
|
*/
|
|
16168
16250
|
readonly resourceGroups?: number;
|
|
16251
|
+
/** @description Highest organization allocation threshold this allocation has crossed */
|
|
16252
|
+
readonly threshold?: components["schemas"]["CrossedThreshold"];
|
|
16169
16253
|
/**
|
|
16170
16254
|
* Format: double
|
|
16171
16255
|
* @description Total allocation amount
|
|
@@ -16178,6 +16262,13 @@ export interface components {
|
|
|
16178
16262
|
type?: "managed" | "custom";
|
|
16179
16263
|
/** @description Unit of measurement */
|
|
16180
16264
|
unit: string;
|
|
16265
|
+
/**
|
|
16266
|
+
* @description Why new resources cannot bill this allocation: no budget set, or a freeze/shutdown threshold crossed
|
|
16267
|
+
* @enum {string}
|
|
16268
|
+
*/
|
|
16269
|
+
readonly unusableReason?: "no-budget" | "over-threshold";
|
|
16270
|
+
/** @description Whether new resources can bill this allocation right now */
|
|
16271
|
+
readonly usable?: boolean;
|
|
16181
16272
|
/**
|
|
16182
16273
|
* Format: double
|
|
16183
16274
|
* @description Amount used
|
|
@@ -16418,6 +16509,11 @@ export interface components {
|
|
|
16418
16509
|
AuthSession: {
|
|
16419
16510
|
/** @description Indicates if the user is an admin. */
|
|
16420
16511
|
admin: boolean;
|
|
16512
|
+
/**
|
|
16513
|
+
* @description Allocation accounting system the user's organization bills through, resolved from the flexible-allocation-system policy.
|
|
16514
|
+
* @enum {string}
|
|
16515
|
+
*/
|
|
16516
|
+
allocationSystem: "legacy" | "flexible";
|
|
16421
16517
|
/** @description Cache-buster etag for the user's avatar; empty when no custom avatar is set. */
|
|
16422
16518
|
avatarEtag?: string;
|
|
16423
16519
|
/** @description Indicates if the user is a platform billing admin with read-only access to billing data and the admin cloud resource inventory across all organizations. */
|
|
@@ -17933,6 +18029,8 @@ export interface components {
|
|
|
17933
18029
|
namespace: string;
|
|
17934
18030
|
/** @description Region where the bucket is located */
|
|
17935
18031
|
region: string;
|
|
18032
|
+
/** @description Name of the resource group the bucket bills against. */
|
|
18033
|
+
resourceGroup?: string;
|
|
17936
18034
|
/** @description Indicates if the bucket is sessionless */
|
|
17937
18035
|
sessionless: boolean;
|
|
17938
18036
|
/** @description List of groups with whom the bucket is shared */
|
|
@@ -19765,6 +19863,22 @@ export interface components {
|
|
|
19765
19863
|
/** @description Name of the snapshot */
|
|
19766
19864
|
snapshotName: string;
|
|
19767
19865
|
};
|
|
19866
|
+
CreateKernelBody: {
|
|
19867
|
+
/** @description IDs of buckets the kernel's code may read. Scoped credentials are minted into the kernel's environment on every start. */
|
|
19868
|
+
buckets?: string[] | null;
|
|
19869
|
+
/** @description Environment to schedule the kernel's worker onto. Cluster targets only. */
|
|
19870
|
+
environmentId?: string;
|
|
19871
|
+
/** @description Kernel name. Auto-generated if omitted. */
|
|
19872
|
+
name?: string;
|
|
19873
|
+
/** @description Scheduling parameters for the kernel's worker. */
|
|
19874
|
+
schedulingParams?: {
|
|
19875
|
+
[key: string]: unknown;
|
|
19876
|
+
};
|
|
19877
|
+
/** @description Cluster or instance the kernel runs on. */
|
|
19878
|
+
targetId: string;
|
|
19879
|
+
/** @description Run the kernel on this existing compute worker instead of scheduling a new one. */
|
|
19880
|
+
workerId?: string;
|
|
19881
|
+
};
|
|
19768
19882
|
CreateManagedClusterInputBody: {
|
|
19769
19883
|
/**
|
|
19770
19884
|
* @description Description of the cluster
|
|
@@ -20047,6 +20161,8 @@ export interface components {
|
|
|
20047
20161
|
who?: string;
|
|
20048
20162
|
};
|
|
20049
20163
|
CreateReservationBody: {
|
|
20164
|
+
/** @description Name of the allocation the reservation bills under the flexible allocation system. Required unless group is set. */
|
|
20165
|
+
allocation?: string;
|
|
20050
20166
|
/**
|
|
20051
20167
|
* @description Cloud service provider that issued the reservation.
|
|
20052
20168
|
* @enum {string}
|
|
@@ -20054,8 +20170,8 @@ export interface components {
|
|
|
20054
20170
|
csp: "aws" | "azure" | "google";
|
|
20055
20171
|
/** @description Reservation description. */
|
|
20056
20172
|
description?: string;
|
|
20057
|
-
/** @description Name of the group that can use this reservation. */
|
|
20058
|
-
group
|
|
20173
|
+
/** @description Name of the group that can use this reservation. Required unless allocation is set. */
|
|
20174
|
+
group?: string;
|
|
20059
20175
|
/**
|
|
20060
20176
|
* @description Cloud service provider reservation identifier.
|
|
20061
20177
|
* @example cr-06446c09dd127e7b0
|
|
@@ -20343,6 +20459,21 @@ export interface components {
|
|
|
20343
20459
|
*/
|
|
20344
20460
|
updated: string | null;
|
|
20345
20461
|
};
|
|
20462
|
+
CrossedThreshold: {
|
|
20463
|
+
/**
|
|
20464
|
+
* @description Actions the organization configured for this threshold
|
|
20465
|
+
* @example [
|
|
20466
|
+
* "freeze"
|
|
20467
|
+
* ]
|
|
20468
|
+
*/
|
|
20469
|
+
actions: string[] | null;
|
|
20470
|
+
/**
|
|
20471
|
+
* Format: double
|
|
20472
|
+
* @description Usage percent of the crossed threshold
|
|
20473
|
+
* @example 80
|
|
20474
|
+
*/
|
|
20475
|
+
threshold: number;
|
|
20476
|
+
};
|
|
20346
20477
|
CustomResourceTag: {
|
|
20347
20478
|
/**
|
|
20348
20479
|
* @description Tag key applied to provisioned cloud resources
|
|
@@ -20635,6 +20766,8 @@ export interface components {
|
|
|
20635
20766
|
network?: string;
|
|
20636
20767
|
/** @description Region of the disk */
|
|
20637
20768
|
region?: string;
|
|
20769
|
+
/** @description Name of the resource group the disk bills against. */
|
|
20770
|
+
resourceGroup?: string;
|
|
20638
20771
|
/**
|
|
20639
20772
|
* Format: int64
|
|
20640
20773
|
* @description Size of the disk in GiB
|
|
@@ -21269,7 +21402,7 @@ export interface components {
|
|
|
21269
21402
|
*/
|
|
21270
21403
|
requestedNodes: number;
|
|
21271
21404
|
/**
|
|
21272
|
-
* @description The resource group the cluster's usage bills against.
|
|
21405
|
+
* @description The resource group the cluster's usage bills against.
|
|
21273
21406
|
* @example my-resource-group
|
|
21274
21407
|
*/
|
|
21275
21408
|
resourceGroup?: string;
|
|
@@ -22821,6 +22954,45 @@ export interface components {
|
|
|
22821
22954
|
/** @description List of keys used for JWT verification */
|
|
22822
22955
|
keys: components["schemas"]["JWK"][] | null;
|
|
22823
22956
|
};
|
|
22957
|
+
KernelResponse: {
|
|
22958
|
+
/** @description IDs of buckets whose credentials are injected into the kernel. */
|
|
22959
|
+
buckets?: string[] | null;
|
|
22960
|
+
/**
|
|
22961
|
+
* Format: date-time
|
|
22962
|
+
* @description Creation time.
|
|
22963
|
+
*/
|
|
22964
|
+
readonly createdAt?: string;
|
|
22965
|
+
/** @description ID of the environment the kernel's worker was scheduled onto. */
|
|
22966
|
+
environmentId?: string;
|
|
22967
|
+
/** @description Why the kernel failed to start. */
|
|
22968
|
+
readonly errorMessage?: string;
|
|
22969
|
+
/** @description Kernel ID. */
|
|
22970
|
+
readonly id: string;
|
|
22971
|
+
/** @description Kernel name. */
|
|
22972
|
+
name?: string;
|
|
22973
|
+
/** @description Hostname of the compute node the kernel runs on. */
|
|
22974
|
+
readonly nodeHostname?: string;
|
|
22975
|
+
/** @description Scheduling parameters used for the kernel's worker. */
|
|
22976
|
+
schedulingParams?: {
|
|
22977
|
+
[key: string]: unknown;
|
|
22978
|
+
};
|
|
22979
|
+
/**
|
|
22980
|
+
* @description Kernel status.
|
|
22981
|
+
* @enum {string}
|
|
22982
|
+
*/
|
|
22983
|
+
readonly status?: "pending" | "queued" | "starting" | "running" | "stopping" | "stopped" | "error";
|
|
22984
|
+
/** @description ID of the cluster or instance the kernel runs on. */
|
|
22985
|
+
targetId?: string;
|
|
22986
|
+
/**
|
|
22987
|
+
* @description Compute the kernel runs on.
|
|
22988
|
+
* @enum {string}
|
|
22989
|
+
*/
|
|
22990
|
+
readonly targetType?: "cluster" | "instance";
|
|
22991
|
+
/** @description Base path the kernel's Jupyter server is served at. */
|
|
22992
|
+
readonly url: string;
|
|
22993
|
+
/** @description ID of the compute worker running the kernel. */
|
|
22994
|
+
readonly workerId?: string;
|
|
22995
|
+
};
|
|
22824
22996
|
KubernetesChartsBody: {
|
|
22825
22997
|
/** @description List of Helm charts across all clusters */
|
|
22826
22998
|
charts: components["schemas"]["HelmChart"][] | null;
|
|
@@ -23643,6 +23815,8 @@ export interface components {
|
|
|
23643
23815
|
performance?: number;
|
|
23644
23816
|
/** @description Region of the Lustre */
|
|
23645
23817
|
region?: string;
|
|
23818
|
+
/** @description Name of the resource group the Lustre bills against. */
|
|
23819
|
+
resourceGroup?: string;
|
|
23646
23820
|
/** @description Indicates if the Lustre is sessionless */
|
|
23647
23821
|
sessionless: boolean;
|
|
23648
23822
|
/** @description List of groups with whom the Lustre is shared */
|
|
@@ -24708,6 +24882,8 @@ export interface components {
|
|
|
24708
24882
|
namespace: string;
|
|
24709
24883
|
/** @description Region of the NFS */
|
|
24710
24884
|
region?: string;
|
|
24885
|
+
/** @description Name of the resource group the NFS bills against. */
|
|
24886
|
+
resourceGroup?: string;
|
|
24711
24887
|
/** @description Indicates if the NFS is sessionless */
|
|
24712
24888
|
sessionless: boolean;
|
|
24713
24889
|
/** @description List of groups with whom the NFS is shared */
|
|
@@ -25568,6 +25744,11 @@ export interface components {
|
|
|
25568
25744
|
threshold: number;
|
|
25569
25745
|
};
|
|
25570
25746
|
OrgBillingSettings: {
|
|
25747
|
+
/**
|
|
25748
|
+
* @description Recurring allocation start date as MM-DD. Empty when unset.
|
|
25749
|
+
* @example 10-01
|
|
25750
|
+
*/
|
|
25751
|
+
allocationStartDate: string;
|
|
25571
25752
|
/**
|
|
25572
25753
|
* @description Allocation accounting system the organization uses. Legacy is the default.
|
|
25573
25754
|
* @enum {string}
|
|
@@ -25575,11 +25756,6 @@ export interface components {
|
|
|
25575
25756
|
allocationSystem: "legacy" | "flexible";
|
|
25576
25757
|
/** @description Username shown on dashboards and reports for cost records without a username tag. Empty when unset. */
|
|
25577
25758
|
defaultBillingUsername: string;
|
|
25578
|
-
/**
|
|
25579
|
-
* @description Recurring fiscal year start date as MM-DD. Empty when unset.
|
|
25580
|
-
* @example 10-01
|
|
25581
|
-
*/
|
|
25582
|
-
fiscalYearStartDate: string;
|
|
25583
25759
|
};
|
|
25584
25760
|
OrgConnectionPermissionsOutputBody: {
|
|
25585
25761
|
groups: string[] | null;
|
|
@@ -28443,6 +28619,8 @@ export interface components {
|
|
|
28443
28619
|
mounts: components["schemas"]["WorkspaceMountStatus"][] | null;
|
|
28444
28620
|
};
|
|
28445
28621
|
ReservationItem: {
|
|
28622
|
+
/** @description Name of the allocation the reservation bills under the flexible allocation system */
|
|
28623
|
+
allocation?: string;
|
|
28446
28624
|
/**
|
|
28447
28625
|
* @description Cloud service provider
|
|
28448
28626
|
* @enum {string}
|
|
@@ -28450,7 +28628,7 @@ export interface components {
|
|
|
28450
28628
|
csp: "aws" | "azure" | "google";
|
|
28451
28629
|
/** @description Reservation description */
|
|
28452
28630
|
description?: string;
|
|
28453
|
-
/** @description Name of the group that can use this reservation */
|
|
28631
|
+
/** @description Name of the group that can use this reservation under the legacy allocation system; empty for allocation-only reservations */
|
|
28454
28632
|
group: string;
|
|
28455
28633
|
/** @description Cloud service provider reservation identifier */
|
|
28456
28634
|
id: string;
|
|
@@ -28674,6 +28852,29 @@ export interface components {
|
|
|
28674
28852
|
readonly activeResourceCount?: number;
|
|
28675
28853
|
/** @description Current allocation name */
|
|
28676
28854
|
allocation: string | null;
|
|
28855
|
+
/** @description Whether the current allocation is rated in USD; cloud resources need a USD-rated allocation */
|
|
28856
|
+
readonly allocationRatedInUsd?: boolean;
|
|
28857
|
+
/** @description Highest organization allocation threshold the current allocation has crossed */
|
|
28858
|
+
readonly allocationThreshold?: components["schemas"]["CrossedThreshold"];
|
|
28859
|
+
/**
|
|
28860
|
+
* Format: double
|
|
28861
|
+
* @description Budget total of the current allocation
|
|
28862
|
+
*/
|
|
28863
|
+
readonly allocationTotal?: number;
|
|
28864
|
+
/** @description Unit the current allocation is denominated in */
|
|
28865
|
+
readonly allocationUnit?: string;
|
|
28866
|
+
/**
|
|
28867
|
+
* @description Why the current allocation refuses new resource usage
|
|
28868
|
+
* @enum {string}
|
|
28869
|
+
*/
|
|
28870
|
+
readonly allocationUnusableReason?: "no-budget" | "over-threshold";
|
|
28871
|
+
/** @description False when the current allocation refuses new resource usage */
|
|
28872
|
+
readonly allocationUsable?: boolean;
|
|
28873
|
+
/**
|
|
28874
|
+
* Format: double
|
|
28875
|
+
* @description Amount used of the current allocation (includes billing estimates)
|
|
28876
|
+
*/
|
|
28877
|
+
readonly allocationUsed?: number;
|
|
28677
28878
|
/**
|
|
28678
28879
|
* Format: int64
|
|
28679
28880
|
* @description Number of assigned resources in a failed state
|
|
@@ -28703,6 +28904,10 @@ export interface components {
|
|
|
28703
28904
|
readonly allocationAllowed?: string[] | null;
|
|
28704
28905
|
/** @description Previous allocations of this resource group, oldest first */
|
|
28705
28906
|
readonly allocationHistory?: components["schemas"]["AllocationHistoryEntry"][] | null;
|
|
28907
|
+
/** @description Whether the current allocation is rated in USD; cloud resources need a USD-rated allocation */
|
|
28908
|
+
readonly allocationRatedInUsd?: boolean;
|
|
28909
|
+
/** @description Highest organization allocation threshold the current allocation has crossed */
|
|
28910
|
+
readonly allocationThreshold?: components["schemas"]["CrossedThreshold"];
|
|
28706
28911
|
/**
|
|
28707
28912
|
* Format: double
|
|
28708
28913
|
* @description Budget total of the current allocation
|
|
@@ -28710,6 +28915,13 @@ export interface components {
|
|
|
28710
28915
|
readonly allocationTotal?: number;
|
|
28711
28916
|
/** @description Unit the current allocation is denominated in */
|
|
28712
28917
|
readonly allocationUnit?: string;
|
|
28918
|
+
/**
|
|
28919
|
+
* @description Why the current allocation refuses new resource usage
|
|
28920
|
+
* @enum {string}
|
|
28921
|
+
*/
|
|
28922
|
+
readonly allocationUnusableReason?: "no-budget" | "over-threshold";
|
|
28923
|
+
/** @description False when the current allocation refuses new resource usage */
|
|
28924
|
+
readonly allocationUsable?: boolean;
|
|
28713
28925
|
/**
|
|
28714
28926
|
* Format: double
|
|
28715
28927
|
* @description Amount used of the current allocation (includes billing estimates)
|
|
@@ -29773,6 +29985,8 @@ export interface components {
|
|
|
29773
29985
|
permissions?: components["schemas"]["StoragePermissions"];
|
|
29774
29986
|
/** @description Region the storage is in. */
|
|
29775
29987
|
region?: string;
|
|
29988
|
+
/** @description Name of the resource group the storage bills against. */
|
|
29989
|
+
resourceGroup?: string;
|
|
29776
29990
|
/** @description Whether the storage is sessionless. */
|
|
29777
29991
|
sessionless: boolean;
|
|
29778
29992
|
/**
|
|
@@ -29846,6 +30060,8 @@ export interface components {
|
|
|
29846
30060
|
permissions?: components["schemas"]["StoragePermissions"];
|
|
29847
30061
|
/** @description Region the storage is in. */
|
|
29848
30062
|
region?: string;
|
|
30063
|
+
/** @description Name of the resource group the storage bills against. */
|
|
30064
|
+
resourceGroup?: string;
|
|
29849
30065
|
/** @description Whether the storage is sessionless. */
|
|
29850
30066
|
sessionless: boolean;
|
|
29851
30067
|
/**
|
|
@@ -30652,9 +30868,11 @@ export interface components {
|
|
|
30652
30868
|
who?: string;
|
|
30653
30869
|
};
|
|
30654
30870
|
UpdateReservationBody: {
|
|
30871
|
+
/** @description Name of the allocation the reservation bills under the flexible allocation system. The group follows the allocation's mapping unless also set. */
|
|
30872
|
+
allocation?: string;
|
|
30655
30873
|
/** @description Reservation description. */
|
|
30656
30874
|
description?: string;
|
|
30657
|
-
/** @description Name of the group that can use this reservation. */
|
|
30875
|
+
/** @description Name of the group that can use this reservation. The allocation follows the group's mapping unless also set. */
|
|
30658
30876
|
group?: string;
|
|
30659
30877
|
/** @description New reservation identifier. Renames the reservation when it differs from the current one. */
|
|
30660
30878
|
id?: string;
|
|
@@ -31052,14 +31270,22 @@ export interface components {
|
|
|
31052
31270
|
* @description When the blob was first uploaded.
|
|
31053
31271
|
*/
|
|
31054
31272
|
uploadedAt: string;
|
|
31055
|
-
/** @description
|
|
31056
|
-
usedBy:
|
|
31273
|
+
/** @description Resources currently using this thumbnail. */
|
|
31274
|
+
usedBy: components["schemas"]["UserThumbnailUsage"][] | null;
|
|
31057
31275
|
/**
|
|
31058
31276
|
* Format: int64
|
|
31059
31277
|
* @description Number of resources currently using this thumbnail.
|
|
31060
31278
|
*/
|
|
31061
31279
|
usedCount: number;
|
|
31062
31280
|
};
|
|
31281
|
+
UserThumbnailUsage: {
|
|
31282
|
+
/** @description True when deleting the thumbnail clears the icon from this resource. */
|
|
31283
|
+
detachable: boolean;
|
|
31284
|
+
/** @description Display name of the resource. */
|
|
31285
|
+
name: string;
|
|
31286
|
+
/** @description Resource type identifier: workflow, managedCluster, infrastructure, compute, storage, pool, marketplaceItem, session, aiCatalog, or organization. */
|
|
31287
|
+
resourceType: string;
|
|
31288
|
+
};
|
|
31063
31289
|
UserWorkspace: {
|
|
31064
31290
|
/**
|
|
31065
31291
|
* @description whether this user workspace is currently in use by the user. If switching between docker and k8s, then there will be one workspace for each, and one will be active at a time.
|
|
@@ -31638,6 +31864,23 @@ export interface components {
|
|
|
31638
31864
|
k8sMounts?: string[] | null;
|
|
31639
31865
|
mounts?: string[] | null;
|
|
31640
31866
|
};
|
|
31867
|
+
WorkspaceHomeStorage: {
|
|
31868
|
+
/**
|
|
31869
|
+
* Format: int64
|
|
31870
|
+
* @description Space available to the user on the home filesystem in bytes.
|
|
31871
|
+
*/
|
|
31872
|
+
available: number;
|
|
31873
|
+
/**
|
|
31874
|
+
* Format: int64
|
|
31875
|
+
* @description Total size of the home filesystem in bytes.
|
|
31876
|
+
*/
|
|
31877
|
+
size: number;
|
|
31878
|
+
/**
|
|
31879
|
+
* Format: int64
|
|
31880
|
+
* @description Used space on the home filesystem in bytes.
|
|
31881
|
+
*/
|
|
31882
|
+
used: number;
|
|
31883
|
+
};
|
|
31641
31884
|
WorkspaceMount: {
|
|
31642
31885
|
clusterPath: string;
|
|
31643
31886
|
workspacePath: string;
|
|
@@ -31668,6 +31911,8 @@ export interface components {
|
|
|
31668
31911
|
};
|
|
31669
31912
|
WorkspaceStatus: {
|
|
31670
31913
|
details?: string;
|
|
31914
|
+
/** @description Home directory usage. Absent unless the workspace is running and able to report it. */
|
|
31915
|
+
homeStorage?: components["schemas"]["WorkspaceHomeStorage"];
|
|
31671
31916
|
status: string;
|
|
31672
31917
|
};
|
|
31673
31918
|
};
|
|
@@ -47224,7 +47469,7 @@ export interface operations {
|
|
|
47224
47469
|
};
|
|
47225
47470
|
};
|
|
47226
47471
|
};
|
|
47227
|
-
"set-organization-
|
|
47472
|
+
"set-organization-allocation-start-date-policy": {
|
|
47228
47473
|
parameters: {
|
|
47229
47474
|
query?: never;
|
|
47230
47475
|
header?: never;
|
|
@@ -47236,7 +47481,7 @@ export interface operations {
|
|
|
47236
47481
|
};
|
|
47237
47482
|
requestBody: {
|
|
47238
47483
|
content: {
|
|
47239
|
-
"application/json":
|
|
47484
|
+
"application/json": string;
|
|
47240
47485
|
};
|
|
47241
47486
|
};
|
|
47242
47487
|
responses: {
|
|
@@ -47247,7 +47492,7 @@ export interface operations {
|
|
|
47247
47492
|
};
|
|
47248
47493
|
content: {
|
|
47249
47494
|
"application/json": {
|
|
47250
|
-
[key: string]: components["schemas"]["
|
|
47495
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
47251
47496
|
};
|
|
47252
47497
|
};
|
|
47253
47498
|
};
|
|
@@ -47262,7 +47507,7 @@ export interface operations {
|
|
|
47262
47507
|
};
|
|
47263
47508
|
};
|
|
47264
47509
|
};
|
|
47265
|
-
"set-organization-
|
|
47510
|
+
"set-organization-allow-public-sessions-policy": {
|
|
47266
47511
|
parameters: {
|
|
47267
47512
|
query?: never;
|
|
47268
47513
|
header?: never;
|
|
@@ -47274,7 +47519,7 @@ export interface operations {
|
|
|
47274
47519
|
};
|
|
47275
47520
|
requestBody: {
|
|
47276
47521
|
content: {
|
|
47277
|
-
"application/json":
|
|
47522
|
+
"application/json": boolean;
|
|
47278
47523
|
};
|
|
47279
47524
|
};
|
|
47280
47525
|
responses: {
|
|
@@ -47285,7 +47530,7 @@ export interface operations {
|
|
|
47285
47530
|
};
|
|
47286
47531
|
content: {
|
|
47287
47532
|
"application/json": {
|
|
47288
|
-
[key: string]: components["schemas"]["
|
|
47533
|
+
[key: string]: components["schemas"]["BooleanPolicyOutput"];
|
|
47289
47534
|
};
|
|
47290
47535
|
};
|
|
47291
47536
|
};
|
|
@@ -47300,7 +47545,7 @@ export interface operations {
|
|
|
47300
47545
|
};
|
|
47301
47546
|
};
|
|
47302
47547
|
};
|
|
47303
|
-
"set-organization-
|
|
47548
|
+
"set-organization-archive-cost-data-policy": {
|
|
47304
47549
|
parameters: {
|
|
47305
47550
|
query?: never;
|
|
47306
47551
|
header?: never;
|
|
@@ -47312,7 +47557,7 @@ export interface operations {
|
|
|
47312
47557
|
};
|
|
47313
47558
|
requestBody: {
|
|
47314
47559
|
content: {
|
|
47315
|
-
"application/json":
|
|
47560
|
+
"application/json": number;
|
|
47316
47561
|
};
|
|
47317
47562
|
};
|
|
47318
47563
|
responses: {
|
|
@@ -47323,7 +47568,7 @@ export interface operations {
|
|
|
47323
47568
|
};
|
|
47324
47569
|
content: {
|
|
47325
47570
|
"application/json": {
|
|
47326
|
-
[key: string]: components["schemas"]["
|
|
47571
|
+
[key: string]: components["schemas"]["IntPolicyOutput"];
|
|
47327
47572
|
};
|
|
47328
47573
|
};
|
|
47329
47574
|
};
|
|
@@ -47338,7 +47583,7 @@ export interface operations {
|
|
|
47338
47583
|
};
|
|
47339
47584
|
};
|
|
47340
47585
|
};
|
|
47341
|
-
"set-organization-
|
|
47586
|
+
"set-organization-default-billing-username-policy": {
|
|
47342
47587
|
parameters: {
|
|
47343
47588
|
query?: never;
|
|
47344
47589
|
header?: never;
|
|
@@ -47350,7 +47595,7 @@ export interface operations {
|
|
|
47350
47595
|
};
|
|
47351
47596
|
requestBody: {
|
|
47352
47597
|
content: {
|
|
47353
|
-
"application/json":
|
|
47598
|
+
"application/json": string;
|
|
47354
47599
|
};
|
|
47355
47600
|
};
|
|
47356
47601
|
responses: {
|
|
@@ -47361,7 +47606,7 @@ export interface operations {
|
|
|
47361
47606
|
};
|
|
47362
47607
|
content: {
|
|
47363
47608
|
"application/json": {
|
|
47364
|
-
[key: string]: components["schemas"]["
|
|
47609
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
47365
47610
|
};
|
|
47366
47611
|
};
|
|
47367
47612
|
};
|
|
@@ -47376,7 +47621,7 @@ export interface operations {
|
|
|
47376
47621
|
};
|
|
47377
47622
|
};
|
|
47378
47623
|
};
|
|
47379
|
-
"set-organization-
|
|
47624
|
+
"set-organization-disable-password-login-policy": {
|
|
47380
47625
|
parameters: {
|
|
47381
47626
|
query?: never;
|
|
47382
47627
|
header?: never;
|
|
@@ -47399,7 +47644,7 @@ export interface operations {
|
|
|
47399
47644
|
};
|
|
47400
47645
|
content: {
|
|
47401
47646
|
"application/json": {
|
|
47402
|
-
[key: string]: components["schemas"]["
|
|
47647
|
+
[key: string]: components["schemas"]["BooleanPolicyOutput"];
|
|
47403
47648
|
};
|
|
47404
47649
|
};
|
|
47405
47650
|
};
|
|
@@ -47414,7 +47659,7 @@ export interface operations {
|
|
|
47414
47659
|
};
|
|
47415
47660
|
};
|
|
47416
47661
|
};
|
|
47417
|
-
"set-organization-enforce-
|
|
47662
|
+
"set-organization-enforce-mfa-policy": {
|
|
47418
47663
|
parameters: {
|
|
47419
47664
|
query?: never;
|
|
47420
47665
|
header?: never;
|
|
@@ -47426,7 +47671,7 @@ export interface operations {
|
|
|
47426
47671
|
};
|
|
47427
47672
|
requestBody: {
|
|
47428
47673
|
content: {
|
|
47429
|
-
"application/json":
|
|
47674
|
+
"application/json": boolean;
|
|
47430
47675
|
};
|
|
47431
47676
|
};
|
|
47432
47677
|
responses: {
|
|
@@ -47437,7 +47682,7 @@ export interface operations {
|
|
|
47437
47682
|
};
|
|
47438
47683
|
content: {
|
|
47439
47684
|
"application/json": {
|
|
47440
|
-
[key: string]: components["schemas"]["
|
|
47685
|
+
[key: string]: components["schemas"]["Policy"];
|
|
47441
47686
|
};
|
|
47442
47687
|
};
|
|
47443
47688
|
};
|
|
@@ -47452,7 +47697,7 @@ export interface operations {
|
|
|
47452
47697
|
};
|
|
47453
47698
|
};
|
|
47454
47699
|
};
|
|
47455
|
-
"set-organization-
|
|
47700
|
+
"set-organization-enforce-webauthn-mfa-policy": {
|
|
47456
47701
|
parameters: {
|
|
47457
47702
|
query?: never;
|
|
47458
47703
|
header?: never;
|
|
@@ -47464,7 +47709,7 @@ export interface operations {
|
|
|
47464
47709
|
};
|
|
47465
47710
|
requestBody: {
|
|
47466
47711
|
content: {
|
|
47467
|
-
"application/json":
|
|
47712
|
+
"application/json": "hardware" | "fips";
|
|
47468
47713
|
};
|
|
47469
47714
|
};
|
|
47470
47715
|
responses: {
|
|
@@ -47475,7 +47720,7 @@ export interface operations {
|
|
|
47475
47720
|
};
|
|
47476
47721
|
content: {
|
|
47477
47722
|
"application/json": {
|
|
47478
|
-
[key: string]: components["schemas"]["
|
|
47723
|
+
[key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
|
|
47479
47724
|
};
|
|
47480
47725
|
};
|
|
47481
47726
|
};
|
|
@@ -47490,7 +47735,7 @@ export interface operations {
|
|
|
47490
47735
|
};
|
|
47491
47736
|
};
|
|
47492
47737
|
};
|
|
47493
|
-
"set-organization-
|
|
47738
|
+
"set-organization-event-retention-days-policy": {
|
|
47494
47739
|
parameters: {
|
|
47495
47740
|
query?: never;
|
|
47496
47741
|
header?: never;
|
|
@@ -47502,7 +47747,7 @@ export interface operations {
|
|
|
47502
47747
|
};
|
|
47503
47748
|
requestBody: {
|
|
47504
47749
|
content: {
|
|
47505
|
-
"application/json":
|
|
47750
|
+
"application/json": number;
|
|
47506
47751
|
};
|
|
47507
47752
|
};
|
|
47508
47753
|
responses: {
|
|
@@ -47513,7 +47758,7 @@ export interface operations {
|
|
|
47513
47758
|
};
|
|
47514
47759
|
content: {
|
|
47515
47760
|
"application/json": {
|
|
47516
|
-
[key: string]: components["schemas"]["
|
|
47761
|
+
[key: string]: components["schemas"]["IntPolicyOutput"];
|
|
47517
47762
|
};
|
|
47518
47763
|
};
|
|
47519
47764
|
};
|
|
@@ -47869,8 +48114,10 @@ export interface operations {
|
|
|
47869
48114
|
user?: string;
|
|
47870
48115
|
/** @description Filter: comma-separated SKU codes */
|
|
47871
48116
|
sku?: string;
|
|
47872
|
-
/** @description Filter: metadata contains this string (case-insensitive search in JSON). Only rated usage carries metadata, so cloud costs are excluded. */
|
|
48117
|
+
/** @description Filter: metadata contains this string (case-insensitive search in JSON). Only rated usage carries metadata, so cloud costs and realtime estimates are excluded. */
|
|
47873
48118
|
metadata?: string;
|
|
48119
|
+
/** @description Include live realtime cost estimates alongside invoiced cloud costs. */
|
|
48120
|
+
realtime?: boolean;
|
|
47874
48121
|
};
|
|
47875
48122
|
header?: never;
|
|
47876
48123
|
path: {
|
|
@@ -47907,7 +48154,10 @@ export interface operations {
|
|
|
47907
48154
|
};
|
|
47908
48155
|
"get-allocation-usage-events-filter-options": {
|
|
47909
48156
|
parameters: {
|
|
47910
|
-
query?:
|
|
48157
|
+
query?: {
|
|
48158
|
+
/** @description Include values that appear only in live realtime cost estimates. */
|
|
48159
|
+
realtime?: boolean;
|
|
48160
|
+
};
|
|
47911
48161
|
header?: never;
|
|
47912
48162
|
path: {
|
|
47913
48163
|
/** @description The name of the organization. */
|
|
@@ -54010,6 +54260,184 @@ export interface operations {
|
|
|
54010
54260
|
};
|
|
54011
54261
|
};
|
|
54012
54262
|
};
|
|
54263
|
+
"list-kernels": {
|
|
54264
|
+
parameters: {
|
|
54265
|
+
query?: never;
|
|
54266
|
+
header?: never;
|
|
54267
|
+
path: {
|
|
54268
|
+
/** @description The name of the organization. */
|
|
54269
|
+
organization: string;
|
|
54270
|
+
/** @description Username of the target user. */
|
|
54271
|
+
user: string;
|
|
54272
|
+
};
|
|
54273
|
+
cookie?: never;
|
|
54274
|
+
};
|
|
54275
|
+
requestBody?: never;
|
|
54276
|
+
responses: {
|
|
54277
|
+
/** @description OK */
|
|
54278
|
+
200: {
|
|
54279
|
+
headers: {
|
|
54280
|
+
[name: string]: unknown;
|
|
54281
|
+
};
|
|
54282
|
+
content: {
|
|
54283
|
+
"application/json": components["schemas"]["KernelResponse"][] | null;
|
|
54284
|
+
};
|
|
54285
|
+
};
|
|
54286
|
+
/** @description Error */
|
|
54287
|
+
default: {
|
|
54288
|
+
headers: {
|
|
54289
|
+
[name: string]: unknown;
|
|
54290
|
+
};
|
|
54291
|
+
content: {
|
|
54292
|
+
"application/json": components["schemas"]["Error"];
|
|
54293
|
+
};
|
|
54294
|
+
};
|
|
54295
|
+
};
|
|
54296
|
+
};
|
|
54297
|
+
"create-kernel": {
|
|
54298
|
+
parameters: {
|
|
54299
|
+
query?: never;
|
|
54300
|
+
header?: never;
|
|
54301
|
+
path: {
|
|
54302
|
+
/** @description The name of the organization. */
|
|
54303
|
+
organization: string;
|
|
54304
|
+
/** @description Username of the target user. */
|
|
54305
|
+
user: string;
|
|
54306
|
+
};
|
|
54307
|
+
cookie?: never;
|
|
54308
|
+
};
|
|
54309
|
+
requestBody: {
|
|
54310
|
+
content: {
|
|
54311
|
+
"application/json": components["schemas"]["CreateKernelBody"];
|
|
54312
|
+
};
|
|
54313
|
+
};
|
|
54314
|
+
responses: {
|
|
54315
|
+
/** @description OK */
|
|
54316
|
+
200: {
|
|
54317
|
+
headers: {
|
|
54318
|
+
[name: string]: unknown;
|
|
54319
|
+
};
|
|
54320
|
+
content: {
|
|
54321
|
+
"application/json": components["schemas"]["KernelResponse"];
|
|
54322
|
+
};
|
|
54323
|
+
};
|
|
54324
|
+
/** @description Error */
|
|
54325
|
+
default: {
|
|
54326
|
+
headers: {
|
|
54327
|
+
[name: string]: unknown;
|
|
54328
|
+
};
|
|
54329
|
+
content: {
|
|
54330
|
+
"application/json": components["schemas"]["Error"];
|
|
54331
|
+
};
|
|
54332
|
+
};
|
|
54333
|
+
};
|
|
54334
|
+
};
|
|
54335
|
+
"get-kernel": {
|
|
54336
|
+
parameters: {
|
|
54337
|
+
query?: never;
|
|
54338
|
+
header?: never;
|
|
54339
|
+
path: {
|
|
54340
|
+
/** @description The name of the organization. */
|
|
54341
|
+
organization: string;
|
|
54342
|
+
/** @description Username of the target user. */
|
|
54343
|
+
user: string;
|
|
54344
|
+
/** @description Kernel ID. */
|
|
54345
|
+
kernel: string;
|
|
54346
|
+
};
|
|
54347
|
+
cookie?: never;
|
|
54348
|
+
};
|
|
54349
|
+
requestBody?: never;
|
|
54350
|
+
responses: {
|
|
54351
|
+
/** @description OK */
|
|
54352
|
+
200: {
|
|
54353
|
+
headers: {
|
|
54354
|
+
[name: string]: unknown;
|
|
54355
|
+
};
|
|
54356
|
+
content: {
|
|
54357
|
+
"application/json": components["schemas"]["KernelResponse"];
|
|
54358
|
+
};
|
|
54359
|
+
};
|
|
54360
|
+
/** @description Error */
|
|
54361
|
+
default: {
|
|
54362
|
+
headers: {
|
|
54363
|
+
[name: string]: unknown;
|
|
54364
|
+
};
|
|
54365
|
+
content: {
|
|
54366
|
+
"application/json": components["schemas"]["Error"];
|
|
54367
|
+
};
|
|
54368
|
+
};
|
|
54369
|
+
};
|
|
54370
|
+
};
|
|
54371
|
+
"delete-kernel": {
|
|
54372
|
+
parameters: {
|
|
54373
|
+
query?: never;
|
|
54374
|
+
header?: never;
|
|
54375
|
+
path: {
|
|
54376
|
+
/** @description The name of the organization. */
|
|
54377
|
+
organization: string;
|
|
54378
|
+
/** @description Username of the target user. */
|
|
54379
|
+
user: string;
|
|
54380
|
+
/** @description Kernel ID. */
|
|
54381
|
+
kernel: string;
|
|
54382
|
+
};
|
|
54383
|
+
cookie?: never;
|
|
54384
|
+
};
|
|
54385
|
+
requestBody?: never;
|
|
54386
|
+
responses: {
|
|
54387
|
+
/** @description No Content */
|
|
54388
|
+
204: {
|
|
54389
|
+
headers: {
|
|
54390
|
+
[name: string]: unknown;
|
|
54391
|
+
};
|
|
54392
|
+
content?: never;
|
|
54393
|
+
};
|
|
54394
|
+
/** @description Error */
|
|
54395
|
+
default: {
|
|
54396
|
+
headers: {
|
|
54397
|
+
[name: string]: unknown;
|
|
54398
|
+
};
|
|
54399
|
+
content: {
|
|
54400
|
+
"application/json": components["schemas"]["Error"];
|
|
54401
|
+
};
|
|
54402
|
+
};
|
|
54403
|
+
};
|
|
54404
|
+
};
|
|
54405
|
+
"restart-kernel": {
|
|
54406
|
+
parameters: {
|
|
54407
|
+
query?: never;
|
|
54408
|
+
header?: never;
|
|
54409
|
+
path: {
|
|
54410
|
+
/** @description The name of the organization. */
|
|
54411
|
+
organization: string;
|
|
54412
|
+
/** @description Username of the target user. */
|
|
54413
|
+
user: string;
|
|
54414
|
+
/** @description Kernel ID. */
|
|
54415
|
+
kernel: string;
|
|
54416
|
+
};
|
|
54417
|
+
cookie?: never;
|
|
54418
|
+
};
|
|
54419
|
+
requestBody?: never;
|
|
54420
|
+
responses: {
|
|
54421
|
+
/** @description OK */
|
|
54422
|
+
200: {
|
|
54423
|
+
headers: {
|
|
54424
|
+
[name: string]: unknown;
|
|
54425
|
+
};
|
|
54426
|
+
content: {
|
|
54427
|
+
"application/json": components["schemas"]["KernelResponse"];
|
|
54428
|
+
};
|
|
54429
|
+
};
|
|
54430
|
+
/** @description Error */
|
|
54431
|
+
default: {
|
|
54432
|
+
headers: {
|
|
54433
|
+
[name: string]: unknown;
|
|
54434
|
+
};
|
|
54435
|
+
content: {
|
|
54436
|
+
"application/json": components["schemas"]["Error"];
|
|
54437
|
+
};
|
|
54438
|
+
};
|
|
54439
|
+
};
|
|
54440
|
+
};
|
|
54013
54441
|
"get-user-language": {
|
|
54014
54442
|
parameters: {
|
|
54015
54443
|
query?: never;
|
|
@@ -57867,7 +58295,7 @@ export interface operations {
|
|
|
57867
58295
|
};
|
|
57868
58296
|
};
|
|
57869
58297
|
};
|
|
57870
|
-
"set-platform-
|
|
58298
|
+
"set-platform-allocation-start-date-policy": {
|
|
57871
58299
|
parameters: {
|
|
57872
58300
|
query?: never;
|
|
57873
58301
|
header?: never;
|
|
@@ -57876,7 +58304,7 @@ export interface operations {
|
|
|
57876
58304
|
};
|
|
57877
58305
|
requestBody: {
|
|
57878
58306
|
content: {
|
|
57879
|
-
"application/json":
|
|
58307
|
+
"application/json": string;
|
|
57880
58308
|
};
|
|
57881
58309
|
};
|
|
57882
58310
|
responses: {
|
|
@@ -57887,7 +58315,7 @@ export interface operations {
|
|
|
57887
58315
|
};
|
|
57888
58316
|
content: {
|
|
57889
58317
|
"application/json": {
|
|
57890
|
-
[key: string]: components["schemas"]["
|
|
58318
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
57891
58319
|
};
|
|
57892
58320
|
};
|
|
57893
58321
|
};
|
|
@@ -57902,7 +58330,7 @@ export interface operations {
|
|
|
57902
58330
|
};
|
|
57903
58331
|
};
|
|
57904
58332
|
};
|
|
57905
|
-
"set-platform-
|
|
58333
|
+
"set-platform-allow-public-sessions-policy": {
|
|
57906
58334
|
parameters: {
|
|
57907
58335
|
query?: never;
|
|
57908
58336
|
header?: never;
|
|
@@ -57911,7 +58339,7 @@ export interface operations {
|
|
|
57911
58339
|
};
|
|
57912
58340
|
requestBody: {
|
|
57913
58341
|
content: {
|
|
57914
|
-
"application/json":
|
|
58342
|
+
"application/json": boolean;
|
|
57915
58343
|
};
|
|
57916
58344
|
};
|
|
57917
58345
|
responses: {
|
|
@@ -57922,7 +58350,7 @@ export interface operations {
|
|
|
57922
58350
|
};
|
|
57923
58351
|
content: {
|
|
57924
58352
|
"application/json": {
|
|
57925
|
-
[key: string]: components["schemas"]["
|
|
58353
|
+
[key: string]: components["schemas"]["BooleanPolicyOutput"];
|
|
57926
58354
|
};
|
|
57927
58355
|
};
|
|
57928
58356
|
};
|
|
@@ -57937,7 +58365,7 @@ export interface operations {
|
|
|
57937
58365
|
};
|
|
57938
58366
|
};
|
|
57939
58367
|
};
|
|
57940
|
-
"set-platform-
|
|
58368
|
+
"set-platform-archive-cost-data-policy": {
|
|
57941
58369
|
parameters: {
|
|
57942
58370
|
query?: never;
|
|
57943
58371
|
header?: never;
|
|
@@ -57946,7 +58374,7 @@ export interface operations {
|
|
|
57946
58374
|
};
|
|
57947
58375
|
requestBody: {
|
|
57948
58376
|
content: {
|
|
57949
|
-
"application/json":
|
|
58377
|
+
"application/json": number;
|
|
57950
58378
|
};
|
|
57951
58379
|
};
|
|
57952
58380
|
responses: {
|
|
@@ -57957,7 +58385,7 @@ export interface operations {
|
|
|
57957
58385
|
};
|
|
57958
58386
|
content: {
|
|
57959
58387
|
"application/json": {
|
|
57960
|
-
[key: string]: components["schemas"]["
|
|
58388
|
+
[key: string]: components["schemas"]["IntPolicyOutput"];
|
|
57961
58389
|
};
|
|
57962
58390
|
};
|
|
57963
58391
|
};
|
|
@@ -57972,7 +58400,7 @@ export interface operations {
|
|
|
57972
58400
|
};
|
|
57973
58401
|
};
|
|
57974
58402
|
};
|
|
57975
|
-
"set-platform-
|
|
58403
|
+
"set-platform-base-image-compliance-policy": {
|
|
57976
58404
|
parameters: {
|
|
57977
58405
|
query?: never;
|
|
57978
58406
|
header?: never;
|
|
@@ -57981,7 +58409,7 @@ export interface operations {
|
|
|
57981
58409
|
};
|
|
57982
58410
|
requestBody: {
|
|
57983
58411
|
content: {
|
|
57984
|
-
"application/json":
|
|
58412
|
+
"application/json": "off" | "audit" | "enforce";
|
|
57985
58413
|
};
|
|
57986
58414
|
};
|
|
57987
58415
|
responses: {
|
|
@@ -57992,7 +58420,7 @@ export interface operations {
|
|
|
57992
58420
|
};
|
|
57993
58421
|
content: {
|
|
57994
58422
|
"application/json": {
|
|
57995
|
-
[key: string]: components["schemas"]["
|
|
58423
|
+
[key: string]: components["schemas"]["BaseImageCompliancePolicyOutput"];
|
|
57996
58424
|
};
|
|
57997
58425
|
};
|
|
57998
58426
|
};
|
|
@@ -58007,7 +58435,7 @@ export interface operations {
|
|
|
58007
58435
|
};
|
|
58008
58436
|
};
|
|
58009
58437
|
};
|
|
58010
|
-
"set-platform-
|
|
58438
|
+
"set-platform-default-billing-username-policy": {
|
|
58011
58439
|
parameters: {
|
|
58012
58440
|
query?: never;
|
|
58013
58441
|
header?: never;
|
|
@@ -58016,7 +58444,7 @@ export interface operations {
|
|
|
58016
58444
|
};
|
|
58017
58445
|
requestBody: {
|
|
58018
58446
|
content: {
|
|
58019
|
-
"application/json":
|
|
58447
|
+
"application/json": string;
|
|
58020
58448
|
};
|
|
58021
58449
|
};
|
|
58022
58450
|
responses: {
|
|
@@ -58027,7 +58455,7 @@ export interface operations {
|
|
|
58027
58455
|
};
|
|
58028
58456
|
content: {
|
|
58029
58457
|
"application/json": {
|
|
58030
|
-
[key: string]: components["schemas"]["
|
|
58458
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
58031
58459
|
};
|
|
58032
58460
|
};
|
|
58033
58461
|
};
|
|
@@ -58042,7 +58470,7 @@ export interface operations {
|
|
|
58042
58470
|
};
|
|
58043
58471
|
};
|
|
58044
58472
|
};
|
|
58045
|
-
"set-platform-
|
|
58473
|
+
"set-platform-disable-password-login-policy": {
|
|
58046
58474
|
parameters: {
|
|
58047
58475
|
query?: never;
|
|
58048
58476
|
header?: never;
|
|
@@ -58051,7 +58479,7 @@ export interface operations {
|
|
|
58051
58479
|
};
|
|
58052
58480
|
requestBody: {
|
|
58053
58481
|
content: {
|
|
58054
|
-
"application/json":
|
|
58482
|
+
"application/json": boolean;
|
|
58055
58483
|
};
|
|
58056
58484
|
};
|
|
58057
58485
|
responses: {
|
|
@@ -58062,7 +58490,7 @@ export interface operations {
|
|
|
58062
58490
|
};
|
|
58063
58491
|
content: {
|
|
58064
58492
|
"application/json": {
|
|
58065
|
-
[key: string]: components["schemas"]["
|
|
58493
|
+
[key: string]: components["schemas"]["BooleanPolicyOutput"];
|
|
58066
58494
|
};
|
|
58067
58495
|
};
|
|
58068
58496
|
};
|
|
@@ -58077,7 +58505,7 @@ export interface operations {
|
|
|
58077
58505
|
};
|
|
58078
58506
|
};
|
|
58079
58507
|
};
|
|
58080
|
-
"set-platform-
|
|
58508
|
+
"set-platform-enforce-webauthn-mfa-policy": {
|
|
58081
58509
|
parameters: {
|
|
58082
58510
|
query?: never;
|
|
58083
58511
|
header?: never;
|
|
@@ -58086,7 +58514,7 @@ export interface operations {
|
|
|
58086
58514
|
};
|
|
58087
58515
|
requestBody: {
|
|
58088
58516
|
content: {
|
|
58089
|
-
"application/json":
|
|
58517
|
+
"application/json": "hardware" | "fips";
|
|
58090
58518
|
};
|
|
58091
58519
|
};
|
|
58092
58520
|
responses: {
|
|
@@ -58097,7 +58525,7 @@ export interface operations {
|
|
|
58097
58525
|
};
|
|
58098
58526
|
content: {
|
|
58099
58527
|
"application/json": {
|
|
58100
|
-
[key: string]: components["schemas"]["
|
|
58528
|
+
[key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
|
|
58101
58529
|
};
|
|
58102
58530
|
};
|
|
58103
58531
|
};
|
|
@@ -58112,7 +58540,7 @@ export interface operations {
|
|
|
58112
58540
|
};
|
|
58113
58541
|
};
|
|
58114
58542
|
};
|
|
58115
|
-
"set-platform-
|
|
58543
|
+
"set-platform-event-retention-days-policy": {
|
|
58116
58544
|
parameters: {
|
|
58117
58545
|
query?: never;
|
|
58118
58546
|
header?: never;
|
|
@@ -58121,7 +58549,7 @@ export interface operations {
|
|
|
58121
58549
|
};
|
|
58122
58550
|
requestBody: {
|
|
58123
58551
|
content: {
|
|
58124
|
-
"application/json":
|
|
58552
|
+
"application/json": number;
|
|
58125
58553
|
};
|
|
58126
58554
|
};
|
|
58127
58555
|
responses: {
|
|
@@ -58132,7 +58560,7 @@ export interface operations {
|
|
|
58132
58560
|
};
|
|
58133
58561
|
content: {
|
|
58134
58562
|
"application/json": {
|
|
58135
|
-
[key: string]: components["schemas"]["
|
|
58563
|
+
[key: string]: components["schemas"]["IntPolicyOutput"];
|
|
58136
58564
|
};
|
|
58137
58565
|
};
|
|
58138
58566
|
};
|