@parallelworks/client 7.98.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.
- package/dist/types/api.d.ts +1033 -112
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -5350,7 +5350,7 @@ export interface paths {
|
|
|
5350
5350
|
* Get organization billing settings
|
|
5351
5351
|
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
5352
5352
|
*
|
|
5353
|
-
* Returns the organization's billing settings
|
|
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
5354
|
*/
|
|
5355
5355
|
get: operations["get-organization-billing-settings"];
|
|
5356
5356
|
put?: never;
|
|
@@ -5358,13 +5358,7 @@ export interface paths {
|
|
|
5358
5358
|
delete?: never;
|
|
5359
5359
|
options?: never;
|
|
5360
5360
|
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"];
|
|
5361
|
+
patch?: never;
|
|
5368
5362
|
trace?: never;
|
|
5369
5363
|
};
|
|
5370
5364
|
"/api/organizations/{organization}/bootstrap": {
|
|
@@ -8035,6 +8029,28 @@ export interface paths {
|
|
|
8035
8029
|
patch?: never;
|
|
8036
8030
|
trace?: never;
|
|
8037
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
|
+
};
|
|
8038
8054
|
"/api/organizations/{organization}/policies/disable-password-login": {
|
|
8039
8055
|
parameters: {
|
|
8040
8056
|
query?: never;
|
|
@@ -8123,6 +8139,50 @@ export interface paths {
|
|
|
8123
8139
|
patch?: never;
|
|
8124
8140
|
trace?: never;
|
|
8125
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
|
+
};
|
|
8126
8186
|
"/api/organizations/{organization}/policies/max-api-key-ttl": {
|
|
8127
8187
|
parameters: {
|
|
8128
8188
|
query?: never;
|
|
@@ -10021,7 +10081,7 @@ export interface paths {
|
|
|
10021
10081
|
* Get cluster deployment
|
|
10022
10082
|
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
10023
10083
|
*
|
|
10024
|
-
* Returns a cluster deployment
|
|
10084
|
+
* Returns a cluster deployment.
|
|
10025
10085
|
*/
|
|
10026
10086
|
get: operations["get-cluster-deployment"];
|
|
10027
10087
|
put?: never;
|
|
@@ -10082,6 +10142,28 @@ export interface paths {
|
|
|
10082
10142
|
patch?: never;
|
|
10083
10143
|
trace?: never;
|
|
10084
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
|
+
};
|
|
10085
10167
|
"/api/organizations/{organization}/users/{user}/clusters/{clusterName}/destroy": {
|
|
10086
10168
|
parameters: {
|
|
10087
10169
|
query?: never;
|
|
@@ -11628,10 +11710,22 @@ export interface paths {
|
|
|
11628
11710
|
get: operations["get-resource-group"];
|
|
11629
11711
|
put?: never;
|
|
11630
11712
|
post?: never;
|
|
11631
|
-
|
|
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"];
|
|
11632
11720
|
options?: never;
|
|
11633
11721
|
head?: never;
|
|
11634
|
-
|
|
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"];
|
|
11635
11729
|
trace?: never;
|
|
11636
11730
|
};
|
|
11637
11731
|
"/api/organizations/{organization}/users/{user}/resource-groups/{name}/permissions": {
|
|
@@ -11662,6 +11756,50 @@ export interface paths {
|
|
|
11662
11756
|
patch: operations["update-resource-group-permissions"];
|
|
11663
11757
|
trace?: never;
|
|
11664
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
|
+
};
|
|
11665
11803
|
"/api/organizations/{organization}/users/{user}/resources": {
|
|
11666
11804
|
parameters: {
|
|
11667
11805
|
query?: never;
|
|
@@ -11990,6 +12128,28 @@ export interface paths {
|
|
|
11990
12128
|
patch?: never;
|
|
11991
12129
|
trace?: never;
|
|
11992
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
|
+
};
|
|
11993
12153
|
"/api/organizations/{organization}/users/{user}/storage/{name}/deployments/{deploymentNumber}/logs/deletion": {
|
|
11994
12154
|
parameters: {
|
|
11995
12155
|
query?: never;
|
|
@@ -12034,6 +12194,28 @@ export interface paths {
|
|
|
12034
12194
|
patch?: never;
|
|
12035
12195
|
trace?: never;
|
|
12036
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
|
+
};
|
|
12037
12219
|
"/api/organizations/{organization}/users/{user}/storage/{name}/permissions": {
|
|
12038
12220
|
parameters: {
|
|
12039
12221
|
query?: never;
|
|
@@ -12246,6 +12428,28 @@ export interface paths {
|
|
|
12246
12428
|
patch?: never;
|
|
12247
12429
|
trace?: never;
|
|
12248
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
|
+
};
|
|
12249
12453
|
"/api/organizations/{organization}/users/{user}/{type}/{name}/icon": {
|
|
12250
12454
|
parameters: {
|
|
12251
12455
|
query?: never;
|
|
@@ -12936,6 +13140,28 @@ export interface paths {
|
|
|
12936
13140
|
patch?: never;
|
|
12937
13141
|
trace?: never;
|
|
12938
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
|
+
};
|
|
12939
13165
|
"/api/platform/policies/disable-password-login": {
|
|
12940
13166
|
parameters: {
|
|
12941
13167
|
query?: never;
|
|
@@ -13002,6 +13228,50 @@ export interface paths {
|
|
|
13002
13228
|
patch?: never;
|
|
13003
13229
|
trace?: never;
|
|
13004
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
|
+
};
|
|
13005
13275
|
"/api/platform/policies/max-api-key-ttl": {
|
|
13006
13276
|
parameters: {
|
|
13007
13277
|
query?: never;
|
|
@@ -15885,6 +16155,11 @@ export interface components {
|
|
|
15885
16155
|
parent?: string;
|
|
15886
16156
|
/** @description Whether the allocation's unit is rated in USD (false = a raw consumption unit) */
|
|
15887
16157
|
readonly ratedInUsd?: boolean;
|
|
16158
|
+
/**
|
|
16159
|
+
* Format: int64
|
|
16160
|
+
* @description Number of resource groups currently billing this allocation
|
|
16161
|
+
*/
|
|
16162
|
+
readonly resourceGroups?: number;
|
|
15888
16163
|
/**
|
|
15889
16164
|
* Format: double
|
|
15890
16165
|
* @description Total allocation amount
|
|
@@ -15903,6 +16178,15 @@ export interface components {
|
|
|
15903
16178
|
*/
|
|
15904
16179
|
readonly used?: number;
|
|
15905
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
|
+
};
|
|
15906
16190
|
AllocationResourceGroup: {
|
|
15907
16191
|
/** @description Resource group name */
|
|
15908
16192
|
name: string;
|
|
@@ -16583,10 +16867,10 @@ export interface components {
|
|
|
16583
16867
|
*/
|
|
16584
16868
|
readonly endpoint?: string;
|
|
16585
16869
|
/**
|
|
16586
|
-
* @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.
|
|
16587
16871
|
* @example myGroup
|
|
16588
16872
|
*/
|
|
16589
|
-
group
|
|
16873
|
+
group?: string;
|
|
16590
16874
|
/**
|
|
16591
16875
|
* @description The unique identifier of the resource.
|
|
16592
16876
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -16622,6 +16906,11 @@ export interface components {
|
|
|
16622
16906
|
* @example us-west-2
|
|
16623
16907
|
*/
|
|
16624
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;
|
|
16625
16914
|
/**
|
|
16626
16915
|
* @description The tags associated with the Machine Learning Workspace.
|
|
16627
16916
|
* @example [
|
|
@@ -17035,10 +17324,10 @@ export interface components {
|
|
|
17035
17324
|
*/
|
|
17036
17325
|
readonly endpoint?: string;
|
|
17037
17326
|
/**
|
|
17038
|
-
* @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.
|
|
17039
17328
|
* @example myGroup
|
|
17040
17329
|
*/
|
|
17041
|
-
group
|
|
17330
|
+
group?: string;
|
|
17042
17331
|
/**
|
|
17043
17332
|
* @description The unique identifier of the resource.
|
|
17044
17333
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -17084,6 +17373,11 @@ export interface components {
|
|
|
17084
17373
|
* @example us-west-2
|
|
17085
17374
|
*/
|
|
17086
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;
|
|
17087
17381
|
/**
|
|
17088
17382
|
* @description The tags associated with the Machine Learning Workspace.
|
|
17089
17383
|
* @example [
|
|
@@ -17743,10 +18037,10 @@ export interface components {
|
|
|
17743
18037
|
/** @description Indicates if versioning will be enabled. For AWS buckets only. */
|
|
17744
18038
|
enableVersioning?: boolean;
|
|
17745
18039
|
/**
|
|
17746
|
-
* @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.
|
|
17747
18041
|
* @example myGroup
|
|
17748
18042
|
*/
|
|
17749
|
-
group
|
|
18043
|
+
group?: string;
|
|
17750
18044
|
/**
|
|
17751
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.
|
|
17752
18046
|
* @enum {string}
|
|
@@ -17754,6 +18048,11 @@ export interface components {
|
|
|
17754
18048
|
multiRegion?: "US" | "EU" | "ASIA";
|
|
17755
18049
|
/** @description Region the storage will be provisioned in. Required unless a Google multi-region or dual-region is specified. */
|
|
17756
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;
|
|
17757
18056
|
/**
|
|
17758
18057
|
* @description The tags associated with the storage.
|
|
17759
18058
|
* @example [
|
|
@@ -18235,7 +18534,7 @@ export interface components {
|
|
|
18235
18534
|
};
|
|
18236
18535
|
};
|
|
18237
18536
|
CloudAccountListItem: {
|
|
18238
|
-
billing
|
|
18537
|
+
billing?: components["schemas"]["CloudAccountBillingResponse"];
|
|
18239
18538
|
csp: string;
|
|
18240
18539
|
cspId: string;
|
|
18241
18540
|
name: string;
|
|
@@ -18537,33 +18836,8 @@ export interface components {
|
|
|
18537
18836
|
deploymentNumber: number;
|
|
18538
18837
|
/** @description The deployment ID */
|
|
18539
18838
|
id: string;
|
|
18540
|
-
/** @description Step-by-step progress of the deployment */
|
|
18541
|
-
provisionStatus: components["schemas"]["ClusterDeploymentProvisionStatus"];
|
|
18542
18839
|
/** @description The current status of the deployment */
|
|
18543
18840
|
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
18841
|
};
|
|
18568
18842
|
ClusterDisk: {
|
|
18569
18843
|
encrypted?: boolean;
|
|
@@ -19075,7 +19349,7 @@ export interface components {
|
|
|
19075
19349
|
cloudAccount?: string;
|
|
19076
19350
|
/** @description Display name of the AI provider */
|
|
19077
19351
|
displayName?: string;
|
|
19078
|
-
/** @description Billing group name (
|
|
19352
|
+
/** @description Billing group name (managed Azure and Bedrock providers; optional when resourceGroup is provided) */
|
|
19079
19353
|
group?: string;
|
|
19080
19354
|
/** @description Initial model deployment (managed Azure providers) */
|
|
19081
19355
|
model?: string;
|
|
@@ -19087,6 +19361,8 @@ export interface components {
|
|
|
19087
19361
|
network?: string;
|
|
19088
19362
|
/** @description Region (managed Azure and Bedrock providers) */
|
|
19089
19363
|
region?: string;
|
|
19364
|
+
/** @description Resource group the provider bills against. Takes precedence over group. */
|
|
19365
|
+
resourceGroup?: string;
|
|
19090
19366
|
};
|
|
19091
19367
|
CreateAPIKeyInputBody: {
|
|
19092
19368
|
/** @description Budget allocation name (required for AI keys) */
|
|
@@ -20980,6 +21256,11 @@ export interface components {
|
|
|
20980
21256
|
* @example 1
|
|
20981
21257
|
*/
|
|
20982
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;
|
|
20983
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. */
|
|
20984
21265
|
runningProcesses?: boolean;
|
|
20985
21266
|
/**
|
|
@@ -21463,7 +21744,7 @@ export interface components {
|
|
|
21463
21744
|
description?: string;
|
|
21464
21745
|
/** @description The display name of the instance. */
|
|
21465
21746
|
displayName?: string;
|
|
21466
|
-
/** @description The group the instance bills to. */
|
|
21747
|
+
/** @description The group the instance bills to. Optional when resourceGroup is provided. */
|
|
21467
21748
|
group?: string;
|
|
21468
21749
|
/** @description Unique identifier of the Google Managed Lustre. */
|
|
21469
21750
|
id?: string;
|
|
@@ -21477,6 +21758,8 @@ export interface components {
|
|
|
21477
21758
|
performance?: 125 | 250 | 500 | 1000;
|
|
21478
21759
|
/** @description The gcp region of the instance. */
|
|
21479
21760
|
region?: string;
|
|
21761
|
+
/** @description The resource group the instance bills against. Takes precedence over group. */
|
|
21762
|
+
resourceGroup?: string;
|
|
21480
21763
|
/** @description Runtime alert configuration. */
|
|
21481
21764
|
runtimeAlert?: components["schemas"]["RuntimeAlertInput"];
|
|
21482
21765
|
/** @description Session cost limit configuration. */
|
|
@@ -22198,10 +22481,10 @@ export interface components {
|
|
|
22198
22481
|
*/
|
|
22199
22482
|
readonly favorite?: boolean;
|
|
22200
22483
|
/**
|
|
22201
|
-
* @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.
|
|
22202
22485
|
* @example myGroup
|
|
22203
22486
|
*/
|
|
22204
|
-
group
|
|
22487
|
+
group?: string;
|
|
22205
22488
|
/**
|
|
22206
22489
|
* @description The hostname of the Instance.
|
|
22207
22490
|
* @example my-instance-01
|
|
@@ -22249,6 +22532,11 @@ export interface components {
|
|
|
22249
22532
|
* @example us-west-2
|
|
22250
22533
|
*/
|
|
22251
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;
|
|
22252
22540
|
/** @description Runtime alert configuration. */
|
|
22253
22541
|
runtimeAlert?: components["schemas"]["RuntimeAlertInput"];
|
|
22254
22542
|
/** @description Session cost limit configuration. */
|
|
@@ -22427,10 +22715,10 @@ export interface components {
|
|
|
22427
22715
|
*/
|
|
22428
22716
|
description: string;
|
|
22429
22717
|
/**
|
|
22430
|
-
* @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.
|
|
22431
22719
|
* @example myGroup
|
|
22432
22720
|
*/
|
|
22433
|
-
group
|
|
22721
|
+
group?: string;
|
|
22434
22722
|
/**
|
|
22435
22723
|
* @description The unique identifier of the IP resource.
|
|
22436
22724
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -22466,6 +22754,11 @@ export interface components {
|
|
|
22466
22754
|
* @example us-west-2
|
|
22467
22755
|
*/
|
|
22468
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;
|
|
22469
22762
|
/**
|
|
22470
22763
|
* @description The tags associated with the IP resource.
|
|
22471
22764
|
* @example [
|
|
@@ -23386,10 +23679,10 @@ export interface components {
|
|
|
23386
23679
|
*/
|
|
23387
23680
|
readonly endpoint?: string;
|
|
23388
23681
|
/**
|
|
23389
|
-
* @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.
|
|
23390
23683
|
* @example myGroup
|
|
23391
23684
|
*/
|
|
23392
|
-
group
|
|
23685
|
+
group?: string;
|
|
23393
23686
|
/**
|
|
23394
23687
|
* @description The unique identifier of the resource.
|
|
23395
23688
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -23425,6 +23718,11 @@ export interface components {
|
|
|
23425
23718
|
* @example us-west-2
|
|
23426
23719
|
*/
|
|
23427
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;
|
|
23428
23726
|
/**
|
|
23429
23727
|
* @description The tags associated with the Machine Learning Workspace.
|
|
23430
23728
|
* @example [
|
|
@@ -24146,6 +24444,10 @@ export interface components {
|
|
|
24146
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. */
|
|
24147
24445
|
workspacePath: string;
|
|
24148
24446
|
};
|
|
24447
|
+
MoveResourceInputBody: {
|
|
24448
|
+
/** @description Target resource group name */
|
|
24449
|
+
resourceGroup: string;
|
|
24450
|
+
};
|
|
24149
24451
|
Name: {
|
|
24150
24452
|
familyName?: string;
|
|
24151
24453
|
formatted?: string;
|
|
@@ -24276,10 +24578,10 @@ export interface components {
|
|
|
24276
24578
|
*/
|
|
24277
24579
|
description: string;
|
|
24278
24580
|
/**
|
|
24279
|
-
* @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.
|
|
24280
24582
|
* @example myGroup
|
|
24281
24583
|
*/
|
|
24282
|
-
group
|
|
24584
|
+
group?: string;
|
|
24283
24585
|
/**
|
|
24284
24586
|
* @description The unique identifier of the network interface resource.
|
|
24285
24587
|
* @example 60c72b2f9b1e8d001c8e4f3a
|
|
@@ -24325,6 +24627,11 @@ export interface components {
|
|
|
24325
24627
|
* @example us-west-2
|
|
24326
24628
|
*/
|
|
24327
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;
|
|
24328
24635
|
/**
|
|
24329
24636
|
* @description The tags associated with the network interface resource.
|
|
24330
24637
|
* @example [
|
|
@@ -25743,20 +26050,6 @@ export interface components {
|
|
|
25743
26050
|
/** @description List of flavor cost updates */
|
|
25744
26051
|
flavors: components["schemas"]["FlavorCostUpdate"][] | null;
|
|
25745
26052
|
};
|
|
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
26053
|
PatchProvisionStatusBody: {
|
|
25761
26054
|
/**
|
|
25762
26055
|
* @description Provision status ID to update
|
|
@@ -28358,13 +28651,94 @@ export interface components {
|
|
|
28358
28651
|
updatedAt: string;
|
|
28359
28652
|
};
|
|
28360
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;
|
|
28361
28684
|
/** @description Current allocation name */
|
|
28362
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;
|
|
28363
28709
|
/** @description Resource group name */
|
|
28364
28710
|
name: string | null;
|
|
28711
|
+
/**
|
|
28712
|
+
* Format: int64
|
|
28713
|
+
* @description Number of resources assigned to this resource group
|
|
28714
|
+
*/
|
|
28715
|
+
readonly resourceCount?: number;
|
|
28365
28716
|
/** @description Owner username */
|
|
28366
28717
|
readonly user?: string;
|
|
28367
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
|
+
};
|
|
28368
28742
|
ResourceQuota: {
|
|
28369
28743
|
/**
|
|
28370
28744
|
* Format: double
|
|
@@ -29305,6 +29679,31 @@ export interface components {
|
|
|
29305
29679
|
/** @description Username of the resource owner. */
|
|
29306
29680
|
user: string;
|
|
29307
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
|
+
};
|
|
29308
29707
|
StorageDetail: {
|
|
29309
29708
|
/** @description Whether the storage is currently attached to a cluster. */
|
|
29310
29709
|
attached: boolean;
|
|
@@ -29525,6 +29924,23 @@ export interface components {
|
|
|
29525
29924
|
[key: string]: number;
|
|
29526
29925
|
};
|
|
29527
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
|
+
};
|
|
29528
29944
|
SubdomainAvailabilityResponse: {
|
|
29529
29945
|
/** @description Whether a new session created by the requesting user could be served at this host. */
|
|
29530
29946
|
available: boolean;
|
|
@@ -29961,6 +30377,8 @@ export interface components {
|
|
|
29961
30377
|
name?: string;
|
|
29962
30378
|
/** @description Name of the network the cluster provisions into; cloud clusters only. */
|
|
29963
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;
|
|
29964
30382
|
/** @description Tags; replaces the full list. */
|
|
29965
30383
|
tags?: string[];
|
|
29966
30384
|
};
|
|
@@ -30232,6 +30650,10 @@ export interface components {
|
|
|
30232
30650
|
*/
|
|
30233
30651
|
reservation: string;
|
|
30234
30652
|
};
|
|
30653
|
+
UpdateResourceGroupInputBody: {
|
|
30654
|
+
/** @description New allocation name */
|
|
30655
|
+
allocation: string;
|
|
30656
|
+
};
|
|
30235
30657
|
UpdateResourceGroupPermissionsInputBody: {
|
|
30236
30658
|
/** @description Map of group names to permissions */
|
|
30237
30659
|
groups: {
|
|
@@ -30268,6 +30690,13 @@ export interface components {
|
|
|
30268
30690
|
*/
|
|
30269
30691
|
tracesSampleRate: number;
|
|
30270
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
|
+
};
|
|
30271
30700
|
UpdateUserProfileBody: {
|
|
30272
30701
|
/** @description Full name of the user */
|
|
30273
30702
|
name: string;
|
|
@@ -40911,42 +41340,6 @@ export interface operations {
|
|
|
40911
41340
|
};
|
|
40912
41341
|
};
|
|
40913
41342
|
};
|
|
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
41343
|
"get-organization-bootstrap-scripts": {
|
|
40951
41344
|
parameters: {
|
|
40952
41345
|
query?: {
|
|
@@ -46864,6 +47257,44 @@ export interface operations {
|
|
|
46864
47257
|
};
|
|
46865
47258
|
};
|
|
46866
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
|
+
};
|
|
46867
47298
|
"set-organization-disable-password-login-policy": {
|
|
46868
47299
|
parameters: {
|
|
46869
47300
|
query?: never;
|
|
@@ -47016,6 +47447,82 @@ export interface operations {
|
|
|
47016
47447
|
};
|
|
47017
47448
|
};
|
|
47018
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
|
+
};
|
|
47019
47526
|
"set-organization-max-api-key-ttl-policy": {
|
|
47020
47527
|
parameters: {
|
|
47021
47528
|
query?: never;
|
|
@@ -51284,6 +51791,44 @@ export interface operations {
|
|
|
51284
51791
|
};
|
|
51285
51792
|
};
|
|
51286
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
|
+
};
|
|
51287
51832
|
"destroy-cluster": {
|
|
51288
51833
|
parameters: {
|
|
51289
51834
|
query?: never;
|
|
@@ -54168,7 +54713,115 @@ export interface operations {
|
|
|
54168
54713
|
};
|
|
54169
54714
|
};
|
|
54170
54715
|
};
|
|
54171
|
-
"create-resource-group": {
|
|
54716
|
+
"create-resource-group": {
|
|
54717
|
+
parameters: {
|
|
54718
|
+
query?: never;
|
|
54719
|
+
header?: never;
|
|
54720
|
+
path: {
|
|
54721
|
+
/** @description The name of the organization. */
|
|
54722
|
+
organization: string;
|
|
54723
|
+
/** @description Username of the target user. */
|
|
54724
|
+
user: string;
|
|
54725
|
+
};
|
|
54726
|
+
cookie?: never;
|
|
54727
|
+
};
|
|
54728
|
+
requestBody?: {
|
|
54729
|
+
content: {
|
|
54730
|
+
"application/json": components["schemas"]["ResourceGroup"];
|
|
54731
|
+
};
|
|
54732
|
+
};
|
|
54733
|
+
responses: {
|
|
54734
|
+
/** @description OK */
|
|
54735
|
+
200: {
|
|
54736
|
+
headers: {
|
|
54737
|
+
[name: string]: unknown;
|
|
54738
|
+
};
|
|
54739
|
+
content: {
|
|
54740
|
+
"application/json": components["schemas"]["ResourceGroup"];
|
|
54741
|
+
};
|
|
54742
|
+
};
|
|
54743
|
+
/** @description Error */
|
|
54744
|
+
default: {
|
|
54745
|
+
headers: {
|
|
54746
|
+
[name: string]: unknown;
|
|
54747
|
+
};
|
|
54748
|
+
content: {
|
|
54749
|
+
"application/json": components["schemas"]["Error"];
|
|
54750
|
+
};
|
|
54751
|
+
};
|
|
54752
|
+
};
|
|
54753
|
+
};
|
|
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": {
|
|
54172
54825
|
parameters: {
|
|
54173
54826
|
query?: never;
|
|
54174
54827
|
header?: never;
|
|
@@ -54177,12 +54830,14 @@ export interface operations {
|
|
|
54177
54830
|
organization: string;
|
|
54178
54831
|
/** @description Username of the target user. */
|
|
54179
54832
|
user: string;
|
|
54833
|
+
/** @description Resource group name */
|
|
54834
|
+
name: string;
|
|
54180
54835
|
};
|
|
54181
54836
|
cookie?: never;
|
|
54182
54837
|
};
|
|
54183
|
-
requestBody
|
|
54838
|
+
requestBody: {
|
|
54184
54839
|
content: {
|
|
54185
|
-
"application/json": components["schemas"]["
|
|
54840
|
+
"application/json": components["schemas"]["UpdateResourceGroupInputBody"];
|
|
54186
54841
|
};
|
|
54187
54842
|
};
|
|
54188
54843
|
responses: {
|
|
@@ -54206,7 +54861,7 @@ export interface operations {
|
|
|
54206
54861
|
};
|
|
54207
54862
|
};
|
|
54208
54863
|
};
|
|
54209
|
-
"get-resource-group": {
|
|
54864
|
+
"get-resource-group-permissions": {
|
|
54210
54865
|
parameters: {
|
|
54211
54866
|
query?: never;
|
|
54212
54867
|
header?: never;
|
|
@@ -54228,7 +54883,7 @@ export interface operations {
|
|
|
54228
54883
|
[name: string]: unknown;
|
|
54229
54884
|
};
|
|
54230
54885
|
content: {
|
|
54231
|
-
"application/json": components["schemas"]["
|
|
54886
|
+
"application/json": components["schemas"]["SubjectPermissions"];
|
|
54232
54887
|
};
|
|
54233
54888
|
};
|
|
54234
54889
|
/** @description Error */
|
|
@@ -54242,7 +54897,45 @@ export interface operations {
|
|
|
54242
54897
|
};
|
|
54243
54898
|
};
|
|
54244
54899
|
};
|
|
54245
|
-
"
|
|
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": {
|
|
54246
54939
|
parameters: {
|
|
54247
54940
|
query?: never;
|
|
54248
54941
|
header?: never;
|
|
@@ -54264,7 +54957,7 @@ export interface operations {
|
|
|
54264
54957
|
[name: string]: unknown;
|
|
54265
54958
|
};
|
|
54266
54959
|
content: {
|
|
54267
|
-
"application/json": components["schemas"]["
|
|
54960
|
+
"application/json": components["schemas"]["ResourceGroupResource"][] | null;
|
|
54268
54961
|
};
|
|
54269
54962
|
};
|
|
54270
54963
|
/** @description Error */
|
|
@@ -54278,7 +54971,7 @@ export interface operations {
|
|
|
54278
54971
|
};
|
|
54279
54972
|
};
|
|
54280
54973
|
};
|
|
54281
|
-
"
|
|
54974
|
+
"move-resource-group-resource": {
|
|
54282
54975
|
parameters: {
|
|
54283
54976
|
query?: never;
|
|
54284
54977
|
header?: never;
|
|
@@ -54289,12 +54982,14 @@ export interface operations {
|
|
|
54289
54982
|
user: string;
|
|
54290
54983
|
/** @description Resource group name */
|
|
54291
54984
|
name: string;
|
|
54985
|
+
/** @description Id of the resource to move */
|
|
54986
|
+
resourceId: string;
|
|
54292
54987
|
};
|
|
54293
54988
|
cookie?: never;
|
|
54294
54989
|
};
|
|
54295
54990
|
requestBody: {
|
|
54296
54991
|
content: {
|
|
54297
|
-
"application/json": components["schemas"]["
|
|
54992
|
+
"application/json": components["schemas"]["MoveResourceInputBody"];
|
|
54298
54993
|
};
|
|
54299
54994
|
};
|
|
54300
54995
|
responses: {
|
|
@@ -55053,6 +55748,45 @@ export interface operations {
|
|
|
55053
55748
|
};
|
|
55054
55749
|
};
|
|
55055
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
|
+
};
|
|
55056
55790
|
"get-storage-deployment-deletion-log": {
|
|
55057
55791
|
parameters: {
|
|
55058
55792
|
query?: {
|
|
@@ -55139,6 +55873,44 @@ export interface operations {
|
|
|
55139
55873
|
};
|
|
55140
55874
|
};
|
|
55141
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
|
+
};
|
|
55142
55914
|
"get-storage-permissions": {
|
|
55143
55915
|
parameters: {
|
|
55144
55916
|
query?: never;
|
|
@@ -55646,6 +56418,46 @@ export interface operations {
|
|
|
55646
56418
|
};
|
|
55647
56419
|
};
|
|
55648
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
|
+
};
|
|
55649
56461
|
"delete-storage-icon": {
|
|
55650
56462
|
parameters: {
|
|
55651
56463
|
query?: never;
|
|
@@ -57117,6 +57929,41 @@ export interface operations {
|
|
|
57117
57929
|
};
|
|
57118
57930
|
};
|
|
57119
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
|
+
};
|
|
57120
57967
|
"set-platform-disable-password-login-policy": {
|
|
57121
57968
|
parameters: {
|
|
57122
57969
|
query?: never;
|
|
@@ -57222,6 +58069,76 @@ export interface operations {
|
|
|
57222
58069
|
};
|
|
57223
58070
|
};
|
|
57224
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
|
+
};
|
|
57225
58142
|
"set-platform-max-api-key-ttl-policy": {
|
|
57226
58143
|
parameters: {
|
|
57227
58144
|
query?: never;
|
|
@@ -58119,6 +59036,10 @@ export interface operations {
|
|
|
58119
59036
|
allocation?: string;
|
|
58120
59037
|
/** @description Sort field and direction */
|
|
58121
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";
|
|
58122
59043
|
};
|
|
58123
59044
|
header?: never;
|
|
58124
59045
|
path?: never;
|