@parallelworks/client 7.98.0 → 7.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/api.d.ts +1086 -122
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -4158,7 +4158,13 @@ export interface paths {
|
|
|
4158
4158
|
delete: operations["delete-notifications"];
|
|
4159
4159
|
options?: never;
|
|
4160
4160
|
head?: never;
|
|
4161
|
-
|
|
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 billing settings
|
|
5359
|
+
* 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
5360
|
*/
|
|
5355
5361
|
get: operations["get-organization-billing-settings"];
|
|
5356
5362
|
put?: never;
|
|
@@ -5358,13 +5364,7 @@ export interface paths {
|
|
|
5358
5364
|
delete?: never;
|
|
5359
5365
|
options?: never;
|
|
5360
5366
|
head?: never;
|
|
5361
|
-
|
|
5362
|
-
* Update organization billing settings
|
|
5363
|
-
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
5364
|
-
*
|
|
5365
|
-
* Updates the organization's billing settings. Only the fields present in the request change.
|
|
5366
|
-
*/
|
|
5367
|
-
patch: operations["patch-organization-billing-settings"];
|
|
5367
|
+
patch?: never;
|
|
5368
5368
|
trace?: never;
|
|
5369
5369
|
};
|
|
5370
5370
|
"/api/organizations/{organization}/bootstrap": {
|
|
@@ -8035,6 +8035,28 @@ export interface paths {
|
|
|
8035
8035
|
patch?: never;
|
|
8036
8036
|
trace?: never;
|
|
8037
8037
|
};
|
|
8038
|
+
"/api/organizations/{organization}/policies/default-billing-username": {
|
|
8039
|
+
parameters: {
|
|
8040
|
+
query?: never;
|
|
8041
|
+
header?: never;
|
|
8042
|
+
path?: never;
|
|
8043
|
+
cookie?: never;
|
|
8044
|
+
};
|
|
8045
|
+
get?: never;
|
|
8046
|
+
put?: never;
|
|
8047
|
+
/**
|
|
8048
|
+
* Set organization policy: default-billing-username
|
|
8049
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8050
|
+
*
|
|
8051
|
+
* Sets default-billing-username policy for the organization: the username shown on dashboards and reports for cost records without a username tag.
|
|
8052
|
+
*/
|
|
8053
|
+
post: operations["set-organization-default-billing-username-policy"];
|
|
8054
|
+
delete?: never;
|
|
8055
|
+
options?: never;
|
|
8056
|
+
head?: never;
|
|
8057
|
+
patch?: never;
|
|
8058
|
+
trace?: never;
|
|
8059
|
+
};
|
|
8038
8060
|
"/api/organizations/{organization}/policies/disable-password-login": {
|
|
8039
8061
|
parameters: {
|
|
8040
8062
|
query?: never;
|
|
@@ -8123,6 +8145,50 @@ export interface paths {
|
|
|
8123
8145
|
patch?: never;
|
|
8124
8146
|
trace?: never;
|
|
8125
8147
|
};
|
|
8148
|
+
"/api/organizations/{organization}/policies/fiscal-year-start-date": {
|
|
8149
|
+
parameters: {
|
|
8150
|
+
query?: never;
|
|
8151
|
+
header?: never;
|
|
8152
|
+
path?: never;
|
|
8153
|
+
cookie?: never;
|
|
8154
|
+
};
|
|
8155
|
+
get?: never;
|
|
8156
|
+
put?: never;
|
|
8157
|
+
/**
|
|
8158
|
+
* Set organization policy: fiscal-year-start-date
|
|
8159
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8160
|
+
*
|
|
8161
|
+
* Sets fiscal-year-start-date policy for the organization as MM-DD. When unset, billing and reports calculate costs over all time.
|
|
8162
|
+
*/
|
|
8163
|
+
post: operations["set-organization-fiscal-year-start-date-policy"];
|
|
8164
|
+
delete?: never;
|
|
8165
|
+
options?: never;
|
|
8166
|
+
head?: never;
|
|
8167
|
+
patch?: never;
|
|
8168
|
+
trace?: never;
|
|
8169
|
+
};
|
|
8170
|
+
"/api/organizations/{organization}/policies/flexible-allocation-system": {
|
|
8171
|
+
parameters: {
|
|
8172
|
+
query?: never;
|
|
8173
|
+
header?: never;
|
|
8174
|
+
path?: never;
|
|
8175
|
+
cookie?: never;
|
|
8176
|
+
};
|
|
8177
|
+
get?: never;
|
|
8178
|
+
put?: never;
|
|
8179
|
+
/**
|
|
8180
|
+
* Set organization policy: flexible-allocation-system
|
|
8181
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8182
|
+
*
|
|
8183
|
+
* Sets flexible-allocation-system policy for the organization. True opts the organization into the flexible allocation system; the legacy system applies when unset.
|
|
8184
|
+
*/
|
|
8185
|
+
post: operations["set-organization-flexible-allocation-system-policy"];
|
|
8186
|
+
delete?: never;
|
|
8187
|
+
options?: never;
|
|
8188
|
+
head?: never;
|
|
8189
|
+
patch?: never;
|
|
8190
|
+
trace?: never;
|
|
8191
|
+
};
|
|
8126
8192
|
"/api/organizations/{organization}/policies/max-api-key-ttl": {
|
|
8127
8193
|
parameters: {
|
|
8128
8194
|
query?: never;
|
|
@@ -8291,10 +8357,10 @@ export interface paths {
|
|
|
8291
8357
|
cookie?: never;
|
|
8292
8358
|
};
|
|
8293
8359
|
/**
|
|
8294
|
-
* Get summarized
|
|
8360
|
+
* Get summarized costs for an allocation
|
|
8295
8361
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8296
8362
|
*
|
|
8297
|
-
* Returns usage
|
|
8363
|
+
* Returns rated usage and cloud costs for an allocation grouped by day and by type, subtype, user, or SKU for charting and reporting.
|
|
8298
8364
|
*/
|
|
8299
8365
|
get: operations["get-allocation-usage-events-summary"];
|
|
8300
8366
|
put?: never;
|
|
@@ -8313,10 +8379,10 @@ export interface paths {
|
|
|
8313
8379
|
cookie?: never;
|
|
8314
8380
|
};
|
|
8315
8381
|
/**
|
|
8316
|
-
* Get filter options for
|
|
8382
|
+
* Get filter options for allocation costs
|
|
8317
8383
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
8318
8384
|
*
|
|
8319
|
-
* Returns distinct
|
|
8385
|
+
* Returns distinct type, subtype, user, and SKU values across the allocation's rated usage and cloud costs.
|
|
8320
8386
|
*/
|
|
8321
8387
|
get: operations["get-allocation-usage-events-filter-options"];
|
|
8322
8388
|
put?: never;
|
|
@@ -10021,7 +10087,7 @@ export interface paths {
|
|
|
10021
10087
|
* Get cluster deployment
|
|
10022
10088
|
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
10023
10089
|
*
|
|
10024
|
-
* Returns a cluster deployment
|
|
10090
|
+
* Returns a cluster deployment.
|
|
10025
10091
|
*/
|
|
10026
10092
|
get: operations["get-cluster-deployment"];
|
|
10027
10093
|
put?: never;
|
|
@@ -10082,6 +10148,28 @@ export interface paths {
|
|
|
10082
10148
|
patch?: never;
|
|
10083
10149
|
trace?: never;
|
|
10084
10150
|
};
|
|
10151
|
+
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/deployments/{deploymentNumber}/provision-status": {
|
|
10152
|
+
parameters: {
|
|
10153
|
+
query?: never;
|
|
10154
|
+
header?: never;
|
|
10155
|
+
path?: never;
|
|
10156
|
+
cookie?: never;
|
|
10157
|
+
};
|
|
10158
|
+
/**
|
|
10159
|
+
* Get cluster deployment provision status
|
|
10160
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
10161
|
+
*
|
|
10162
|
+
* Returns the step-by-step progress records of a cluster deployment.
|
|
10163
|
+
*/
|
|
10164
|
+
get: operations["get-cluster-deployment-provision-status"];
|
|
10165
|
+
put?: never;
|
|
10166
|
+
post?: never;
|
|
10167
|
+
delete?: never;
|
|
10168
|
+
options?: never;
|
|
10169
|
+
head?: never;
|
|
10170
|
+
patch?: never;
|
|
10171
|
+
trace?: never;
|
|
10172
|
+
};
|
|
10085
10173
|
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/destroy": {
|
|
10086
10174
|
parameters: {
|
|
10087
10175
|
query?: never;
|
|
@@ -11628,10 +11716,22 @@ export interface paths {
|
|
|
11628
11716
|
get: operations["get-resource-group"];
|
|
11629
11717
|
put?: never;
|
|
11630
11718
|
post?: never;
|
|
11631
|
-
|
|
11719
|
+
/**
|
|
11720
|
+
* Delete a resource group
|
|
11721
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
11722
|
+
*
|
|
11723
|
+
* Soft deletes a resource group.
|
|
11724
|
+
*/
|
|
11725
|
+
delete: operations["delete-resource-group"];
|
|
11632
11726
|
options?: never;
|
|
11633
11727
|
head?: never;
|
|
11634
|
-
|
|
11728
|
+
/**
|
|
11729
|
+
* Update a resource group
|
|
11730
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
11731
|
+
*
|
|
11732
|
+
* Updates a resource group's allocation.
|
|
11733
|
+
*/
|
|
11734
|
+
patch: operations["update-resource-group"];
|
|
11635
11735
|
trace?: never;
|
|
11636
11736
|
};
|
|
11637
11737
|
"/api/organizations/{organization}/users/{user}/resource-groups/{name}/permissions": {
|
|
@@ -11662,6 +11762,50 @@ export interface paths {
|
|
|
11662
11762
|
patch: operations["update-resource-group-permissions"];
|
|
11663
11763
|
trace?: never;
|
|
11664
11764
|
};
|
|
11765
|
+
"/api/organizations/{organization}/users/{user}/resource-groups/{name}/resources": {
|
|
11766
|
+
parameters: {
|
|
11767
|
+
query?: never;
|
|
11768
|
+
header?: never;
|
|
11769
|
+
path?: never;
|
|
11770
|
+
cookie?: never;
|
|
11771
|
+
};
|
|
11772
|
+
/**
|
|
11773
|
+
* List resources in a resource group
|
|
11774
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
11775
|
+
*
|
|
11776
|
+
* Returns all active resources assigned to a resource group.
|
|
11777
|
+
*/
|
|
11778
|
+
get: operations["list-resource-group-resources"];
|
|
11779
|
+
put?: never;
|
|
11780
|
+
post?: never;
|
|
11781
|
+
delete?: never;
|
|
11782
|
+
options?: never;
|
|
11783
|
+
head?: never;
|
|
11784
|
+
patch?: never;
|
|
11785
|
+
trace?: never;
|
|
11786
|
+
};
|
|
11787
|
+
"/api/organizations/{organization}/users/{user}/resource-groups/{name}/resources/{resourceId}/move": {
|
|
11788
|
+
parameters: {
|
|
11789
|
+
query?: never;
|
|
11790
|
+
header?: never;
|
|
11791
|
+
path?: never;
|
|
11792
|
+
cookie?: never;
|
|
11793
|
+
};
|
|
11794
|
+
get?: never;
|
|
11795
|
+
put?: never;
|
|
11796
|
+
/**
|
|
11797
|
+
* Move a resource to another resource group
|
|
11798
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
11799
|
+
*
|
|
11800
|
+
* Moves an off resource to a different resource group.
|
|
11801
|
+
*/
|
|
11802
|
+
post: operations["move-resource-group-resource"];
|
|
11803
|
+
delete?: never;
|
|
11804
|
+
options?: never;
|
|
11805
|
+
head?: never;
|
|
11806
|
+
patch?: never;
|
|
11807
|
+
trace?: never;
|
|
11808
|
+
};
|
|
11665
11809
|
"/api/organizations/{organization}/users/{user}/resources": {
|
|
11666
11810
|
parameters: {
|
|
11667
11811
|
query?: never;
|
|
@@ -11990,6 +12134,28 @@ export interface paths {
|
|
|
11990
12134
|
patch?: never;
|
|
11991
12135
|
trace?: never;
|
|
11992
12136
|
};
|
|
12137
|
+
"/api/organizations/{organization}/users/{user}/storage/{name}/deployments": {
|
|
12138
|
+
parameters: {
|
|
12139
|
+
query?: never;
|
|
12140
|
+
header?: never;
|
|
12141
|
+
path?: never;
|
|
12142
|
+
cookie?: never;
|
|
12143
|
+
};
|
|
12144
|
+
/**
|
|
12145
|
+
* List storage deployments
|
|
12146
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
12147
|
+
*
|
|
12148
|
+
* Returns the provisioning deployments for a storage, sorted by most recent first.
|
|
12149
|
+
*/
|
|
12150
|
+
get: operations["get-storage-deployments"];
|
|
12151
|
+
put?: never;
|
|
12152
|
+
post?: never;
|
|
12153
|
+
delete?: never;
|
|
12154
|
+
options?: never;
|
|
12155
|
+
head?: never;
|
|
12156
|
+
patch?: never;
|
|
12157
|
+
trace?: never;
|
|
12158
|
+
};
|
|
11993
12159
|
"/api/organizations/{organization}/users/{user}/storage/{name}/deployments/{deploymentNumber}/logs/deletion": {
|
|
11994
12160
|
parameters: {
|
|
11995
12161
|
query?: never;
|
|
@@ -12034,6 +12200,28 @@ export interface paths {
|
|
|
12034
12200
|
patch?: never;
|
|
12035
12201
|
trace?: never;
|
|
12036
12202
|
};
|
|
12203
|
+
"/api/organizations/{organization}/users/{user}/storage/{name}/deployments/{deploymentNumber}/provision-status": {
|
|
12204
|
+
parameters: {
|
|
12205
|
+
query?: never;
|
|
12206
|
+
header?: never;
|
|
12207
|
+
path?: never;
|
|
12208
|
+
cookie?: never;
|
|
12209
|
+
};
|
|
12210
|
+
/**
|
|
12211
|
+
* Get storage deployment provision status
|
|
12212
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
12213
|
+
*
|
|
12214
|
+
* Returns the provision status records for a storage deployment.
|
|
12215
|
+
*/
|
|
12216
|
+
get: operations["get-storage-deployment-provision-status"];
|
|
12217
|
+
put?: never;
|
|
12218
|
+
post?: never;
|
|
12219
|
+
delete?: never;
|
|
12220
|
+
options?: never;
|
|
12221
|
+
head?: never;
|
|
12222
|
+
patch?: never;
|
|
12223
|
+
trace?: never;
|
|
12224
|
+
};
|
|
12037
12225
|
"/api/organizations/{organization}/users/{user}/storage/{name}/permissions": {
|
|
12038
12226
|
parameters: {
|
|
12039
12227
|
query?: never;
|
|
@@ -12246,6 +12434,28 @@ export interface paths {
|
|
|
12246
12434
|
patch?: never;
|
|
12247
12435
|
trace?: never;
|
|
12248
12436
|
};
|
|
12437
|
+
"/api/organizations/{organization}/users/{user}/{type}/{name}/billing": {
|
|
12438
|
+
parameters: {
|
|
12439
|
+
query?: never;
|
|
12440
|
+
header?: never;
|
|
12441
|
+
path?: never;
|
|
12442
|
+
cookie?: never;
|
|
12443
|
+
};
|
|
12444
|
+
get?: never;
|
|
12445
|
+
put?: never;
|
|
12446
|
+
post?: never;
|
|
12447
|
+
delete?: never;
|
|
12448
|
+
options?: never;
|
|
12449
|
+
head?: never;
|
|
12450
|
+
/**
|
|
12451
|
+
* Update storage billing
|
|
12452
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
12453
|
+
*
|
|
12454
|
+
* Reassigns which resource group the storage bills against.
|
|
12455
|
+
*/
|
|
12456
|
+
patch: operations["update-storage-billing"];
|
|
12457
|
+
trace?: never;
|
|
12458
|
+
};
|
|
12249
12459
|
"/api/organizations/{organization}/users/{user}/{type}/{name}/icon": {
|
|
12250
12460
|
parameters: {
|
|
12251
12461
|
query?: never;
|
|
@@ -12936,6 +13146,28 @@ export interface paths {
|
|
|
12936
13146
|
patch?: never;
|
|
12937
13147
|
trace?: never;
|
|
12938
13148
|
};
|
|
13149
|
+
"/api/platform/policies/default-billing-username": {
|
|
13150
|
+
parameters: {
|
|
13151
|
+
query?: never;
|
|
13152
|
+
header?: never;
|
|
13153
|
+
path?: never;
|
|
13154
|
+
cookie?: never;
|
|
13155
|
+
};
|
|
13156
|
+
get?: never;
|
|
13157
|
+
put?: never;
|
|
13158
|
+
/**
|
|
13159
|
+
* Set platform policy: default-billing-username
|
|
13160
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
13161
|
+
*
|
|
13162
|
+
* Sets the default-billing-username policy for the platform: the username shown on dashboards and reports for cost records without a username tag.
|
|
13163
|
+
*/
|
|
13164
|
+
post: operations["set-platform-default-billing-username-policy"];
|
|
13165
|
+
delete?: never;
|
|
13166
|
+
options?: never;
|
|
13167
|
+
head?: never;
|
|
13168
|
+
patch?: never;
|
|
13169
|
+
trace?: never;
|
|
13170
|
+
};
|
|
12939
13171
|
"/api/platform/policies/disable-password-login": {
|
|
12940
13172
|
parameters: {
|
|
12941
13173
|
query?: never;
|
|
@@ -13002,6 +13234,50 @@ export interface paths {
|
|
|
13002
13234
|
patch?: never;
|
|
13003
13235
|
trace?: never;
|
|
13004
13236
|
};
|
|
13237
|
+
"/api/platform/policies/fiscal-year-start-date": {
|
|
13238
|
+
parameters: {
|
|
13239
|
+
query?: never;
|
|
13240
|
+
header?: never;
|
|
13241
|
+
path?: never;
|
|
13242
|
+
cookie?: never;
|
|
13243
|
+
};
|
|
13244
|
+
get?: never;
|
|
13245
|
+
put?: never;
|
|
13246
|
+
/**
|
|
13247
|
+
* Set platform policy: fiscal-year-start-date
|
|
13248
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
13249
|
+
*
|
|
13250
|
+
* Sets the fiscal-year-start-date policy for the platform as MM-DD. When unset, billing and reports calculate costs over all time.
|
|
13251
|
+
*/
|
|
13252
|
+
post: operations["set-platform-fiscal-year-start-date-policy"];
|
|
13253
|
+
delete?: never;
|
|
13254
|
+
options?: never;
|
|
13255
|
+
head?: never;
|
|
13256
|
+
patch?: never;
|
|
13257
|
+
trace?: never;
|
|
13258
|
+
};
|
|
13259
|
+
"/api/platform/policies/flexible-allocation-system": {
|
|
13260
|
+
parameters: {
|
|
13261
|
+
query?: never;
|
|
13262
|
+
header?: never;
|
|
13263
|
+
path?: never;
|
|
13264
|
+
cookie?: never;
|
|
13265
|
+
};
|
|
13266
|
+
get?: never;
|
|
13267
|
+
put?: never;
|
|
13268
|
+
/**
|
|
13269
|
+
* Set platform policy: flexible-allocation-system
|
|
13270
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
13271
|
+
*
|
|
13272
|
+
* Sets the flexible-allocation-system policy for the platform. True opts every organization into the flexible allocation system; the legacy system applies when unset.
|
|
13273
|
+
*/
|
|
13274
|
+
post: operations["set-platform-flexible-allocation-system-policy"];
|
|
13275
|
+
delete?: never;
|
|
13276
|
+
options?: never;
|
|
13277
|
+
head?: never;
|
|
13278
|
+
patch?: never;
|
|
13279
|
+
trace?: never;
|
|
13280
|
+
};
|
|
13005
13281
|
"/api/platform/policies/max-api-key-ttl": {
|
|
13006
13282
|
parameters: {
|
|
13007
13283
|
query?: never;
|
|
@@ -15885,6 +16161,11 @@ export interface components {
|
|
|
15885
16161
|
parent?: string;
|
|
15886
16162
|
/** @description Whether the allocation's unit is rated in USD (false = a raw consumption unit) */
|
|
15887
16163
|
readonly ratedInUsd?: boolean;
|
|
16164
|
+
/**
|
|
16165
|
+
* Format: int64
|
|
16166
|
+
* @description Number of resource groups currently billing this allocation
|
|
16167
|
+
*/
|
|
16168
|
+
readonly resourceGroups?: number;
|
|
15888
16169
|
/**
|
|
15889
16170
|
* Format: double
|
|
15890
16171
|
* @description Total allocation amount
|
|
@@ -15903,6 +16184,15 @@ export interface components {
|
|
|
15903
16184
|
*/
|
|
15904
16185
|
readonly used?: number;
|
|
15905
16186
|
};
|
|
16187
|
+
AllocationHistoryEntry: {
|
|
16188
|
+
/** @description Allocation name */
|
|
16189
|
+
allocation: string;
|
|
16190
|
+
/**
|
|
16191
|
+
* Format: date-time
|
|
16192
|
+
* @description When the resource group stopped using this allocation
|
|
16193
|
+
*/
|
|
16194
|
+
end: string;
|
|
16195
|
+
};
|
|
15906
16196
|
AllocationResourceGroup: {
|
|
15907
16197
|
/** @description Resource group name */
|
|
15908
16198
|
name: string;
|
|
@@ -16583,10 +16873,10 @@ export interface components {
|
|
|
16583
16873
|
*/
|
|
16584
16874
|
readonly endpoint?: string;
|
|
16585
16875
|
/**
|
|
16586
|
-
* @description The group to which the Machine Learning Workspace will be associated.
|
|
16876
|
+
* @description The group to which the Machine Learning Workspace will be associated. Optional when resourceGroup is provided.
|
|
16587
16877
|
* @example myGroup
|
|
16588
16878
|
*/
|
|
16589
|
-
group
|
|
16879
|
+
group?: string;
|
|
16590
16880
|
/**
|
|
16591
16881
|
* @description The unique identifier of the resource.
|
|
16592
16882
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -16622,6 +16912,11 @@ export interface components {
|
|
|
16622
16912
|
* @example us-west-2
|
|
16623
16913
|
*/
|
|
16624
16914
|
region: string;
|
|
16915
|
+
/**
|
|
16916
|
+
* @description The resource group the workspace bills against. Takes precedence over group.
|
|
16917
|
+
* @example my-resource-group
|
|
16918
|
+
*/
|
|
16919
|
+
resourceGroup?: string;
|
|
16625
16920
|
/**
|
|
16626
16921
|
* @description The tags associated with the Machine Learning Workspace.
|
|
16627
16922
|
* @example [
|
|
@@ -17035,10 +17330,10 @@ export interface components {
|
|
|
17035
17330
|
*/
|
|
17036
17331
|
readonly endpoint?: string;
|
|
17037
17332
|
/**
|
|
17038
|
-
* @description The group to which the Machine Learning Workspace will be associated.
|
|
17333
|
+
* @description The group to which the Machine Learning Workspace will be associated. Optional when resourceGroup is provided.
|
|
17039
17334
|
* @example myGroup
|
|
17040
17335
|
*/
|
|
17041
|
-
group
|
|
17336
|
+
group?: string;
|
|
17042
17337
|
/**
|
|
17043
17338
|
* @description The unique identifier of the resource.
|
|
17044
17339
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -17084,6 +17379,11 @@ export interface components {
|
|
|
17084
17379
|
* @example us-west-2
|
|
17085
17380
|
*/
|
|
17086
17381
|
region: string;
|
|
17382
|
+
/**
|
|
17383
|
+
* @description The resource group the workspace bills against. Takes precedence over group.
|
|
17384
|
+
* @example my-resource-group
|
|
17385
|
+
*/
|
|
17386
|
+
resourceGroup?: string;
|
|
17087
17387
|
/**
|
|
17088
17388
|
* @description The tags associated with the Machine Learning Workspace.
|
|
17089
17389
|
* @example [
|
|
@@ -17743,10 +18043,10 @@ export interface components {
|
|
|
17743
18043
|
/** @description Indicates if versioning will be enabled. For AWS buckets only. */
|
|
17744
18044
|
enableVersioning?: boolean;
|
|
17745
18045
|
/**
|
|
17746
|
-
* @description The group to which the storage will be associated.
|
|
18046
|
+
* @description The group to which the storage will be associated. Optional when resourceGroup is provided.
|
|
17747
18047
|
* @example myGroup
|
|
17748
18048
|
*/
|
|
17749
|
-
group
|
|
18049
|
+
group?: string;
|
|
17750
18050
|
/**
|
|
17751
18051
|
* @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.
|
|
17752
18052
|
* @enum {string}
|
|
@@ -17754,6 +18054,11 @@ export interface components {
|
|
|
17754
18054
|
multiRegion?: "US" | "EU" | "ASIA";
|
|
17755
18055
|
/** @description Region the storage will be provisioned in. Required unless a Google multi-region or dual-region is specified. */
|
|
17756
18056
|
region?: string;
|
|
18057
|
+
/**
|
|
18058
|
+
* @description The resource group the storage bills against. Takes precedence over group.
|
|
18059
|
+
* @example my-resource-group
|
|
18060
|
+
*/
|
|
18061
|
+
resourceGroup?: string;
|
|
17757
18062
|
/**
|
|
17758
18063
|
* @description The tags associated with the storage.
|
|
17759
18064
|
* @example [
|
|
@@ -17818,6 +18123,8 @@ export interface components {
|
|
|
17818
18123
|
protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
17819
18124
|
/** @description Connections carry a credential */
|
|
17820
18125
|
requiresApiKey: boolean;
|
|
18126
|
+
/** @description Model IDs that reject image input; overrides the platform's built-in capability data */
|
|
18127
|
+
textOnlyModels?: string[] | null;
|
|
17821
18128
|
/** @enum {string} */
|
|
17822
18129
|
tlsVerification?: "public" | "ca-certificate" | "skip";
|
|
17823
18130
|
/** @enum {string} */
|
|
@@ -17839,6 +18146,8 @@ export interface components {
|
|
|
17839
18146
|
minimumTlsVersion: "1.2" | "1.3";
|
|
17840
18147
|
/** @enum {string} */
|
|
17841
18148
|
protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
18149
|
+
/** @description Model IDs that reject image input; overrides the platform's built-in capability data */
|
|
18150
|
+
textOnlyModels?: string[] | null;
|
|
17842
18151
|
/** @enum {string} */
|
|
17843
18152
|
tlsVerification?: "public" | "ca-certificate" | "skip";
|
|
17844
18153
|
/** @enum {string} */
|
|
@@ -17875,6 +18184,8 @@ export interface components {
|
|
|
17875
18184
|
protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
17876
18185
|
/** @description Connections carry a credential */
|
|
17877
18186
|
requiresApiKey: boolean;
|
|
18187
|
+
/** @description Model IDs that reject image input; overrides the platform's built-in capability data */
|
|
18188
|
+
textOnlyModels?: string[] | null;
|
|
17878
18189
|
/** @enum {string} */
|
|
17879
18190
|
tlsVerification: "public" | "ca-certificate" | "skip";
|
|
17880
18191
|
/** @enum {string} */
|
|
@@ -18235,7 +18546,7 @@ export interface components {
|
|
|
18235
18546
|
};
|
|
18236
18547
|
};
|
|
18237
18548
|
CloudAccountListItem: {
|
|
18238
|
-
billing
|
|
18549
|
+
billing?: components["schemas"]["CloudAccountBillingResponse"];
|
|
18239
18550
|
csp: string;
|
|
18240
18551
|
cspId: string;
|
|
18241
18552
|
name: string;
|
|
@@ -18537,33 +18848,8 @@ export interface components {
|
|
|
18537
18848
|
deploymentNumber: number;
|
|
18538
18849
|
/** @description The deployment ID */
|
|
18539
18850
|
id: string;
|
|
18540
|
-
/** @description Step-by-step progress of the deployment */
|
|
18541
|
-
provisionStatus: components["schemas"]["ClusterDeploymentProvisionStatus"];
|
|
18542
18851
|
/** @description The current status of the deployment */
|
|
18543
18852
|
status?: string;
|
|
18544
|
-
/** @description Storages provisioned by the deployment */
|
|
18545
|
-
storages: components["schemas"]["ClusterDeploymentStorage"][] | null;
|
|
18546
|
-
};
|
|
18547
|
-
ClusterDeploymentProvisionStatus: {
|
|
18548
|
-
/** @description Progress records for tearing the cluster down */
|
|
18549
|
-
deletion?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
|
|
18550
|
-
/** @description Progress records for provisioning the cluster */
|
|
18551
|
-
provision?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
|
|
18552
|
-
/** @description Progress records for the cluster scheduler */
|
|
18553
|
-
scheduler?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
|
|
18554
|
-
/** @description Progress records for provisioning storage */
|
|
18555
|
-
storage?: components["schemas"]["ProvisionStatusResponseRecord"][] | null;
|
|
18556
|
-
};
|
|
18557
|
-
ClusterDeploymentStorage: {
|
|
18558
|
-
/** @description The ID of the storage resource */
|
|
18559
|
-
id: string;
|
|
18560
|
-
/**
|
|
18561
|
-
* Format: int64
|
|
18562
|
-
* @description The position of the storage among the deployment's storages
|
|
18563
|
-
*/
|
|
18564
|
-
index: number;
|
|
18565
|
-
/** @description The name of the storage resource */
|
|
18566
|
-
name: string;
|
|
18567
18853
|
};
|
|
18568
18854
|
ClusterDisk: {
|
|
18569
18855
|
encrypted?: boolean;
|
|
@@ -19075,7 +19361,7 @@ export interface components {
|
|
|
19075
19361
|
cloudAccount?: string;
|
|
19076
19362
|
/** @description Display name of the AI provider */
|
|
19077
19363
|
displayName?: string;
|
|
19078
|
-
/** @description Billing group name (
|
|
19364
|
+
/** @description Billing group name (managed Azure and Bedrock providers; optional when resourceGroup is provided) */
|
|
19079
19365
|
group?: string;
|
|
19080
19366
|
/** @description Initial model deployment (managed Azure providers) */
|
|
19081
19367
|
model?: string;
|
|
@@ -19087,6 +19373,8 @@ export interface components {
|
|
|
19087
19373
|
network?: string;
|
|
19088
19374
|
/** @description Region (managed Azure and Bedrock providers) */
|
|
19089
19375
|
region?: string;
|
|
19376
|
+
/** @description Resource group the provider bills against. Takes precedence over group. */
|
|
19377
|
+
resourceGroup?: string;
|
|
19090
19378
|
};
|
|
19091
19379
|
CreateAPIKeyInputBody: {
|
|
19092
19380
|
/** @description Budget allocation name (required for AI keys) */
|
|
@@ -20980,6 +21268,11 @@ export interface components {
|
|
|
20980
21268
|
* @example 1
|
|
20981
21269
|
*/
|
|
20982
21270
|
requestedNodes: number;
|
|
21271
|
+
/**
|
|
21272
|
+
* @description The resource group the cluster's usage bills against. Only populated by the single-cluster endpoint.
|
|
21273
|
+
* @example my-resource-group
|
|
21274
|
+
*/
|
|
21275
|
+
resourceGroup?: string;
|
|
20983
21276
|
/** @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. */
|
|
20984
21277
|
runningProcesses?: boolean;
|
|
20985
21278
|
/**
|
|
@@ -21196,7 +21489,7 @@ export interface components {
|
|
|
21196
21489
|
baseUrl?: string;
|
|
21197
21490
|
/** @description PEM-encoded CA certificate the server's certificate chains to. Only accepted with ca-certificate verification. */
|
|
21198
21491
|
caCertificate?: string;
|
|
21199
|
-
/** @description New application ID. */
|
|
21492
|
+
/** @description New application ID. An empty value removes the OAuth application. */
|
|
21200
21493
|
clientId?: string;
|
|
21201
21494
|
/** @description New application secret. */
|
|
21202
21495
|
clientSecret?: string;
|
|
@@ -21463,7 +21756,7 @@ export interface components {
|
|
|
21463
21756
|
description?: string;
|
|
21464
21757
|
/** @description The display name of the instance. */
|
|
21465
21758
|
displayName?: string;
|
|
21466
|
-
/** @description The group the instance bills to. */
|
|
21759
|
+
/** @description The group the instance bills to. Optional when resourceGroup is provided. */
|
|
21467
21760
|
group?: string;
|
|
21468
21761
|
/** @description Unique identifier of the Google Managed Lustre. */
|
|
21469
21762
|
id?: string;
|
|
@@ -21477,6 +21770,8 @@ export interface components {
|
|
|
21477
21770
|
performance?: 125 | 250 | 500 | 1000;
|
|
21478
21771
|
/** @description The gcp region of the instance. */
|
|
21479
21772
|
region?: string;
|
|
21773
|
+
/** @description The resource group the instance bills against. Takes precedence over group. */
|
|
21774
|
+
resourceGroup?: string;
|
|
21480
21775
|
/** @description Runtime alert configuration. */
|
|
21481
21776
|
runtimeAlert?: components["schemas"]["RuntimeAlertInput"];
|
|
21482
21777
|
/** @description Session cost limit configuration. */
|
|
@@ -22198,10 +22493,10 @@ export interface components {
|
|
|
22198
22493
|
*/
|
|
22199
22494
|
readonly favorite?: boolean;
|
|
22200
22495
|
/**
|
|
22201
|
-
* @description The group to which the Instance will be associated.
|
|
22496
|
+
* @description The group to which the Instance will be associated. Optional when resourceGroup is provided.
|
|
22202
22497
|
* @example myGroup
|
|
22203
22498
|
*/
|
|
22204
|
-
group
|
|
22499
|
+
group?: string;
|
|
22205
22500
|
/**
|
|
22206
22501
|
* @description The hostname of the Instance.
|
|
22207
22502
|
* @example my-instance-01
|
|
@@ -22249,6 +22544,11 @@ export interface components {
|
|
|
22249
22544
|
* @example us-west-2
|
|
22250
22545
|
*/
|
|
22251
22546
|
region: string;
|
|
22547
|
+
/**
|
|
22548
|
+
* @description The resource group the Instance bills against. Takes precedence over group.
|
|
22549
|
+
* @example my-resource-group
|
|
22550
|
+
*/
|
|
22551
|
+
resourceGroup?: string;
|
|
22252
22552
|
/** @description Runtime alert configuration. */
|
|
22253
22553
|
runtimeAlert?: components["schemas"]["RuntimeAlertInput"];
|
|
22254
22554
|
/** @description Session cost limit configuration. */
|
|
@@ -22427,10 +22727,10 @@ export interface components {
|
|
|
22427
22727
|
*/
|
|
22428
22728
|
description: string;
|
|
22429
22729
|
/**
|
|
22430
|
-
* @description The group name to which the IP will be associated.
|
|
22730
|
+
* @description The group name to which the IP will be associated. Optional when resourceGroup is provided.
|
|
22431
22731
|
* @example myGroup
|
|
22432
22732
|
*/
|
|
22433
|
-
group
|
|
22733
|
+
group?: string;
|
|
22434
22734
|
/**
|
|
22435
22735
|
* @description The unique identifier of the IP resource.
|
|
22436
22736
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -22466,6 +22766,11 @@ export interface components {
|
|
|
22466
22766
|
* @example us-west-2
|
|
22467
22767
|
*/
|
|
22468
22768
|
region: string;
|
|
22769
|
+
/**
|
|
22770
|
+
* @description The resource group the IP bills against. Takes precedence over group.
|
|
22771
|
+
* @example my-resource-group
|
|
22772
|
+
*/
|
|
22773
|
+
resourceGroup?: string;
|
|
22469
22774
|
/**
|
|
22470
22775
|
* @description The tags associated with the IP resource.
|
|
22471
22776
|
* @example [
|
|
@@ -23386,10 +23691,10 @@ export interface components {
|
|
|
23386
23691
|
*/
|
|
23387
23692
|
readonly endpoint?: string;
|
|
23388
23693
|
/**
|
|
23389
|
-
* @description The group to which the Machine Learning Workspace will be associated.
|
|
23694
|
+
* @description The group to which the Machine Learning Workspace will be associated. Optional when resourceGroup is provided.
|
|
23390
23695
|
* @example myGroup
|
|
23391
23696
|
*/
|
|
23392
|
-
group
|
|
23697
|
+
group?: string;
|
|
23393
23698
|
/**
|
|
23394
23699
|
* @description The unique identifier of the resource.
|
|
23395
23700
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -23425,6 +23730,11 @@ export interface components {
|
|
|
23425
23730
|
* @example us-west-2
|
|
23426
23731
|
*/
|
|
23427
23732
|
region: string;
|
|
23733
|
+
/**
|
|
23734
|
+
* @description The resource group the workspace bills against. Takes precedence over group.
|
|
23735
|
+
* @example my-resource-group
|
|
23736
|
+
*/
|
|
23737
|
+
resourceGroup?: string;
|
|
23428
23738
|
/**
|
|
23429
23739
|
* @description The tags associated with the Machine Learning Workspace.
|
|
23430
23740
|
* @example [
|
|
@@ -24051,6 +24361,8 @@ export interface components {
|
|
|
24051
24361
|
reasoning_efforts?: string[] | null;
|
|
24052
24362
|
supports_responses?: boolean;
|
|
24053
24363
|
supports_usage?: boolean;
|
|
24364
|
+
/** @description Whether the model accepts image input; absent when the platform has no capability data for it */
|
|
24365
|
+
supports_vision?: boolean;
|
|
24054
24366
|
/** @enum {string} */
|
|
24055
24367
|
tool_calling_mode: "native" | "emulated" | "none";
|
|
24056
24368
|
usage_not_supported?: boolean;
|
|
@@ -24146,6 +24458,10 @@ export interface components {
|
|
|
24146
24458
|
/** @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. */
|
|
24147
24459
|
workspacePath: string;
|
|
24148
24460
|
};
|
|
24461
|
+
MoveResourceInputBody: {
|
|
24462
|
+
/** @description Target resource group name */
|
|
24463
|
+
resourceGroup: string;
|
|
24464
|
+
};
|
|
24149
24465
|
Name: {
|
|
24150
24466
|
familyName?: string;
|
|
24151
24467
|
formatted?: string;
|
|
@@ -24276,10 +24592,10 @@ export interface components {
|
|
|
24276
24592
|
*/
|
|
24277
24593
|
description: string;
|
|
24278
24594
|
/**
|
|
24279
|
-
* @description The group name to which the network interface will be associated.
|
|
24595
|
+
* @description The group name to which the network interface will be associated. Optional when resourceGroup is provided.
|
|
24280
24596
|
* @example myGroup
|
|
24281
24597
|
*/
|
|
24282
|
-
group
|
|
24598
|
+
group?: string;
|
|
24283
24599
|
/**
|
|
24284
24600
|
* @description The unique identifier of the network interface resource.
|
|
24285
24601
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -24325,6 +24641,11 @@ export interface components {
|
|
|
24325
24641
|
* @example us-west-2
|
|
24326
24642
|
*/
|
|
24327
24643
|
region: string;
|
|
24644
|
+
/**
|
|
24645
|
+
* @description The resource group the network interface bills against. Takes precedence over group.
|
|
24646
|
+
* @example my-resource-group
|
|
24647
|
+
*/
|
|
24648
|
+
resourceGroup?: string;
|
|
24328
24649
|
/**
|
|
24329
24650
|
* @description The tags associated with the network interface resource.
|
|
24330
24651
|
* @example [
|
|
@@ -25469,6 +25790,8 @@ export interface components {
|
|
|
25469
25790
|
protocol: "azure-foundry" | "bedrock-converse" | "codex" | "anthropic-messages" | "openai-chat" | "openai-responses";
|
|
25470
25791
|
/** @description Connections carry a credential */
|
|
25471
25792
|
requiresApiKey: boolean;
|
|
25793
|
+
/** @description Model IDs that reject image input; overrides the platform's built-in capability data */
|
|
25794
|
+
textOnlyModels?: string[] | null;
|
|
25472
25795
|
/** @enum {string} */
|
|
25473
25796
|
tlsVerification: "public" | "ca-certificate" | "skip";
|
|
25474
25797
|
/** @enum {string} */
|
|
@@ -25743,20 +26066,6 @@ export interface components {
|
|
|
25743
26066
|
/** @description List of flavor cost updates */
|
|
25744
26067
|
flavors: components["schemas"]["FlavorCostUpdate"][] | null;
|
|
25745
26068
|
};
|
|
25746
|
-
PatchOrgBillingSettingsInputBody: {
|
|
25747
|
-
/**
|
|
25748
|
-
* @description Allocation accounting system the organization uses.
|
|
25749
|
-
* @enum {string}
|
|
25750
|
-
*/
|
|
25751
|
-
allocationSystem?: "legacy" | "flexible";
|
|
25752
|
-
/** @description Username shown on dashboards and reports for cost records without a username tag. An empty string clears it. */
|
|
25753
|
-
defaultBillingUsername?: string;
|
|
25754
|
-
/**
|
|
25755
|
-
* @description Recurring fiscal year start date as MM-DD. An empty string clears it.
|
|
25756
|
-
* @example 10-01
|
|
25757
|
-
*/
|
|
25758
|
-
fiscalYearStartDate?: string;
|
|
25759
|
-
};
|
|
25760
26069
|
PatchProvisionStatusBody: {
|
|
25761
26070
|
/**
|
|
25762
26071
|
* @description Provision status ID to update
|
|
@@ -28358,13 +28667,94 @@ export interface components {
|
|
|
28358
28667
|
updatedAt: string;
|
|
28359
28668
|
};
|
|
28360
28669
|
ResourceGroup: {
|
|
28670
|
+
/**
|
|
28671
|
+
* Format: int64
|
|
28672
|
+
* @description Number of assigned resources that are not failed
|
|
28673
|
+
*/
|
|
28674
|
+
readonly activeResourceCount?: number;
|
|
28361
28675
|
/** @description Current allocation name */
|
|
28362
28676
|
allocation: string | null;
|
|
28677
|
+
/**
|
|
28678
|
+
* Format: int64
|
|
28679
|
+
* @description Number of assigned resources in a failed state
|
|
28680
|
+
*/
|
|
28681
|
+
readonly failedResourceCount?: number;
|
|
28682
|
+
/** @description True when the resource group is managed automatically from a group and cannot be edited or deleted */
|
|
28683
|
+
readonly managed?: boolean;
|
|
28363
28684
|
/** @description Resource group name */
|
|
28364
28685
|
name: string | null;
|
|
28686
|
+
/**
|
|
28687
|
+
* Format: int64
|
|
28688
|
+
* @description Number of resources assigned to this resource group
|
|
28689
|
+
*/
|
|
28690
|
+
readonly resourceCount?: number;
|
|
28365
28691
|
/** @description Owner username */
|
|
28366
28692
|
readonly user?: string;
|
|
28367
28693
|
};
|
|
28694
|
+
ResourceGroupDetail: {
|
|
28695
|
+
/**
|
|
28696
|
+
* Format: int64
|
|
28697
|
+
* @description Number of assigned resources that are not failed
|
|
28698
|
+
*/
|
|
28699
|
+
readonly activeResourceCount?: number;
|
|
28700
|
+
/** @description Current allocation name */
|
|
28701
|
+
allocation: string | null;
|
|
28702
|
+
/** @description Resource types the current allocation may fund; empty means unrestricted */
|
|
28703
|
+
readonly allocationAllowed?: string[] | null;
|
|
28704
|
+
/** @description Previous allocations of this resource group, oldest first */
|
|
28705
|
+
readonly allocationHistory?: components["schemas"]["AllocationHistoryEntry"][] | null;
|
|
28706
|
+
/**
|
|
28707
|
+
* Format: double
|
|
28708
|
+
* @description Budget total of the current allocation
|
|
28709
|
+
*/
|
|
28710
|
+
readonly allocationTotal?: number;
|
|
28711
|
+
/** @description Unit the current allocation is denominated in */
|
|
28712
|
+
readonly allocationUnit?: string;
|
|
28713
|
+
/**
|
|
28714
|
+
* Format: double
|
|
28715
|
+
* @description Amount used of the current allocation (includes billing estimates)
|
|
28716
|
+
*/
|
|
28717
|
+
readonly allocationUsed?: number;
|
|
28718
|
+
/**
|
|
28719
|
+
* Format: int64
|
|
28720
|
+
* @description Number of assigned resources in a failed state
|
|
28721
|
+
*/
|
|
28722
|
+
readonly failedResourceCount?: number;
|
|
28723
|
+
/** @description True when the resource group is managed automatically from a group and cannot be edited or deleted */
|
|
28724
|
+
readonly managed?: boolean;
|
|
28725
|
+
/** @description Resource group name */
|
|
28726
|
+
name: string | null;
|
|
28727
|
+
/**
|
|
28728
|
+
* Format: int64
|
|
28729
|
+
* @description Number of resources assigned to this resource group
|
|
28730
|
+
*/
|
|
28731
|
+
readonly resourceCount?: number;
|
|
28732
|
+
/** @description Owner username */
|
|
28733
|
+
readonly user?: string;
|
|
28734
|
+
};
|
|
28735
|
+
ResourceGroupResource: {
|
|
28736
|
+
/**
|
|
28737
|
+
* Format: date-time
|
|
28738
|
+
* @description When the resource was created
|
|
28739
|
+
*/
|
|
28740
|
+
createdAt: string;
|
|
28741
|
+
/** @description Resource ID */
|
|
28742
|
+
id: string;
|
|
28743
|
+
/** @description Custom icon configured on the resource */
|
|
28744
|
+
imageUrl?: string;
|
|
28745
|
+
/** @description Resource name */
|
|
28746
|
+
name: string;
|
|
28747
|
+
/** @description Resource namespace (owner username) */
|
|
28748
|
+
namespace: string;
|
|
28749
|
+
/** @description Cloud provider (aws, google, azure) */
|
|
28750
|
+
provider: string;
|
|
28751
|
+
/** @description Cloud region */
|
|
28752
|
+
region?: string;
|
|
28753
|
+
/** @description Resource status */
|
|
28754
|
+
status: string;
|
|
28755
|
+
/** @description Resource type (e.g., instance, bucket, cluster) */
|
|
28756
|
+
type: string;
|
|
28757
|
+
};
|
|
28368
28758
|
ResourceQuota: {
|
|
28369
28759
|
/**
|
|
28370
28760
|
* Format: double
|
|
@@ -29305,6 +29695,31 @@ export interface components {
|
|
|
29305
29695
|
/** @description Username of the resource owner. */
|
|
29306
29696
|
user: string;
|
|
29307
29697
|
};
|
|
29698
|
+
StorageDeployment: {
|
|
29699
|
+
/**
|
|
29700
|
+
* Format: date-time
|
|
29701
|
+
* @description The deployment creation time.
|
|
29702
|
+
*/
|
|
29703
|
+
createdAt: string;
|
|
29704
|
+
/** @description The delete status of the deployment. */
|
|
29705
|
+
deleteStatus?: string;
|
|
29706
|
+
/**
|
|
29707
|
+
* Format: date-time
|
|
29708
|
+
* @description The time the deployment deletion completed.
|
|
29709
|
+
*/
|
|
29710
|
+
deletedAt?: string;
|
|
29711
|
+
/** @description The user that deleted the deployment. */
|
|
29712
|
+
deletedBy?: string;
|
|
29713
|
+
/**
|
|
29714
|
+
* Format: int64
|
|
29715
|
+
* @description The deployment number.
|
|
29716
|
+
*/
|
|
29717
|
+
deploymentNumber?: number;
|
|
29718
|
+
/** @description The deployment ID. */
|
|
29719
|
+
id: string;
|
|
29720
|
+
/** @description The current status of the deployment. */
|
|
29721
|
+
status?: string;
|
|
29722
|
+
};
|
|
29308
29723
|
StorageDetail: {
|
|
29309
29724
|
/** @description Whether the storage is currently attached to a cluster. */
|
|
29310
29725
|
attached: boolean;
|
|
@@ -29525,6 +29940,23 @@ export interface components {
|
|
|
29525
29940
|
[key: string]: number;
|
|
29526
29941
|
};
|
|
29527
29942
|
};
|
|
29943
|
+
StringPolicyOutput: {
|
|
29944
|
+
/**
|
|
29945
|
+
* @description Level of the policy
|
|
29946
|
+
* @example platform
|
|
29947
|
+
*/
|
|
29948
|
+
readonly level: string;
|
|
29949
|
+
/**
|
|
29950
|
+
* @description Name of the policy
|
|
29951
|
+
* @example default-billing-username
|
|
29952
|
+
*/
|
|
29953
|
+
readonly name?: string;
|
|
29954
|
+
/**
|
|
29955
|
+
* @description Value of the policy
|
|
29956
|
+
* @example shared-hpc
|
|
29957
|
+
*/
|
|
29958
|
+
value?: string;
|
|
29959
|
+
};
|
|
29528
29960
|
SubdomainAvailabilityResponse: {
|
|
29529
29961
|
/** @description Whether a new session created by the requesting user could be served at this host. */
|
|
29530
29962
|
available: boolean;
|
|
@@ -29961,6 +30393,8 @@ export interface components {
|
|
|
29961
30393
|
name?: string;
|
|
29962
30394
|
/** @description Name of the network the cluster provisions into; cloud clusters only. */
|
|
29963
30395
|
network?: string;
|
|
30396
|
+
/** @description Name of the resource group the cluster's usage bills against; cloud clusters only. Takes precedence over group. */
|
|
30397
|
+
resourceGroup?: string;
|
|
29964
30398
|
/** @description Tags; replaces the full list. */
|
|
29965
30399
|
tags?: string[];
|
|
29966
30400
|
};
|
|
@@ -30232,6 +30666,10 @@ export interface components {
|
|
|
30232
30666
|
*/
|
|
30233
30667
|
reservation: string;
|
|
30234
30668
|
};
|
|
30669
|
+
UpdateResourceGroupInputBody: {
|
|
30670
|
+
/** @description New allocation name */
|
|
30671
|
+
allocation: string;
|
|
30672
|
+
};
|
|
30235
30673
|
UpdateResourceGroupPermissionsInputBody: {
|
|
30236
30674
|
/** @description Map of group names to permissions */
|
|
30237
30675
|
groups: {
|
|
@@ -30268,6 +30706,13 @@ export interface components {
|
|
|
30268
30706
|
*/
|
|
30269
30707
|
tracesSampleRate: number;
|
|
30270
30708
|
};
|
|
30709
|
+
UpdateStorageBillingInputBody: {
|
|
30710
|
+
/**
|
|
30711
|
+
* @description Name of the resource group the storage bills against.
|
|
30712
|
+
* @example my-resource-group
|
|
30713
|
+
*/
|
|
30714
|
+
resourceGroup: string;
|
|
30715
|
+
};
|
|
30271
30716
|
UpdateUserProfileBody: {
|
|
30272
30717
|
/** @description Full name of the user */
|
|
30273
30718
|
name: string;
|
|
@@ -38318,6 +38763,33 @@ export interface operations {
|
|
|
38318
38763
|
};
|
|
38319
38764
|
};
|
|
38320
38765
|
};
|
|
38766
|
+
"update-notifications": {
|
|
38767
|
+
parameters: {
|
|
38768
|
+
query?: never;
|
|
38769
|
+
header?: never;
|
|
38770
|
+
path?: never;
|
|
38771
|
+
cookie?: never;
|
|
38772
|
+
};
|
|
38773
|
+
requestBody?: never;
|
|
38774
|
+
responses: {
|
|
38775
|
+
/** @description No Content */
|
|
38776
|
+
204: {
|
|
38777
|
+
headers: {
|
|
38778
|
+
[name: string]: unknown;
|
|
38779
|
+
};
|
|
38780
|
+
content?: never;
|
|
38781
|
+
};
|
|
38782
|
+
/** @description Error */
|
|
38783
|
+
default: {
|
|
38784
|
+
headers: {
|
|
38785
|
+
[name: string]: unknown;
|
|
38786
|
+
};
|
|
38787
|
+
content: {
|
|
38788
|
+
"application/json": components["schemas"]["Error"];
|
|
38789
|
+
};
|
|
38790
|
+
};
|
|
38791
|
+
};
|
|
38792
|
+
};
|
|
38321
38793
|
"get-notifications-options": {
|
|
38322
38794
|
parameters: {
|
|
38323
38795
|
query?: never;
|
|
@@ -40911,42 +41383,6 @@ export interface operations {
|
|
|
40911
41383
|
};
|
|
40912
41384
|
};
|
|
40913
41385
|
};
|
|
40914
|
-
"patch-organization-billing-settings": {
|
|
40915
|
-
parameters: {
|
|
40916
|
-
query?: never;
|
|
40917
|
-
header?: never;
|
|
40918
|
-
path: {
|
|
40919
|
-
/** @description The name of the organization. */
|
|
40920
|
-
organization: string;
|
|
40921
|
-
};
|
|
40922
|
-
cookie?: never;
|
|
40923
|
-
};
|
|
40924
|
-
requestBody: {
|
|
40925
|
-
content: {
|
|
40926
|
-
"application/json": components["schemas"]["PatchOrgBillingSettingsInputBody"];
|
|
40927
|
-
};
|
|
40928
|
-
};
|
|
40929
|
-
responses: {
|
|
40930
|
-
/** @description OK */
|
|
40931
|
-
200: {
|
|
40932
|
-
headers: {
|
|
40933
|
-
[name: string]: unknown;
|
|
40934
|
-
};
|
|
40935
|
-
content: {
|
|
40936
|
-
"application/json": components["schemas"]["OrgBillingSettings"];
|
|
40937
|
-
};
|
|
40938
|
-
};
|
|
40939
|
-
/** @description Error */
|
|
40940
|
-
default: {
|
|
40941
|
-
headers: {
|
|
40942
|
-
[name: string]: unknown;
|
|
40943
|
-
};
|
|
40944
|
-
content: {
|
|
40945
|
-
"application/json": components["schemas"]["Error"];
|
|
40946
|
-
};
|
|
40947
|
-
};
|
|
40948
|
-
};
|
|
40949
|
-
};
|
|
40950
41386
|
"get-organization-bootstrap-scripts": {
|
|
40951
41387
|
parameters: {
|
|
40952
41388
|
query?: {
|
|
@@ -46864,6 +47300,44 @@ export interface operations {
|
|
|
46864
47300
|
};
|
|
46865
47301
|
};
|
|
46866
47302
|
};
|
|
47303
|
+
"set-organization-default-billing-username-policy": {
|
|
47304
|
+
parameters: {
|
|
47305
|
+
query?: never;
|
|
47306
|
+
header?: never;
|
|
47307
|
+
path: {
|
|
47308
|
+
/** @description The name of the organization. */
|
|
47309
|
+
organization: string;
|
|
47310
|
+
};
|
|
47311
|
+
cookie?: never;
|
|
47312
|
+
};
|
|
47313
|
+
requestBody: {
|
|
47314
|
+
content: {
|
|
47315
|
+
"application/json": string;
|
|
47316
|
+
};
|
|
47317
|
+
};
|
|
47318
|
+
responses: {
|
|
47319
|
+
/** @description OK */
|
|
47320
|
+
200: {
|
|
47321
|
+
headers: {
|
|
47322
|
+
[name: string]: unknown;
|
|
47323
|
+
};
|
|
47324
|
+
content: {
|
|
47325
|
+
"application/json": {
|
|
47326
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
47327
|
+
};
|
|
47328
|
+
};
|
|
47329
|
+
};
|
|
47330
|
+
/** @description Error */
|
|
47331
|
+
default: {
|
|
47332
|
+
headers: {
|
|
47333
|
+
[name: string]: unknown;
|
|
47334
|
+
};
|
|
47335
|
+
content: {
|
|
47336
|
+
"application/json": components["schemas"]["Error"];
|
|
47337
|
+
};
|
|
47338
|
+
};
|
|
47339
|
+
};
|
|
47340
|
+
};
|
|
46867
47341
|
"set-organization-disable-password-login-policy": {
|
|
46868
47342
|
parameters: {
|
|
46869
47343
|
query?: never;
|
|
@@ -47016,6 +47490,82 @@ export interface operations {
|
|
|
47016
47490
|
};
|
|
47017
47491
|
};
|
|
47018
47492
|
};
|
|
47493
|
+
"set-organization-fiscal-year-start-date-policy": {
|
|
47494
|
+
parameters: {
|
|
47495
|
+
query?: never;
|
|
47496
|
+
header?: never;
|
|
47497
|
+
path: {
|
|
47498
|
+
/** @description The name of the organization. */
|
|
47499
|
+
organization: string;
|
|
47500
|
+
};
|
|
47501
|
+
cookie?: never;
|
|
47502
|
+
};
|
|
47503
|
+
requestBody: {
|
|
47504
|
+
content: {
|
|
47505
|
+
"application/json": string;
|
|
47506
|
+
};
|
|
47507
|
+
};
|
|
47508
|
+
responses: {
|
|
47509
|
+
/** @description OK */
|
|
47510
|
+
200: {
|
|
47511
|
+
headers: {
|
|
47512
|
+
[name: string]: unknown;
|
|
47513
|
+
};
|
|
47514
|
+
content: {
|
|
47515
|
+
"application/json": {
|
|
47516
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
47517
|
+
};
|
|
47518
|
+
};
|
|
47519
|
+
};
|
|
47520
|
+
/** @description Error */
|
|
47521
|
+
default: {
|
|
47522
|
+
headers: {
|
|
47523
|
+
[name: string]: unknown;
|
|
47524
|
+
};
|
|
47525
|
+
content: {
|
|
47526
|
+
"application/json": components["schemas"]["Error"];
|
|
47527
|
+
};
|
|
47528
|
+
};
|
|
47529
|
+
};
|
|
47530
|
+
};
|
|
47531
|
+
"set-organization-flexible-allocation-system-policy": {
|
|
47532
|
+
parameters: {
|
|
47533
|
+
query?: never;
|
|
47534
|
+
header?: never;
|
|
47535
|
+
path: {
|
|
47536
|
+
/** @description The name of the organization. */
|
|
47537
|
+
organization: string;
|
|
47538
|
+
};
|
|
47539
|
+
cookie?: never;
|
|
47540
|
+
};
|
|
47541
|
+
requestBody: {
|
|
47542
|
+
content: {
|
|
47543
|
+
"application/json": boolean;
|
|
47544
|
+
};
|
|
47545
|
+
};
|
|
47546
|
+
responses: {
|
|
47547
|
+
/** @description OK */
|
|
47548
|
+
200: {
|
|
47549
|
+
headers: {
|
|
47550
|
+
[name: string]: unknown;
|
|
47551
|
+
};
|
|
47552
|
+
content: {
|
|
47553
|
+
"application/json": {
|
|
47554
|
+
[key: string]: components["schemas"]["BooleanPolicyOutput"];
|
|
47555
|
+
};
|
|
47556
|
+
};
|
|
47557
|
+
};
|
|
47558
|
+
/** @description Error */
|
|
47559
|
+
default: {
|
|
47560
|
+
headers: {
|
|
47561
|
+
[name: string]: unknown;
|
|
47562
|
+
};
|
|
47563
|
+
content: {
|
|
47564
|
+
"application/json": components["schemas"]["Error"];
|
|
47565
|
+
};
|
|
47566
|
+
};
|
|
47567
|
+
};
|
|
47568
|
+
};
|
|
47019
47569
|
"set-organization-max-api-key-ttl-policy": {
|
|
47020
47570
|
parameters: {
|
|
47021
47571
|
query?: never;
|
|
@@ -47311,15 +47861,15 @@ export interface operations {
|
|
|
47311
47861
|
endDate?: string;
|
|
47312
47862
|
/** @description Field to group costs by (type, subtype, user, sku) */
|
|
47313
47863
|
groupBy?: string;
|
|
47314
|
-
/** @description Filter:
|
|
47864
|
+
/** @description Filter: comma-separated types */
|
|
47315
47865
|
type?: string;
|
|
47316
|
-
/** @description Filter:
|
|
47866
|
+
/** @description Filter: comma-separated subtypes */
|
|
47317
47867
|
subtype?: string;
|
|
47318
|
-
/** @description Filter:
|
|
47868
|
+
/** @description Filter: comma-separated usernames */
|
|
47319
47869
|
user?: string;
|
|
47320
47870
|
/** @description Filter: comma-separated SKU codes */
|
|
47321
47871
|
sku?: string;
|
|
47322
|
-
/** @description Filter: metadata contains this string (case-insensitive search in JSON) */
|
|
47872
|
+
/** @description Filter: metadata contains this string (case-insensitive search in JSON). Only rated usage carries metadata, so cloud costs are excluded. */
|
|
47323
47873
|
metadata?: string;
|
|
47324
47874
|
};
|
|
47325
47875
|
header?: never;
|
|
@@ -51284,6 +51834,44 @@ export interface operations {
|
|
|
51284
51834
|
};
|
|
51285
51835
|
};
|
|
51286
51836
|
};
|
|
51837
|
+
"get-cluster-deployment-provision-status": {
|
|
51838
|
+
parameters: {
|
|
51839
|
+
query?: never;
|
|
51840
|
+
header?: never;
|
|
51841
|
+
path: {
|
|
51842
|
+
/** @description The name of the organization. */
|
|
51843
|
+
organization: string;
|
|
51844
|
+
/** @description The username of the user that owns the cluster */
|
|
51845
|
+
user: string;
|
|
51846
|
+
/** @description The cluster name */
|
|
51847
|
+
clusterName: string;
|
|
51848
|
+
/** @description The deployment number or 'latest' */
|
|
51849
|
+
deploymentNumber: string;
|
|
51850
|
+
};
|
|
51851
|
+
cookie?: never;
|
|
51852
|
+
};
|
|
51853
|
+
requestBody?: never;
|
|
51854
|
+
responses: {
|
|
51855
|
+
/** @description OK */
|
|
51856
|
+
200: {
|
|
51857
|
+
headers: {
|
|
51858
|
+
[name: string]: unknown;
|
|
51859
|
+
};
|
|
51860
|
+
content: {
|
|
51861
|
+
"application/json": components["schemas"]["ProvisionStatusResponseRecord"][] | null;
|
|
51862
|
+
};
|
|
51863
|
+
};
|
|
51864
|
+
/** @description Error */
|
|
51865
|
+
default: {
|
|
51866
|
+
headers: {
|
|
51867
|
+
[name: string]: unknown;
|
|
51868
|
+
};
|
|
51869
|
+
content: {
|
|
51870
|
+
"application/json": components["schemas"]["Error"];
|
|
51871
|
+
};
|
|
51872
|
+
};
|
|
51873
|
+
};
|
|
51874
|
+
};
|
|
51287
51875
|
"destroy-cluster": {
|
|
51288
51876
|
parameters: {
|
|
51289
51877
|
query?: never;
|
|
@@ -54168,7 +54756,115 @@ export interface operations {
|
|
|
54168
54756
|
};
|
|
54169
54757
|
};
|
|
54170
54758
|
};
|
|
54171
|
-
"create-resource-group": {
|
|
54759
|
+
"create-resource-group": {
|
|
54760
|
+
parameters: {
|
|
54761
|
+
query?: never;
|
|
54762
|
+
header?: never;
|
|
54763
|
+
path: {
|
|
54764
|
+
/** @description The name of the organization. */
|
|
54765
|
+
organization: string;
|
|
54766
|
+
/** @description Username of the target user. */
|
|
54767
|
+
user: string;
|
|
54768
|
+
};
|
|
54769
|
+
cookie?: never;
|
|
54770
|
+
};
|
|
54771
|
+
requestBody?: {
|
|
54772
|
+
content: {
|
|
54773
|
+
"application/json": components["schemas"]["ResourceGroup"];
|
|
54774
|
+
};
|
|
54775
|
+
};
|
|
54776
|
+
responses: {
|
|
54777
|
+
/** @description OK */
|
|
54778
|
+
200: {
|
|
54779
|
+
headers: {
|
|
54780
|
+
[name: string]: unknown;
|
|
54781
|
+
};
|
|
54782
|
+
content: {
|
|
54783
|
+
"application/json": components["schemas"]["ResourceGroup"];
|
|
54784
|
+
};
|
|
54785
|
+
};
|
|
54786
|
+
/** @description Error */
|
|
54787
|
+
default: {
|
|
54788
|
+
headers: {
|
|
54789
|
+
[name: string]: unknown;
|
|
54790
|
+
};
|
|
54791
|
+
content: {
|
|
54792
|
+
"application/json": components["schemas"]["Error"];
|
|
54793
|
+
};
|
|
54794
|
+
};
|
|
54795
|
+
};
|
|
54796
|
+
};
|
|
54797
|
+
"get-resource-group": {
|
|
54798
|
+
parameters: {
|
|
54799
|
+
query?: never;
|
|
54800
|
+
header?: never;
|
|
54801
|
+
path: {
|
|
54802
|
+
/** @description The name of the organization. */
|
|
54803
|
+
organization: string;
|
|
54804
|
+
/** @description Username of the target user. */
|
|
54805
|
+
user: string;
|
|
54806
|
+
/** @description Resource group name */
|
|
54807
|
+
name: string;
|
|
54808
|
+
};
|
|
54809
|
+
cookie?: never;
|
|
54810
|
+
};
|
|
54811
|
+
requestBody?: never;
|
|
54812
|
+
responses: {
|
|
54813
|
+
/** @description OK */
|
|
54814
|
+
200: {
|
|
54815
|
+
headers: {
|
|
54816
|
+
[name: string]: unknown;
|
|
54817
|
+
};
|
|
54818
|
+
content: {
|
|
54819
|
+
"application/json": components["schemas"]["ResourceGroupDetail"];
|
|
54820
|
+
};
|
|
54821
|
+
};
|
|
54822
|
+
/** @description Error */
|
|
54823
|
+
default: {
|
|
54824
|
+
headers: {
|
|
54825
|
+
[name: string]: unknown;
|
|
54826
|
+
};
|
|
54827
|
+
content: {
|
|
54828
|
+
"application/json": components["schemas"]["Error"];
|
|
54829
|
+
};
|
|
54830
|
+
};
|
|
54831
|
+
};
|
|
54832
|
+
};
|
|
54833
|
+
"delete-resource-group": {
|
|
54834
|
+
parameters: {
|
|
54835
|
+
query?: never;
|
|
54836
|
+
header?: never;
|
|
54837
|
+
path: {
|
|
54838
|
+
/** @description The name of the organization. */
|
|
54839
|
+
organization: string;
|
|
54840
|
+
/** @description Username of the target user. */
|
|
54841
|
+
user: string;
|
|
54842
|
+
/** @description Resource group name */
|
|
54843
|
+
name: string;
|
|
54844
|
+
};
|
|
54845
|
+
cookie?: never;
|
|
54846
|
+
};
|
|
54847
|
+
requestBody?: never;
|
|
54848
|
+
responses: {
|
|
54849
|
+
/** @description No Content */
|
|
54850
|
+
204: {
|
|
54851
|
+
headers: {
|
|
54852
|
+
[name: string]: unknown;
|
|
54853
|
+
};
|
|
54854
|
+
content?: never;
|
|
54855
|
+
};
|
|
54856
|
+
/** @description Error */
|
|
54857
|
+
default: {
|
|
54858
|
+
headers: {
|
|
54859
|
+
[name: string]: unknown;
|
|
54860
|
+
};
|
|
54861
|
+
content: {
|
|
54862
|
+
"application/json": components["schemas"]["Error"];
|
|
54863
|
+
};
|
|
54864
|
+
};
|
|
54865
|
+
};
|
|
54866
|
+
};
|
|
54867
|
+
"update-resource-group": {
|
|
54172
54868
|
parameters: {
|
|
54173
54869
|
query?: never;
|
|
54174
54870
|
header?: never;
|
|
@@ -54177,12 +54873,14 @@ export interface operations {
|
|
|
54177
54873
|
organization: string;
|
|
54178
54874
|
/** @description Username of the target user. */
|
|
54179
54875
|
user: string;
|
|
54876
|
+
/** @description Resource group name */
|
|
54877
|
+
name: string;
|
|
54180
54878
|
};
|
|
54181
54879
|
cookie?: never;
|
|
54182
54880
|
};
|
|
54183
|
-
requestBody
|
|
54881
|
+
requestBody: {
|
|
54184
54882
|
content: {
|
|
54185
|
-
"application/json": components["schemas"]["
|
|
54883
|
+
"application/json": components["schemas"]["UpdateResourceGroupInputBody"];
|
|
54186
54884
|
};
|
|
54187
54885
|
};
|
|
54188
54886
|
responses: {
|
|
@@ -54206,7 +54904,7 @@ export interface operations {
|
|
|
54206
54904
|
};
|
|
54207
54905
|
};
|
|
54208
54906
|
};
|
|
54209
|
-
"get-resource-group": {
|
|
54907
|
+
"get-resource-group-permissions": {
|
|
54210
54908
|
parameters: {
|
|
54211
54909
|
query?: never;
|
|
54212
54910
|
header?: never;
|
|
@@ -54228,7 +54926,7 @@ export interface operations {
|
|
|
54228
54926
|
[name: string]: unknown;
|
|
54229
54927
|
};
|
|
54230
54928
|
content: {
|
|
54231
|
-
"application/json": components["schemas"]["
|
|
54929
|
+
"application/json": components["schemas"]["SubjectPermissions"];
|
|
54232
54930
|
};
|
|
54233
54931
|
};
|
|
54234
54932
|
/** @description Error */
|
|
@@ -54242,7 +54940,45 @@ export interface operations {
|
|
|
54242
54940
|
};
|
|
54243
54941
|
};
|
|
54244
54942
|
};
|
|
54245
|
-
"
|
|
54943
|
+
"update-resource-group-permissions": {
|
|
54944
|
+
parameters: {
|
|
54945
|
+
query?: never;
|
|
54946
|
+
header?: never;
|
|
54947
|
+
path: {
|
|
54948
|
+
/** @description The name of the organization. */
|
|
54949
|
+
organization: string;
|
|
54950
|
+
/** @description Username of the target user. */
|
|
54951
|
+
user: string;
|
|
54952
|
+
/** @description Resource group name */
|
|
54953
|
+
name: string;
|
|
54954
|
+
};
|
|
54955
|
+
cookie?: never;
|
|
54956
|
+
};
|
|
54957
|
+
requestBody: {
|
|
54958
|
+
content: {
|
|
54959
|
+
"application/json": components["schemas"]["UpdateResourceGroupPermissionsInputBody"];
|
|
54960
|
+
};
|
|
54961
|
+
};
|
|
54962
|
+
responses: {
|
|
54963
|
+
/** @description No Content */
|
|
54964
|
+
204: {
|
|
54965
|
+
headers: {
|
|
54966
|
+
[name: string]: unknown;
|
|
54967
|
+
};
|
|
54968
|
+
content?: never;
|
|
54969
|
+
};
|
|
54970
|
+
/** @description Error */
|
|
54971
|
+
default: {
|
|
54972
|
+
headers: {
|
|
54973
|
+
[name: string]: unknown;
|
|
54974
|
+
};
|
|
54975
|
+
content: {
|
|
54976
|
+
"application/json": components["schemas"]["Error"];
|
|
54977
|
+
};
|
|
54978
|
+
};
|
|
54979
|
+
};
|
|
54980
|
+
};
|
|
54981
|
+
"list-resource-group-resources": {
|
|
54246
54982
|
parameters: {
|
|
54247
54983
|
query?: never;
|
|
54248
54984
|
header?: never;
|
|
@@ -54264,7 +55000,7 @@ export interface operations {
|
|
|
54264
55000
|
[name: string]: unknown;
|
|
54265
55001
|
};
|
|
54266
55002
|
content: {
|
|
54267
|
-
"application/json": components["schemas"]["
|
|
55003
|
+
"application/json": components["schemas"]["ResourceGroupResource"][] | null;
|
|
54268
55004
|
};
|
|
54269
55005
|
};
|
|
54270
55006
|
/** @description Error */
|
|
@@ -54278,7 +55014,7 @@ export interface operations {
|
|
|
54278
55014
|
};
|
|
54279
55015
|
};
|
|
54280
55016
|
};
|
|
54281
|
-
"
|
|
55017
|
+
"move-resource-group-resource": {
|
|
54282
55018
|
parameters: {
|
|
54283
55019
|
query?: never;
|
|
54284
55020
|
header?: never;
|
|
@@ -54289,12 +55025,14 @@ export interface operations {
|
|
|
54289
55025
|
user: string;
|
|
54290
55026
|
/** @description Resource group name */
|
|
54291
55027
|
name: string;
|
|
55028
|
+
/** @description Id of the resource to move */
|
|
55029
|
+
resourceId: string;
|
|
54292
55030
|
};
|
|
54293
55031
|
cookie?: never;
|
|
54294
55032
|
};
|
|
54295
55033
|
requestBody: {
|
|
54296
55034
|
content: {
|
|
54297
|
-
"application/json": components["schemas"]["
|
|
55035
|
+
"application/json": components["schemas"]["MoveResourceInputBody"];
|
|
54298
55036
|
};
|
|
54299
55037
|
};
|
|
54300
55038
|
responses: {
|
|
@@ -55053,6 +55791,45 @@ export interface operations {
|
|
|
55053
55791
|
};
|
|
55054
55792
|
};
|
|
55055
55793
|
};
|
|
55794
|
+
"get-storage-deployments": {
|
|
55795
|
+
parameters: {
|
|
55796
|
+
query?: {
|
|
55797
|
+
/** @description The page number to return. */
|
|
55798
|
+
page?: number;
|
|
55799
|
+
};
|
|
55800
|
+
header?: never;
|
|
55801
|
+
path: {
|
|
55802
|
+
/** @description The name of the organization. */
|
|
55803
|
+
organization: string;
|
|
55804
|
+
/** @description Username of the target user. */
|
|
55805
|
+
user: string;
|
|
55806
|
+
/** @description The name of the storage resource. */
|
|
55807
|
+
name: string;
|
|
55808
|
+
};
|
|
55809
|
+
cookie?: never;
|
|
55810
|
+
};
|
|
55811
|
+
requestBody?: never;
|
|
55812
|
+
responses: {
|
|
55813
|
+
/** @description OK */
|
|
55814
|
+
200: {
|
|
55815
|
+
headers: {
|
|
55816
|
+
[name: string]: unknown;
|
|
55817
|
+
};
|
|
55818
|
+
content: {
|
|
55819
|
+
"application/json": components["schemas"]["StorageDeployment"][] | null;
|
|
55820
|
+
};
|
|
55821
|
+
};
|
|
55822
|
+
/** @description Error */
|
|
55823
|
+
default: {
|
|
55824
|
+
headers: {
|
|
55825
|
+
[name: string]: unknown;
|
|
55826
|
+
};
|
|
55827
|
+
content: {
|
|
55828
|
+
"application/json": components["schemas"]["Error"];
|
|
55829
|
+
};
|
|
55830
|
+
};
|
|
55831
|
+
};
|
|
55832
|
+
};
|
|
55056
55833
|
"get-storage-deployment-deletion-log": {
|
|
55057
55834
|
parameters: {
|
|
55058
55835
|
query?: {
|
|
@@ -55139,6 +55916,44 @@ export interface operations {
|
|
|
55139
55916
|
};
|
|
55140
55917
|
};
|
|
55141
55918
|
};
|
|
55919
|
+
"get-storage-deployment-provision-status": {
|
|
55920
|
+
parameters: {
|
|
55921
|
+
query?: never;
|
|
55922
|
+
header?: never;
|
|
55923
|
+
path: {
|
|
55924
|
+
/** @description The name of the organization. */
|
|
55925
|
+
organization: string;
|
|
55926
|
+
/** @description Username of the target user. */
|
|
55927
|
+
user: string;
|
|
55928
|
+
/** @description The name of the storage resource. */
|
|
55929
|
+
name: string;
|
|
55930
|
+
/** @description The deployment number or 'latest'. */
|
|
55931
|
+
deploymentNumber: string;
|
|
55932
|
+
};
|
|
55933
|
+
cookie?: never;
|
|
55934
|
+
};
|
|
55935
|
+
requestBody?: never;
|
|
55936
|
+
responses: {
|
|
55937
|
+
/** @description OK */
|
|
55938
|
+
200: {
|
|
55939
|
+
headers: {
|
|
55940
|
+
[name: string]: unknown;
|
|
55941
|
+
};
|
|
55942
|
+
content: {
|
|
55943
|
+
"application/json": components["schemas"]["ProvisionStatusResponseRecord"][] | null;
|
|
55944
|
+
};
|
|
55945
|
+
};
|
|
55946
|
+
/** @description Error */
|
|
55947
|
+
default: {
|
|
55948
|
+
headers: {
|
|
55949
|
+
[name: string]: unknown;
|
|
55950
|
+
};
|
|
55951
|
+
content: {
|
|
55952
|
+
"application/json": components["schemas"]["Error"];
|
|
55953
|
+
};
|
|
55954
|
+
};
|
|
55955
|
+
};
|
|
55956
|
+
};
|
|
55142
55957
|
"get-storage-permissions": {
|
|
55143
55958
|
parameters: {
|
|
55144
55959
|
query?: never;
|
|
@@ -55646,6 +56461,46 @@ export interface operations {
|
|
|
55646
56461
|
};
|
|
55647
56462
|
};
|
|
55648
56463
|
};
|
|
56464
|
+
"update-storage-billing": {
|
|
56465
|
+
parameters: {
|
|
56466
|
+
query?: never;
|
|
56467
|
+
header?: never;
|
|
56468
|
+
path: {
|
|
56469
|
+
/** @description The name of the organization. */
|
|
56470
|
+
organization: string;
|
|
56471
|
+
/** @description Username of the target user. */
|
|
56472
|
+
user: string;
|
|
56473
|
+
/** @description The name of the storage resource. */
|
|
56474
|
+
name: string;
|
|
56475
|
+
/** @description The type of the storage. */
|
|
56476
|
+
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";
|
|
56477
|
+
};
|
|
56478
|
+
cookie?: never;
|
|
56479
|
+
};
|
|
56480
|
+
requestBody: {
|
|
56481
|
+
content: {
|
|
56482
|
+
"application/json": components["schemas"]["UpdateStorageBillingInputBody"];
|
|
56483
|
+
};
|
|
56484
|
+
};
|
|
56485
|
+
responses: {
|
|
56486
|
+
/** @description No Content */
|
|
56487
|
+
204: {
|
|
56488
|
+
headers: {
|
|
56489
|
+
[name: string]: unknown;
|
|
56490
|
+
};
|
|
56491
|
+
content?: never;
|
|
56492
|
+
};
|
|
56493
|
+
/** @description Error */
|
|
56494
|
+
default: {
|
|
56495
|
+
headers: {
|
|
56496
|
+
[name: string]: unknown;
|
|
56497
|
+
};
|
|
56498
|
+
content: {
|
|
56499
|
+
"application/json": components["schemas"]["Error"];
|
|
56500
|
+
};
|
|
56501
|
+
};
|
|
56502
|
+
};
|
|
56503
|
+
};
|
|
55649
56504
|
"delete-storage-icon": {
|
|
55650
56505
|
parameters: {
|
|
55651
56506
|
query?: never;
|
|
@@ -57117,6 +57972,41 @@ export interface operations {
|
|
|
57117
57972
|
};
|
|
57118
57973
|
};
|
|
57119
57974
|
};
|
|
57975
|
+
"set-platform-default-billing-username-policy": {
|
|
57976
|
+
parameters: {
|
|
57977
|
+
query?: never;
|
|
57978
|
+
header?: never;
|
|
57979
|
+
path?: never;
|
|
57980
|
+
cookie?: never;
|
|
57981
|
+
};
|
|
57982
|
+
requestBody: {
|
|
57983
|
+
content: {
|
|
57984
|
+
"application/json": string;
|
|
57985
|
+
};
|
|
57986
|
+
};
|
|
57987
|
+
responses: {
|
|
57988
|
+
/** @description OK */
|
|
57989
|
+
200: {
|
|
57990
|
+
headers: {
|
|
57991
|
+
[name: string]: unknown;
|
|
57992
|
+
};
|
|
57993
|
+
content: {
|
|
57994
|
+
"application/json": {
|
|
57995
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
57996
|
+
};
|
|
57997
|
+
};
|
|
57998
|
+
};
|
|
57999
|
+
/** @description Error */
|
|
58000
|
+
default: {
|
|
58001
|
+
headers: {
|
|
58002
|
+
[name: string]: unknown;
|
|
58003
|
+
};
|
|
58004
|
+
content: {
|
|
58005
|
+
"application/json": components["schemas"]["Error"];
|
|
58006
|
+
};
|
|
58007
|
+
};
|
|
58008
|
+
};
|
|
58009
|
+
};
|
|
57120
58010
|
"set-platform-disable-password-login-policy": {
|
|
57121
58011
|
parameters: {
|
|
57122
58012
|
query?: never;
|
|
@@ -57222,6 +58112,76 @@ export interface operations {
|
|
|
57222
58112
|
};
|
|
57223
58113
|
};
|
|
57224
58114
|
};
|
|
58115
|
+
"set-platform-fiscal-year-start-date-policy": {
|
|
58116
|
+
parameters: {
|
|
58117
|
+
query?: never;
|
|
58118
|
+
header?: never;
|
|
58119
|
+
path?: never;
|
|
58120
|
+
cookie?: never;
|
|
58121
|
+
};
|
|
58122
|
+
requestBody: {
|
|
58123
|
+
content: {
|
|
58124
|
+
"application/json": string;
|
|
58125
|
+
};
|
|
58126
|
+
};
|
|
58127
|
+
responses: {
|
|
58128
|
+
/** @description OK */
|
|
58129
|
+
200: {
|
|
58130
|
+
headers: {
|
|
58131
|
+
[name: string]: unknown;
|
|
58132
|
+
};
|
|
58133
|
+
content: {
|
|
58134
|
+
"application/json": {
|
|
58135
|
+
[key: string]: components["schemas"]["StringPolicyOutput"];
|
|
58136
|
+
};
|
|
58137
|
+
};
|
|
58138
|
+
};
|
|
58139
|
+
/** @description Error */
|
|
58140
|
+
default: {
|
|
58141
|
+
headers: {
|
|
58142
|
+
[name: string]: unknown;
|
|
58143
|
+
};
|
|
58144
|
+
content: {
|
|
58145
|
+
"application/json": components["schemas"]["Error"];
|
|
58146
|
+
};
|
|
58147
|
+
};
|
|
58148
|
+
};
|
|
58149
|
+
};
|
|
58150
|
+
"set-platform-flexible-allocation-system-policy": {
|
|
58151
|
+
parameters: {
|
|
58152
|
+
query?: never;
|
|
58153
|
+
header?: never;
|
|
58154
|
+
path?: never;
|
|
58155
|
+
cookie?: never;
|
|
58156
|
+
};
|
|
58157
|
+
requestBody: {
|
|
58158
|
+
content: {
|
|
58159
|
+
"application/json": boolean;
|
|
58160
|
+
};
|
|
58161
|
+
};
|
|
58162
|
+
responses: {
|
|
58163
|
+
/** @description OK */
|
|
58164
|
+
200: {
|
|
58165
|
+
headers: {
|
|
58166
|
+
[name: string]: unknown;
|
|
58167
|
+
};
|
|
58168
|
+
content: {
|
|
58169
|
+
"application/json": {
|
|
58170
|
+
[key: string]: components["schemas"]["BooleanPolicyOutput"];
|
|
58171
|
+
};
|
|
58172
|
+
};
|
|
58173
|
+
};
|
|
58174
|
+
/** @description Error */
|
|
58175
|
+
default: {
|
|
58176
|
+
headers: {
|
|
58177
|
+
[name: string]: unknown;
|
|
58178
|
+
};
|
|
58179
|
+
content: {
|
|
58180
|
+
"application/json": components["schemas"]["Error"];
|
|
58181
|
+
};
|
|
58182
|
+
};
|
|
58183
|
+
};
|
|
58184
|
+
};
|
|
57225
58185
|
"set-platform-max-api-key-ttl-policy": {
|
|
57226
58186
|
parameters: {
|
|
57227
58187
|
query?: never;
|
|
@@ -58119,6 +59079,10 @@ export interface operations {
|
|
|
58119
59079
|
allocation?: string;
|
|
58120
59080
|
/** @description Sort field and direction */
|
|
58121
59081
|
sort?: "name" | "-name";
|
|
59082
|
+
/** @description Only resource groups the user may bill new resources against: their own, or shared with use or admin permission */
|
|
59083
|
+
usable?: boolean;
|
|
59084
|
+
/** @description Only resource groups whose current allocation may fund this resource type; groups with no allocation or an unrestricted allocation always match */
|
|
59085
|
+
allows?: "aws" | "azure" | "google" | "oracle" | "openstack" | "kubernetes" | "ai";
|
|
58122
59086
|
};
|
|
58123
59087
|
header?: never;
|
|
58124
59088
|
path?: never;
|