@parallelworks/client 7.97.0 → 7.99.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 +1506 -190
  2. package/package.json +1 -1
@@ -2081,6 +2081,50 @@ export interface paths {
2081
2081
  patch?: never;
2082
2082
  trace?: never;
2083
2083
  };
2084
+ "/api/changelog": {
2085
+ parameters: {
2086
+ query?: never;
2087
+ header?: never;
2088
+ path?: never;
2089
+ cookie?: never;
2090
+ };
2091
+ /**
2092
+ * Get recent changelog entries
2093
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
2094
+ *
2095
+ * Returns the latest published changelog entries for the Changelog page. Serves the live changelog from parallelworks.com unless the platform is configured to use the changelog bundled into the build.
2096
+ */
2097
+ get: operations["get-changelog"];
2098
+ put?: never;
2099
+ post?: never;
2100
+ delete?: never;
2101
+ options?: never;
2102
+ head?: never;
2103
+ patch?: never;
2104
+ trace?: never;
2105
+ };
2106
+ "/api/changelog/authors/{author}/avatar": {
2107
+ parameters: {
2108
+ query?: never;
2109
+ header?: never;
2110
+ path?: never;
2111
+ cookie?: never;
2112
+ };
2113
+ /**
2114
+ * Get a changelog author's avatar
2115
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
2116
+ *
2117
+ * Returns the avatar of a person credited in a changelog entry. The platform fetches and caches the image so browsers never load it from another origin.
2118
+ */
2119
+ get: operations["get-changelog-author-avatar"];
2120
+ put?: never;
2121
+ post?: never;
2122
+ delete?: never;
2123
+ options?: never;
2124
+ head?: never;
2125
+ patch?: never;
2126
+ trace?: never;
2127
+ };
2084
2128
  "/api/cloud-accounts": {
2085
2129
  parameters: {
2086
2130
  query?: never;
@@ -4105,7 +4149,13 @@ export interface paths {
4105
4149
  * Creates a notification. A platform-admin user broadcasts to a target user, organization, or all users.
4106
4150
  */
4107
4151
  post: operations["create-notification"];
4108
- delete?: never;
4152
+ /**
4153
+ * Delete notifications
4154
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
4155
+ *
4156
+ * Deletes the read notifications for the currently authenticated user, or every notification when all is true.
4157
+ */
4158
+ delete: operations["delete-notifications"];
4109
4159
  options?: never;
4110
4160
  head?: never;
4111
4161
  patch?: never;
@@ -5289,6 +5339,28 @@ export interface paths {
5289
5339
  patch?: never;
5290
5340
  trace?: never;
5291
5341
  };
5342
+ "/api/organizations/{organization}/billing-settings": {
5343
+ parameters: {
5344
+ query?: never;
5345
+ header?: never;
5346
+ path?: never;
5347
+ cookie?: never;
5348
+ };
5349
+ /**
5350
+ * Get organization billing settings
5351
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
5352
+ *
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.
5354
+ */
5355
+ get: operations["get-organization-billing-settings"];
5356
+ put?: never;
5357
+ post?: never;
5358
+ delete?: never;
5359
+ options?: never;
5360
+ head?: never;
5361
+ patch?: never;
5362
+ trace?: never;
5363
+ };
5292
5364
  "/api/organizations/{organization}/bootstrap": {
5293
5365
  parameters: {
5294
5366
  query?: never;
@@ -7957,6 +8029,28 @@ export interface paths {
7957
8029
  patch?: never;
7958
8030
  trace?: never;
7959
8031
  };
8032
+ "/api/organizations/{organization}/policies/default-billing-username": {
8033
+ parameters: {
8034
+ query?: never;
8035
+ header?: never;
8036
+ path?: never;
8037
+ cookie?: never;
8038
+ };
8039
+ get?: never;
8040
+ put?: never;
8041
+ /**
8042
+ * Set organization policy: default-billing-username
8043
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8044
+ *
8045
+ * Sets default-billing-username policy for the organization: the username shown on dashboards and reports for cost records without a username tag.
8046
+ */
8047
+ post: operations["set-organization-default-billing-username-policy"];
8048
+ delete?: never;
8049
+ options?: never;
8050
+ head?: never;
8051
+ patch?: never;
8052
+ trace?: never;
8053
+ };
7960
8054
  "/api/organizations/{organization}/policies/disable-password-login": {
7961
8055
  parameters: {
7962
8056
  query?: never;
@@ -8045,6 +8139,50 @@ export interface paths {
8045
8139
  patch?: never;
8046
8140
  trace?: never;
8047
8141
  };
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
+ "/api/organizations/{organization}/policies/flexible-allocation-system": {
8165
+ parameters: {
8166
+ query?: never;
8167
+ header?: never;
8168
+ path?: never;
8169
+ cookie?: never;
8170
+ };
8171
+ get?: never;
8172
+ put?: never;
8173
+ /**
8174
+ * Set organization policy: flexible-allocation-system
8175
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
8176
+ *
8177
+ * Sets flexible-allocation-system policy for the organization. True opts the organization into the flexible allocation system; the legacy system applies when unset.
8178
+ */
8179
+ post: operations["set-organization-flexible-allocation-system-policy"];
8180
+ delete?: never;
8181
+ options?: never;
8182
+ head?: never;
8183
+ patch?: never;
8184
+ trace?: never;
8185
+ };
8048
8186
  "/api/organizations/{organization}/policies/max-api-key-ttl": {
8049
8187
  parameters: {
8050
8188
  query?: never;
@@ -9943,7 +10081,7 @@ export interface paths {
9943
10081
  * Get cluster deployment
9944
10082
  * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
9945
10083
  *
9946
- * Returns a cluster deployment with its step-by-step progress and the storages it provisioned.
10084
+ * Returns a cluster deployment.
9947
10085
  */
9948
10086
  get: operations["get-cluster-deployment"];
9949
10087
  put?: never;
@@ -10004,6 +10142,28 @@ export interface paths {
10004
10142
  patch?: never;
10005
10143
  trace?: never;
10006
10144
  };
10145
+ "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/deployments/{deploymentNumber}/provision-status": {
10146
+ parameters: {
10147
+ query?: never;
10148
+ header?: never;
10149
+ path?: never;
10150
+ cookie?: never;
10151
+ };
10152
+ /**
10153
+ * Get cluster deployment provision status
10154
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
10155
+ *
10156
+ * Returns the step-by-step progress records of a cluster deployment.
10157
+ */
10158
+ get: operations["get-cluster-deployment-provision-status"];
10159
+ put?: never;
10160
+ post?: never;
10161
+ delete?: never;
10162
+ options?: never;
10163
+ head?: never;
10164
+ patch?: never;
10165
+ trace?: never;
10166
+ };
10007
10167
  "/api/organizations/{organization}/users/{user}/clusters/{clusterName}/destroy": {
10008
10168
  parameters: {
10009
10169
  query?: never;
@@ -11550,10 +11710,22 @@ export interface paths {
11550
11710
  get: operations["get-resource-group"];
11551
11711
  put?: never;
11552
11712
  post?: never;
11553
- delete?: never;
11713
+ /**
11714
+ * Delete a resource group
11715
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11716
+ *
11717
+ * Soft deletes a resource group.
11718
+ */
11719
+ delete: operations["delete-resource-group"];
11554
11720
  options?: never;
11555
11721
  head?: never;
11556
- patch?: never;
11722
+ /**
11723
+ * Update a resource group
11724
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11725
+ *
11726
+ * Updates a resource group's allocation.
11727
+ */
11728
+ patch: operations["update-resource-group"];
11557
11729
  trace?: never;
11558
11730
  };
11559
11731
  "/api/organizations/{organization}/users/{user}/resource-groups/{name}/permissions": {
@@ -11584,6 +11756,50 @@ export interface paths {
11584
11756
  patch: operations["update-resource-group-permissions"];
11585
11757
  trace?: never;
11586
11758
  };
11759
+ "/api/organizations/{organization}/users/{user}/resource-groups/{name}/resources": {
11760
+ parameters: {
11761
+ query?: never;
11762
+ header?: never;
11763
+ path?: never;
11764
+ cookie?: never;
11765
+ };
11766
+ /**
11767
+ * List resources in a resource group
11768
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11769
+ *
11770
+ * Returns all active resources assigned to a resource group.
11771
+ */
11772
+ get: operations["list-resource-group-resources"];
11773
+ put?: never;
11774
+ post?: never;
11775
+ delete?: never;
11776
+ options?: never;
11777
+ head?: never;
11778
+ patch?: never;
11779
+ trace?: never;
11780
+ };
11781
+ "/api/organizations/{organization}/users/{user}/resource-groups/{name}/resources/{resourceId}/move": {
11782
+ parameters: {
11783
+ query?: never;
11784
+ header?: never;
11785
+ path?: never;
11786
+ cookie?: never;
11787
+ };
11788
+ get?: never;
11789
+ put?: never;
11790
+ /**
11791
+ * Move a resource to another resource group
11792
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
11793
+ *
11794
+ * Moves an off resource to a different resource group.
11795
+ */
11796
+ post: operations["move-resource-group-resource"];
11797
+ delete?: never;
11798
+ options?: never;
11799
+ head?: never;
11800
+ patch?: never;
11801
+ trace?: never;
11802
+ };
11587
11803
  "/api/organizations/{organization}/users/{user}/resources": {
11588
11804
  parameters: {
11589
11805
  query?: never;
@@ -11912,6 +12128,28 @@ export interface paths {
11912
12128
  patch?: never;
11913
12129
  trace?: never;
11914
12130
  };
12131
+ "/api/organizations/{organization}/users/{user}/storage/{name}/deployments": {
12132
+ parameters: {
12133
+ query?: never;
12134
+ header?: never;
12135
+ path?: never;
12136
+ cookie?: never;
12137
+ };
12138
+ /**
12139
+ * List storage deployments
12140
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
12141
+ *
12142
+ * Returns the provisioning deployments for a storage, sorted by most recent first.
12143
+ */
12144
+ get: operations["get-storage-deployments"];
12145
+ put?: never;
12146
+ post?: never;
12147
+ delete?: never;
12148
+ options?: never;
12149
+ head?: never;
12150
+ patch?: never;
12151
+ trace?: never;
12152
+ };
11915
12153
  "/api/organizations/{organization}/users/{user}/storage/{name}/deployments/{deploymentNumber}/logs/deletion": {
11916
12154
  parameters: {
11917
12155
  query?: never;
@@ -11956,6 +12194,28 @@ export interface paths {
11956
12194
  patch?: never;
11957
12195
  trace?: never;
11958
12196
  };
12197
+ "/api/organizations/{organization}/users/{user}/storage/{name}/deployments/{deploymentNumber}/provision-status": {
12198
+ parameters: {
12199
+ query?: never;
12200
+ header?: never;
12201
+ path?: never;
12202
+ cookie?: never;
12203
+ };
12204
+ /**
12205
+ * Get storage deployment provision status
12206
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
12207
+ *
12208
+ * Returns the provision status records for a storage deployment.
12209
+ */
12210
+ get: operations["get-storage-deployment-provision-status"];
12211
+ put?: never;
12212
+ post?: never;
12213
+ delete?: never;
12214
+ options?: never;
12215
+ head?: never;
12216
+ patch?: never;
12217
+ trace?: never;
12218
+ };
11959
12219
  "/api/organizations/{organization}/users/{user}/storage/{name}/permissions": {
11960
12220
  parameters: {
11961
12221
  query?: never;
@@ -12168,6 +12428,28 @@ export interface paths {
12168
12428
  patch?: never;
12169
12429
  trace?: never;
12170
12430
  };
12431
+ "/api/organizations/{organization}/users/{user}/{type}/{name}/billing": {
12432
+ parameters: {
12433
+ query?: never;
12434
+ header?: never;
12435
+ path?: never;
12436
+ cookie?: never;
12437
+ };
12438
+ get?: never;
12439
+ put?: never;
12440
+ post?: never;
12441
+ delete?: never;
12442
+ options?: never;
12443
+ head?: never;
12444
+ /**
12445
+ * Update storage billing
12446
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
12447
+ *
12448
+ * Reassigns which resource group the storage bills against.
12449
+ */
12450
+ patch: operations["update-storage-billing"];
12451
+ trace?: never;
12452
+ };
12171
12453
  "/api/organizations/{organization}/users/{user}/{type}/{name}/icon": {
12172
12454
  parameters: {
12173
12455
  query?: never;
@@ -12858,6 +13140,28 @@ export interface paths {
12858
13140
  patch?: never;
12859
13141
  trace?: never;
12860
13142
  };
13143
+ "/api/platform/policies/default-billing-username": {
13144
+ parameters: {
13145
+ query?: never;
13146
+ header?: never;
13147
+ path?: never;
13148
+ cookie?: never;
13149
+ };
13150
+ get?: never;
13151
+ put?: never;
13152
+ /**
13153
+ * Set platform policy: default-billing-username
13154
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
13155
+ *
13156
+ * Sets the default-billing-username policy for the platform: the username shown on dashboards and reports for cost records without a username tag.
13157
+ */
13158
+ post: operations["set-platform-default-billing-username-policy"];
13159
+ delete?: never;
13160
+ options?: never;
13161
+ head?: never;
13162
+ patch?: never;
13163
+ trace?: never;
13164
+ };
12861
13165
  "/api/platform/policies/disable-password-login": {
12862
13166
  parameters: {
12863
13167
  query?: never;
@@ -12924,6 +13228,50 @@ export interface paths {
12924
13228
  patch?: never;
12925
13229
  trace?: never;
12926
13230
  };
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
+ "/api/platform/policies/flexible-allocation-system": {
13254
+ parameters: {
13255
+ query?: never;
13256
+ header?: never;
13257
+ path?: never;
13258
+ cookie?: never;
13259
+ };
13260
+ get?: never;
13261
+ put?: never;
13262
+ /**
13263
+ * Set platform policy: flexible-allocation-system
13264
+ * @description > This is a system-level route, so the response will be independent of the currently authenticated user.
13265
+ *
13266
+ * Sets the flexible-allocation-system policy for the platform. True opts every organization into the flexible allocation system; the legacy system applies when unset.
13267
+ */
13268
+ post: operations["set-platform-flexible-allocation-system-policy"];
13269
+ delete?: never;
13270
+ options?: never;
13271
+ head?: never;
13272
+ patch?: never;
13273
+ trace?: never;
13274
+ };
12927
13275
  "/api/platform/policies/max-api-key-ttl": {
12928
13276
  parameters: {
12929
13277
  query?: never;
@@ -14259,6 +14607,28 @@ export interface paths {
14259
14607
  patch?: never;
14260
14608
  trace?: never;
14261
14609
  };
14610
+ "/api/user/changelog-seen": {
14611
+ parameters: {
14612
+ query?: never;
14613
+ header?: never;
14614
+ path?: never;
14615
+ cookie?: never;
14616
+ };
14617
+ get?: never;
14618
+ /**
14619
+ * Mark the Changelog page as seen
14620
+ * @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
14621
+ *
14622
+ * Records the newest changelog entry the current user has opened so the Changelog indicator only shows for later releases.
14623
+ */
14624
+ put: operations["set-user-changelog-seen"];
14625
+ post?: never;
14626
+ delete?: never;
14627
+ options?: never;
14628
+ head?: never;
14629
+ patch?: never;
14630
+ trace?: never;
14631
+ };
14262
14632
  "/api/user/favorites/{type}/{id}": {
14263
14633
  parameters: {
14264
14634
  query?: never;
@@ -15785,6 +16155,11 @@ export interface components {
15785
16155
  parent?: string;
15786
16156
  /** @description Whether the allocation's unit is rated in USD (false = a raw consumption unit) */
15787
16157
  readonly ratedInUsd?: boolean;
16158
+ /**
16159
+ * Format: int64
16160
+ * @description Number of resource groups currently billing this allocation
16161
+ */
16162
+ readonly resourceGroups?: number;
15788
16163
  /**
15789
16164
  * Format: double
15790
16165
  * @description Total allocation amount
@@ -15803,6 +16178,15 @@ export interface components {
15803
16178
  */
15804
16179
  readonly used?: number;
15805
16180
  };
16181
+ AllocationHistoryEntry: {
16182
+ /** @description Allocation name */
16183
+ allocation: string;
16184
+ /**
16185
+ * Format: date-time
16186
+ * @description When the resource group stopped using this allocation
16187
+ */
16188
+ end: string;
16189
+ };
15806
16190
  AllocationResourceGroup: {
15807
16191
  /** @description Resource group name */
15808
16192
  name: string;
@@ -16032,6 +16416,8 @@ export interface components {
16032
16416
  avatarEtag?: string;
16033
16417
  /** @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. */
16034
16418
  billingAdmin: boolean;
16419
+ /** @description Date (YYYY-MM-DD) of the newest changelog entry the user has opened in the Changelog page; empty when never opened. */
16420
+ changelogSeen?: string;
16035
16421
  /**
16036
16422
  * @description Email address of the user.
16037
16423
  * @example jake.thayne@parallelworks.com
@@ -16481,10 +16867,10 @@ export interface components {
16481
16867
  */
16482
16868
  readonly endpoint?: string;
16483
16869
  /**
16484
- * @description The group to which the Machine Learning Workspace will be associated.
16870
+ * @description The group to which the Machine Learning Workspace will be associated. Optional when resourceGroup is provided.
16485
16871
  * @example myGroup
16486
16872
  */
16487
- group: string;
16873
+ group?: string;
16488
16874
  /**
16489
16875
  * @description The unique identifier of the resource.
16490
16876
  * @example 60c72b2f9b1e8d001c8e4f3a
@@ -16520,6 +16906,11 @@ export interface components {
16520
16906
  * @example us-west-2
16521
16907
  */
16522
16908
  region: string;
16909
+ /**
16910
+ * @description The resource group the workspace bills against. Takes precedence over group.
16911
+ * @example my-resource-group
16912
+ */
16913
+ resourceGroup?: string;
16523
16914
  /**
16524
16915
  * @description The tags associated with the Machine Learning Workspace.
16525
16916
  * @example [
@@ -16933,10 +17324,10 @@ export interface components {
16933
17324
  */
16934
17325
  readonly endpoint?: string;
16935
17326
  /**
16936
- * @description The group to which the Machine Learning Workspace will be associated.
17327
+ * @description The group to which the Machine Learning Workspace will be associated. Optional when resourceGroup is provided.
16937
17328
  * @example myGroup
16938
17329
  */
16939
- group: string;
17330
+ group?: string;
16940
17331
  /**
16941
17332
  * @description The unique identifier of the resource.
16942
17333
  * @example 60c72b2f9b1e8d001c8e4f3a
@@ -16982,6 +17373,11 @@ export interface components {
16982
17373
  * @example us-west-2
16983
17374
  */
16984
17375
  region: string;
17376
+ /**
17377
+ * @description The resource group the workspace bills against. Takes precedence over group.
17378
+ * @example my-resource-group
17379
+ */
17380
+ resourceGroup?: string;
16985
17381
  /**
16986
17382
  * @description The tags associated with the Machine Learning Workspace.
16987
17383
  * @example [
@@ -17641,10 +18037,10 @@ export interface components {
17641
18037
  /** @description Indicates if versioning will be enabled. For AWS buckets only. */
17642
18038
  enableVersioning?: boolean;
17643
18039
  /**
17644
- * @description The group to which the storage will be associated.
18040
+ * @description The group to which the storage will be associated. Optional when resourceGroup is provided.
17645
18041
  * @example myGroup
17646
18042
  */
17647
- group: string;
18043
+ group?: string;
17648
18044
  /**
17649
18045
  * @description Multi-region location to provision the bucket in. When set, the bucket is provisioned as a multi-region bucket instead of a regional bucket. For Google buckets only.
17650
18046
  * @enum {string}
@@ -17652,6 +18048,11 @@ export interface components {
17652
18048
  multiRegion?: "US" | "EU" | "ASIA";
17653
18049
  /** @description Region the storage will be provisioned in. Required unless a Google multi-region or dual-region is specified. */
17654
18050
  region?: string;
18051
+ /**
18052
+ * @description The resource group the storage bills against. Takes precedence over group.
18053
+ * @example my-resource-group
18054
+ */
18055
+ resourceGroup?: string;
17655
18056
  /**
17656
18057
  * @description The tags associated with the storage.
17657
18058
  * @example [
@@ -17811,6 +18212,61 @@ export interface components {
17811
18212
  /** @description Subject of the certificate leaf */
17812
18213
  subject: string;
17813
18214
  };
18215
+ ChangelogAuthor: {
18216
+ /**
18217
+ * @description GitHub username.
18218
+ * @example giraffesyo
18219
+ */
18220
+ github?: string;
18221
+ /**
18222
+ * @description Author handle on the changelog site.
18223
+ * @example giraffesyo
18224
+ */
18225
+ id: string;
18226
+ /**
18227
+ * @description Avatar path, served by the platform.
18228
+ * @example /api/changelog/authors/giraffesyo/avatar
18229
+ */
18230
+ imageUrl?: string;
18231
+ /**
18232
+ * @description LinkedIn profile slug.
18233
+ * @example mcquademichael
18234
+ */
18235
+ linkedin?: string;
18236
+ /**
18237
+ * @description Display name.
18238
+ * @example Michael McQuade
18239
+ */
18240
+ name: string;
18241
+ /**
18242
+ * @description Job title.
18243
+ * @example Director of Engineering
18244
+ */
18245
+ title?: string;
18246
+ /** @description Twitter handle. */
18247
+ twitter?: string;
18248
+ };
18249
+ ChangelogEntry: {
18250
+ /** @description People who contributed to the release. */
18251
+ authors: components["schemas"]["ChangelogAuthor"][] | null;
18252
+ /** @description Curated release notes as markdown. */
18253
+ content: string;
18254
+ /**
18255
+ * @description Release date (YYYY-MM-DD).
18256
+ * @example 2026-08-24
18257
+ */
18258
+ date: string;
18259
+ /**
18260
+ * @description Changelog entry slug, the release date.
18261
+ * @example 2026-08-24
18262
+ */
18263
+ slug: string;
18264
+ /**
18265
+ * @description Platform release the entry describes.
18266
+ * @example v7.92.0
18267
+ */
18268
+ version: string;
18269
+ };
17814
18270
  ChatCompletionChunk: {
17815
18271
  /** @description Completion choices */
17816
18272
  choices: components["schemas"]["Choice"][] | null;
@@ -17985,6 +18441,8 @@ export interface components {
17985
18441
  usersCleaned: number;
17986
18442
  };
17987
18443
  CloudAccountBillingResponse: {
18444
+ /** @description Name of the billing infrastructure. Only set on list responses. */
18445
+ infraName?: string;
17988
18446
  provisionedByOrg: boolean;
17989
18447
  status: string;
17990
18448
  /** Format: date-time */
@@ -18076,6 +18534,7 @@ export interface components {
18076
18534
  };
18077
18535
  };
18078
18536
  CloudAccountListItem: {
18537
+ billing?: components["schemas"]["CloudAccountBillingResponse"];
18079
18538
  csp: string;
18080
18539
  cspId: string;
18081
18540
  name: string;
@@ -18377,33 +18836,8 @@ export interface components {
18377
18836
  deploymentNumber: number;
18378
18837
  /** @description The deployment ID */
18379
18838
  id: string;
18380
- /** @description Step-by-step progress of the deployment */
18381
- provisionStatus: components["schemas"]["ClusterDeploymentProvisionStatus"];
18382
18839
  /** @description The current status of the deployment */
18383
18840
  status?: string;
18384
- /** @description Storages provisioned by the deployment */
18385
- storages: components["schemas"]["ClusterDeploymentStorage"][] | null;
18386
- };
18387
- ClusterDeploymentProvisionStatus: {
18388
- /** @description Progress records for tearing the cluster down */
18389
- deletion?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
18390
- /** @description Progress records for provisioning the cluster */
18391
- provision?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
18392
- /** @description Progress records for the cluster scheduler */
18393
- scheduler?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
18394
- /** @description Progress records for provisioning storage */
18395
- storage?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
18396
- };
18397
- ClusterDeploymentStorage: {
18398
- /** @description The ID of the storage resource */
18399
- id: string;
18400
- /**
18401
- * Format: int64
18402
- * @description The position of the storage among the deployment's storages
18403
- */
18404
- index: number;
18405
- /** @description The name of the storage resource */
18406
- name: string;
18407
18841
  };
18408
18842
  ClusterDisk: {
18409
18843
  encrypted?: boolean;
@@ -18915,7 +19349,7 @@ export interface components {
18915
19349
  cloudAccount?: string;
18916
19350
  /** @description Display name of the AI provider */
18917
19351
  displayName?: string;
18918
- /** @description Billing group name (required for managed Azure and Bedrock providers) */
19352
+ /** @description Billing group name (managed Azure and Bedrock providers; optional when resourceGroup is provided) */
18919
19353
  group?: string;
18920
19354
  /** @description Initial model deployment (managed Azure providers) */
18921
19355
  model?: string;
@@ -18927,6 +19361,8 @@ export interface components {
18927
19361
  network?: string;
18928
19362
  /** @description Region (managed Azure and Bedrock providers) */
18929
19363
  region?: string;
19364
+ /** @description Resource group the provider bills against. Takes precedence over group. */
19365
+ resourceGroup?: string;
18930
19366
  };
18931
19367
  CreateAPIKeyInputBody: {
18932
19368
  /** @description Budget allocation name (required for AI keys) */
@@ -19819,7 +20255,7 @@ export interface components {
19819
20255
  };
19820
20256
  /** @description Slug of a marketplace item to run */
19821
20257
  marketplace?: string;
19822
- /** @description Run the workflow.yaml at the root of a repository: OWNER/REPO or a github.com URL, or the URL of a project on one of the organization's registered GitLab servers, each with an optional @REF. Read as the caller, treated as third-party code. */
20258
+ /** @description Run a repository's workflow.yaml: OWNER/REPO or a github.com URL, or the URL of a project on one of the organization's registered GitLab servers, each with an optional path to a workflow file or the directory holding one, and an optional @REF. Without a path it is the repository root. Read as the caller, treated as third-party code. */
19823
20259
  repository?: string;
19824
20260
  /** @description Session names */
19825
20261
  sessionNames?: {
@@ -20820,6 +21256,11 @@ export interface components {
20820
21256
  * @example 1
20821
21257
  */
20822
21258
  requestedNodes: number;
21259
+ /**
21260
+ * @description The resource group the cluster's usage bills against. Only populated by the single-cluster endpoint.
21261
+ * @example my-resource-group
21262
+ */
21263
+ resourceGroup?: string;
20823
21264
  /** @description Cloud-cluster only: whether running-processes collection is turned on, which lets anyone with access to the cluster view processes and freeze events on each node's detail page. */
20824
21265
  runningProcesses?: boolean;
20825
21266
  /**
@@ -20881,6 +21322,10 @@ export interface components {
20881
21322
  GetBillingDetailsOutputBody: {
20882
21323
  billingDetails: components["schemas"]["BillingDetails"];
20883
21324
  };
21325
+ GetChangelogOutputBody: {
21326
+ /** @description Latest changelog entries, newest first. */
21327
+ entries: components["schemas"]["ChangelogEntry"][] | null;
21328
+ };
20884
21329
  GetClusterMetricsOutputBody: {
20885
21330
  dataPoints: components["schemas"]["ClusterMetricsDataPoint"][] | null;
20886
21331
  };
@@ -21299,7 +21744,7 @@ export interface components {
21299
21744
  description?: string;
21300
21745
  /** @description The display name of the instance. */
21301
21746
  displayName?: string;
21302
- /** @description The group the instance bills to. */
21747
+ /** @description The group the instance bills to. Optional when resourceGroup is provided. */
21303
21748
  group?: string;
21304
21749
  /** @description Unique identifier of the Google Managed Lustre. */
21305
21750
  id?: string;
@@ -21313,6 +21758,8 @@ export interface components {
21313
21758
  performance?: 125 | 250 | 500 | 1000;
21314
21759
  /** @description The gcp region of the instance. */
21315
21760
  region?: string;
21761
+ /** @description The resource group the instance bills against. Takes precedence over group. */
21762
+ resourceGroup?: string;
21316
21763
  /** @description Runtime alert configuration. */
21317
21764
  runtimeAlert?: components["schemas"]["RuntimeAlertInput"];
21318
21765
  /** @description Session cost limit configuration. */
@@ -22034,10 +22481,10 @@ export interface components {
22034
22481
  */
22035
22482
  readonly favorite?: boolean;
22036
22483
  /**
22037
- * @description The group to which the Instance will be associated.
22484
+ * @description The group to which the Instance will be associated. Optional when resourceGroup is provided.
22038
22485
  * @example myGroup
22039
22486
  */
22040
- group: string;
22487
+ group?: string;
22041
22488
  /**
22042
22489
  * @description The hostname of the Instance.
22043
22490
  * @example my-instance-01
@@ -22085,6 +22532,11 @@ export interface components {
22085
22532
  * @example us-west-2
22086
22533
  */
22087
22534
  region: string;
22535
+ /**
22536
+ * @description The resource group the Instance bills against. Takes precedence over group.
22537
+ * @example my-resource-group
22538
+ */
22539
+ resourceGroup?: string;
22088
22540
  /** @description Runtime alert configuration. */
22089
22541
  runtimeAlert?: components["schemas"]["RuntimeAlertInput"];
22090
22542
  /** @description Session cost limit configuration. */
@@ -22263,10 +22715,10 @@ export interface components {
22263
22715
  */
22264
22716
  description: string;
22265
22717
  /**
22266
- * @description The group name to which the IP will be associated.
22718
+ * @description The group name to which the IP will be associated. Optional when resourceGroup is provided.
22267
22719
  * @example myGroup
22268
22720
  */
22269
- group: string;
22721
+ group?: string;
22270
22722
  /**
22271
22723
  * @description The unique identifier of the IP resource.
22272
22724
  * @example 60c72b2f9b1e8d001c8e4f3a
@@ -22302,6 +22754,11 @@ export interface components {
22302
22754
  * @example us-west-2
22303
22755
  */
22304
22756
  region: string;
22757
+ /**
22758
+ * @description The resource group the IP bills against. Takes precedence over group.
22759
+ * @example my-resource-group
22760
+ */
22761
+ resourceGroup?: string;
22305
22762
  /**
22306
22763
  * @description The tags associated with the IP resource.
22307
22764
  * @example [
@@ -23222,10 +23679,10 @@ export interface components {
23222
23679
  */
23223
23680
  readonly endpoint?: string;
23224
23681
  /**
23225
- * @description The group to which the Machine Learning Workspace will be associated.
23682
+ * @description The group to which the Machine Learning Workspace will be associated. Optional when resourceGroup is provided.
23226
23683
  * @example myGroup
23227
23684
  */
23228
- group: string;
23685
+ group?: string;
23229
23686
  /**
23230
23687
  * @description The unique identifier of the resource.
23231
23688
  * @example 60c72b2f9b1e8d001c8e4f3a
@@ -23261,6 +23718,11 @@ export interface components {
23261
23718
  * @example us-west-2
23262
23719
  */
23263
23720
  region: string;
23721
+ /**
23722
+ * @description The resource group the workspace bills against. Takes precedence over group.
23723
+ * @example my-resource-group
23724
+ */
23725
+ resourceGroup?: string;
23264
23726
  /**
23265
23727
  * @description The tags associated with the Machine Learning Workspace.
23266
23728
  * @example [
@@ -23982,6 +24444,10 @@ export interface components {
23982
24444
  /** @description The path inside your workspace where the resource is mounted. __USER__, __CLUSTER__, and __INSTANCE__ are placeholders that get filled in with your username, cluster name, or instance name. */
23983
24445
  workspacePath: string;
23984
24446
  };
24447
+ MoveResourceInputBody: {
24448
+ /** @description Target resource group name */
24449
+ resourceGroup: string;
24450
+ };
23985
24451
  Name: {
23986
24452
  familyName?: string;
23987
24453
  formatted?: string;
@@ -24112,10 +24578,10 @@ export interface components {
24112
24578
  */
24113
24579
  description: string;
24114
24580
  /**
24115
- * @description The group name to which the network interface will be associated.
24581
+ * @description The group name to which the network interface will be associated. Optional when resourceGroup is provided.
24116
24582
  * @example myGroup
24117
24583
  */
24118
- group: string;
24584
+ group?: string;
24119
24585
  /**
24120
24586
  * @description The unique identifier of the network interface resource.
24121
24587
  * @example 60c72b2f9b1e8d001c8e4f3a
@@ -24161,6 +24627,11 @@ export interface components {
24161
24627
  * @example us-west-2
24162
24628
  */
24163
24629
  region: string;
24630
+ /**
24631
+ * @description The resource group the network interface bills against. Takes precedence over group.
24632
+ * @example my-resource-group
24633
+ */
24634
+ resourceGroup?: string;
24164
24635
  /**
24165
24636
  * @description The tags associated with the network interface resource.
24166
24637
  * @example [
@@ -25082,6 +25553,20 @@ export interface components {
25082
25553
  */
25083
25554
  threshold: number;
25084
25555
  };
25556
+ OrgBillingSettings: {
25557
+ /**
25558
+ * @description Allocation accounting system the organization uses. Legacy is the default.
25559
+ * @enum {string}
25560
+ */
25561
+ allocationSystem: "legacy" | "flexible";
25562
+ /** @description Username shown on dashboards and reports for cost records without a username tag. Empty when unset. */
25563
+ 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
+ };
25085
25570
  OrgConnectionPermissionsOutputBody: {
25086
25571
  groups: string[] | null;
25087
25572
  shareWithOrganization: boolean;
@@ -25965,6 +26450,8 @@ export interface components {
25965
26450
  stuckRunSweeperEnabled: boolean;
25966
26451
  /** @description Markdown Terms & Conditions shown to new users during onboarding. Empty disables the prompt. */
25967
26452
  termsAndConditions?: string;
26453
+ /** @description Whether the Changelog page serves the changelog bundled into this build instead of fetching the live one from parallelworks.com. Off by default; turn it on for air-gapped deployments. */
26454
+ useBuiltinChangelog: boolean;
25968
26455
  /** @description Indicates if the platform license is valid. */
25969
26456
  validLicense?: boolean;
25970
26457
  /**
@@ -28164,13 +28651,94 @@ export interface components {
28164
28651
  updatedAt: string;
28165
28652
  };
28166
28653
  ResourceGroup: {
28654
+ /**
28655
+ * Format: int64
28656
+ * @description Number of assigned resources that are not failed
28657
+ */
28658
+ readonly activeResourceCount?: number;
28659
+ /** @description Current allocation name */
28660
+ allocation: string | null;
28661
+ /**
28662
+ * Format: int64
28663
+ * @description Number of assigned resources in a failed state
28664
+ */
28665
+ readonly failedResourceCount?: number;
28666
+ /** @description True when the resource group is managed automatically from a group and cannot be edited or deleted */
28667
+ readonly managed?: boolean;
28668
+ /** @description Resource group name */
28669
+ name: string | null;
28670
+ /**
28671
+ * Format: int64
28672
+ * @description Number of resources assigned to this resource group
28673
+ */
28674
+ readonly resourceCount?: number;
28675
+ /** @description Owner username */
28676
+ readonly user?: string;
28677
+ };
28678
+ ResourceGroupDetail: {
28679
+ /**
28680
+ * Format: int64
28681
+ * @description Number of assigned resources that are not failed
28682
+ */
28683
+ readonly activeResourceCount?: number;
28167
28684
  /** @description Current allocation name */
28168
28685
  allocation: string | null;
28686
+ /** @description Resource types the current allocation may fund; empty means unrestricted */
28687
+ readonly allocationAllowed?: string[] | null;
28688
+ /** @description Previous allocations of this resource group, oldest first */
28689
+ readonly allocationHistory?: components["schemas"]["AllocationHistoryEntry"][] | null;
28690
+ /**
28691
+ * Format: double
28692
+ * @description Budget total of the current allocation
28693
+ */
28694
+ readonly allocationTotal?: number;
28695
+ /** @description Unit the current allocation is denominated in */
28696
+ readonly allocationUnit?: string;
28697
+ /**
28698
+ * Format: double
28699
+ * @description Amount used of the current allocation (includes billing estimates)
28700
+ */
28701
+ readonly allocationUsed?: number;
28702
+ /**
28703
+ * Format: int64
28704
+ * @description Number of assigned resources in a failed state
28705
+ */
28706
+ readonly failedResourceCount?: number;
28707
+ /** @description True when the resource group is managed automatically from a group and cannot be edited or deleted */
28708
+ readonly managed?: boolean;
28169
28709
  /** @description Resource group name */
28170
28710
  name: string | null;
28711
+ /**
28712
+ * Format: int64
28713
+ * @description Number of resources assigned to this resource group
28714
+ */
28715
+ readonly resourceCount?: number;
28171
28716
  /** @description Owner username */
28172
28717
  readonly user?: string;
28173
28718
  };
28719
+ ResourceGroupResource: {
28720
+ /**
28721
+ * Format: date-time
28722
+ * @description When the resource was created
28723
+ */
28724
+ createdAt: string;
28725
+ /** @description Resource ID */
28726
+ id: string;
28727
+ /** @description Custom icon configured on the resource */
28728
+ imageUrl?: string;
28729
+ /** @description Resource name */
28730
+ name: string;
28731
+ /** @description Resource namespace (owner username) */
28732
+ namespace: string;
28733
+ /** @description Cloud provider (aws, google, azure) */
28734
+ provider: string;
28735
+ /** @description Cloud region */
28736
+ region?: string;
28737
+ /** @description Resource status */
28738
+ status: string;
28739
+ /** @description Resource type (e.g., instance, bucket, cluster) */
28740
+ type: string;
28741
+ };
28174
28742
  ResourceQuota: {
28175
28743
  /**
28176
28744
  * Format: double
@@ -28847,6 +29415,13 @@ export interface components {
28847
29415
  /** @description URL where the icon is served. */
28848
29416
  imageUrl: string;
28849
29417
  };
29418
+ SetChangelogSeenInputBody: {
29419
+ /**
29420
+ * @description Date (YYYY-MM-DD) of the newest changelog entry the user has opened.
29421
+ * @example 2026-08-24
29422
+ */
29423
+ date: string;
29424
+ };
28850
29425
  SetComplimentaryInputBody: {
28851
29426
  /** @description Whether the account is complimentary and consumes no license seat */
28852
29427
  complimentary: boolean;
@@ -29104,6 +29679,31 @@ export interface components {
29104
29679
  /** @description Username of the resource owner. */
29105
29680
  user: string;
29106
29681
  };
29682
+ StorageDeployment: {
29683
+ /**
29684
+ * Format: date-time
29685
+ * @description The deployment creation time.
29686
+ */
29687
+ createdAt: string;
29688
+ /** @description The delete status of the deployment. */
29689
+ deleteStatus?: string;
29690
+ /**
29691
+ * Format: date-time
29692
+ * @description The time the deployment deletion completed.
29693
+ */
29694
+ deletedAt?: string;
29695
+ /** @description The user that deleted the deployment. */
29696
+ deletedBy?: string;
29697
+ /**
29698
+ * Format: int64
29699
+ * @description The deployment number.
29700
+ */
29701
+ deploymentNumber?: number;
29702
+ /** @description The deployment ID. */
29703
+ id: string;
29704
+ /** @description The current status of the deployment. */
29705
+ status?: string;
29706
+ };
29107
29707
  StorageDetail: {
29108
29708
  /** @description Whether the storage is currently attached to a cluster. */
29109
29709
  attached: boolean;
@@ -29324,6 +29924,23 @@ export interface components {
29324
29924
  [key: string]: number;
29325
29925
  };
29326
29926
  };
29927
+ StringPolicyOutput: {
29928
+ /**
29929
+ * @description Level of the policy
29930
+ * @example platform
29931
+ */
29932
+ readonly level: string;
29933
+ /**
29934
+ * @description Name of the policy
29935
+ * @example default-billing-username
29936
+ */
29937
+ readonly name?: string;
29938
+ /**
29939
+ * @description Value of the policy
29940
+ * @example shared-hpc
29941
+ */
29942
+ value?: string;
29943
+ };
29327
29944
  SubdomainAvailabilityResponse: {
29328
29945
  /** @description Whether a new session created by the requesting user could be served at this host. */
29329
29946
  available: boolean;
@@ -29729,6 +30346,8 @@ export interface components {
29729
30346
  stuckRunSweeperEnabled?: boolean;
29730
30347
  /** @description Markdown Terms & Conditions shown to new users during onboarding. Empty disables the prompt. */
29731
30348
  termsAndConditions?: string;
30349
+ /** @description Whether the Changelog page serves the changelog bundled into this build instead of fetching the live one. */
30350
+ useBuiltinChangelog?: boolean;
29732
30351
  /**
29733
30352
  * Format: int64
29734
30353
  * @description Minimum age in days a user workspace container must reach before the hourly scale-down job stops it. 0 scales down regardless of age.
@@ -29758,6 +30377,8 @@ export interface components {
29758
30377
  name?: string;
29759
30378
  /** @description Name of the network the cluster provisions into; cloud clusters only. */
29760
30379
  network?: string;
30380
+ /** @description Name of the resource group the cluster's usage bills against; cloud clusters only. Takes precedence over group. */
30381
+ resourceGroup?: string;
29761
30382
  /** @description Tags; replaces the full list. */
29762
30383
  tags?: string[];
29763
30384
  };
@@ -30029,6 +30650,10 @@ export interface components {
30029
30650
  */
30030
30651
  reservation: string;
30031
30652
  };
30653
+ UpdateResourceGroupInputBody: {
30654
+ /** @description New allocation name */
30655
+ allocation: string;
30656
+ };
30032
30657
  UpdateResourceGroupPermissionsInputBody: {
30033
30658
  /** @description Map of group names to permissions */
30034
30659
  groups: {
@@ -30065,6 +30690,13 @@ export interface components {
30065
30690
  */
30066
30691
  tracesSampleRate: number;
30067
30692
  };
30693
+ UpdateStorageBillingInputBody: {
30694
+ /**
30695
+ * @description Name of the resource group the storage bills against.
30696
+ * @example my-resource-group
30697
+ */
30698
+ resourceGroup: string;
30699
+ };
30068
30700
  UpdateUserProfileBody: {
30069
30701
  /** @description Full name of the user */
30070
30702
  name: string;
@@ -34674,6 +35306,69 @@ export interface operations {
34674
35306
  };
34675
35307
  };
34676
35308
  };
35309
+ "get-changelog": {
35310
+ parameters: {
35311
+ query?: never;
35312
+ header?: never;
35313
+ path?: never;
35314
+ cookie?: never;
35315
+ };
35316
+ requestBody?: never;
35317
+ responses: {
35318
+ /** @description OK */
35319
+ 200: {
35320
+ headers: {
35321
+ [name: string]: unknown;
35322
+ };
35323
+ content: {
35324
+ "application/json": components["schemas"]["GetChangelogOutputBody"];
35325
+ };
35326
+ };
35327
+ /** @description Error */
35328
+ default: {
35329
+ headers: {
35330
+ [name: string]: unknown;
35331
+ };
35332
+ content: {
35333
+ "application/json": components["schemas"]["Error"];
35334
+ };
35335
+ };
35336
+ };
35337
+ };
35338
+ "get-changelog-author-avatar": {
35339
+ parameters: {
35340
+ query?: never;
35341
+ header?: never;
35342
+ path: {
35343
+ /** @description Author id from a changelog entry. */
35344
+ author: string;
35345
+ };
35346
+ cookie?: never;
35347
+ };
35348
+ requestBody?: never;
35349
+ responses: {
35350
+ /** @description OK */
35351
+ 200: {
35352
+ headers: {
35353
+ "Cache-Control"?: string;
35354
+ "Content-Type"?: string;
35355
+ [name: string]: unknown;
35356
+ };
35357
+ content: {
35358
+ "application/json": string;
35359
+ };
35360
+ };
35361
+ /** @description Error */
35362
+ default: {
35363
+ headers: {
35364
+ [name: string]: unknown;
35365
+ };
35366
+ content: {
35367
+ "application/json": components["schemas"]["Error"];
35368
+ };
35369
+ };
35370
+ };
35371
+ };
34677
35372
  "list-user-cloud-accounts": {
34678
35373
  parameters: {
34679
35374
  query?: never;
@@ -38022,6 +38717,36 @@ export interface operations {
38022
38717
  };
38023
38718
  };
38024
38719
  };
38720
+ "delete-notifications": {
38721
+ parameters: {
38722
+ query?: {
38723
+ /** @description Set to true to delete every notification. Omitting it deletes only the notifications that have been read. */
38724
+ all?: boolean;
38725
+ };
38726
+ header?: never;
38727
+ path?: never;
38728
+ cookie?: never;
38729
+ };
38730
+ requestBody?: never;
38731
+ responses: {
38732
+ /** @description No Content */
38733
+ 204: {
38734
+ headers: {
38735
+ [name: string]: unknown;
38736
+ };
38737
+ content?: never;
38738
+ };
38739
+ /** @description Error */
38740
+ default: {
38741
+ headers: {
38742
+ [name: string]: unknown;
38743
+ };
38744
+ content: {
38745
+ "application/json": components["schemas"]["Error"];
38746
+ };
38747
+ };
38748
+ };
38749
+ };
38025
38750
  "get-notifications-options": {
38026
38751
  parameters: {
38027
38752
  query?: never;
@@ -40447,19 +41172,57 @@ export interface operations {
40447
41172
  };
40448
41173
  };
40449
41174
  };
40450
- "get-organization-auth-method-oidc": {
41175
+ "get-organization-auth-method-oidc": {
41176
+ parameters: {
41177
+ query?: never;
41178
+ header?: never;
41179
+ path: {
41180
+ /** @description The name of the organization. */
41181
+ organization: string;
41182
+ /** @description The name of the authentication method to get. */
41183
+ authName: string;
41184
+ };
41185
+ cookie?: never;
41186
+ };
41187
+ requestBody?: never;
41188
+ responses: {
41189
+ /** @description OK */
41190
+ 200: {
41191
+ headers: {
41192
+ [name: string]: unknown;
41193
+ };
41194
+ content: {
41195
+ "application/json": components["schemas"]["Oidc"];
41196
+ };
41197
+ };
41198
+ /** @description Error */
41199
+ default: {
41200
+ headers: {
41201
+ [name: string]: unknown;
41202
+ };
41203
+ content: {
41204
+ "application/json": components["schemas"]["Error"];
41205
+ };
41206
+ };
41207
+ };
41208
+ };
41209
+ "update-organization-auth-method-oidc": {
40451
41210
  parameters: {
40452
41211
  query?: never;
40453
41212
  header?: never;
40454
41213
  path: {
40455
41214
  /** @description The name of the organization. */
40456
41215
  organization: string;
40457
- /** @description The name of the authentication method to get. */
41216
+ /** @description Name of the authentication method to update */
40458
41217
  authName: string;
40459
41218
  };
40460
41219
  cookie?: never;
40461
41220
  };
40462
- requestBody?: never;
41221
+ requestBody: {
41222
+ content: {
41223
+ "application/json": components["schemas"]["Oidc"];
41224
+ };
41225
+ };
40463
41226
  responses: {
40464
41227
  /** @description OK */
40465
41228
  200: {
@@ -40481,23 +41244,17 @@ export interface operations {
40481
41244
  };
40482
41245
  };
40483
41246
  };
40484
- "update-organization-auth-method-oidc": {
41247
+ "add-organization-auth-method-password": {
40485
41248
  parameters: {
40486
41249
  query?: never;
40487
41250
  header?: never;
40488
41251
  path: {
40489
41252
  /** @description The name of the organization. */
40490
41253
  organization: string;
40491
- /** @description Name of the authentication method to update */
40492
- authName: string;
40493
41254
  };
40494
41255
  cookie?: never;
40495
41256
  };
40496
- requestBody: {
40497
- content: {
40498
- "application/json": components["schemas"]["Oidc"];
40499
- };
40500
- };
41257
+ requestBody?: never;
40501
41258
  responses: {
40502
41259
  /** @description OK */
40503
41260
  200: {
@@ -40505,7 +41262,7 @@ export interface operations {
40505
41262
  [name: string]: unknown;
40506
41263
  };
40507
41264
  content: {
40508
- "application/json": components["schemas"]["Oidc"];
41265
+ "application/json": components["schemas"]["AuthMethod"];
40509
41266
  };
40510
41267
  };
40511
41268
  /** @description Error */
@@ -40519,26 +41276,26 @@ export interface operations {
40519
41276
  };
40520
41277
  };
40521
41278
  };
40522
- "add-organization-auth-method-password": {
41279
+ "delete-organization-auth-method": {
40523
41280
  parameters: {
40524
41281
  query?: never;
40525
41282
  header?: never;
40526
41283
  path: {
40527
41284
  /** @description The name of the organization. */
40528
41285
  organization: string;
41286
+ /** @description The name of the authentication method to get. */
41287
+ authName: string;
40529
41288
  };
40530
41289
  cookie?: never;
40531
41290
  };
40532
41291
  requestBody?: never;
40533
41292
  responses: {
40534
- /** @description OK */
40535
- 200: {
41293
+ /** @description No Content */
41294
+ 204: {
40536
41295
  headers: {
40537
41296
  [name: string]: unknown;
40538
41297
  };
40539
- content: {
40540
- "application/json": components["schemas"]["AuthMethod"];
40541
- };
41298
+ content?: never;
40542
41299
  };
40543
41300
  /** @description Error */
40544
41301
  default: {
@@ -40551,26 +41308,26 @@ export interface operations {
40551
41308
  };
40552
41309
  };
40553
41310
  };
40554
- "delete-organization-auth-method": {
41311
+ "get-organization-billing-settings": {
40555
41312
  parameters: {
40556
41313
  query?: never;
40557
41314
  header?: never;
40558
41315
  path: {
40559
41316
  /** @description The name of the organization. */
40560
41317
  organization: string;
40561
- /** @description The name of the authentication method to get. */
40562
- authName: string;
40563
41318
  };
40564
41319
  cookie?: never;
40565
41320
  };
40566
41321
  requestBody?: never;
40567
41322
  responses: {
40568
- /** @description No Content */
40569
- 204: {
41323
+ /** @description OK */
41324
+ 200: {
40570
41325
  headers: {
40571
41326
  [name: string]: unknown;
40572
41327
  };
40573
- content?: never;
41328
+ content: {
41329
+ "application/json": components["schemas"]["OrgBillingSettings"];
41330
+ };
40574
41331
  };
40575
41332
  /** @description Error */
40576
41333
  default: {
@@ -46500,6 +47257,44 @@ export interface operations {
46500
47257
  };
46501
47258
  };
46502
47259
  };
47260
+ "set-organization-default-billing-username-policy": {
47261
+ parameters: {
47262
+ query?: never;
47263
+ header?: never;
47264
+ path: {
47265
+ /** @description The name of the organization. */
47266
+ organization: string;
47267
+ };
47268
+ cookie?: never;
47269
+ };
47270
+ requestBody: {
47271
+ content: {
47272
+ "application/json": string;
47273
+ };
47274
+ };
47275
+ responses: {
47276
+ /** @description OK */
47277
+ 200: {
47278
+ headers: {
47279
+ [name: string]: unknown;
47280
+ };
47281
+ content: {
47282
+ "application/json": {
47283
+ [key: string]: components["schemas"]["StringPolicyOutput"];
47284
+ };
47285
+ };
47286
+ };
47287
+ /** @description Error */
47288
+ default: {
47289
+ headers: {
47290
+ [name: string]: unknown;
47291
+ };
47292
+ content: {
47293
+ "application/json": components["schemas"]["Error"];
47294
+ };
47295
+ };
47296
+ };
47297
+ };
46503
47298
  "set-organization-disable-password-login-policy": {
46504
47299
  parameters: {
46505
47300
  query?: never;
@@ -46538,120 +47333,196 @@ export interface operations {
46538
47333
  };
46539
47334
  };
46540
47335
  };
46541
- "set-organization-enforce-mfa-policy": {
46542
- parameters: {
46543
- query?: never;
46544
- header?: never;
46545
- path: {
46546
- /** @description The name of the organization. */
46547
- organization: string;
46548
- };
46549
- cookie?: never;
46550
- };
46551
- requestBody: {
46552
- content: {
46553
- "application/json": boolean;
46554
- };
46555
- };
46556
- responses: {
46557
- /** @description OK */
46558
- 200: {
46559
- headers: {
46560
- [name: string]: unknown;
46561
- };
46562
- content: {
46563
- "application/json": {
46564
- [key: string]: components["schemas"]["Policy"];
46565
- };
46566
- };
46567
- };
46568
- /** @description Error */
46569
- default: {
46570
- headers: {
46571
- [name: string]: unknown;
46572
- };
46573
- content: {
46574
- "application/json": components["schemas"]["Error"];
46575
- };
46576
- };
46577
- };
46578
- };
46579
- "set-organization-enforce-webauthn-mfa-policy": {
46580
- parameters: {
46581
- query?: never;
46582
- header?: never;
46583
- path: {
46584
- /** @description The name of the organization. */
46585
- organization: string;
46586
- };
46587
- cookie?: never;
46588
- };
46589
- requestBody: {
46590
- content: {
46591
- "application/json": "hardware" | "fips";
46592
- };
46593
- };
46594
- responses: {
46595
- /** @description OK */
46596
- 200: {
46597
- headers: {
46598
- [name: string]: unknown;
46599
- };
46600
- content: {
46601
- "application/json": {
46602
- [key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
46603
- };
46604
- };
46605
- };
46606
- /** @description Error */
46607
- default: {
46608
- headers: {
46609
- [name: string]: unknown;
46610
- };
46611
- content: {
46612
- "application/json": components["schemas"]["Error"];
46613
- };
46614
- };
46615
- };
46616
- };
46617
- "set-organization-event-retention-days-policy": {
46618
- parameters: {
46619
- query?: never;
46620
- header?: never;
46621
- path: {
46622
- /** @description The name of the organization. */
46623
- organization: string;
46624
- };
46625
- cookie?: never;
46626
- };
46627
- requestBody: {
46628
- content: {
46629
- "application/json": number;
46630
- };
46631
- };
46632
- responses: {
46633
- /** @description OK */
46634
- 200: {
46635
- headers: {
46636
- [name: string]: unknown;
46637
- };
46638
- content: {
46639
- "application/json": {
46640
- [key: string]: components["schemas"]["IntPolicyOutput"];
46641
- };
46642
- };
46643
- };
46644
- /** @description Error */
46645
- default: {
46646
- headers: {
46647
- [name: string]: unknown;
46648
- };
46649
- content: {
46650
- "application/json": components["schemas"]["Error"];
46651
- };
46652
- };
46653
- };
46654
- };
47336
+ "set-organization-enforce-mfa-policy": {
47337
+ parameters: {
47338
+ query?: never;
47339
+ header?: never;
47340
+ path: {
47341
+ /** @description The name of the organization. */
47342
+ organization: string;
47343
+ };
47344
+ cookie?: never;
47345
+ };
47346
+ requestBody: {
47347
+ content: {
47348
+ "application/json": boolean;
47349
+ };
47350
+ };
47351
+ responses: {
47352
+ /** @description OK */
47353
+ 200: {
47354
+ headers: {
47355
+ [name: string]: unknown;
47356
+ };
47357
+ content: {
47358
+ "application/json": {
47359
+ [key: string]: components["schemas"]["Policy"];
47360
+ };
47361
+ };
47362
+ };
47363
+ /** @description Error */
47364
+ default: {
47365
+ headers: {
47366
+ [name: string]: unknown;
47367
+ };
47368
+ content: {
47369
+ "application/json": components["schemas"]["Error"];
47370
+ };
47371
+ };
47372
+ };
47373
+ };
47374
+ "set-organization-enforce-webauthn-mfa-policy": {
47375
+ parameters: {
47376
+ query?: never;
47377
+ header?: never;
47378
+ path: {
47379
+ /** @description The name of the organization. */
47380
+ organization: string;
47381
+ };
47382
+ cookie?: never;
47383
+ };
47384
+ requestBody: {
47385
+ content: {
47386
+ "application/json": "hardware" | "fips";
47387
+ };
47388
+ };
47389
+ responses: {
47390
+ /** @description OK */
47391
+ 200: {
47392
+ headers: {
47393
+ [name: string]: unknown;
47394
+ };
47395
+ content: {
47396
+ "application/json": {
47397
+ [key: string]: components["schemas"]["WebAuthnMfaPolicyOutput"];
47398
+ };
47399
+ };
47400
+ };
47401
+ /** @description Error */
47402
+ default: {
47403
+ headers: {
47404
+ [name: string]: unknown;
47405
+ };
47406
+ content: {
47407
+ "application/json": components["schemas"]["Error"];
47408
+ };
47409
+ };
47410
+ };
47411
+ };
47412
+ "set-organization-event-retention-days-policy": {
47413
+ parameters: {
47414
+ query?: never;
47415
+ header?: never;
47416
+ path: {
47417
+ /** @description The name of the organization. */
47418
+ organization: string;
47419
+ };
47420
+ cookie?: never;
47421
+ };
47422
+ requestBody: {
47423
+ content: {
47424
+ "application/json": number;
47425
+ };
47426
+ };
47427
+ responses: {
47428
+ /** @description OK */
47429
+ 200: {
47430
+ headers: {
47431
+ [name: string]: unknown;
47432
+ };
47433
+ content: {
47434
+ "application/json": {
47435
+ [key: string]: components["schemas"]["IntPolicyOutput"];
47436
+ };
47437
+ };
47438
+ };
47439
+ /** @description Error */
47440
+ default: {
47441
+ headers: {
47442
+ [name: string]: unknown;
47443
+ };
47444
+ content: {
47445
+ "application/json": components["schemas"]["Error"];
47446
+ };
47447
+ };
47448
+ };
47449
+ };
47450
+ "set-organization-fiscal-year-start-date-policy": {
47451
+ parameters: {
47452
+ query?: never;
47453
+ header?: never;
47454
+ path: {
47455
+ /** @description The name of the organization. */
47456
+ organization: string;
47457
+ };
47458
+ cookie?: never;
47459
+ };
47460
+ requestBody: {
47461
+ content: {
47462
+ "application/json": string;
47463
+ };
47464
+ };
47465
+ responses: {
47466
+ /** @description OK */
47467
+ 200: {
47468
+ headers: {
47469
+ [name: string]: unknown;
47470
+ };
47471
+ content: {
47472
+ "application/json": {
47473
+ [key: string]: components["schemas"]["StringPolicyOutput"];
47474
+ };
47475
+ };
47476
+ };
47477
+ /** @description Error */
47478
+ default: {
47479
+ headers: {
47480
+ [name: string]: unknown;
47481
+ };
47482
+ content: {
47483
+ "application/json": components["schemas"]["Error"];
47484
+ };
47485
+ };
47486
+ };
47487
+ };
47488
+ "set-organization-flexible-allocation-system-policy": {
47489
+ parameters: {
47490
+ query?: never;
47491
+ header?: never;
47492
+ path: {
47493
+ /** @description The name of the organization. */
47494
+ organization: string;
47495
+ };
47496
+ cookie?: never;
47497
+ };
47498
+ requestBody: {
47499
+ content: {
47500
+ "application/json": boolean;
47501
+ };
47502
+ };
47503
+ responses: {
47504
+ /** @description OK */
47505
+ 200: {
47506
+ headers: {
47507
+ [name: string]: unknown;
47508
+ };
47509
+ content: {
47510
+ "application/json": {
47511
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
47512
+ };
47513
+ };
47514
+ };
47515
+ /** @description Error */
47516
+ default: {
47517
+ headers: {
47518
+ [name: string]: unknown;
47519
+ };
47520
+ content: {
47521
+ "application/json": components["schemas"]["Error"];
47522
+ };
47523
+ };
47524
+ };
47525
+ };
46655
47526
  "set-organization-max-api-key-ttl-policy": {
46656
47527
  parameters: {
46657
47528
  query?: never;
@@ -50920,6 +51791,44 @@ export interface operations {
50920
51791
  };
50921
51792
  };
50922
51793
  };
51794
+ "get-cluster-deployment-provision-status": {
51795
+ parameters: {
51796
+ query?: never;
51797
+ header?: never;
51798
+ path: {
51799
+ /** @description The name of the organization. */
51800
+ organization: string;
51801
+ /** @description The username of the user that owns the cluster */
51802
+ user: string;
51803
+ /** @description The cluster name */
51804
+ clusterName: string;
51805
+ /** @description The deployment number or 'latest' */
51806
+ deploymentNumber: string;
51807
+ };
51808
+ cookie?: never;
51809
+ };
51810
+ requestBody?: never;
51811
+ responses: {
51812
+ /** @description OK */
51813
+ 200: {
51814
+ headers: {
51815
+ [name: string]: unknown;
51816
+ };
51817
+ content: {
51818
+ "application/json": components["schemas"]["ProvisionStatusResponseRecord"][] | null;
51819
+ };
51820
+ };
51821
+ /** @description Error */
51822
+ default: {
51823
+ headers: {
51824
+ [name: string]: unknown;
51825
+ };
51826
+ content: {
51827
+ "application/json": components["schemas"]["Error"];
51828
+ };
51829
+ };
51830
+ };
51831
+ };
50923
51832
  "destroy-cluster": {
50924
51833
  parameters: {
50925
51834
  query?: never;
@@ -53842,7 +54751,117 @@ export interface operations {
53842
54751
  };
53843
54752
  };
53844
54753
  };
53845
- "get-resource-group": {
54754
+ "get-resource-group": {
54755
+ parameters: {
54756
+ query?: never;
54757
+ header?: never;
54758
+ path: {
54759
+ /** @description The name of the organization. */
54760
+ organization: string;
54761
+ /** @description Username of the target user. */
54762
+ user: string;
54763
+ /** @description Resource group name */
54764
+ name: string;
54765
+ };
54766
+ cookie?: never;
54767
+ };
54768
+ requestBody?: never;
54769
+ responses: {
54770
+ /** @description OK */
54771
+ 200: {
54772
+ headers: {
54773
+ [name: string]: unknown;
54774
+ };
54775
+ content: {
54776
+ "application/json": components["schemas"]["ResourceGroupDetail"];
54777
+ };
54778
+ };
54779
+ /** @description Error */
54780
+ default: {
54781
+ headers: {
54782
+ [name: string]: unknown;
54783
+ };
54784
+ content: {
54785
+ "application/json": components["schemas"]["Error"];
54786
+ };
54787
+ };
54788
+ };
54789
+ };
54790
+ "delete-resource-group": {
54791
+ parameters: {
54792
+ query?: never;
54793
+ header?: never;
54794
+ path: {
54795
+ /** @description The name of the organization. */
54796
+ organization: string;
54797
+ /** @description Username of the target user. */
54798
+ user: string;
54799
+ /** @description Resource group name */
54800
+ name: string;
54801
+ };
54802
+ cookie?: never;
54803
+ };
54804
+ requestBody?: never;
54805
+ responses: {
54806
+ /** @description No Content */
54807
+ 204: {
54808
+ headers: {
54809
+ [name: string]: unknown;
54810
+ };
54811
+ content?: never;
54812
+ };
54813
+ /** @description Error */
54814
+ default: {
54815
+ headers: {
54816
+ [name: string]: unknown;
54817
+ };
54818
+ content: {
54819
+ "application/json": components["schemas"]["Error"];
54820
+ };
54821
+ };
54822
+ };
54823
+ };
54824
+ "update-resource-group": {
54825
+ parameters: {
54826
+ query?: never;
54827
+ header?: never;
54828
+ path: {
54829
+ /** @description The name of the organization. */
54830
+ organization: string;
54831
+ /** @description Username of the target user. */
54832
+ user: string;
54833
+ /** @description Resource group name */
54834
+ name: string;
54835
+ };
54836
+ cookie?: never;
54837
+ };
54838
+ requestBody: {
54839
+ content: {
54840
+ "application/json": components["schemas"]["UpdateResourceGroupInputBody"];
54841
+ };
54842
+ };
54843
+ responses: {
54844
+ /** @description OK */
54845
+ 200: {
54846
+ headers: {
54847
+ [name: string]: unknown;
54848
+ };
54849
+ content: {
54850
+ "application/json": components["schemas"]["ResourceGroup"];
54851
+ };
54852
+ };
54853
+ /** @description Error */
54854
+ default: {
54855
+ headers: {
54856
+ [name: string]: unknown;
54857
+ };
54858
+ content: {
54859
+ "application/json": components["schemas"]["Error"];
54860
+ };
54861
+ };
54862
+ };
54863
+ };
54864
+ "get-resource-group-permissions": {
53846
54865
  parameters: {
53847
54866
  query?: never;
53848
54867
  header?: never;
@@ -53864,7 +54883,7 @@ export interface operations {
53864
54883
  [name: string]: unknown;
53865
54884
  };
53866
54885
  content: {
53867
- "application/json": components["schemas"]["ResourceGroup"];
54886
+ "application/json": components["schemas"]["SubjectPermissions"];
53868
54887
  };
53869
54888
  };
53870
54889
  /** @description Error */
@@ -53878,7 +54897,45 @@ export interface operations {
53878
54897
  };
53879
54898
  };
53880
54899
  };
53881
- "get-resource-group-permissions": {
54900
+ "update-resource-group-permissions": {
54901
+ parameters: {
54902
+ query?: never;
54903
+ header?: never;
54904
+ path: {
54905
+ /** @description The name of the organization. */
54906
+ organization: string;
54907
+ /** @description Username of the target user. */
54908
+ user: string;
54909
+ /** @description Resource group name */
54910
+ name: string;
54911
+ };
54912
+ cookie?: never;
54913
+ };
54914
+ requestBody: {
54915
+ content: {
54916
+ "application/json": components["schemas"]["UpdateResourceGroupPermissionsInputBody"];
54917
+ };
54918
+ };
54919
+ responses: {
54920
+ /** @description No Content */
54921
+ 204: {
54922
+ headers: {
54923
+ [name: string]: unknown;
54924
+ };
54925
+ content?: never;
54926
+ };
54927
+ /** @description Error */
54928
+ default: {
54929
+ headers: {
54930
+ [name: string]: unknown;
54931
+ };
54932
+ content: {
54933
+ "application/json": components["schemas"]["Error"];
54934
+ };
54935
+ };
54936
+ };
54937
+ };
54938
+ "list-resource-group-resources": {
53882
54939
  parameters: {
53883
54940
  query?: never;
53884
54941
  header?: never;
@@ -53900,7 +54957,7 @@ export interface operations {
53900
54957
  [name: string]: unknown;
53901
54958
  };
53902
54959
  content: {
53903
- "application/json": components["schemas"]["SubjectPermissions"];
54960
+ "application/json": components["schemas"]["ResourceGroupResource"][] | null;
53904
54961
  };
53905
54962
  };
53906
54963
  /** @description Error */
@@ -53914,7 +54971,7 @@ export interface operations {
53914
54971
  };
53915
54972
  };
53916
54973
  };
53917
- "update-resource-group-permissions": {
54974
+ "move-resource-group-resource": {
53918
54975
  parameters: {
53919
54976
  query?: never;
53920
54977
  header?: never;
@@ -53925,12 +54982,14 @@ export interface operations {
53925
54982
  user: string;
53926
54983
  /** @description Resource group name */
53927
54984
  name: string;
54985
+ /** @description Id of the resource to move */
54986
+ resourceId: string;
53928
54987
  };
53929
54988
  cookie?: never;
53930
54989
  };
53931
54990
  requestBody: {
53932
54991
  content: {
53933
- "application/json": components["schemas"]["UpdateResourceGroupPermissionsInputBody"];
54992
+ "application/json": components["schemas"]["MoveResourceInputBody"];
53934
54993
  };
53935
54994
  };
53936
54995
  responses: {
@@ -54689,6 +55748,45 @@ export interface operations {
54689
55748
  };
54690
55749
  };
54691
55750
  };
55751
+ "get-storage-deployments": {
55752
+ parameters: {
55753
+ query?: {
55754
+ /** @description The page number to return. */
55755
+ page?: number;
55756
+ };
55757
+ header?: never;
55758
+ path: {
55759
+ /** @description The name of the organization. */
55760
+ organization: string;
55761
+ /** @description Username of the target user. */
55762
+ user: string;
55763
+ /** @description The name of the storage resource. */
55764
+ name: string;
55765
+ };
55766
+ cookie?: never;
55767
+ };
55768
+ requestBody?: never;
55769
+ responses: {
55770
+ /** @description OK */
55771
+ 200: {
55772
+ headers: {
55773
+ [name: string]: unknown;
55774
+ };
55775
+ content: {
55776
+ "application/json": components["schemas"]["StorageDeployment"][] | null;
55777
+ };
55778
+ };
55779
+ /** @description Error */
55780
+ default: {
55781
+ headers: {
55782
+ [name: string]: unknown;
55783
+ };
55784
+ content: {
55785
+ "application/json": components["schemas"]["Error"];
55786
+ };
55787
+ };
55788
+ };
55789
+ };
54692
55790
  "get-storage-deployment-deletion-log": {
54693
55791
  parameters: {
54694
55792
  query?: {
@@ -54775,6 +55873,44 @@ export interface operations {
54775
55873
  };
54776
55874
  };
54777
55875
  };
55876
+ "get-storage-deployment-provision-status": {
55877
+ parameters: {
55878
+ query?: never;
55879
+ header?: never;
55880
+ path: {
55881
+ /** @description The name of the organization. */
55882
+ organization: string;
55883
+ /** @description Username of the target user. */
55884
+ user: string;
55885
+ /** @description The name of the storage resource. */
55886
+ name: string;
55887
+ /** @description The deployment number or 'latest'. */
55888
+ deploymentNumber: string;
55889
+ };
55890
+ cookie?: never;
55891
+ };
55892
+ requestBody?: never;
55893
+ responses: {
55894
+ /** @description OK */
55895
+ 200: {
55896
+ headers: {
55897
+ [name: string]: unknown;
55898
+ };
55899
+ content: {
55900
+ "application/json": components["schemas"]["ProvisionStatusResponseRecord"][] | null;
55901
+ };
55902
+ };
55903
+ /** @description Error */
55904
+ default: {
55905
+ headers: {
55906
+ [name: string]: unknown;
55907
+ };
55908
+ content: {
55909
+ "application/json": components["schemas"]["Error"];
55910
+ };
55911
+ };
55912
+ };
55913
+ };
54778
55914
  "get-storage-permissions": {
54779
55915
  parameters: {
54780
55916
  query?: never;
@@ -55282,6 +56418,46 @@ export interface operations {
55282
56418
  };
55283
56419
  };
55284
56420
  };
56421
+ "update-storage-billing": {
56422
+ parameters: {
56423
+ query?: never;
56424
+ header?: never;
56425
+ path: {
56426
+ /** @description The name of the organization. */
56427
+ organization: string;
56428
+ /** @description Username of the target user. */
56429
+ user: string;
56430
+ /** @description The name of the storage resource. */
56431
+ name: string;
56432
+ /** @description The type of the storage. */
56433
+ type: "aws-disk" | "aws-lustre" | "aws-efs" | "aws-bucket" | "azure-bucket" | "azure-disk" | "azure-azfiles" | "azure-managedlustre" | "azure-netappfiles" | "google-disk" | "google-bucket" | "google-filestore" | "google-managedlustre" | "oracle-bucket" | "oracle-oraclefs";
56434
+ };
56435
+ cookie?: never;
56436
+ };
56437
+ requestBody: {
56438
+ content: {
56439
+ "application/json": components["schemas"]["UpdateStorageBillingInputBody"];
56440
+ };
56441
+ };
56442
+ responses: {
56443
+ /** @description No Content */
56444
+ 204: {
56445
+ headers: {
56446
+ [name: string]: unknown;
56447
+ };
56448
+ content?: never;
56449
+ };
56450
+ /** @description Error */
56451
+ default: {
56452
+ headers: {
56453
+ [name: string]: unknown;
56454
+ };
56455
+ content: {
56456
+ "application/json": components["schemas"]["Error"];
56457
+ };
56458
+ };
56459
+ };
56460
+ };
55285
56461
  "delete-storage-icon": {
55286
56462
  parameters: {
55287
56463
  query?: never;
@@ -56753,6 +57929,41 @@ export interface operations {
56753
57929
  };
56754
57930
  };
56755
57931
  };
57932
+ "set-platform-default-billing-username-policy": {
57933
+ parameters: {
57934
+ query?: never;
57935
+ header?: never;
57936
+ path?: never;
57937
+ cookie?: never;
57938
+ };
57939
+ requestBody: {
57940
+ content: {
57941
+ "application/json": string;
57942
+ };
57943
+ };
57944
+ responses: {
57945
+ /** @description OK */
57946
+ 200: {
57947
+ headers: {
57948
+ [name: string]: unknown;
57949
+ };
57950
+ content: {
57951
+ "application/json": {
57952
+ [key: string]: components["schemas"]["StringPolicyOutput"];
57953
+ };
57954
+ };
57955
+ };
57956
+ /** @description Error */
57957
+ default: {
57958
+ headers: {
57959
+ [name: string]: unknown;
57960
+ };
57961
+ content: {
57962
+ "application/json": components["schemas"]["Error"];
57963
+ };
57964
+ };
57965
+ };
57966
+ };
56756
57967
  "set-platform-disable-password-login-policy": {
56757
57968
  parameters: {
56758
57969
  query?: never;
@@ -56858,6 +58069,76 @@ export interface operations {
56858
58069
  };
56859
58070
  };
56860
58071
  };
58072
+ "set-platform-fiscal-year-start-date-policy": {
58073
+ parameters: {
58074
+ query?: never;
58075
+ header?: never;
58076
+ path?: never;
58077
+ cookie?: never;
58078
+ };
58079
+ requestBody: {
58080
+ content: {
58081
+ "application/json": string;
58082
+ };
58083
+ };
58084
+ responses: {
58085
+ /** @description OK */
58086
+ 200: {
58087
+ headers: {
58088
+ [name: string]: unknown;
58089
+ };
58090
+ content: {
58091
+ "application/json": {
58092
+ [key: string]: components["schemas"]["StringPolicyOutput"];
58093
+ };
58094
+ };
58095
+ };
58096
+ /** @description Error */
58097
+ default: {
58098
+ headers: {
58099
+ [name: string]: unknown;
58100
+ };
58101
+ content: {
58102
+ "application/json": components["schemas"]["Error"];
58103
+ };
58104
+ };
58105
+ };
58106
+ };
58107
+ "set-platform-flexible-allocation-system-policy": {
58108
+ parameters: {
58109
+ query?: never;
58110
+ header?: never;
58111
+ path?: never;
58112
+ cookie?: never;
58113
+ };
58114
+ requestBody: {
58115
+ content: {
58116
+ "application/json": boolean;
58117
+ };
58118
+ };
58119
+ responses: {
58120
+ /** @description OK */
58121
+ 200: {
58122
+ headers: {
58123
+ [name: string]: unknown;
58124
+ };
58125
+ content: {
58126
+ "application/json": {
58127
+ [key: string]: components["schemas"]["BooleanPolicyOutput"];
58128
+ };
58129
+ };
58130
+ };
58131
+ /** @description Error */
58132
+ default: {
58133
+ headers: {
58134
+ [name: string]: unknown;
58135
+ };
58136
+ content: {
58137
+ "application/json": components["schemas"]["Error"];
58138
+ };
58139
+ };
58140
+ };
58141
+ };
56861
58142
  "set-platform-max-api-key-ttl-policy": {
56862
58143
  parameters: {
56863
58144
  query?: never;
@@ -57755,6 +59036,10 @@ export interface operations {
57755
59036
  allocation?: string;
57756
59037
  /** @description Sort field and direction */
57757
59038
  sort?: "name" | "-name";
59039
+ /** @description Only resource groups the user may bill new resources against: their own, or shared with use or admin permission */
59040
+ usable?: boolean;
59041
+ /** @description Only resource groups whose current allocation may fund this resource type; groups with no allocation or an unrestricted allocation always match */
59042
+ allows?: "aws" | "azure" | "google" | "oracle" | "openstack" | "kubernetes" | "ai";
57758
59043
  };
57759
59044
  header?: never;
57760
59045
  path?: never;
@@ -59050,6 +60335,37 @@ export interface operations {
59050
60335
  };
59051
60336
  };
59052
60337
  };
60338
+ "set-user-changelog-seen": {
60339
+ parameters: {
60340
+ query?: never;
60341
+ header?: never;
60342
+ path?: never;
60343
+ cookie?: never;
60344
+ };
60345
+ requestBody: {
60346
+ content: {
60347
+ "application/json": components["schemas"]["SetChangelogSeenInputBody"];
60348
+ };
60349
+ };
60350
+ responses: {
60351
+ /** @description No Content */
60352
+ 204: {
60353
+ headers: {
60354
+ [name: string]: unknown;
60355
+ };
60356
+ content?: never;
60357
+ };
60358
+ /** @description Error */
60359
+ default: {
60360
+ headers: {
60361
+ [name: string]: unknown;
60362
+ };
60363
+ content: {
60364
+ "application/json": components["schemas"]["Error"];
60365
+ };
60366
+ };
60367
+ };
60368
+ };
59053
60369
  "set-user-favorite": {
59054
60370
  parameters: {
59055
60371
  query?: never;