@parallelworks/client 7.99.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.
Files changed (2) hide show
  1. package/dist/types/api.d.ts +602 -131
  2. package/package.json +1 -1
@@ -4158,7 +4158,13 @@ export interface paths {
4158
4158
  delete: operations["delete-notifications"];
4159
4159
  options?: never;
4160
4160
  head?: never;
4161
- patch?: never;
4161
+ /**
4162
+ * Update notifications
4163
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
4164
+ *
4165
+ * Marks every inbox notification as read for the currently authenticated subject.
4166
+ */
4167
+ patch: operations["update-notifications"];
4162
4168
  trace?: never;
4163
4169
  };
4164
4170
  "/api/notifications/options": {
@@ -5350,7 +5356,7 @@ export interface paths {
5350
5356
  * Get organization billing settings
5351
5357
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5352
5358
  *
5353
- * Returns the organization's effective billing settings, resolved from the flexible-allocation-system, fiscal-year-start-date, and default-billing-username policies with defaults applied.
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.
5354
5360
  */
5355
5361
  get: operations["get-organization-billing-settings"];
5356
5362
  put?: never;
@@ -7985,6 +7991,28 @@ export interface paths {
7985
7991
  patch?: never;
7986
7992
  trace?: never;
7987
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
+ };
7988
8016
  "/api/organizations/{organization}/policies/allow-public-sessions": {
7989
8017
  parameters: {
7990
8018
  query?: never;
@@ -8139,28 +8167,6 @@ export interface paths {
8139
8167
  patch?: never;
8140
8168
  trace?: never;
8141
8169
  };
8142
- "/api/organizations/{organization}/policies/fiscal-year-start-date": {
8143
- parameters: {
8144
- query?: never;
8145
- header?: never;
8146
- path?: never;
8147
- cookie?: never;
8148
- };
8149
- get?: never;
8150
- put?: never;
8151
- /**
8152
- * Set organization policy: fiscal-year-start-date
8153
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8154
- *
8155
- * Sets fiscal-year-start-date policy for the organization as MM-DD. When unset, billing and reports calculate costs over all time.
8156
- */
8157
- post: operations["set-organization-fiscal-year-start-date-policy"];
8158
- delete?: never;
8159
- options?: never;
8160
- head?: never;
8161
- patch?: never;
8162
- trace?: never;
8163
- };
8164
8170
  "/api/organizations/{organization}/policies/flexible-allocation-system": {
8165
8171
  parameters: {
8166
8172
  query?: never;
@@ -8351,10 +8357,10 @@ export interface paths {
8351
8357
  cookie?: never;
8352
8358
  };
8353
8359
  /**
8354
- * Get summarized usage events for an allocation
8360
+ * Get summarized costs for an allocation
8355
8361
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8356
8362
  *
8357
- * Returns usage events grouped by day and type 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.
8358
8364
  */
8359
8365
  get: operations["get-allocation-usage-events-summary"];
8360
8366
  put?: never;
@@ -8373,10 +8379,10 @@ export interface paths {
8373
8379
  cookie?: never;
8374
8380
  };
8375
8381
  /**
8376
- * Get filter options for usage events
8382
+ * Get filter options for allocation costs
8377
8383
  * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8378
8384
  *
8379
- * Returns distinct values for type, subtype, and user filters.
8385
+ * Returns distinct type, subtype, user, and SKU values across the allocation's rated usage and cloud costs, including live realtime estimates on request.
8380
8386
  */
8381
8387
  get: operations["get-allocation-usage-events-filter-options"];
8382
8388
  put?: never;
@@ -11274,6 +11280,84 @@ export interface paths {
11274
11280
  patch?: never;
11275
11281
  trace?: never;
11276
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
+ };
11277
11361
  "/api/organizations/{organization}/users/{user}/language": {
11278
11362
  parameters: {
11279
11363
  query?: never;
@@ -13074,6 +13158,28 @@ export interface paths {
13074
13158
  patch?: never;
13075
13159
  trace?: never;
13076
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
+ };
13077
13183
  "/api/platform/policies/allow-public-sessions": {
13078
13184
  parameters: {
13079
13185
  query?: never;
@@ -13228,28 +13334,6 @@ export interface paths {
13228
13334
  patch?: never;
13229
13335
  trace?: never;
13230
13336
  };
13231
- "/api/platform/policies/fiscal-year-start-date": {
13232
- parameters: {
13233
- query?: never;
13234
- header?: never;
13235
- path?: never;
13236
- cookie?: never;
13237
- };
13238
- get?: never;
13239
- put?: never;
13240
- /**
13241
- * Set platform policy: fiscal-year-start-date
13242
- * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
13243
- *
13244
- * Sets the fiscal-year-start-date policy for the platform as MM-DD. When unset, billing and reports calculate costs over all time.
13245
- */
13246
- post: operations["set-platform-fiscal-year-start-date-policy"];
13247
- delete?: never;
13248
- options?: never;
13249
- head?: never;
13250
- patch?: never;
13251
- trace?: never;
13252
- };
13253
13337
  "/api/platform/policies/flexible-allocation-system": {
13254
13338
  parameters: {
13255
13339
  query?: never;
@@ -14749,7 +14833,7 @@ export interface paths {
14749
14833
  * Delete user thumbnail
14750
14834
  * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
14751
14835
  *
14752
- * Removes an image from the authenticated user's thumbnail library. Resources that still reference the image continue to render it via their own refCount.
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.
14753
14837
  */
14754
14838
  delete: operations["delete-user-thumbnail"];
14755
14839
  options?: never;
@@ -16067,6 +16151,8 @@ export interface components {
16067
16151
  refreshInterval?: string;
16068
16152
  /** @description AI provider region (for managed providers) */
16069
16153
  region?: string;
16154
+ /** @description Resource group the provider bills against */
16155
+ resourceGroup?: string;
16070
16156
  /** @description Current status of the AI provider */
16071
16157
  status: string;
16072
16158
  /** @description Whether the provider endpoint supports the OpenAI Responses API */
@@ -16090,7 +16176,7 @@ export interface components {
16090
16176
  displayName?: string;
16091
16177
  /** @description Billing group the provider is provisioned under (managed providers) */
16092
16178
  group?: string;
16093
- /** @description Whether the provider's billing group is over its allocation and blocks new usage (managed providers) */
16179
+ /** @description Whether the provider's billing target is over its allocation and blocks new usage */
16094
16180
  groupBlocked?: boolean;
16095
16181
  /** @description Whether the tunnel's remote destination is reachable (tunnel providers only). */
16096
16182
  healthy?: boolean;
@@ -16104,6 +16190,8 @@ export interface components {
16104
16190
  name: string;
16105
16191
  /** @description AI provider region */
16106
16192
  region: string | null;
16193
+ /** @description Resource group the provider bills against */
16194
+ resourceGroup?: string;
16107
16195
  /** @description Current status of the AI provider */
16108
16196
  status: string;
16109
16197
  /** @description The provider is blocked by platform catalog policy until a platform administrator maps or re-enables its integration */
@@ -16160,6 +16248,8 @@ export interface components {
16160
16248
  * @description Number of resource groups currently billing this allocation
16161
16249
  */
16162
16250
  readonly resourceGroups?: number;
16251
+ /** @description Highest organization allocation threshold this allocation has crossed */
16252
+ readonly threshold?: components["schemas"]["CrossedThreshold"];
16163
16253
  /**
16164
16254
  * Format: double
16165
16255
  * @description Total allocation amount
@@ -16172,6 +16262,13 @@ export interface components {
16172
16262
  type?: "managed" | "custom";
16173
16263
  /** @description Unit of measurement */
16174
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;
16175
16272
  /**
16176
16273
  * Format: double
16177
16274
  * @description Amount used
@@ -16412,6 +16509,11 @@ export interface components {
16412
16509
  AuthSession: {
16413
16510
  /** @description Indicates if the user is an admin. */
16414
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";
16415
16517
  /** @description Cache-buster etag for the user's avatar; empty when no custom avatar is set. */
16416
16518
  avatarEtag?: string;
16417
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. */
@@ -17927,6 +18029,8 @@ export interface components {
17927
18029
  namespace: string;
17928
18030
  /** @description Region where the bucket is located */
17929
18031
  region: string;
18032
+ /** @description Name of the resource group the bucket bills against. */
18033
+ resourceGroup?: string;
17930
18034
  /** @description Indicates if the bucket is sessionless */
17931
18035
  sessionless: boolean;
17932
18036
  /** @description List of groups with whom the bucket is shared */
@@ -18117,6 +18221,8 @@ export interface components {
18117
18221
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
18118
18222
  /** @description Connections carry a credential */
18119
18223
  requiresApiKey: boolean;
18224
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
18225
+ textOnlyModels?: string[] | null;
18120
18226
  /** @enum {string} */
18121
18227
  tlsVerification?: "public" | "ca-certificate" | "skip";
18122
18228
  /** @enum {string} */
@@ -18138,6 +18244,8 @@ export interface components {
18138
18244
  minimumTlsVersion: "1.2" | "1.3";
18139
18245
  /** @enum {string} */
18140
18246
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
18247
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
18248
+ textOnlyModels?: string[] | null;
18141
18249
  /** @enum {string} */
18142
18250
  tlsVerification?: "public" | "ca-certificate" | "skip";
18143
18251
  /** @enum {string} */
@@ -18174,6 +18282,8 @@ export interface components {
18174
18282
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
18175
18283
  /** @description Connections carry a credential */
18176
18284
  requiresApiKey: boolean;
18285
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
18286
+ textOnlyModels?: string[] | null;
18177
18287
  /** @enum {string} */
18178
18288
  tlsVerification: "public" | "ca-certificate" | "skip";
18179
18289
  /** @enum {string} */
@@ -19753,6 +19863,22 @@ export interface components {
19753
19863
  /** @description Name of the snapshot */
19754
19864
  snapshotName: string;
19755
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
+ };
19756
19882
  CreateManagedClusterInputBody: {
19757
19883
  /**
19758
19884
  * @description Description of the cluster
@@ -20035,6 +20161,8 @@ export interface components {
20035
20161
  who?: string;
20036
20162
  };
20037
20163
  CreateReservationBody: {
20164
+ /** @description Name of the allocation the reservation bills under the flexible allocation system. Required unless group is set. */
20165
+ allocation?: string;
20038
20166
  /**
20039
20167
  * @description Cloud service provider that issued the reservation.
20040
20168
  * @enum {string}
@@ -20042,8 +20170,8 @@ export interface components {
20042
20170
  csp: "aws" | "azure" | "google";
20043
20171
  /** @description Reservation description. */
20044
20172
  description?: string;
20045
- /** @description Name of the group that can use this reservation. */
20046
- group: string;
20173
+ /** @description Name of the group that can use this reservation. Required unless allocation is set. */
20174
+ group?: string;
20047
20175
  /**
20048
20176
  * @description Cloud service provider reservation identifier.
20049
20177
  * @example cr-06446c09dd127e7b0
@@ -20331,6 +20459,21 @@ export interface components {
20331
20459
  */
20332
20460
  updated: string | null;
20333
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
+ };
20334
20477
  CustomResourceTag: {
20335
20478
  /**
20336
20479
  * @description Tag key applied to provisioned cloud resources
@@ -20623,6 +20766,8 @@ export interface components {
20623
20766
  network?: string;
20624
20767
  /** @description Region of the disk */
20625
20768
  region?: string;
20769
+ /** @description Name of the resource group the disk bills against. */
20770
+ resourceGroup?: string;
20626
20771
  /**
20627
20772
  * Format: int64
20628
20773
  * @description Size of the disk in GiB
@@ -21257,7 +21402,7 @@ export interface components {
21257
21402
  */
21258
21403
  requestedNodes: number;
21259
21404
  /**
21260
- * @description The resource group the cluster's usage bills against. Only populated by the single-cluster endpoint.
21405
+ * @description The resource group the cluster's usage bills against.
21261
21406
  * @example my-resource-group
21262
21407
  */
21263
21408
  resourceGroup?: string;
@@ -21477,7 +21622,7 @@ export interface components {
21477
21622
  baseUrl?: string;
21478
21623
  /** @description PEM-encoded CA certificate the server's certificate chains to. Only accepted with ca-certificate verification. */
21479
21624
  caCertificate?: string;
21480
- /** @description New application ID. */
21625
+ /** @description New application ID. An empty value removes the OAuth application. */
21481
21626
  clientId?: string;
21482
21627
  /** @description New application secret. */
21483
21628
  clientSecret?: string;
@@ -22809,6 +22954,45 @@ export interface components {
22809
22954
  /** @description List of keys used for JWT verification */
22810
22955
  keys: components["schemas"]["JWK"][] | null;
22811
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
+ };
22812
22996
  KubernetesChartsBody: {
22813
22997
  /** @description List of Helm charts across all clusters */
22814
22998
  charts: components["schemas"]["HelmChart"][] | null;
@@ -23631,6 +23815,8 @@ export interface components {
23631
23815
  performance?: number;
23632
23816
  /** @description Region of the Lustre */
23633
23817
  region?: string;
23818
+ /** @description Name of the resource group the Lustre bills against. */
23819
+ resourceGroup?: string;
23634
23820
  /** @description Indicates if the Lustre is sessionless */
23635
23821
  sessionless: boolean;
23636
23822
  /** @description List of groups with whom the Lustre is shared */
@@ -24349,6 +24535,8 @@ export interface components {
24349
24535
  reasoning_efforts?: string[] | null;
24350
24536
  supports_responses?: boolean;
24351
24537
  supports_usage?: boolean;
24538
+ /** @description Whether the model accepts image input; absent when the platform has no capability data for it */
24539
+ supports_vision?: boolean;
24352
24540
  /** @enum {string} */
24353
24541
  tool_calling_mode: "native" | "emulated" | "none";
24354
24542
  usage_not_supported?: boolean;
@@ -24694,6 +24882,8 @@ export interface components {
24694
24882
  namespace: string;
24695
24883
  /** @description Region of the NFS */
24696
24884
  region?: string;
24885
+ /** @description Name of the resource group the NFS bills against. */
24886
+ resourceGroup?: string;
24697
24887
  /** @description Indicates if the NFS is sessionless */
24698
24888
  sessionless: boolean;
24699
24889
  /** @description List of groups with whom the NFS is shared */
@@ -25554,6 +25744,11 @@ export interface components {
25554
25744
  threshold: number;
25555
25745
  };
25556
25746
  OrgBillingSettings: {
25747
+ /**
25748
+ * @description Recurring allocation start date as MM-DD. Empty when unset.
25749
+ * @example 10-01
25750
+ */
25751
+ allocationStartDate: string;
25557
25752
  /**
25558
25753
  * @description Allocation accounting system the organization uses. Legacy is the default.
25559
25754
  * @enum {string}
@@ -25561,11 +25756,6 @@ export interface components {
25561
25756
  allocationSystem: "legacy" | "flexible";
25562
25757
  /** @description Username shown on dashboards and reports for cost records without a username tag. Empty when unset. */
25563
25758
  defaultBillingUsername: string;
25564
- /**
25565
- * @description Recurring fiscal year start date as MM-DD. Empty when unset.
25566
- * @example 10-01
25567
- */
25568
- fiscalYearStartDate: string;
25569
25759
  };
25570
25760
  OrgConnectionPermissionsOutputBody: {
25571
25761
  groups: string[] | null;
@@ -25776,6 +25966,8 @@ export interface components {
25776
25966
  protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
25777
25967
  /** @description Connections carry a credential */
25778
25968
  requiresApiKey: boolean;
25969
+ /** @description Model IDs that reject image input; overrides the platform's built-in capability data */
25970
+ textOnlyModels?: string[] | null;
25779
25971
  /** @enum {string} */
25780
25972
  tlsVerification: "public" | "ca-certificate" | "skip";
25781
25973
  /** @enum {string} */
@@ -28427,6 +28619,8 @@ export interface components {
28427
28619
  mounts: components["schemas"]["WorkspaceMountStatus"][] | null;
28428
28620
  };
28429
28621
  ReservationItem: {
28622
+ /** @description Name of the allocation the reservation bills under the flexible allocation system */
28623
+ allocation?: string;
28430
28624
  /**
28431
28625
  * @description Cloud service provider
28432
28626
  * @enum {string}
@@ -28434,7 +28628,7 @@ export interface components {
28434
28628
  csp: "aws" | "azure" | "google";
28435
28629
  /** @description Reservation description */
28436
28630
  description?: string;
28437
- /** @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 */
28438
28632
  group: string;
28439
28633
  /** @description Cloud service provider reservation identifier */
28440
28634
  id: string;
@@ -28658,6 +28852,29 @@ export interface components {
28658
28852
  readonly activeResourceCount?: number;
28659
28853
  /** @description Current allocation name */
28660
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;
28661
28878
  /**
28662
28879
  * Format: int64
28663
28880
  * @description Number of assigned resources in a failed state
@@ -28687,6 +28904,10 @@ export interface components {
28687
28904
  readonly allocationAllowed?: string[] | null;
28688
28905
  /** @description Previous allocations of this resource group, oldest first */
28689
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"];
28690
28911
  /**
28691
28912
  * Format: double
28692
28913
  * @description Budget total of the current allocation
@@ -28694,6 +28915,13 @@ export interface components {
28694
28915
  readonly allocationTotal?: number;
28695
28916
  /** @description Unit the current allocation is denominated in */
28696
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;
28697
28925
  /**
28698
28926
  * Format: double
28699
28927
  * @description Amount used of the current allocation (includes billing estimates)
@@ -29757,6 +29985,8 @@ export interface components {
29757
29985
  permissions?: components["schemas"]["StoragePermissions"];
29758
29986
  /** @description Region the storage is in. */
29759
29987
  region?: string;
29988
+ /** @description Name of the resource group the storage bills against. */
29989
+ resourceGroup?: string;
29760
29990
  /** @description Whether the storage is sessionless. */
29761
29991
  sessionless: boolean;
29762
29992
  /**
@@ -29830,6 +30060,8 @@ export interface components {
29830
30060
  permissions?: components["schemas"]["StoragePermissions"];
29831
30061
  /** @description Region the storage is in. */
29832
30062
  region?: string;
30063
+ /** @description Name of the resource group the storage bills against. */
30064
+ resourceGroup?: string;
29833
30065
  /** @description Whether the storage is sessionless. */
29834
30066
  sessionless: boolean;
29835
30067
  /**
@@ -30636,9 +30868,11 @@ export interface components {
30636
30868
  who?: string;
30637
30869
  };
30638
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;
30639
30873
  /** @description Reservation description. */
30640
30874
  description?: string;
30641
- /** @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. */
30642
30876
  group?: string;
30643
30877
  /** @description New reservation identifier. Renames the reservation when it differs from the current one. */
30644
30878
  id?: string;
@@ -31036,14 +31270,22 @@ export interface components {
31036
31270
  * @description When the blob was first uploaded.
31037
31271
  */
31038
31272
  uploadedAt: string;
31039
- /** @description Names of resources currently using this thumbnail. */
31040
- usedBy: string[] | null;
31273
+ /** @description Resources currently using this thumbnail. */
31274
+ usedBy: components["schemas"]["UserThumbnailUsage"][] | null;
31041
31275
  /**
31042
31276
  * Format: int64
31043
31277
  * @description Number of resources currently using this thumbnail.
31044
31278
  */
31045
31279
  usedCount: number;
31046
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
+ };
31047
31289
  UserWorkspace: {
31048
31290
  /**
31049
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.
@@ -31622,6 +31864,23 @@ export interface components {
31622
31864
  k8sMounts?: string[] | null;
31623
31865
  mounts?: string[] | null;
31624
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
+ };
31625
31884
  WorkspaceMount: {
31626
31885
  clusterPath: string;
31627
31886
  workspacePath: string;
@@ -31652,6 +31911,8 @@ export interface components {
31652
31911
  };
31653
31912
  WorkspaceStatus: {
31654
31913
  details?: string;
31914
+ /** @description Home directory usage. Absent unless the workspace is running and able to report it. */
31915
+ homeStorage?: components["schemas"]["WorkspaceHomeStorage"];
31655
31916
  status: string;
31656
31917
  };
31657
31918
  };
@@ -38747,7 +39008,7 @@ export interface operations {
38747
39008
  };
38748
39009
  };
38749
39010
  };
38750
- "get-notifications-options": {
39011
+ "update-notifications": {
38751
39012
  parameters: {
38752
39013
  query?: never;
38753
39014
  header?: never;
@@ -38756,14 +39017,12 @@ export interface operations {
38756
39017
  };
38757
39018
  requestBody?: never;
38758
39019
  responses: {
38759
- /** @description OK */
38760
- 200: {
39020
+ /** @description No Content */
39021
+ 204: {
38761
39022
  headers: {
38762
39023
  [name: string]: unknown;
38763
39024
  };
38764
- content: {
38765
- "application/json": components["schemas"]["NotificationCategory"][] | null;
38766
- };
39025
+ content?: never;
38767
39026
  };
38768
39027
  /** @description Error */
38769
39028
  default: {
@@ -38776,7 +39035,7 @@ export interface operations {
38776
39035
  };
38777
39036
  };
38778
39037
  };
38779
- "notifications-settings": {
39038
+ "get-notifications-options": {
38780
39039
  parameters: {
38781
39040
  query?: never;
38782
39041
  header?: never;
@@ -38791,7 +39050,7 @@ export interface operations {
38791
39050
  [name: string]: unknown;
38792
39051
  };
38793
39052
  content: {
38794
- "application/json": components["schemas"]["NotificationSettings"];
39053
+ "application/json": components["schemas"]["NotificationCategory"][] | null;
38795
39054
  };
38796
39055
  };
38797
39056
  /** @description Error */
@@ -38805,18 +39064,47 @@ export interface operations {
38805
39064
  };
38806
39065
  };
38807
39066
  };
38808
- "set-notifications-settings": {
39067
+ "notifications-settings": {
38809
39068
  parameters: {
38810
39069
  query?: never;
38811
39070
  header?: never;
38812
39071
  path?: never;
38813
39072
  cookie?: never;
38814
39073
  };
38815
- requestBody?: {
38816
- content: {
38817
- "application/json": components["schemas"]["NotificationSettings"];
38818
- };
38819
- };
39074
+ requestBody?: never;
39075
+ responses: {
39076
+ /** @description OK */
39077
+ 200: {
39078
+ headers: {
39079
+ [name: string]: unknown;
39080
+ };
39081
+ content: {
39082
+ "application/json": components["schemas"]["NotificationSettings"];
39083
+ };
39084
+ };
39085
+ /** @description Error */
39086
+ default: {
39087
+ headers: {
39088
+ [name: string]: unknown;
39089
+ };
39090
+ content: {
39091
+ "application/json": components["schemas"]["Error"];
39092
+ };
39093
+ };
39094
+ };
39095
+ };
39096
+ "set-notifications-settings": {
39097
+ parameters: {
39098
+ query?: never;
39099
+ header?: never;
39100
+ path?: never;
39101
+ cookie?: never;
39102
+ };
39103
+ requestBody?: {
39104
+ content: {
39105
+ "application/json": components["schemas"]["NotificationSettings"];
39106
+ };
39107
+ };
38820
39108
  responses: {
38821
39109
  /** @description OK */
38822
39110
  200: {
@@ -47181,7 +47469,7 @@ export interface operations {
47181
47469
  };
47182
47470
  };
47183
47471
  };
47184
- "set-organization-allow-public-sessions-policy": {
47472
+ "set-organization-allocation-start-date-policy": {
47185
47473
  parameters: {
47186
47474
  query?: never;
47187
47475
  header?: never;
@@ -47193,7 +47481,7 @@ export interface operations {
47193
47481
  };
47194
47482
  requestBody: {
47195
47483
  content: {
47196
- "application/json": boolean;
47484
+ "application/json": string;
47197
47485
  };
47198
47486
  };
47199
47487
  responses: {
@@ -47204,7 +47492,7 @@ export interface operations {
47204
47492
  };
47205
47493
  content: {
47206
47494
  "application/json": {
47207
- [key: string]: components["schemas"]["BooleanPolicyOutput"];
47495
+ [key: string]: components["schemas"]["StringPolicyOutput"];
47208
47496
  };
47209
47497
  };
47210
47498
  };
@@ -47219,7 +47507,7 @@ export interface operations {
47219
47507
  };
47220
47508
  };
47221
47509
  };
47222
- "set-organization-archive-cost-data-policy": {
47510
+ "set-organization-allow-public-sessions-policy": {
47223
47511
  parameters: {
47224
47512
  query?: never;
47225
47513
  header?: never;
@@ -47231,7 +47519,7 @@ export interface operations {
47231
47519
  };
47232
47520
  requestBody: {
47233
47521
  content: {
47234
- "application/json": number;
47522
+ "application/json": boolean;
47235
47523
  };
47236
47524
  };
47237
47525
  responses: {
@@ -47242,7 +47530,7 @@ export interface operations {
47242
47530
  };
47243
47531
  content: {
47244
47532
  "application/json": {
47245
- [key: string]: components["schemas"]["IntPolicyOutput"];
47533
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
47246
47534
  };
47247
47535
  };
47248
47536
  };
@@ -47257,7 +47545,7 @@ export interface operations {
47257
47545
  };
47258
47546
  };
47259
47547
  };
47260
- "set-organization-default-billing-username-policy": {
47548
+ "set-organization-archive-cost-data-policy": {
47261
47549
  parameters: {
47262
47550
  query?: never;
47263
47551
  header?: never;
@@ -47269,7 +47557,7 @@ export interface operations {
47269
47557
  };
47270
47558
  requestBody: {
47271
47559
  content: {
47272
- "application/json": string;
47560
+ "application/json": number;
47273
47561
  };
47274
47562
  };
47275
47563
  responses: {
@@ -47280,7 +47568,7 @@ export interface operations {
47280
47568
  };
47281
47569
  content: {
47282
47570
  "application/json": {
47283
- [key: string]: components["schemas"]["StringPolicyOutput"];
47571
+ [key: string]: components["schemas"]["IntPolicyOutput"];
47284
47572
  };
47285
47573
  };
47286
47574
  };
@@ -47295,7 +47583,7 @@ export interface operations {
47295
47583
  };
47296
47584
  };
47297
47585
  };
47298
- "set-organization-disable-password-login-policy": {
47586
+ "set-organization-default-billing-username-policy": {
47299
47587
  parameters: {
47300
47588
  query?: never;
47301
47589
  header?: never;
@@ -47307,7 +47595,7 @@ export interface operations {
47307
47595
  };
47308
47596
  requestBody: {
47309
47597
  content: {
47310
- "application/json": boolean;
47598
+ "application/json": string;
47311
47599
  };
47312
47600
  };
47313
47601
  responses: {
@@ -47318,7 +47606,7 @@ export interface operations {
47318
47606
  };
47319
47607
  content: {
47320
47608
  "application/json": {
47321
- [key: string]: components["schemas"]["BooleanPolicyOutput"];
47609
+ [key: string]: components["schemas"]["StringPolicyOutput"];
47322
47610
  };
47323
47611
  };
47324
47612
  };
@@ -47333,7 +47621,7 @@ export interface operations {
47333
47621
  };
47334
47622
  };
47335
47623
  };
47336
- "set-organization-enforce-mfa-policy": {
47624
+ "set-organization-disable-password-login-policy": {
47337
47625
  parameters: {
47338
47626
  query?: never;
47339
47627
  header?: never;
@@ -47356,7 +47644,7 @@ export interface operations {
47356
47644
  };
47357
47645
  content: {
47358
47646
  "application/json": {
47359
- [key: string]: components["schemas"]["Policy"];
47647
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
47360
47648
  };
47361
47649
  };
47362
47650
  };
@@ -47371,7 +47659,7 @@ export interface operations {
47371
47659
  };
47372
47660
  };
47373
47661
  };
47374
- "set-organization-enforce-webauthn-mfa-policy": {
47662
+ "set-organization-enforce-mfa-policy": {
47375
47663
  parameters: {
47376
47664
  query?: never;
47377
47665
  header?: never;
@@ -47383,7 +47671,7 @@ export interface operations {
47383
47671
  };
47384
47672
  requestBody: {
47385
47673
  content: {
47386
- "application/json": "hardware" | "fips";
47674
+ "application/json": boolean;
47387
47675
  };
47388
47676
  };
47389
47677
  responses: {
@@ -47394,7 +47682,7 @@ export interface operations {
47394
47682
  };
47395
47683
  content: {
47396
47684
  "application/json": {
47397
- [key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
47685
+ [key: string]: components["schemas"]["Policy"];
47398
47686
  };
47399
47687
  };
47400
47688
  };
@@ -47409,7 +47697,7 @@ export interface operations {
47409
47697
  };
47410
47698
  };
47411
47699
  };
47412
- "set-organization-event-retention-days-policy": {
47700
+ "set-organization-enforce-webauthn-mfa-policy": {
47413
47701
  parameters: {
47414
47702
  query?: never;
47415
47703
  header?: never;
@@ -47421,7 +47709,7 @@ export interface operations {
47421
47709
  };
47422
47710
  requestBody: {
47423
47711
  content: {
47424
- "application/json": number;
47712
+ "application/json": "hardware" | "fips";
47425
47713
  };
47426
47714
  };
47427
47715
  responses: {
@@ -47432,7 +47720,7 @@ export interface operations {
47432
47720
  };
47433
47721
  content: {
47434
47722
  "application/json": {
47435
- [key: string]: components["schemas"]["IntPolicyOutput"];
47723
+ [key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
47436
47724
  };
47437
47725
  };
47438
47726
  };
@@ -47447,7 +47735,7 @@ export interface operations {
47447
47735
  };
47448
47736
  };
47449
47737
  };
47450
- "set-organization-fiscal-year-start-date-policy": {
47738
+ "set-organization-event-retention-days-policy": {
47451
47739
  parameters: {
47452
47740
  query?: never;
47453
47741
  header?: never;
@@ -47459,7 +47747,7 @@ export interface operations {
47459
47747
  };
47460
47748
  requestBody: {
47461
47749
  content: {
47462
- "application/json": string;
47750
+ "application/json": number;
47463
47751
  };
47464
47752
  };
47465
47753
  responses: {
@@ -47470,7 +47758,7 @@ export interface operations {
47470
47758
  };
47471
47759
  content: {
47472
47760
  "application/json": {
47473
- [key: string]: components["schemas"]["StringPolicyOutput"];
47761
+ [key: string]: components["schemas"]["IntPolicyOutput"];
47474
47762
  };
47475
47763
  };
47476
47764
  };
@@ -47818,16 +48106,18 @@ export interface operations {
47818
48106
  endDate?: string;
47819
48107
  /** @description Field to group costs by (type, subtype, user, sku) */
47820
48108
  groupBy?: string;
47821
- /** @description Filter: type matches exactly */
48109
+ /** @description Filter: comma-separated types */
47822
48110
  type?: string;
47823
- /** @description Filter: subtype matches exactly */
48111
+ /** @description Filter: comma-separated subtypes */
47824
48112
  subtype?: string;
47825
- /** @description Filter: username matches exactly */
48113
+ /** @description Filter: comma-separated usernames */
47826
48114
  user?: string;
47827
48115
  /** @description Filter: comma-separated SKU codes */
47828
48116
  sku?: string;
47829
- /** @description Filter: metadata contains this string (case-insensitive search in JSON) */
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. */
47830
48118
  metadata?: string;
48119
+ /** @description Include live realtime cost estimates alongside invoiced cloud costs. */
48120
+ realtime?: boolean;
47831
48121
  };
47832
48122
  header?: never;
47833
48123
  path: {
@@ -47864,7 +48154,10 @@ export interface operations {
47864
48154
  };
47865
48155
  "get-allocation-usage-events-filter-options": {
47866
48156
  parameters: {
47867
- query?: never;
48157
+ query?: {
48158
+ /** @description Include values that appear only in live realtime cost estimates. */
48159
+ realtime?: boolean;
48160
+ };
47868
48161
  header?: never;
47869
48162
  path: {
47870
48163
  /** @description The name of the organization. */
@@ -53967,6 +54260,184 @@ export interface operations {
53967
54260
  };
53968
54261
  };
53969
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
+ };
53970
54441
  "get-user-language": {
53971
54442
  parameters: {
53972
54443
  query?: never;
@@ -57824,7 +58295,7 @@ export interface operations {
57824
58295
  };
57825
58296
  };
57826
58297
  };
57827
- "set-platform-allow-public-sessions-policy": {
58298
+ "set-platform-allocation-start-date-policy": {
57828
58299
  parameters: {
57829
58300
  query?: never;
57830
58301
  header?: never;
@@ -57833,7 +58304,7 @@ export interface operations {
57833
58304
  };
57834
58305
  requestBody: {
57835
58306
  content: {
57836
- "application/json": boolean;
58307
+ "application/json": string;
57837
58308
  };
57838
58309
  };
57839
58310
  responses: {
@@ -57844,7 +58315,7 @@ export interface operations {
57844
58315
  };
57845
58316
  content: {
57846
58317
  "application/json": {
57847
- [key: string]: components["schemas"]["BooleanPolicyOutput"];
58318
+ [key: string]: components["schemas"]["StringPolicyOutput"];
57848
58319
  };
57849
58320
  };
57850
58321
  };
@@ -57859,7 +58330,7 @@ export interface operations {
57859
58330
  };
57860
58331
  };
57861
58332
  };
57862
- "set-platform-archive-cost-data-policy": {
58333
+ "set-platform-allow-public-sessions-policy": {
57863
58334
  parameters: {
57864
58335
  query?: never;
57865
58336
  header?: never;
@@ -57868,7 +58339,7 @@ export interface operations {
57868
58339
  };
57869
58340
  requestBody: {
57870
58341
  content: {
57871
- "application/json": number;
58342
+ "application/json": boolean;
57872
58343
  };
57873
58344
  };
57874
58345
  responses: {
@@ -57879,7 +58350,7 @@ export interface operations {
57879
58350
  };
57880
58351
  content: {
57881
58352
  "application/json": {
57882
- [key: string]: components["schemas"]["IntPolicyOutput"];
58353
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
57883
58354
  };
57884
58355
  };
57885
58356
  };
@@ -57894,7 +58365,7 @@ export interface operations {
57894
58365
  };
57895
58366
  };
57896
58367
  };
57897
- "set-platform-base-image-compliance-policy": {
58368
+ "set-platform-archive-cost-data-policy": {
57898
58369
  parameters: {
57899
58370
  query?: never;
57900
58371
  header?: never;
@@ -57903,7 +58374,7 @@ export interface operations {
57903
58374
  };
57904
58375
  requestBody: {
57905
58376
  content: {
57906
- "application/json": "off" | "audit" | "enforce";
58377
+ "application/json": number;
57907
58378
  };
57908
58379
  };
57909
58380
  responses: {
@@ -57914,7 +58385,7 @@ export interface operations {
57914
58385
  };
57915
58386
  content: {
57916
58387
  "application/json": {
57917
- [key: string]: components["schemas"]["BaseImageCompliancePolicyOutput"];
58388
+ [key: string]: components["schemas"]["IntPolicyOutput"];
57918
58389
  };
57919
58390
  };
57920
58391
  };
@@ -57929,7 +58400,7 @@ export interface operations {
57929
58400
  };
57930
58401
  };
57931
58402
  };
57932
- "set-platform-default-billing-username-policy": {
58403
+ "set-platform-base-image-compliance-policy": {
57933
58404
  parameters: {
57934
58405
  query?: never;
57935
58406
  header?: never;
@@ -57938,7 +58409,7 @@ export interface operations {
57938
58409
  };
57939
58410
  requestBody: {
57940
58411
  content: {
57941
- "application/json": string;
58412
+ "application/json": "off" | "audit" | "enforce";
57942
58413
  };
57943
58414
  };
57944
58415
  responses: {
@@ -57949,7 +58420,7 @@ export interface operations {
57949
58420
  };
57950
58421
  content: {
57951
58422
  "application/json": {
57952
- [key: string]: components["schemas"]["StringPolicyOutput"];
58423
+ [key: string]: components["schemas"]["BaseImageCompliancePolicyOutput"];
57953
58424
  };
57954
58425
  };
57955
58426
  };
@@ -57964,7 +58435,7 @@ export interface operations {
57964
58435
  };
57965
58436
  };
57966
58437
  };
57967
- "set-platform-disable-password-login-policy": {
58438
+ "set-platform-default-billing-username-policy": {
57968
58439
  parameters: {
57969
58440
  query?: never;
57970
58441
  header?: never;
@@ -57973,7 +58444,7 @@ export interface operations {
57973
58444
  };
57974
58445
  requestBody: {
57975
58446
  content: {
57976
- "application/json": boolean;
58447
+ "application/json": string;
57977
58448
  };
57978
58449
  };
57979
58450
  responses: {
@@ -57984,7 +58455,7 @@ export interface operations {
57984
58455
  };
57985
58456
  content: {
57986
58457
  "application/json": {
57987
- [key: string]: components["schemas"]["BooleanPolicyOutput"];
58458
+ [key: string]: components["schemas"]["StringPolicyOutput"];
57988
58459
  };
57989
58460
  };
57990
58461
  };
@@ -57999,7 +58470,7 @@ export interface operations {
57999
58470
  };
58000
58471
  };
58001
58472
  };
58002
- "set-platform-enforce-webauthn-mfa-policy": {
58473
+ "set-platform-disable-password-login-policy": {
58003
58474
  parameters: {
58004
58475
  query?: never;
58005
58476
  header?: never;
@@ -58008,7 +58479,7 @@ export interface operations {
58008
58479
  };
58009
58480
  requestBody: {
58010
58481
  content: {
58011
- "application/json": "hardware" | "fips";
58482
+ "application/json": boolean;
58012
58483
  };
58013
58484
  };
58014
58485
  responses: {
@@ -58019,7 +58490,7 @@ export interface operations {
58019
58490
  };
58020
58491
  content: {
58021
58492
  "application/json": {
58022
- [key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
58493
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
58023
58494
  };
58024
58495
  };
58025
58496
  };
@@ -58034,7 +58505,7 @@ export interface operations {
58034
58505
  };
58035
58506
  };
58036
58507
  };
58037
- "set-platform-event-retention-days-policy": {
58508
+ "set-platform-enforce-webauthn-mfa-policy": {
58038
58509
  parameters: {
58039
58510
  query?: never;
58040
58511
  header?: never;
@@ -58043,7 +58514,7 @@ export interface operations {
58043
58514
  };
58044
58515
  requestBody: {
58045
58516
  content: {
58046
- "application/json": number;
58517
+ "application/json": "hardware" | "fips";
58047
58518
  };
58048
58519
  };
58049
58520
  responses: {
@@ -58054,7 +58525,7 @@ export interface operations {
58054
58525
  };
58055
58526
  content: {
58056
58527
  "application/json": {
58057
- [key: string]: components["schemas"]["IntPolicyOutput"];
58528
+ [key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
58058
58529
  };
58059
58530
  };
58060
58531
  };
@@ -58069,7 +58540,7 @@ export interface operations {
58069
58540
  };
58070
58541
  };
58071
58542
  };
58072
- "set-platform-fiscal-year-start-date-policy": {
58543
+ "set-platform-event-retention-days-policy": {
58073
58544
  parameters: {
58074
58545
  query?: never;
58075
58546
  header?: never;
@@ -58078,7 +58549,7 @@ export interface operations {
58078
58549
  };
58079
58550
  requestBody: {
58080
58551
  content: {
58081
- "application/json": string;
58552
+ "application/json": number;
58082
58553
  };
58083
58554
  };
58084
58555
  responses: {
@@ -58089,7 +58560,7 @@ export interface operations {
58089
58560
  };
58090
58561
  content: {
58091
58562
  "application/json": {
58092
- [key: string]: components["schemas"]["StringPolicyOutput"];
58563
+ [key: string]: components["schemas"]["IntPolicyOutput"];
58093
58564
  };
58094
58565
  };
58095
58566
  };