waldur-js-client 7.8.8-dev.8 → 7.8.8-dev.9
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/sdk.gen.d.ts +543 -4
- package/dist/sdk.gen.js +543 -4
- package/dist/types.gen.d.ts +26 -50
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -3112,6 +3112,10 @@ export const callManagingOrganisationsUpdate = (options) => {
|
|
|
3112
3112
|
}
|
|
3113
3113
|
});
|
|
3114
3114
|
};
|
|
3115
|
+
/**
|
|
3116
|
+
* Grant a role to a user
|
|
3117
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
3118
|
+
*/
|
|
3115
3119
|
export const callManagingOrganisationsAddUser = (options) => {
|
|
3116
3120
|
return (options.client ?? _heyApiClient).post({
|
|
3117
3121
|
security: [
|
|
@@ -3132,6 +3136,10 @@ export const callManagingOrganisationsAddUser = (options) => {
|
|
|
3132
3136
|
}
|
|
3133
3137
|
});
|
|
3134
3138
|
};
|
|
3139
|
+
/**
|
|
3140
|
+
* Revoke a role from a user
|
|
3141
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
3142
|
+
*/
|
|
3135
3143
|
export const callManagingOrganisationsDeleteUser = (options) => {
|
|
3136
3144
|
return (options.client ?? _heyApiClient).post({
|
|
3137
3145
|
security: [
|
|
@@ -3152,6 +3160,10 @@ export const callManagingOrganisationsDeleteUser = (options) => {
|
|
|
3152
3160
|
}
|
|
3153
3161
|
});
|
|
3154
3162
|
};
|
|
3163
|
+
/**
|
|
3164
|
+
* List users and their roles in a scope
|
|
3165
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
3166
|
+
*/
|
|
3155
3167
|
export const callManagingOrganisationsListUsersList = (options) => {
|
|
3156
3168
|
return (options.client ?? _heyApiClient).get({
|
|
3157
3169
|
security: [
|
|
@@ -3187,6 +3199,10 @@ export const callManagingOrganisationsStatsRetrieve = (options) => {
|
|
|
3187
3199
|
...options
|
|
3188
3200
|
});
|
|
3189
3201
|
};
|
|
3202
|
+
/**
|
|
3203
|
+
* Update a user's role expiration
|
|
3204
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
3205
|
+
*/
|
|
3190
3206
|
export const callManagingOrganisationsUpdateUser = (options) => {
|
|
3191
3207
|
return (options.client ?? _heyApiClient).post({
|
|
3192
3208
|
security: [
|
|
@@ -4771,6 +4787,10 @@ export const customersUpdate = (options) => {
|
|
|
4771
4787
|
}
|
|
4772
4788
|
});
|
|
4773
4789
|
};
|
|
4790
|
+
/**
|
|
4791
|
+
* Grant a role to a user
|
|
4792
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
4793
|
+
*/
|
|
4774
4794
|
export const customersAddUser = (options) => {
|
|
4775
4795
|
return (options.client ?? _heyApiClient).post({
|
|
4776
4796
|
security: [
|
|
@@ -4791,6 +4811,10 @@ export const customersAddUser = (options) => {
|
|
|
4791
4811
|
}
|
|
4792
4812
|
});
|
|
4793
4813
|
};
|
|
4814
|
+
/**
|
|
4815
|
+
* Revoke a role from a user
|
|
4816
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
4817
|
+
*/
|
|
4794
4818
|
export const customersDeleteUser = (options) => {
|
|
4795
4819
|
return (options.client ?? _heyApiClient).post({
|
|
4796
4820
|
security: [
|
|
@@ -4811,6 +4835,10 @@ export const customersDeleteUser = (options) => {
|
|
|
4811
4835
|
}
|
|
4812
4836
|
});
|
|
4813
4837
|
};
|
|
4838
|
+
/**
|
|
4839
|
+
* List users and their roles in a scope
|
|
4840
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
4841
|
+
*/
|
|
4814
4842
|
export const customersListUsersList = (options) => {
|
|
4815
4843
|
return (options.client ?? _heyApiClient).get({
|
|
4816
4844
|
security: [
|
|
@@ -4871,6 +4899,10 @@ export const customersUpdateOrganizationGroups = (options) => {
|
|
|
4871
4899
|
}
|
|
4872
4900
|
});
|
|
4873
4901
|
};
|
|
4902
|
+
/**
|
|
4903
|
+
* Update a user's role expiration
|
|
4904
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
4905
|
+
*/
|
|
4874
4906
|
export const customersUpdateUser = (options) => {
|
|
4875
4907
|
return (options.client ?? _heyApiClient).post({
|
|
4876
4908
|
security: [
|
|
@@ -12324,6 +12356,10 @@ export const marketplaceProviderOfferingsAddSoftwareCatalog = (options) => {
|
|
|
12324
12356
|
}
|
|
12325
12357
|
});
|
|
12326
12358
|
};
|
|
12359
|
+
/**
|
|
12360
|
+
* Grant a role to a user
|
|
12361
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
12362
|
+
*/
|
|
12327
12363
|
export const marketplaceProviderOfferingsAddUser = (options) => {
|
|
12328
12364
|
return (options.client ?? _heyApiClient).post({
|
|
12329
12365
|
security: [
|
|
@@ -12517,6 +12553,10 @@ export const marketplaceProviderOfferingsDeleteThumbnail = (options) => {
|
|
|
12517
12553
|
...options
|
|
12518
12554
|
});
|
|
12519
12555
|
};
|
|
12556
|
+
/**
|
|
12557
|
+
* Revoke a role from a user
|
|
12558
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
12559
|
+
*/
|
|
12520
12560
|
export const marketplaceProviderOfferingsDeleteUser = (options) => {
|
|
12521
12561
|
return (options.client ?? _heyApiClient).post({
|
|
12522
12562
|
security: [
|
|
@@ -12694,6 +12734,10 @@ export const marketplaceProviderOfferingsListProjectServiceAccountsRetrieve = (o
|
|
|
12694
12734
|
...options
|
|
12695
12735
|
});
|
|
12696
12736
|
};
|
|
12737
|
+
/**
|
|
12738
|
+
* List users and their roles in a scope
|
|
12739
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
12740
|
+
*/
|
|
12697
12741
|
export const marketplaceProviderOfferingsListUsersList = (options) => {
|
|
12698
12742
|
return (options.client ?? _heyApiClient).get({
|
|
12699
12743
|
security: [
|
|
@@ -13252,6 +13296,10 @@ export const marketplaceProviderOfferingsUpdateThumbnail = (options) => {
|
|
|
13252
13296
|
}
|
|
13253
13297
|
});
|
|
13254
13298
|
};
|
|
13299
|
+
/**
|
|
13300
|
+
* Update a user's role expiration
|
|
13301
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
13302
|
+
*/
|
|
13255
13303
|
export const marketplaceProviderOfferingsUpdateUser = (options) => {
|
|
13256
13304
|
return (options.client ?? _heyApiClient).post({
|
|
13257
13305
|
security: [
|
|
@@ -15828,6 +15876,10 @@ export const marketplaceServiceProvidersUpdate = (options) => {
|
|
|
15828
15876
|
}
|
|
15829
15877
|
});
|
|
15830
15878
|
};
|
|
15879
|
+
/**
|
|
15880
|
+
* Grant a role to a user
|
|
15881
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
15882
|
+
*/
|
|
15831
15883
|
export const marketplaceServiceProvidersAddUser = (options) => {
|
|
15832
15884
|
return (options.client ?? _heyApiClient).post({
|
|
15833
15885
|
security: [
|
|
@@ -15886,6 +15938,10 @@ export const serviceProviderApiSecretCodeGenerate = (options) => {
|
|
|
15886
15938
|
...options
|
|
15887
15939
|
});
|
|
15888
15940
|
};
|
|
15941
|
+
/**
|
|
15942
|
+
* Revoke a role from a user
|
|
15943
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
15944
|
+
*/
|
|
15889
15945
|
export const marketplaceServiceProvidersDeleteUser = (options) => {
|
|
15890
15946
|
return (options.client ?? _heyApiClient).post({
|
|
15891
15947
|
security: [
|
|
@@ -15906,6 +15962,10 @@ export const marketplaceServiceProvidersDeleteUser = (options) => {
|
|
|
15906
15962
|
}
|
|
15907
15963
|
});
|
|
15908
15964
|
};
|
|
15965
|
+
/**
|
|
15966
|
+
* List users and their roles in a scope
|
|
15967
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
15968
|
+
*/
|
|
15909
15969
|
export const marketplaceServiceProvidersListUsersList = (options) => {
|
|
15910
15970
|
return (options.client ?? _heyApiClient).get({
|
|
15911
15971
|
security: [
|
|
@@ -16006,6 +16066,10 @@ export const marketplaceServiceProvidersStatRetrieve = (options) => {
|
|
|
16006
16066
|
...options
|
|
16007
16067
|
});
|
|
16008
16068
|
};
|
|
16069
|
+
/**
|
|
16070
|
+
* Update a user's role expiration
|
|
16071
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
16072
|
+
*/
|
|
16009
16073
|
export const marketplaceServiceProvidersUpdateUser = (options) => {
|
|
16010
16074
|
return (options.client ?? _heyApiClient).post({
|
|
16011
16075
|
security: [
|
|
@@ -20296,6 +20360,10 @@ export const openportalUnmanagedProjectsUpdate = (options) => {
|
|
|
20296
20360
|
}
|
|
20297
20361
|
});
|
|
20298
20362
|
};
|
|
20363
|
+
/**
|
|
20364
|
+
* Grant a role to a user
|
|
20365
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
20366
|
+
*/
|
|
20299
20367
|
export const openportalUnmanagedProjectsAddUser = (options) => {
|
|
20300
20368
|
return (options.client ?? _heyApiClient).post({
|
|
20301
20369
|
security: [
|
|
@@ -20354,6 +20422,10 @@ export const openportalUnmanagedProjectsCompletionStatusRetrieve = (options) =>
|
|
|
20354
20422
|
...options
|
|
20355
20423
|
});
|
|
20356
20424
|
};
|
|
20425
|
+
/**
|
|
20426
|
+
* Revoke a role from a user
|
|
20427
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
20428
|
+
*/
|
|
20357
20429
|
export const openportalUnmanagedProjectsDeleteUser = (options) => {
|
|
20358
20430
|
return (options.client ?? _heyApiClient).post({
|
|
20359
20431
|
security: [
|
|
@@ -20374,6 +20446,10 @@ export const openportalUnmanagedProjectsDeleteUser = (options) => {
|
|
|
20374
20446
|
}
|
|
20375
20447
|
});
|
|
20376
20448
|
};
|
|
20449
|
+
/**
|
|
20450
|
+
* List users and their roles in a scope
|
|
20451
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
20452
|
+
*/
|
|
20377
20453
|
export const openportalUnmanagedProjectsListUsersList = (options) => {
|
|
20378
20454
|
return (options.client ?? _heyApiClient).get({
|
|
20379
20455
|
security: [
|
|
@@ -20481,6 +20557,10 @@ export const openportalUnmanagedProjectsSubmitAnswers = (options) => {
|
|
|
20481
20557
|
}
|
|
20482
20558
|
});
|
|
20483
20559
|
};
|
|
20560
|
+
/**
|
|
20561
|
+
* Update a user's role expiration
|
|
20562
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
20563
|
+
*/
|
|
20484
20564
|
export const openportalUnmanagedProjectsUpdateUser = (options) => {
|
|
20485
20565
|
return (options.client ?? _heyApiClient).post({
|
|
20486
20566
|
security: [
|
|
@@ -20721,6 +20801,10 @@ export const openportalUserinfoMeCount = (options) => {
|
|
|
20721
20801
|
...options
|
|
20722
20802
|
});
|
|
20723
20803
|
};
|
|
20804
|
+
/**
|
|
20805
|
+
* List backups
|
|
20806
|
+
* Get a list of instance backups.
|
|
20807
|
+
*/
|
|
20724
20808
|
export const openstackBackupsList = (options) => {
|
|
20725
20809
|
return (options?.client ?? _heyApiClient).get({
|
|
20726
20810
|
security: [
|
|
@@ -20738,6 +20822,7 @@ export const openstackBackupsList = (options) => {
|
|
|
20738
20822
|
});
|
|
20739
20823
|
};
|
|
20740
20824
|
/**
|
|
20825
|
+
* List backups
|
|
20741
20826
|
* Get number of items in the collection matching the request parameters.
|
|
20742
20827
|
*/
|
|
20743
20828
|
export const openstackBackupsCount = (options) => {
|
|
@@ -20756,6 +20841,10 @@ export const openstackBackupsCount = (options) => {
|
|
|
20756
20841
|
...options
|
|
20757
20842
|
});
|
|
20758
20843
|
};
|
|
20844
|
+
/**
|
|
20845
|
+
* Delete backup
|
|
20846
|
+
* Delete an instance backup.
|
|
20847
|
+
*/
|
|
20759
20848
|
export const openstackBackupsDestroy = (options) => {
|
|
20760
20849
|
return (options.client ?? _heyApiClient).delete({
|
|
20761
20850
|
security: [
|
|
@@ -20772,6 +20861,10 @@ export const openstackBackupsDestroy = (options) => {
|
|
|
20772
20861
|
...options
|
|
20773
20862
|
});
|
|
20774
20863
|
};
|
|
20864
|
+
/**
|
|
20865
|
+
* Get backup details
|
|
20866
|
+
* Retrieve details of a specific instance backup.
|
|
20867
|
+
*/
|
|
20775
20868
|
export const openstackBackupsRetrieve = (options) => {
|
|
20776
20869
|
return (options.client ?? _heyApiClient).get({
|
|
20777
20870
|
security: [
|
|
@@ -20788,6 +20881,10 @@ export const openstackBackupsRetrieve = (options) => {
|
|
|
20788
20881
|
...options
|
|
20789
20882
|
});
|
|
20790
20883
|
};
|
|
20884
|
+
/**
|
|
20885
|
+
* Partially update backup
|
|
20886
|
+
* Update specific fields of an instance backup.
|
|
20887
|
+
*/
|
|
20791
20888
|
export const openstackBackupsPartialUpdate = (options) => {
|
|
20792
20889
|
return (options.client ?? _heyApiClient).patch({
|
|
20793
20890
|
security: [
|
|
@@ -20808,6 +20905,10 @@ export const openstackBackupsPartialUpdate = (options) => {
|
|
|
20808
20905
|
}
|
|
20809
20906
|
});
|
|
20810
20907
|
};
|
|
20908
|
+
/**
|
|
20909
|
+
* Update backup
|
|
20910
|
+
* Update an existing instance backup.
|
|
20911
|
+
*/
|
|
20811
20912
|
export const openstackBackupsUpdate = (options) => {
|
|
20812
20913
|
return (options.client ?? _heyApiClient).put({
|
|
20813
20914
|
security: [
|
|
@@ -20849,6 +20950,7 @@ export const openstackBackupsPull = (options) => {
|
|
|
20849
20950
|
});
|
|
20850
20951
|
};
|
|
20851
20952
|
/**
|
|
20953
|
+
* Restore instance from backup
|
|
20852
20954
|
* Restore instance from backup
|
|
20853
20955
|
*/
|
|
20854
20956
|
export const openstackBackupsRestore = (options) => {
|
|
@@ -20893,6 +20995,10 @@ export const openstackBackupsUnlink = (options) => {
|
|
|
20893
20995
|
...options
|
|
20894
20996
|
});
|
|
20895
20997
|
};
|
|
20998
|
+
/**
|
|
20999
|
+
* List flavors
|
|
21000
|
+
* Get a list of available VM instance flavors.
|
|
21001
|
+
*/
|
|
20896
21002
|
export const openstackFlavorsList = (options) => {
|
|
20897
21003
|
return (options?.client ?? _heyApiClient).get({
|
|
20898
21004
|
security: [
|
|
@@ -20910,6 +21016,7 @@ export const openstackFlavorsList = (options) => {
|
|
|
20910
21016
|
});
|
|
20911
21017
|
};
|
|
20912
21018
|
/**
|
|
21019
|
+
* List flavors
|
|
20913
21020
|
* Get number of items in the collection matching the request parameters.
|
|
20914
21021
|
*/
|
|
20915
21022
|
export const openstackFlavorsCount = (options) => {
|
|
@@ -20928,6 +21035,10 @@ export const openstackFlavorsCount = (options) => {
|
|
|
20928
21035
|
...options
|
|
20929
21036
|
});
|
|
20930
21037
|
};
|
|
21038
|
+
/**
|
|
21039
|
+
* Get flavor details
|
|
21040
|
+
* Retrieve details of a specific VM instance flavor.
|
|
21041
|
+
*/
|
|
20931
21042
|
export const openstackFlavorsRetrieve = (options) => {
|
|
20932
21043
|
return (options.client ?? _heyApiClient).get({
|
|
20933
21044
|
security: [
|
|
@@ -20944,6 +21055,10 @@ export const openstackFlavorsRetrieve = (options) => {
|
|
|
20944
21055
|
...options
|
|
20945
21056
|
});
|
|
20946
21057
|
};
|
|
21058
|
+
/**
|
|
21059
|
+
* Get flavor usage statistics
|
|
21060
|
+
* Retrieve usage statistics for VM instance flavors, showing running and created instance counts for each flavor.
|
|
21061
|
+
*/
|
|
20947
21062
|
export const openstackFlavorsUsageStatsRetrieve = (options) => {
|
|
20948
21063
|
return (options?.client ?? _heyApiClient).get({
|
|
20949
21064
|
security: [
|
|
@@ -20961,6 +21076,7 @@ export const openstackFlavorsUsageStatsRetrieve = (options) => {
|
|
|
20961
21076
|
});
|
|
20962
21077
|
};
|
|
20963
21078
|
/**
|
|
21079
|
+
* Get flavor usage statistics
|
|
20964
21080
|
* Get number of items in the collection matching the request parameters.
|
|
20965
21081
|
*/
|
|
20966
21082
|
export const openstackFlavorsUsageStatsCount = (options) => {
|
|
@@ -20980,7 +21096,8 @@ export const openstackFlavorsUsageStatsCount = (options) => {
|
|
|
20980
21096
|
});
|
|
20981
21097
|
};
|
|
20982
21098
|
/**
|
|
20983
|
-
*
|
|
21099
|
+
* List floating IPs
|
|
21100
|
+
* Get a list of floating IP addresses. Status *DOWN* means that floating IP is not linked to a VM, status *ACTIVE* means that it is in use.
|
|
20984
21101
|
*/
|
|
20985
21102
|
export const openstackFloatingIpsList = (options) => {
|
|
20986
21103
|
return (options?.client ?? _heyApiClient).get({
|
|
@@ -20999,6 +21116,7 @@ export const openstackFloatingIpsList = (options) => {
|
|
|
20999
21116
|
});
|
|
21000
21117
|
};
|
|
21001
21118
|
/**
|
|
21119
|
+
* List floating IPs
|
|
21002
21120
|
* Get number of items in the collection matching the request parameters.
|
|
21003
21121
|
*/
|
|
21004
21122
|
export const openstackFloatingIpsCount = (options) => {
|
|
@@ -21017,6 +21135,10 @@ export const openstackFloatingIpsCount = (options) => {
|
|
|
21017
21135
|
...options
|
|
21018
21136
|
});
|
|
21019
21137
|
};
|
|
21138
|
+
/**
|
|
21139
|
+
* Delete floating IP
|
|
21140
|
+
* Delete a floating IP address.
|
|
21141
|
+
*/
|
|
21020
21142
|
export const openstackFloatingIpsDestroy = (options) => {
|
|
21021
21143
|
return (options.client ?? _heyApiClient).delete({
|
|
21022
21144
|
security: [
|
|
@@ -21033,6 +21155,10 @@ export const openstackFloatingIpsDestroy = (options) => {
|
|
|
21033
21155
|
...options
|
|
21034
21156
|
});
|
|
21035
21157
|
};
|
|
21158
|
+
/**
|
|
21159
|
+
* Get floating IP details
|
|
21160
|
+
* Retrieve details of a specific floating IP address.
|
|
21161
|
+
*/
|
|
21036
21162
|
export const openstackFloatingIpsRetrieve = (options) => {
|
|
21037
21163
|
return (options.client ?? _heyApiClient).get({
|
|
21038
21164
|
security: [
|
|
@@ -21050,6 +21176,7 @@ export const openstackFloatingIpsRetrieve = (options) => {
|
|
|
21050
21176
|
});
|
|
21051
21177
|
};
|
|
21052
21178
|
/**
|
|
21179
|
+
* Attach floating IP to a port
|
|
21053
21180
|
* Attach floating IP to port
|
|
21054
21181
|
*/
|
|
21055
21182
|
export const openstackFloatingIpsAttachToPort = (options) => {
|
|
@@ -21073,6 +21200,7 @@ export const openstackFloatingIpsAttachToPort = (options) => {
|
|
|
21073
21200
|
});
|
|
21074
21201
|
};
|
|
21075
21202
|
/**
|
|
21203
|
+
* Detach floating IP from port
|
|
21076
21204
|
* Detach floating IP from port
|
|
21077
21205
|
*/
|
|
21078
21206
|
export const openstackFloatingIpsDetachFromPort = (options) => {
|
|
@@ -21134,6 +21262,7 @@ export const openstackFloatingIpsUnlink = (options) => {
|
|
|
21134
21262
|
});
|
|
21135
21263
|
};
|
|
21136
21264
|
/**
|
|
21265
|
+
* Update floating IP description
|
|
21137
21266
|
* Update description of the floating IP
|
|
21138
21267
|
*/
|
|
21139
21268
|
export const openstackFloatingIpsUpdateDescription = (options) => {
|
|
@@ -21156,6 +21285,10 @@ export const openstackFloatingIpsUpdateDescription = (options) => {
|
|
|
21156
21285
|
}
|
|
21157
21286
|
});
|
|
21158
21287
|
};
|
|
21288
|
+
/**
|
|
21289
|
+
* List images
|
|
21290
|
+
* Get a list of available VM instance images.
|
|
21291
|
+
*/
|
|
21159
21292
|
export const openstackImagesList = (options) => {
|
|
21160
21293
|
return (options?.client ?? _heyApiClient).get({
|
|
21161
21294
|
security: [
|
|
@@ -21173,6 +21306,7 @@ export const openstackImagesList = (options) => {
|
|
|
21173
21306
|
});
|
|
21174
21307
|
};
|
|
21175
21308
|
/**
|
|
21309
|
+
* List images
|
|
21176
21310
|
* Get number of items in the collection matching the request parameters.
|
|
21177
21311
|
*/
|
|
21178
21312
|
export const openstackImagesCount = (options) => {
|
|
@@ -21191,6 +21325,10 @@ export const openstackImagesCount = (options) => {
|
|
|
21191
21325
|
...options
|
|
21192
21326
|
});
|
|
21193
21327
|
};
|
|
21328
|
+
/**
|
|
21329
|
+
* Get image details
|
|
21330
|
+
* Retrieve details of a specific VM instance image.
|
|
21331
|
+
*/
|
|
21194
21332
|
export const openstackImagesRetrieve = (options) => {
|
|
21195
21333
|
return (options.client ?? _heyApiClient).get({
|
|
21196
21334
|
security: [
|
|
@@ -21207,6 +21345,10 @@ export const openstackImagesRetrieve = (options) => {
|
|
|
21207
21345
|
...options
|
|
21208
21346
|
});
|
|
21209
21347
|
};
|
|
21348
|
+
/**
|
|
21349
|
+
* Get image usage statistics
|
|
21350
|
+
* Retrieve usage statistics for VM instance images, showing running and created instance counts for each image.
|
|
21351
|
+
*/
|
|
21210
21352
|
export const openstackImagesUsageStatsRetrieve = (options) => {
|
|
21211
21353
|
return (options?.client ?? _heyApiClient).get({
|
|
21212
21354
|
security: [
|
|
@@ -21224,6 +21366,7 @@ export const openstackImagesUsageStatsRetrieve = (options) => {
|
|
|
21224
21366
|
});
|
|
21225
21367
|
};
|
|
21226
21368
|
/**
|
|
21369
|
+
* Get image usage statistics
|
|
21227
21370
|
* Get number of items in the collection matching the request parameters.
|
|
21228
21371
|
*/
|
|
21229
21372
|
export const openstackImagesUsageStatsCount = (options) => {
|
|
@@ -21242,6 +21385,10 @@ export const openstackImagesUsageStatsCount = (options) => {
|
|
|
21242
21385
|
...options
|
|
21243
21386
|
});
|
|
21244
21387
|
};
|
|
21388
|
+
/**
|
|
21389
|
+
* List instance availability zones
|
|
21390
|
+
* Get a list of instance availability zones.
|
|
21391
|
+
*/
|
|
21245
21392
|
export const openstackInstanceAvailabilityZonesList = (options) => {
|
|
21246
21393
|
return (options?.client ?? _heyApiClient).get({
|
|
21247
21394
|
security: [
|
|
@@ -21259,6 +21406,7 @@ export const openstackInstanceAvailabilityZonesList = (options) => {
|
|
|
21259
21406
|
});
|
|
21260
21407
|
};
|
|
21261
21408
|
/**
|
|
21409
|
+
* List instance availability zones
|
|
21262
21410
|
* Get number of items in the collection matching the request parameters.
|
|
21263
21411
|
*/
|
|
21264
21412
|
export const openstackInstanceAvailabilityZonesCount = (options) => {
|
|
@@ -21277,6 +21425,10 @@ export const openstackInstanceAvailabilityZonesCount = (options) => {
|
|
|
21277
21425
|
...options
|
|
21278
21426
|
});
|
|
21279
21427
|
};
|
|
21428
|
+
/**
|
|
21429
|
+
* Get instance availability zone details
|
|
21430
|
+
* Retrieve details of a specific instance availability zone.
|
|
21431
|
+
*/
|
|
21280
21432
|
export const openstackInstanceAvailabilityZonesRetrieve = (options) => {
|
|
21281
21433
|
return (options.client ?? _heyApiClient).get({
|
|
21282
21434
|
security: [
|
|
@@ -21293,6 +21445,10 @@ export const openstackInstanceAvailabilityZonesRetrieve = (options) => {
|
|
|
21293
21445
|
...options
|
|
21294
21446
|
});
|
|
21295
21447
|
};
|
|
21448
|
+
/**
|
|
21449
|
+
* List instances
|
|
21450
|
+
* Get a list of VM instances.
|
|
21451
|
+
*/
|
|
21296
21452
|
export const openstackInstancesList = (options) => {
|
|
21297
21453
|
return (options?.client ?? _heyApiClient).get({
|
|
21298
21454
|
security: [
|
|
@@ -21310,6 +21466,7 @@ export const openstackInstancesList = (options) => {
|
|
|
21310
21466
|
});
|
|
21311
21467
|
};
|
|
21312
21468
|
/**
|
|
21469
|
+
* List instances
|
|
21313
21470
|
* Get number of items in the collection matching the request parameters.
|
|
21314
21471
|
*/
|
|
21315
21472
|
export const openstackInstancesCount = (options) => {
|
|
@@ -21328,6 +21485,10 @@ export const openstackInstancesCount = (options) => {
|
|
|
21328
21485
|
...options
|
|
21329
21486
|
});
|
|
21330
21487
|
};
|
|
21488
|
+
/**
|
|
21489
|
+
* Get instance details
|
|
21490
|
+
* Retrieve details of a specific VM instance.
|
|
21491
|
+
*/
|
|
21331
21492
|
export const openstackInstancesRetrieve = (options) => {
|
|
21332
21493
|
return (options.client ?? _heyApiClient).get({
|
|
21333
21494
|
security: [
|
|
@@ -21344,6 +21505,10 @@ export const openstackInstancesRetrieve = (options) => {
|
|
|
21344
21505
|
...options
|
|
21345
21506
|
});
|
|
21346
21507
|
};
|
|
21508
|
+
/**
|
|
21509
|
+
* Partially update instance
|
|
21510
|
+
* Update specific fields of a VM instance.
|
|
21511
|
+
*/
|
|
21347
21512
|
export const openstackInstancesPartialUpdate = (options) => {
|
|
21348
21513
|
return (options.client ?? _heyApiClient).patch({
|
|
21349
21514
|
security: [
|
|
@@ -21364,6 +21529,10 @@ export const openstackInstancesPartialUpdate = (options) => {
|
|
|
21364
21529
|
}
|
|
21365
21530
|
});
|
|
21366
21531
|
};
|
|
21532
|
+
/**
|
|
21533
|
+
* Update instance
|
|
21534
|
+
* Update an existing VM instance.
|
|
21535
|
+
*/
|
|
21367
21536
|
export const openstackInstancesUpdate = (options) => {
|
|
21368
21537
|
return (options.client ?? _heyApiClient).put({
|
|
21369
21538
|
security: [
|
|
@@ -21385,6 +21554,7 @@ export const openstackInstancesUpdate = (options) => {
|
|
|
21385
21554
|
});
|
|
21386
21555
|
};
|
|
21387
21556
|
/**
|
|
21557
|
+
* Create instance backup
|
|
21388
21558
|
* Create backup from instance
|
|
21389
21559
|
*/
|
|
21390
21560
|
export const openstackInstancesBackup = (options) => {
|
|
@@ -21408,6 +21578,7 @@ export const openstackInstancesBackup = (options) => {
|
|
|
21408
21578
|
});
|
|
21409
21579
|
};
|
|
21410
21580
|
/**
|
|
21581
|
+
* Change instance flavor
|
|
21411
21582
|
* Change flavor of the instance
|
|
21412
21583
|
*/
|
|
21413
21584
|
export const openstackInstancesChangeFlavor = (options) => {
|
|
@@ -21431,6 +21602,7 @@ export const openstackInstancesChangeFlavor = (options) => {
|
|
|
21431
21602
|
});
|
|
21432
21603
|
};
|
|
21433
21604
|
/**
|
|
21605
|
+
* Get console URL
|
|
21434
21606
|
* Get console url for the instance
|
|
21435
21607
|
*/
|
|
21436
21608
|
export const openstackInstancesConsoleRetrieve = (options) => {
|
|
@@ -21450,6 +21622,7 @@ export const openstackInstancesConsoleRetrieve = (options) => {
|
|
|
21450
21622
|
});
|
|
21451
21623
|
};
|
|
21452
21624
|
/**
|
|
21625
|
+
* Get console log
|
|
21453
21626
|
* Get console log for the instance
|
|
21454
21627
|
*/
|
|
21455
21628
|
export const openstackInstancesConsoleLogRetrieve = (options) => {
|
|
@@ -21469,6 +21642,7 @@ export const openstackInstancesConsoleLogRetrieve = (options) => {
|
|
|
21469
21642
|
});
|
|
21470
21643
|
};
|
|
21471
21644
|
/**
|
|
21645
|
+
* List instance floating IPs
|
|
21472
21646
|
* Get a list of instance floating IPs
|
|
21473
21647
|
*/
|
|
21474
21648
|
export const openstackInstancesFloatingIpsList = (options) => {
|
|
@@ -21488,6 +21662,7 @@ export const openstackInstancesFloatingIpsList = (options) => {
|
|
|
21488
21662
|
});
|
|
21489
21663
|
};
|
|
21490
21664
|
/**
|
|
21665
|
+
* List instance ports
|
|
21491
21666
|
* Get a list of instance ports
|
|
21492
21667
|
*/
|
|
21493
21668
|
export const openstackInstancesPortsList = (options) => {
|
|
@@ -21527,6 +21702,7 @@ export const openstackInstancesPull = (options) => {
|
|
|
21527
21702
|
});
|
|
21528
21703
|
};
|
|
21529
21704
|
/**
|
|
21705
|
+
* Restart instance
|
|
21530
21706
|
* Restart the instance
|
|
21531
21707
|
*/
|
|
21532
21708
|
export const openstackInstancesRestart = (options) => {
|
|
@@ -21546,6 +21722,7 @@ export const openstackInstancesRestart = (options) => {
|
|
|
21546
21722
|
});
|
|
21547
21723
|
};
|
|
21548
21724
|
/**
|
|
21725
|
+
* Start instance
|
|
21549
21726
|
* Start the instance
|
|
21550
21727
|
*/
|
|
21551
21728
|
export const openstackInstancesStart = (options) => {
|
|
@@ -21565,6 +21742,7 @@ export const openstackInstancesStart = (options) => {
|
|
|
21565
21742
|
});
|
|
21566
21743
|
};
|
|
21567
21744
|
/**
|
|
21745
|
+
* Stop instance
|
|
21568
21746
|
* Stop the instance
|
|
21569
21747
|
*/
|
|
21570
21748
|
export const openstackInstancesStop = (options) => {
|
|
@@ -21606,6 +21784,7 @@ export const openstackInstancesUnlink = (options) => {
|
|
|
21606
21784
|
});
|
|
21607
21785
|
};
|
|
21608
21786
|
/**
|
|
21787
|
+
* Update instance allowed address pairs
|
|
21609
21788
|
* Update allowed address pairs of the instance
|
|
21610
21789
|
*/
|
|
21611
21790
|
export const openstackInstancesUpdateAllowedAddressPairs = (options) => {
|
|
@@ -21629,6 +21808,7 @@ export const openstackInstancesUpdateAllowedAddressPairs = (options) => {
|
|
|
21629
21808
|
});
|
|
21630
21809
|
};
|
|
21631
21810
|
/**
|
|
21811
|
+
* Update instance floating IPs
|
|
21632
21812
|
* Update floating IPs of the instance
|
|
21633
21813
|
*/
|
|
21634
21814
|
export const openstackInstancesUpdateFloatingIps = (options) => {
|
|
@@ -21652,6 +21832,7 @@ export const openstackInstancesUpdateFloatingIps = (options) => {
|
|
|
21652
21832
|
});
|
|
21653
21833
|
};
|
|
21654
21834
|
/**
|
|
21835
|
+
* Update instance ports
|
|
21655
21836
|
* Update ports of the instance
|
|
21656
21837
|
*/
|
|
21657
21838
|
export const openstackInstancesUpdatePorts = (options) => {
|
|
@@ -21675,6 +21856,7 @@ export const openstackInstancesUpdatePorts = (options) => {
|
|
|
21675
21856
|
});
|
|
21676
21857
|
};
|
|
21677
21858
|
/**
|
|
21859
|
+
* Update instance security groups
|
|
21678
21860
|
* Update security groups of the instance
|
|
21679
21861
|
*/
|
|
21680
21862
|
export const openstackInstancesUpdateSecurityGroups = (options) => {
|
|
@@ -21915,6 +22097,10 @@ export const openstackMigrationsUpdate = (options) => {
|
|
|
21915
22097
|
}
|
|
21916
22098
|
});
|
|
21917
22099
|
};
|
|
22100
|
+
/**
|
|
22101
|
+
* List network RBAC policies
|
|
22102
|
+
* Get a list of network RBAC policies.
|
|
22103
|
+
*/
|
|
21918
22104
|
export const openstackNetworkRbacPoliciesList = (options) => {
|
|
21919
22105
|
return (options?.client ?? _heyApiClient).get({
|
|
21920
22106
|
security: [
|
|
@@ -21932,6 +22118,7 @@ export const openstackNetworkRbacPoliciesList = (options) => {
|
|
|
21932
22118
|
});
|
|
21933
22119
|
};
|
|
21934
22120
|
/**
|
|
22121
|
+
* List network RBAC policies
|
|
21935
22122
|
* Get number of items in the collection matching the request parameters.
|
|
21936
22123
|
*/
|
|
21937
22124
|
export const openstackNetworkRbacPoliciesCount = (options) => {
|
|
@@ -21951,6 +22138,7 @@ export const openstackNetworkRbacPoliciesCount = (options) => {
|
|
|
21951
22138
|
});
|
|
21952
22139
|
};
|
|
21953
22140
|
/**
|
|
22141
|
+
* Create RBAC policy
|
|
21954
22142
|
* Create RBAC policy for the network
|
|
21955
22143
|
*/
|
|
21956
22144
|
export const openstackNetworkRbacPoliciesCreate = (options) => {
|
|
@@ -21974,6 +22162,7 @@ export const openstackNetworkRbacPoliciesCreate = (options) => {
|
|
|
21974
22162
|
});
|
|
21975
22163
|
};
|
|
21976
22164
|
/**
|
|
22165
|
+
* Delete RBAC policy
|
|
21977
22166
|
* Delete RBAC policy for the network
|
|
21978
22167
|
*/
|
|
21979
22168
|
export const openstackNetworkRbacPoliciesDestroy = (options) => {
|
|
@@ -21992,6 +22181,10 @@ export const openstackNetworkRbacPoliciesDestroy = (options) => {
|
|
|
21992
22181
|
...options
|
|
21993
22182
|
});
|
|
21994
22183
|
};
|
|
22184
|
+
/**
|
|
22185
|
+
* Get network RBAC policy details
|
|
22186
|
+
* Retrieve details of a specific network RBAC policy.
|
|
22187
|
+
*/
|
|
21995
22188
|
export const openstackNetworkRbacPoliciesRetrieve = (options) => {
|
|
21996
22189
|
return (options.client ?? _heyApiClient).get({
|
|
21997
22190
|
security: [
|
|
@@ -22048,6 +22241,10 @@ export const openstackNetworkRbacPoliciesUpdate = (options) => {
|
|
|
22048
22241
|
}
|
|
22049
22242
|
});
|
|
22050
22243
|
};
|
|
22244
|
+
/**
|
|
22245
|
+
* List networks
|
|
22246
|
+
* Get a list of networks.
|
|
22247
|
+
*/
|
|
22051
22248
|
export const openstackNetworksList = (options) => {
|
|
22052
22249
|
return (options?.client ?? _heyApiClient).get({
|
|
22053
22250
|
security: [
|
|
@@ -22065,6 +22262,7 @@ export const openstackNetworksList = (options) => {
|
|
|
22065
22262
|
});
|
|
22066
22263
|
};
|
|
22067
22264
|
/**
|
|
22265
|
+
* List networks
|
|
22068
22266
|
* Get number of items in the collection matching the request parameters.
|
|
22069
22267
|
*/
|
|
22070
22268
|
export const openstackNetworksCount = (options) => {
|
|
@@ -22083,6 +22281,10 @@ export const openstackNetworksCount = (options) => {
|
|
|
22083
22281
|
...options
|
|
22084
22282
|
});
|
|
22085
22283
|
};
|
|
22284
|
+
/**
|
|
22285
|
+
* Delete network
|
|
22286
|
+
* Delete a network.
|
|
22287
|
+
*/
|
|
22086
22288
|
export const openstackNetworksDestroy = (options) => {
|
|
22087
22289
|
return (options.client ?? _heyApiClient).delete({
|
|
22088
22290
|
security: [
|
|
@@ -22099,6 +22301,10 @@ export const openstackNetworksDestroy = (options) => {
|
|
|
22099
22301
|
...options
|
|
22100
22302
|
});
|
|
22101
22303
|
};
|
|
22304
|
+
/**
|
|
22305
|
+
* Get network details
|
|
22306
|
+
* Retrieve details of a specific network.
|
|
22307
|
+
*/
|
|
22102
22308
|
export const openstackNetworksRetrieve = (options) => {
|
|
22103
22309
|
return (options.client ?? _heyApiClient).get({
|
|
22104
22310
|
security: [
|
|
@@ -22115,6 +22321,10 @@ export const openstackNetworksRetrieve = (options) => {
|
|
|
22115
22321
|
...options
|
|
22116
22322
|
});
|
|
22117
22323
|
};
|
|
22324
|
+
/**
|
|
22325
|
+
* Partially update network
|
|
22326
|
+
* Update specific fields of a network.
|
|
22327
|
+
*/
|
|
22118
22328
|
export const openstackNetworksPartialUpdate = (options) => {
|
|
22119
22329
|
return (options.client ?? _heyApiClient).patch({
|
|
22120
22330
|
security: [
|
|
@@ -22135,6 +22345,10 @@ export const openstackNetworksPartialUpdate = (options) => {
|
|
|
22135
22345
|
}
|
|
22136
22346
|
});
|
|
22137
22347
|
};
|
|
22348
|
+
/**
|
|
22349
|
+
* Update network
|
|
22350
|
+
* Update an existing network.
|
|
22351
|
+
*/
|
|
22138
22352
|
export const openstackNetworksUpdate = (options) => {
|
|
22139
22353
|
return (options.client ?? _heyApiClient).put({
|
|
22140
22354
|
security: [
|
|
@@ -22155,6 +22369,10 @@ export const openstackNetworksUpdate = (options) => {
|
|
|
22155
22369
|
}
|
|
22156
22370
|
});
|
|
22157
22371
|
};
|
|
22372
|
+
/**
|
|
22373
|
+
* Create subnet
|
|
22374
|
+
* Create a new subnet within the network.
|
|
22375
|
+
*/
|
|
22158
22376
|
export const openstackNetworksCreateSubnet = (options) => {
|
|
22159
22377
|
return (options.client ?? _heyApiClient).post({
|
|
22160
22378
|
security: [
|
|
@@ -22196,7 +22414,9 @@ export const openstackNetworksPull = (options) => {
|
|
|
22196
22414
|
});
|
|
22197
22415
|
};
|
|
22198
22416
|
/**
|
|
22199
|
-
* Create RBAC policy
|
|
22417
|
+
* Create RBAC policy
|
|
22418
|
+
* Create RBAC policy for the network. DEPRECATED: please use the dedicated /api/openstack-network-rbac-policies/ endpoint.
|
|
22419
|
+
* @deprecated
|
|
22200
22420
|
*/
|
|
22201
22421
|
export const openstackNetworksRbacPolicyCreate = (options) => {
|
|
22202
22422
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -22219,7 +22439,9 @@ export const openstackNetworksRbacPolicyCreate = (options) => {
|
|
|
22219
22439
|
});
|
|
22220
22440
|
};
|
|
22221
22441
|
/**
|
|
22222
|
-
* Delete RBAC policy
|
|
22442
|
+
* Delete RBAC policy
|
|
22443
|
+
* Delete RBAC policy for the network. DEPRECATED: please use the dedicated /api/openstack-network-rbac-policies/ endpoint.
|
|
22444
|
+
* @deprecated
|
|
22223
22445
|
*/
|
|
22224
22446
|
export const openstackNetworksRbacPolicyDeleteDestroy = (options) => {
|
|
22225
22447
|
return (options.client ?? _heyApiClient).delete({
|
|
@@ -22237,6 +22459,10 @@ export const openstackNetworksRbacPolicyDeleteDestroy = (options) => {
|
|
|
22237
22459
|
...options
|
|
22238
22460
|
});
|
|
22239
22461
|
};
|
|
22462
|
+
/**
|
|
22463
|
+
* Set network MTU
|
|
22464
|
+
* Update the Maximum Transmission Unit (MTU) for the network.
|
|
22465
|
+
*/
|
|
22240
22466
|
export const openstackNetworksSetMtu = (options) => {
|
|
22241
22467
|
return (options.client ?? _heyApiClient).post({
|
|
22242
22468
|
security: [
|
|
@@ -22279,6 +22505,10 @@ export const openstackNetworksUnlink = (options) => {
|
|
|
22279
22505
|
...options
|
|
22280
22506
|
});
|
|
22281
22507
|
};
|
|
22508
|
+
/**
|
|
22509
|
+
* List ports
|
|
22510
|
+
* Get a list of network ports.
|
|
22511
|
+
*/
|
|
22282
22512
|
export const openstackPortsList = (options) => {
|
|
22283
22513
|
return (options?.client ?? _heyApiClient).get({
|
|
22284
22514
|
security: [
|
|
@@ -22296,6 +22526,7 @@ export const openstackPortsList = (options) => {
|
|
|
22296
22526
|
});
|
|
22297
22527
|
};
|
|
22298
22528
|
/**
|
|
22529
|
+
* List ports
|
|
22299
22530
|
* Get number of items in the collection matching the request parameters.
|
|
22300
22531
|
*/
|
|
22301
22532
|
export const openstackPortsCount = (options) => {
|
|
@@ -22314,6 +22545,10 @@ export const openstackPortsCount = (options) => {
|
|
|
22314
22545
|
...options
|
|
22315
22546
|
});
|
|
22316
22547
|
};
|
|
22548
|
+
/**
|
|
22549
|
+
* Create port
|
|
22550
|
+
* Create a new network port.
|
|
22551
|
+
*/
|
|
22317
22552
|
export const openstackPortsCreate = (options) => {
|
|
22318
22553
|
return (options.client ?? _heyApiClient).post({
|
|
22319
22554
|
security: [
|
|
@@ -22334,6 +22569,10 @@ export const openstackPortsCreate = (options) => {
|
|
|
22334
22569
|
}
|
|
22335
22570
|
});
|
|
22336
22571
|
};
|
|
22572
|
+
/**
|
|
22573
|
+
* Delete port
|
|
22574
|
+
* Delete a network port.
|
|
22575
|
+
*/
|
|
22337
22576
|
export const openstackPortsDestroy = (options) => {
|
|
22338
22577
|
return (options.client ?? _heyApiClient).delete({
|
|
22339
22578
|
security: [
|
|
@@ -22350,6 +22589,10 @@ export const openstackPortsDestroy = (options) => {
|
|
|
22350
22589
|
...options
|
|
22351
22590
|
});
|
|
22352
22591
|
};
|
|
22592
|
+
/**
|
|
22593
|
+
* Get port details
|
|
22594
|
+
* Retrieve details of a specific network port.
|
|
22595
|
+
*/
|
|
22353
22596
|
export const openstackPortsRetrieve = (options) => {
|
|
22354
22597
|
return (options.client ?? _heyApiClient).get({
|
|
22355
22598
|
security: [
|
|
@@ -22366,6 +22609,10 @@ export const openstackPortsRetrieve = (options) => {
|
|
|
22366
22609
|
...options
|
|
22367
22610
|
});
|
|
22368
22611
|
};
|
|
22612
|
+
/**
|
|
22613
|
+
* Partially update port
|
|
22614
|
+
* Update specific fields of a network port.
|
|
22615
|
+
*/
|
|
22369
22616
|
export const openstackPortsPartialUpdate = (options) => {
|
|
22370
22617
|
return (options.client ?? _heyApiClient).patch({
|
|
22371
22618
|
security: [
|
|
@@ -22386,6 +22633,10 @@ export const openstackPortsPartialUpdate = (options) => {
|
|
|
22386
22633
|
}
|
|
22387
22634
|
});
|
|
22388
22635
|
};
|
|
22636
|
+
/**
|
|
22637
|
+
* Update port
|
|
22638
|
+
* Update an existing network port.
|
|
22639
|
+
*/
|
|
22389
22640
|
export const openstackPortsUpdate = (options) => {
|
|
22390
22641
|
return (options.client ?? _heyApiClient).put({
|
|
22391
22642
|
security: [
|
|
@@ -22407,6 +22658,7 @@ export const openstackPortsUpdate = (options) => {
|
|
|
22407
22658
|
});
|
|
22408
22659
|
};
|
|
22409
22660
|
/**
|
|
22661
|
+
* Disable port
|
|
22410
22662
|
* Disable port.
|
|
22411
22663
|
*/
|
|
22412
22664
|
export const openstackPortsDisablePort = (options) => {
|
|
@@ -22426,6 +22678,7 @@ export const openstackPortsDisablePort = (options) => {
|
|
|
22426
22678
|
});
|
|
22427
22679
|
};
|
|
22428
22680
|
/**
|
|
22681
|
+
* Disable port security
|
|
22429
22682
|
* Disable port security for the port
|
|
22430
22683
|
*/
|
|
22431
22684
|
export const openstackPortsDisablePortSecurity = (options) => {
|
|
@@ -22445,6 +22698,7 @@ export const openstackPortsDisablePortSecurity = (options) => {
|
|
|
22445
22698
|
});
|
|
22446
22699
|
};
|
|
22447
22700
|
/**
|
|
22701
|
+
* Enable port
|
|
22448
22702
|
* Enable port.
|
|
22449
22703
|
*/
|
|
22450
22704
|
export const openstackPortsEnablePort = (options) => {
|
|
@@ -22464,6 +22718,7 @@ export const openstackPortsEnablePort = (options) => {
|
|
|
22464
22718
|
});
|
|
22465
22719
|
};
|
|
22466
22720
|
/**
|
|
22721
|
+
* Enable port security
|
|
22467
22722
|
* Enable port security for the port
|
|
22468
22723
|
*/
|
|
22469
22724
|
export const openstackPortsEnablePortSecurity = (options) => {
|
|
@@ -22525,6 +22780,7 @@ export const openstackPortsUnlink = (options) => {
|
|
|
22525
22780
|
});
|
|
22526
22781
|
};
|
|
22527
22782
|
/**
|
|
22783
|
+
* Update port IP address
|
|
22528
22784
|
* Update port IP address.
|
|
22529
22785
|
*/
|
|
22530
22786
|
export const openstackPortsUpdatePortIp = (options) => {
|
|
@@ -22548,6 +22804,7 @@ export const openstackPortsUpdatePortIp = (options) => {
|
|
|
22548
22804
|
});
|
|
22549
22805
|
};
|
|
22550
22806
|
/**
|
|
22807
|
+
* Update port security groups
|
|
22551
22808
|
* Update security groups of the port
|
|
22552
22809
|
*/
|
|
22553
22810
|
export const openstackPortsUpdateSecurityGroups = (options) => {
|
|
@@ -22570,6 +22827,10 @@ export const openstackPortsUpdateSecurityGroups = (options) => {
|
|
|
22570
22827
|
}
|
|
22571
22828
|
});
|
|
22572
22829
|
};
|
|
22830
|
+
/**
|
|
22831
|
+
* List routers
|
|
22832
|
+
* Get a list of routers.
|
|
22833
|
+
*/
|
|
22573
22834
|
export const openstackRoutersList = (options) => {
|
|
22574
22835
|
return (options?.client ?? _heyApiClient).get({
|
|
22575
22836
|
security: [
|
|
@@ -22587,6 +22848,7 @@ export const openstackRoutersList = (options) => {
|
|
|
22587
22848
|
});
|
|
22588
22849
|
};
|
|
22589
22850
|
/**
|
|
22851
|
+
* List routers
|
|
22590
22852
|
* Get number of items in the collection matching the request parameters.
|
|
22591
22853
|
*/
|
|
22592
22854
|
export const openstackRoutersCount = (options) => {
|
|
@@ -22605,6 +22867,10 @@ export const openstackRoutersCount = (options) => {
|
|
|
22605
22867
|
...options
|
|
22606
22868
|
});
|
|
22607
22869
|
};
|
|
22870
|
+
/**
|
|
22871
|
+
* Create router
|
|
22872
|
+
* Create a new router.
|
|
22873
|
+
*/
|
|
22608
22874
|
export const openstackRoutersCreate = (options) => {
|
|
22609
22875
|
return (options.client ?? _heyApiClient).post({
|
|
22610
22876
|
security: [
|
|
@@ -22625,6 +22891,10 @@ export const openstackRoutersCreate = (options) => {
|
|
|
22625
22891
|
}
|
|
22626
22892
|
});
|
|
22627
22893
|
};
|
|
22894
|
+
/**
|
|
22895
|
+
* Delete router
|
|
22896
|
+
* Delete a router.
|
|
22897
|
+
*/
|
|
22628
22898
|
export const openstackRoutersDestroy = (options) => {
|
|
22629
22899
|
return (options.client ?? _heyApiClient).delete({
|
|
22630
22900
|
security: [
|
|
@@ -22641,6 +22911,10 @@ export const openstackRoutersDestroy = (options) => {
|
|
|
22641
22911
|
...options
|
|
22642
22912
|
});
|
|
22643
22913
|
};
|
|
22914
|
+
/**
|
|
22915
|
+
* Get router details
|
|
22916
|
+
* Retrieve details of a specific router.
|
|
22917
|
+
*/
|
|
22644
22918
|
export const openstackRoutersRetrieve = (options) => {
|
|
22645
22919
|
return (options.client ?? _heyApiClient).get({
|
|
22646
22920
|
security: [
|
|
@@ -22658,6 +22932,7 @@ export const openstackRoutersRetrieve = (options) => {
|
|
|
22658
22932
|
});
|
|
22659
22933
|
};
|
|
22660
22934
|
/**
|
|
22935
|
+
* Add router interface
|
|
22661
22936
|
* Add interface to router. Either subnet or port must be provided.
|
|
22662
22937
|
*/
|
|
22663
22938
|
export const openstackRoutersAddRouterInterface = (options) => {
|
|
@@ -22681,6 +22956,7 @@ export const openstackRoutersAddRouterInterface = (options) => {
|
|
|
22681
22956
|
});
|
|
22682
22957
|
};
|
|
22683
22958
|
/**
|
|
22959
|
+
* Remove router interface
|
|
22684
22960
|
* Remove interface from router. Either subnet or port must be provided.
|
|
22685
22961
|
*/
|
|
22686
22962
|
export const openstackRoutersRemoveRouterInterface = (options) => {
|
|
@@ -22703,6 +22979,10 @@ export const openstackRoutersRemoveRouterInterface = (options) => {
|
|
|
22703
22979
|
}
|
|
22704
22980
|
});
|
|
22705
22981
|
};
|
|
22982
|
+
/**
|
|
22983
|
+
* Set static routes
|
|
22984
|
+
* Define or overwrite the static routes for the router.
|
|
22985
|
+
*/
|
|
22706
22986
|
export const openstackRoutersSetRoutes = (options) => {
|
|
22707
22987
|
return (options.client ?? _heyApiClient).post({
|
|
22708
22988
|
security: [
|
|
@@ -22723,6 +23003,10 @@ export const openstackRoutersSetRoutes = (options) => {
|
|
|
22723
23003
|
}
|
|
22724
23004
|
});
|
|
22725
23005
|
};
|
|
23006
|
+
/**
|
|
23007
|
+
* List security groups
|
|
23008
|
+
* Get a list of security groups.
|
|
23009
|
+
*/
|
|
22726
23010
|
export const openstackSecurityGroupsList = (options) => {
|
|
22727
23011
|
return (options?.client ?? _heyApiClient).get({
|
|
22728
23012
|
security: [
|
|
@@ -22740,6 +23024,7 @@ export const openstackSecurityGroupsList = (options) => {
|
|
|
22740
23024
|
});
|
|
22741
23025
|
};
|
|
22742
23026
|
/**
|
|
23027
|
+
* List security groups
|
|
22743
23028
|
* Get number of items in the collection matching the request parameters.
|
|
22744
23029
|
*/
|
|
22745
23030
|
export const openstackSecurityGroupsCount = (options) => {
|
|
@@ -22758,6 +23043,10 @@ export const openstackSecurityGroupsCount = (options) => {
|
|
|
22758
23043
|
...options
|
|
22759
23044
|
});
|
|
22760
23045
|
};
|
|
23046
|
+
/**
|
|
23047
|
+
* Delete security group
|
|
23048
|
+
* Delete a security group.
|
|
23049
|
+
*/
|
|
22761
23050
|
export const openstackSecurityGroupsDestroy = (options) => {
|
|
22762
23051
|
return (options.client ?? _heyApiClient).delete({
|
|
22763
23052
|
security: [
|
|
@@ -22774,6 +23063,10 @@ export const openstackSecurityGroupsDestroy = (options) => {
|
|
|
22774
23063
|
...options
|
|
22775
23064
|
});
|
|
22776
23065
|
};
|
|
23066
|
+
/**
|
|
23067
|
+
* Get security group details
|
|
23068
|
+
* Retrieve details of a specific security group.
|
|
23069
|
+
*/
|
|
22777
23070
|
export const openstackSecurityGroupsRetrieve = (options) => {
|
|
22778
23071
|
return (options.client ?? _heyApiClient).get({
|
|
22779
23072
|
security: [
|
|
@@ -22790,6 +23083,10 @@ export const openstackSecurityGroupsRetrieve = (options) => {
|
|
|
22790
23083
|
...options
|
|
22791
23084
|
});
|
|
22792
23085
|
};
|
|
23086
|
+
/**
|
|
23087
|
+
* Partially update security group
|
|
23088
|
+
* Update specific fields of a security group.
|
|
23089
|
+
*/
|
|
22793
23090
|
export const openstackSecurityGroupsPartialUpdate = (options) => {
|
|
22794
23091
|
return (options.client ?? _heyApiClient).patch({
|
|
22795
23092
|
security: [
|
|
@@ -22851,7 +23148,8 @@ export const openstackSecurityGroupsPull = (options) => {
|
|
|
22851
23148
|
});
|
|
22852
23149
|
};
|
|
22853
23150
|
/**
|
|
22854
|
-
*
|
|
23151
|
+
* Set security group rules
|
|
23152
|
+
* Update the rules for a specific security group. This overwrites all existing rules.
|
|
22855
23153
|
*/
|
|
22856
23154
|
export const openstackSecurityGroupsSetRules = (options) => {
|
|
22857
23155
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -22895,6 +23193,10 @@ export const openstackSecurityGroupsUnlink = (options) => {
|
|
|
22895
23193
|
...options
|
|
22896
23194
|
});
|
|
22897
23195
|
};
|
|
23196
|
+
/**
|
|
23197
|
+
* List server groups
|
|
23198
|
+
* Get a list of server groups.
|
|
23199
|
+
*/
|
|
22898
23200
|
export const openstackServerGroupsList = (options) => {
|
|
22899
23201
|
return (options?.client ?? _heyApiClient).get({
|
|
22900
23202
|
security: [
|
|
@@ -22912,6 +23214,7 @@ export const openstackServerGroupsList = (options) => {
|
|
|
22912
23214
|
});
|
|
22913
23215
|
};
|
|
22914
23216
|
/**
|
|
23217
|
+
* List server groups
|
|
22915
23218
|
* Get number of items in the collection matching the request parameters.
|
|
22916
23219
|
*/
|
|
22917
23220
|
export const openstackServerGroupsCount = (options) => {
|
|
@@ -22950,6 +23253,10 @@ export const openstackServerGroupsCreate = (options) => {
|
|
|
22950
23253
|
}
|
|
22951
23254
|
});
|
|
22952
23255
|
};
|
|
23256
|
+
/**
|
|
23257
|
+
* Delete server group
|
|
23258
|
+
* Delete a server group.
|
|
23259
|
+
*/
|
|
22953
23260
|
export const openstackServerGroupsDestroy = (options) => {
|
|
22954
23261
|
return (options.client ?? _heyApiClient).delete({
|
|
22955
23262
|
security: [
|
|
@@ -22966,6 +23273,10 @@ export const openstackServerGroupsDestroy = (options) => {
|
|
|
22966
23273
|
...options
|
|
22967
23274
|
});
|
|
22968
23275
|
};
|
|
23276
|
+
/**
|
|
23277
|
+
* Get server group details
|
|
23278
|
+
* Retrieve details of a specific server group.
|
|
23279
|
+
*/
|
|
22969
23280
|
export const openstackServerGroupsRetrieve = (options) => {
|
|
22970
23281
|
return (options.client ?? _heyApiClient).get({
|
|
22971
23282
|
security: [
|
|
@@ -23064,6 +23375,10 @@ export const openstackServerGroupsUnlink = (options) => {
|
|
|
23064
23375
|
...options
|
|
23065
23376
|
});
|
|
23066
23377
|
};
|
|
23378
|
+
/**
|
|
23379
|
+
* List snapshots
|
|
23380
|
+
* Get a list of snapshots.
|
|
23381
|
+
*/
|
|
23067
23382
|
export const openstackSnapshotsList = (options) => {
|
|
23068
23383
|
return (options?.client ?? _heyApiClient).get({
|
|
23069
23384
|
security: [
|
|
@@ -23081,6 +23396,7 @@ export const openstackSnapshotsList = (options) => {
|
|
|
23081
23396
|
});
|
|
23082
23397
|
};
|
|
23083
23398
|
/**
|
|
23399
|
+
* List snapshots
|
|
23084
23400
|
* Get number of items in the collection matching the request parameters.
|
|
23085
23401
|
*/
|
|
23086
23402
|
export const openstackSnapshotsCount = (options) => {
|
|
@@ -23099,6 +23415,10 @@ export const openstackSnapshotsCount = (options) => {
|
|
|
23099
23415
|
...options
|
|
23100
23416
|
});
|
|
23101
23417
|
};
|
|
23418
|
+
/**
|
|
23419
|
+
* Delete snapshot
|
|
23420
|
+
* Delete a snapshot.
|
|
23421
|
+
*/
|
|
23102
23422
|
export const openstackSnapshotsDestroy = (options) => {
|
|
23103
23423
|
return (options.client ?? _heyApiClient).delete({
|
|
23104
23424
|
security: [
|
|
@@ -23115,6 +23435,10 @@ export const openstackSnapshotsDestroy = (options) => {
|
|
|
23115
23435
|
...options
|
|
23116
23436
|
});
|
|
23117
23437
|
};
|
|
23438
|
+
/**
|
|
23439
|
+
* Get snapshot details
|
|
23440
|
+
* Retrieve details of a specific snapshot.
|
|
23441
|
+
*/
|
|
23118
23442
|
export const openstackSnapshotsRetrieve = (options) => {
|
|
23119
23443
|
return (options.client ?? _heyApiClient).get({
|
|
23120
23444
|
security: [
|
|
@@ -23131,6 +23455,10 @@ export const openstackSnapshotsRetrieve = (options) => {
|
|
|
23131
23455
|
...options
|
|
23132
23456
|
});
|
|
23133
23457
|
};
|
|
23458
|
+
/**
|
|
23459
|
+
* Partially update snapshot
|
|
23460
|
+
* Update specific fields of a snapshot.
|
|
23461
|
+
*/
|
|
23134
23462
|
export const openstackSnapshotsPartialUpdate = (options) => {
|
|
23135
23463
|
return (options.client ?? _heyApiClient).patch({
|
|
23136
23464
|
security: [
|
|
@@ -23151,6 +23479,10 @@ export const openstackSnapshotsPartialUpdate = (options) => {
|
|
|
23151
23479
|
}
|
|
23152
23480
|
});
|
|
23153
23481
|
};
|
|
23482
|
+
/**
|
|
23483
|
+
* Update snapshot
|
|
23484
|
+
* Update an existing snapshot.
|
|
23485
|
+
*/
|
|
23154
23486
|
export const openstackSnapshotsUpdate = (options) => {
|
|
23155
23487
|
return (options.client ?? _heyApiClient).put({
|
|
23156
23488
|
security: [
|
|
@@ -23192,6 +23524,7 @@ export const openstackSnapshotsPull = (options) => {
|
|
|
23192
23524
|
});
|
|
23193
23525
|
};
|
|
23194
23526
|
/**
|
|
23527
|
+
* List snapshot restorations
|
|
23195
23528
|
* Get a list of snapshot restorations
|
|
23196
23529
|
*/
|
|
23197
23530
|
export const openstackSnapshotsRestorationsList = (options) => {
|
|
@@ -23211,6 +23544,7 @@ export const openstackSnapshotsRestorationsList = (options) => {
|
|
|
23211
23544
|
});
|
|
23212
23545
|
};
|
|
23213
23546
|
/**
|
|
23547
|
+
* Restore volume from snapshot
|
|
23214
23548
|
* Restore volume from snapshot
|
|
23215
23549
|
*/
|
|
23216
23550
|
export const openstackSnapshotsRestore = (options) => {
|
|
@@ -23255,6 +23589,10 @@ export const openstackSnapshotsUnlink = (options) => {
|
|
|
23255
23589
|
...options
|
|
23256
23590
|
});
|
|
23257
23591
|
};
|
|
23592
|
+
/**
|
|
23593
|
+
* List subnets
|
|
23594
|
+
* Get a list of subnets.
|
|
23595
|
+
*/
|
|
23258
23596
|
export const openstackSubnetsList = (options) => {
|
|
23259
23597
|
return (options?.client ?? _heyApiClient).get({
|
|
23260
23598
|
security: [
|
|
@@ -23272,6 +23610,7 @@ export const openstackSubnetsList = (options) => {
|
|
|
23272
23610
|
});
|
|
23273
23611
|
};
|
|
23274
23612
|
/**
|
|
23613
|
+
* List subnets
|
|
23275
23614
|
* Get number of items in the collection matching the request parameters.
|
|
23276
23615
|
*/
|
|
23277
23616
|
export const openstackSubnetsCount = (options) => {
|
|
@@ -23290,6 +23629,10 @@ export const openstackSubnetsCount = (options) => {
|
|
|
23290
23629
|
...options
|
|
23291
23630
|
});
|
|
23292
23631
|
};
|
|
23632
|
+
/**
|
|
23633
|
+
* Delete subnet
|
|
23634
|
+
* Delete a subnet.
|
|
23635
|
+
*/
|
|
23293
23636
|
export const openstackSubnetsDestroy = (options) => {
|
|
23294
23637
|
return (options.client ?? _heyApiClient).delete({
|
|
23295
23638
|
security: [
|
|
@@ -23306,6 +23649,10 @@ export const openstackSubnetsDestroy = (options) => {
|
|
|
23306
23649
|
...options
|
|
23307
23650
|
});
|
|
23308
23651
|
};
|
|
23652
|
+
/**
|
|
23653
|
+
* Get subnet details
|
|
23654
|
+
* Retrieve details of a specific subnet.
|
|
23655
|
+
*/
|
|
23309
23656
|
export const openstackSubnetsRetrieve = (options) => {
|
|
23310
23657
|
return (options.client ?? _heyApiClient).get({
|
|
23311
23658
|
security: [
|
|
@@ -23322,6 +23669,10 @@ export const openstackSubnetsRetrieve = (options) => {
|
|
|
23322
23669
|
...options
|
|
23323
23670
|
});
|
|
23324
23671
|
};
|
|
23672
|
+
/**
|
|
23673
|
+
* Partially update subnet
|
|
23674
|
+
* Update specific fields of a subnet.
|
|
23675
|
+
*/
|
|
23325
23676
|
export const openstackSubnetsPartialUpdate = (options) => {
|
|
23326
23677
|
return (options.client ?? _heyApiClient).patch({
|
|
23327
23678
|
security: [
|
|
@@ -23342,6 +23693,10 @@ export const openstackSubnetsPartialUpdate = (options) => {
|
|
|
23342
23693
|
}
|
|
23343
23694
|
});
|
|
23344
23695
|
};
|
|
23696
|
+
/**
|
|
23697
|
+
* Update subnet
|
|
23698
|
+
* Update an existing subnet.
|
|
23699
|
+
*/
|
|
23345
23700
|
export const openstackSubnetsUpdate = (options) => {
|
|
23346
23701
|
return (options.client ?? _heyApiClient).put({
|
|
23347
23702
|
security: [
|
|
@@ -23362,6 +23717,10 @@ export const openstackSubnetsUpdate = (options) => {
|
|
|
23362
23717
|
}
|
|
23363
23718
|
});
|
|
23364
23719
|
};
|
|
23720
|
+
/**
|
|
23721
|
+
* Connect subnet to router
|
|
23722
|
+
* Connect the subnet to the default tenant router.
|
|
23723
|
+
*/
|
|
23365
23724
|
export const openstackSubnetsConnect = (options) => {
|
|
23366
23725
|
return (options.client ?? _heyApiClient).post({
|
|
23367
23726
|
security: [
|
|
@@ -23378,6 +23737,10 @@ export const openstackSubnetsConnect = (options) => {
|
|
|
23378
23737
|
...options
|
|
23379
23738
|
});
|
|
23380
23739
|
};
|
|
23740
|
+
/**
|
|
23741
|
+
* Disconnect subnet from router
|
|
23742
|
+
* Disconnect the subnet from the default tenant router.
|
|
23743
|
+
*/
|
|
23381
23744
|
export const openstackSubnetsDisconnect = (options) => {
|
|
23382
23745
|
return (options.client ?? _heyApiClient).post({
|
|
23383
23746
|
security: [
|
|
@@ -23436,6 +23799,10 @@ export const openstackSubnetsUnlink = (options) => {
|
|
|
23436
23799
|
...options
|
|
23437
23800
|
});
|
|
23438
23801
|
};
|
|
23802
|
+
/**
|
|
23803
|
+
* List tenants
|
|
23804
|
+
* Get a list of OpenStack tenants.
|
|
23805
|
+
*/
|
|
23439
23806
|
export const openstackTenantsList = (options) => {
|
|
23440
23807
|
return (options?.client ?? _heyApiClient).get({
|
|
23441
23808
|
security: [
|
|
@@ -23453,6 +23820,7 @@ export const openstackTenantsList = (options) => {
|
|
|
23453
23820
|
});
|
|
23454
23821
|
};
|
|
23455
23822
|
/**
|
|
23823
|
+
* List tenants
|
|
23456
23824
|
* Get number of items in the collection matching the request parameters.
|
|
23457
23825
|
*/
|
|
23458
23826
|
export const openstackTenantsCount = (options) => {
|
|
@@ -23471,6 +23839,10 @@ export const openstackTenantsCount = (options) => {
|
|
|
23471
23839
|
...options
|
|
23472
23840
|
});
|
|
23473
23841
|
};
|
|
23842
|
+
/**
|
|
23843
|
+
* Create tenant
|
|
23844
|
+
* Create a new OpenStack tenant.
|
|
23845
|
+
*/
|
|
23474
23846
|
export const openstackTenantsCreate = (options) => {
|
|
23475
23847
|
return (options.client ?? _heyApiClient).post({
|
|
23476
23848
|
security: [
|
|
@@ -23491,6 +23863,10 @@ export const openstackTenantsCreate = (options) => {
|
|
|
23491
23863
|
}
|
|
23492
23864
|
});
|
|
23493
23865
|
};
|
|
23866
|
+
/**
|
|
23867
|
+
* Delete tenant
|
|
23868
|
+
* Delete an OpenStack tenant and all its resources.
|
|
23869
|
+
*/
|
|
23494
23870
|
export const openstackTenantsDestroy = (options) => {
|
|
23495
23871
|
return (options.client ?? _heyApiClient).delete({
|
|
23496
23872
|
security: [
|
|
@@ -23507,6 +23883,10 @@ export const openstackTenantsDestroy = (options) => {
|
|
|
23507
23883
|
...options
|
|
23508
23884
|
});
|
|
23509
23885
|
};
|
|
23886
|
+
/**
|
|
23887
|
+
* Get tenant details
|
|
23888
|
+
* Retrieve details of a specific OpenStack tenant.
|
|
23889
|
+
*/
|
|
23510
23890
|
export const openstackTenantsRetrieve = (options) => {
|
|
23511
23891
|
return (options.client ?? _heyApiClient).get({
|
|
23512
23892
|
security: [
|
|
@@ -23523,6 +23903,10 @@ export const openstackTenantsRetrieve = (options) => {
|
|
|
23523
23903
|
...options
|
|
23524
23904
|
});
|
|
23525
23905
|
};
|
|
23906
|
+
/**
|
|
23907
|
+
* Partially update tenant
|
|
23908
|
+
* Update specific fields of an OpenStack tenant.
|
|
23909
|
+
*/
|
|
23526
23910
|
export const openstackTenantsPartialUpdate = (options) => {
|
|
23527
23911
|
return (options.client ?? _heyApiClient).patch({
|
|
23528
23912
|
security: [
|
|
@@ -23543,6 +23927,10 @@ export const openstackTenantsPartialUpdate = (options) => {
|
|
|
23543
23927
|
}
|
|
23544
23928
|
});
|
|
23545
23929
|
};
|
|
23930
|
+
/**
|
|
23931
|
+
* Update tenant
|
|
23932
|
+
* Update an existing OpenStack tenant.
|
|
23933
|
+
*/
|
|
23546
23934
|
export const openstackTenantsUpdate = (options) => {
|
|
23547
23935
|
return (options.client ?? _heyApiClient).put({
|
|
23548
23936
|
security: [
|
|
@@ -23564,6 +23952,7 @@ export const openstackTenantsUpdate = (options) => {
|
|
|
23564
23952
|
});
|
|
23565
23953
|
};
|
|
23566
23954
|
/**
|
|
23955
|
+
* List backend instances
|
|
23567
23956
|
* Return a list of volumes from backend
|
|
23568
23957
|
*/
|
|
23569
23958
|
export const openstackTenantsBackendInstancesList = (options) => {
|
|
@@ -23583,6 +23972,7 @@ export const openstackTenantsBackendInstancesList = (options) => {
|
|
|
23583
23972
|
});
|
|
23584
23973
|
};
|
|
23585
23974
|
/**
|
|
23975
|
+
* List backend volumes
|
|
23586
23976
|
* Return a list of volumes from backend
|
|
23587
23977
|
*/
|
|
23588
23978
|
export const openstackTenantsBackendVolumesList = (options) => {
|
|
@@ -23602,6 +23992,7 @@ export const openstackTenantsBackendVolumesList = (options) => {
|
|
|
23602
23992
|
});
|
|
23603
23993
|
};
|
|
23604
23994
|
/**
|
|
23995
|
+
* Change tenant user password
|
|
23605
23996
|
* Change password for tenant user
|
|
23606
23997
|
*/
|
|
23607
23998
|
export const openstackTenantsChangePassword = (options) => {
|
|
@@ -23625,6 +24016,7 @@ export const openstackTenantsChangePassword = (options) => {
|
|
|
23625
24016
|
});
|
|
23626
24017
|
};
|
|
23627
24018
|
/**
|
|
24019
|
+
* Create floating IP for tenant
|
|
23628
24020
|
* Create floating IP for tenant
|
|
23629
24021
|
*/
|
|
23630
24022
|
export const openstackTenantsCreateFloatingIp = (options) => {
|
|
@@ -23644,6 +24036,7 @@ export const openstackTenantsCreateFloatingIp = (options) => {
|
|
|
23644
24036
|
});
|
|
23645
24037
|
};
|
|
23646
24038
|
/**
|
|
24039
|
+
* Create network for tenant
|
|
23647
24040
|
* Create network for tenant
|
|
23648
24041
|
*/
|
|
23649
24042
|
export const openstackTenantsCreateNetwork = (options) => {
|
|
@@ -23666,6 +24059,10 @@ export const openstackTenantsCreateNetwork = (options) => {
|
|
|
23666
24059
|
}
|
|
23667
24060
|
});
|
|
23668
24061
|
};
|
|
24062
|
+
/**
|
|
24063
|
+
* Create security group
|
|
24064
|
+
* Create a security group for the tenant.
|
|
24065
|
+
*/
|
|
23669
24066
|
export const openstackTenantsCreateSecurityGroup = (options) => {
|
|
23670
24067
|
return (options.client ?? _heyApiClient).post({
|
|
23671
24068
|
security: [
|
|
@@ -23686,6 +24083,10 @@ export const openstackTenantsCreateSecurityGroup = (options) => {
|
|
|
23686
24083
|
}
|
|
23687
24084
|
});
|
|
23688
24085
|
};
|
|
24086
|
+
/**
|
|
24087
|
+
* Create server group
|
|
24088
|
+
* Create a new server group for the tenant.
|
|
24089
|
+
*/
|
|
23689
24090
|
export const openstackTenantsCreateServerGroup = (options) => {
|
|
23690
24091
|
return (options.client ?? _heyApiClient).post({
|
|
23691
24092
|
security: [
|
|
@@ -23727,6 +24128,7 @@ export const openstackTenantsPull = (options) => {
|
|
|
23727
24128
|
});
|
|
23728
24129
|
};
|
|
23729
24130
|
/**
|
|
24131
|
+
* Pull floating IPs
|
|
23730
24132
|
* Trigger job to pull floating IPs from remote VPC
|
|
23731
24133
|
*/
|
|
23732
24134
|
export const openstackTenantsPullFloatingIps = (options) => {
|
|
@@ -23746,6 +24148,7 @@ export const openstackTenantsPullFloatingIps = (options) => {
|
|
|
23746
24148
|
});
|
|
23747
24149
|
};
|
|
23748
24150
|
/**
|
|
24151
|
+
* Pull tenant quotas
|
|
23749
24152
|
* It triggers celery job to pull quotas from remote VPC
|
|
23750
24153
|
*/
|
|
23751
24154
|
export const openstackTenantsPullQuotas = (options) => {
|
|
@@ -23765,6 +24168,7 @@ export const openstackTenantsPullQuotas = (options) => {
|
|
|
23765
24168
|
});
|
|
23766
24169
|
};
|
|
23767
24170
|
/**
|
|
24171
|
+
* Pull security groups
|
|
23768
24172
|
* Trigger job to pull security groups from remote VPC
|
|
23769
24173
|
*/
|
|
23770
24174
|
export const openstackTenantsPullSecurityGroups = (options) => {
|
|
@@ -23784,6 +24188,7 @@ export const openstackTenantsPullSecurityGroups = (options) => {
|
|
|
23784
24188
|
});
|
|
23785
24189
|
};
|
|
23786
24190
|
/**
|
|
24191
|
+
* Pull server groups
|
|
23787
24192
|
* Trigger job to pull server groups from remote VPC
|
|
23788
24193
|
*/
|
|
23789
24194
|
export const openstackTenantsPullServerGroups = (options) => {
|
|
@@ -23803,6 +24208,7 @@ export const openstackTenantsPullServerGroups = (options) => {
|
|
|
23803
24208
|
});
|
|
23804
24209
|
};
|
|
23805
24210
|
/**
|
|
24211
|
+
* Set tenant quotas
|
|
23806
24212
|
* A quota can be set for a particular tenant. Only staff users can do that.
|
|
23807
24213
|
* In order to set quota submit POST request to /api/openstack-tenants/<uuid>/set_quotas/.
|
|
23808
24214
|
* The quota values are propagated to the backend.
|
|
@@ -23829,6 +24235,7 @@ export const openstackTenantsPullServerGroups = (options) => {
|
|
|
23829
24235
|
* In case tenant is in a non-stable status, the response would be **409 CONFLICT**.
|
|
23830
24236
|
* In this case REST client is advised to repeat the request after some time.
|
|
23831
24237
|
* On successful completion the task will synchronize quotas with the backend.
|
|
24238
|
+
*
|
|
23832
24239
|
*/
|
|
23833
24240
|
export const openstackTenantsSetQuotas = (options) => {
|
|
23834
24241
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -23872,6 +24279,10 @@ export const openstackTenantsUnlink = (options) => {
|
|
|
23872
24279
|
...options
|
|
23873
24280
|
});
|
|
23874
24281
|
};
|
|
24282
|
+
/**
|
|
24283
|
+
* List volume availability zones
|
|
24284
|
+
* Get a list of volume availability zones.
|
|
24285
|
+
*/
|
|
23875
24286
|
export const openstackVolumeAvailabilityZonesList = (options) => {
|
|
23876
24287
|
return (options?.client ?? _heyApiClient).get({
|
|
23877
24288
|
security: [
|
|
@@ -23889,6 +24300,7 @@ export const openstackVolumeAvailabilityZonesList = (options) => {
|
|
|
23889
24300
|
});
|
|
23890
24301
|
};
|
|
23891
24302
|
/**
|
|
24303
|
+
* List volume availability zones
|
|
23892
24304
|
* Get number of items in the collection matching the request parameters.
|
|
23893
24305
|
*/
|
|
23894
24306
|
export const openstackVolumeAvailabilityZonesCount = (options) => {
|
|
@@ -23907,6 +24319,10 @@ export const openstackVolumeAvailabilityZonesCount = (options) => {
|
|
|
23907
24319
|
...options
|
|
23908
24320
|
});
|
|
23909
24321
|
};
|
|
24322
|
+
/**
|
|
24323
|
+
* Get volume availability zone details
|
|
24324
|
+
* Retrieve details of a specific volume availability zone.
|
|
24325
|
+
*/
|
|
23910
24326
|
export const openstackVolumeAvailabilityZonesRetrieve = (options) => {
|
|
23911
24327
|
return (options.client ?? _heyApiClient).get({
|
|
23912
24328
|
security: [
|
|
@@ -23923,6 +24339,10 @@ export const openstackVolumeAvailabilityZonesRetrieve = (options) => {
|
|
|
23923
24339
|
...options
|
|
23924
24340
|
});
|
|
23925
24341
|
};
|
|
24342
|
+
/**
|
|
24343
|
+
* List volume types
|
|
24344
|
+
* Get a list of available volume types.
|
|
24345
|
+
*/
|
|
23926
24346
|
export const openstackVolumeTypesList = (options) => {
|
|
23927
24347
|
return (options?.client ?? _heyApiClient).get({
|
|
23928
24348
|
security: [
|
|
@@ -23940,6 +24360,7 @@ export const openstackVolumeTypesList = (options) => {
|
|
|
23940
24360
|
});
|
|
23941
24361
|
};
|
|
23942
24362
|
/**
|
|
24363
|
+
* List volume types
|
|
23943
24364
|
* Get number of items in the collection matching the request parameters.
|
|
23944
24365
|
*/
|
|
23945
24366
|
export const openstackVolumeTypesCount = (options) => {
|
|
@@ -23958,6 +24379,10 @@ export const openstackVolumeTypesCount = (options) => {
|
|
|
23958
24379
|
...options
|
|
23959
24380
|
});
|
|
23960
24381
|
};
|
|
24382
|
+
/**
|
|
24383
|
+
* Get volume type details
|
|
24384
|
+
* Retrieve details of a specific volume type.
|
|
24385
|
+
*/
|
|
23961
24386
|
export const openstackVolumeTypesRetrieve = (options) => {
|
|
23962
24387
|
return (options.client ?? _heyApiClient).get({
|
|
23963
24388
|
security: [
|
|
@@ -23975,6 +24400,7 @@ export const openstackVolumeTypesRetrieve = (options) => {
|
|
|
23975
24400
|
});
|
|
23976
24401
|
};
|
|
23977
24402
|
/**
|
|
24403
|
+
* List unique volume type names
|
|
23978
24404
|
* Return a list of unique volume type names.
|
|
23979
24405
|
*/
|
|
23980
24406
|
export const openstackVolumeTypesNamesRetrieve = (options) => {
|
|
@@ -23994,6 +24420,7 @@ export const openstackVolumeTypesNamesRetrieve = (options) => {
|
|
|
23994
24420
|
});
|
|
23995
24421
|
};
|
|
23996
24422
|
/**
|
|
24423
|
+
* List unique volume type names
|
|
23997
24424
|
* Get number of items in the collection matching the request parameters.
|
|
23998
24425
|
*/
|
|
23999
24426
|
export const openstackVolumeTypesNamesCount = (options) => {
|
|
@@ -24012,6 +24439,10 @@ export const openstackVolumeTypesNamesCount = (options) => {
|
|
|
24012
24439
|
...options
|
|
24013
24440
|
});
|
|
24014
24441
|
};
|
|
24442
|
+
/**
|
|
24443
|
+
* List volumes
|
|
24444
|
+
* Get a list of volumes.
|
|
24445
|
+
*/
|
|
24015
24446
|
export const openstackVolumesList = (options) => {
|
|
24016
24447
|
return (options?.client ?? _heyApiClient).get({
|
|
24017
24448
|
security: [
|
|
@@ -24029,6 +24460,7 @@ export const openstackVolumesList = (options) => {
|
|
|
24029
24460
|
});
|
|
24030
24461
|
};
|
|
24031
24462
|
/**
|
|
24463
|
+
* List volumes
|
|
24032
24464
|
* Get number of items in the collection matching the request parameters.
|
|
24033
24465
|
*/
|
|
24034
24466
|
export const openstackVolumesCount = (options) => {
|
|
@@ -24047,6 +24479,10 @@ export const openstackVolumesCount = (options) => {
|
|
|
24047
24479
|
...options
|
|
24048
24480
|
});
|
|
24049
24481
|
};
|
|
24482
|
+
/**
|
|
24483
|
+
* Get volume details
|
|
24484
|
+
* Retrieve details of a specific volume.
|
|
24485
|
+
*/
|
|
24050
24486
|
export const openstackVolumesRetrieve = (options) => {
|
|
24051
24487
|
return (options.client ?? _heyApiClient).get({
|
|
24052
24488
|
security: [
|
|
@@ -24063,6 +24499,10 @@ export const openstackVolumesRetrieve = (options) => {
|
|
|
24063
24499
|
...options
|
|
24064
24500
|
});
|
|
24065
24501
|
};
|
|
24502
|
+
/**
|
|
24503
|
+
* Partially update volume
|
|
24504
|
+
* Update specific fields of a volume.
|
|
24505
|
+
*/
|
|
24066
24506
|
export const openstackVolumesPartialUpdate = (options) => {
|
|
24067
24507
|
return (options.client ?? _heyApiClient).patch({
|
|
24068
24508
|
security: [
|
|
@@ -24083,6 +24523,10 @@ export const openstackVolumesPartialUpdate = (options) => {
|
|
|
24083
24523
|
}
|
|
24084
24524
|
});
|
|
24085
24525
|
};
|
|
24526
|
+
/**
|
|
24527
|
+
* Update volume
|
|
24528
|
+
* Update an existing volume.
|
|
24529
|
+
*/
|
|
24086
24530
|
export const openstackVolumesUpdate = (options) => {
|
|
24087
24531
|
return (options.client ?? _heyApiClient).put({
|
|
24088
24532
|
security: [
|
|
@@ -24104,6 +24548,7 @@ export const openstackVolumesUpdate = (options) => {
|
|
|
24104
24548
|
});
|
|
24105
24549
|
};
|
|
24106
24550
|
/**
|
|
24551
|
+
* Attach volume to instance
|
|
24107
24552
|
* Attach volume to instance
|
|
24108
24553
|
*/
|
|
24109
24554
|
export const openstackVolumesAttach = (options) => {
|
|
@@ -24127,6 +24572,7 @@ export const openstackVolumesAttach = (options) => {
|
|
|
24127
24572
|
});
|
|
24128
24573
|
};
|
|
24129
24574
|
/**
|
|
24575
|
+
* Detach volume from instance
|
|
24130
24576
|
* Detach instance from volume
|
|
24131
24577
|
*/
|
|
24132
24578
|
export const openstackVolumesDetach = (options) => {
|
|
@@ -24146,6 +24592,7 @@ export const openstackVolumesDetach = (options) => {
|
|
|
24146
24592
|
});
|
|
24147
24593
|
};
|
|
24148
24594
|
/**
|
|
24595
|
+
* Extend volume size
|
|
24149
24596
|
* Increase volume size
|
|
24150
24597
|
*/
|
|
24151
24598
|
export const openstackVolumesExtend = (options) => {
|
|
@@ -24189,6 +24636,7 @@ export const openstackVolumesPull = (options) => {
|
|
|
24189
24636
|
});
|
|
24190
24637
|
};
|
|
24191
24638
|
/**
|
|
24639
|
+
* Change volume type
|
|
24192
24640
|
* Retype detached volume
|
|
24193
24641
|
*/
|
|
24194
24642
|
export const openstackVolumesRetype = (options) => {
|
|
@@ -24212,6 +24660,7 @@ export const openstackVolumesRetype = (options) => {
|
|
|
24212
24660
|
});
|
|
24213
24661
|
};
|
|
24214
24662
|
/**
|
|
24663
|
+
* Create volume snapshot
|
|
24215
24664
|
* Create snapshot from volume
|
|
24216
24665
|
*/
|
|
24217
24666
|
export const openstackVolumesSnapshot = (options) => {
|
|
@@ -25206,6 +25655,10 @@ export const projectsUpdate = (options) => {
|
|
|
25206
25655
|
}
|
|
25207
25656
|
});
|
|
25208
25657
|
};
|
|
25658
|
+
/**
|
|
25659
|
+
* Grant a role to a user
|
|
25660
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
25661
|
+
*/
|
|
25209
25662
|
export const projectsAddUser = (options) => {
|
|
25210
25663
|
return (options.client ?? _heyApiClient).post({
|
|
25211
25664
|
security: [
|
|
@@ -25264,6 +25717,10 @@ export const projectsCompletionStatusRetrieve = (options) => {
|
|
|
25264
25717
|
...options
|
|
25265
25718
|
});
|
|
25266
25719
|
};
|
|
25720
|
+
/**
|
|
25721
|
+
* Revoke a role from a user
|
|
25722
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
25723
|
+
*/
|
|
25267
25724
|
export const projectsDeleteUser = (options) => {
|
|
25268
25725
|
return (options.client ?? _heyApiClient).post({
|
|
25269
25726
|
security: [
|
|
@@ -25284,6 +25741,10 @@ export const projectsDeleteUser = (options) => {
|
|
|
25284
25741
|
}
|
|
25285
25742
|
});
|
|
25286
25743
|
};
|
|
25744
|
+
/**
|
|
25745
|
+
* List users and their roles in a scope
|
|
25746
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
25747
|
+
*/
|
|
25287
25748
|
export const projectsListUsersList = (options) => {
|
|
25288
25749
|
return (options.client ?? _heyApiClient).get({
|
|
25289
25750
|
security: [
|
|
@@ -25410,6 +25871,10 @@ export const projectsSyncUserRoles = (options) => {
|
|
|
25410
25871
|
...options
|
|
25411
25872
|
});
|
|
25412
25873
|
};
|
|
25874
|
+
/**
|
|
25875
|
+
* Update a user's role expiration
|
|
25876
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
25877
|
+
*/
|
|
25413
25878
|
export const projectsUpdateUser = (options) => {
|
|
25414
25879
|
return (options.client ?? _heyApiClient).post({
|
|
25415
25880
|
security: [
|
|
@@ -25738,6 +26203,10 @@ export const proposalProposalsRetrieve = (options) => {
|
|
|
25738
26203
|
...options
|
|
25739
26204
|
});
|
|
25740
26205
|
};
|
|
26206
|
+
/**
|
|
26207
|
+
* Grant a role to a user
|
|
26208
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
26209
|
+
*/
|
|
25741
26210
|
export const proposalProposalsAddUser = (options) => {
|
|
25742
26211
|
return (options.client ?? _heyApiClient).post({
|
|
25743
26212
|
security: [
|
|
@@ -25880,6 +26349,10 @@ export const proposalProposalsCompletionStatusRetrieve = (options) => {
|
|
|
25880
26349
|
...options
|
|
25881
26350
|
});
|
|
25882
26351
|
};
|
|
26352
|
+
/**
|
|
26353
|
+
* Revoke a role from a user
|
|
26354
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
26355
|
+
*/
|
|
25883
26356
|
export const proposalProposalsDeleteUser = (options) => {
|
|
25884
26357
|
return (options.client ?? _heyApiClient).post({
|
|
25885
26358
|
security: [
|
|
@@ -25900,6 +26373,10 @@ export const proposalProposalsDeleteUser = (options) => {
|
|
|
25900
26373
|
}
|
|
25901
26374
|
});
|
|
25902
26375
|
};
|
|
26376
|
+
/**
|
|
26377
|
+
* List users and their roles in a scope
|
|
26378
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
26379
|
+
*/
|
|
25903
26380
|
export const proposalProposalsListUsersList = (options) => {
|
|
25904
26381
|
return (options.client ?? _heyApiClient).get({
|
|
25905
26382
|
security: [
|
|
@@ -26118,6 +26595,10 @@ export const proposalProposalsUpdateProjectDetails = (options) => {
|
|
|
26118
26595
|
}
|
|
26119
26596
|
});
|
|
26120
26597
|
};
|
|
26598
|
+
/**
|
|
26599
|
+
* Update a user's role expiration
|
|
26600
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
26601
|
+
*/
|
|
26121
26602
|
export const proposalProposalsUpdateUser = (options) => {
|
|
26122
26603
|
return (options.client ?? _heyApiClient).post({
|
|
26123
26604
|
security: [
|
|
@@ -26322,6 +26803,10 @@ export const proposalProtectedCallsActivate = (options) => {
|
|
|
26322
26803
|
...options
|
|
26323
26804
|
});
|
|
26324
26805
|
};
|
|
26806
|
+
/**
|
|
26807
|
+
* Grant a role to a user
|
|
26808
|
+
* Assigns a specific role to a user within the current scope. An optional expiration time for the role can be set.
|
|
26809
|
+
*/
|
|
26325
26810
|
export const proposalProtectedCallsAddUser = (options) => {
|
|
26326
26811
|
return (options.client ?? _heyApiClient).post({
|
|
26327
26812
|
security: [
|
|
@@ -26403,6 +26888,10 @@ export const proposalProtectedCallsComplianceOverviewRetrieve = (options) => {
|
|
|
26403
26888
|
...options
|
|
26404
26889
|
});
|
|
26405
26890
|
};
|
|
26891
|
+
/**
|
|
26892
|
+
* Revoke a role from a user
|
|
26893
|
+
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
26894
|
+
*/
|
|
26406
26895
|
export const proposalProtectedCallsDeleteUser = (options) => {
|
|
26407
26896
|
return (options.client ?? _heyApiClient).post({
|
|
26408
26897
|
security: [
|
|
@@ -26446,6 +26935,10 @@ export const proposalProtectedCallsDetachDocuments = (options) => {
|
|
|
26446
26935
|
}
|
|
26447
26936
|
});
|
|
26448
26937
|
};
|
|
26938
|
+
/**
|
|
26939
|
+
* List users and their roles in a scope
|
|
26940
|
+
* Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
|
|
26941
|
+
*/
|
|
26449
26942
|
export const proposalProtectedCallsListUsersList = (options) => {
|
|
26450
26943
|
return (options.client ?? _heyApiClient).get({
|
|
26451
26944
|
security: [
|
|
@@ -26866,6 +27359,10 @@ export const proposalProtectedCallsRoundsClose = (options) => {
|
|
|
26866
27359
|
}
|
|
26867
27360
|
});
|
|
26868
27361
|
};
|
|
27362
|
+
/**
|
|
27363
|
+
* Update a user's role expiration
|
|
27364
|
+
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
27365
|
+
*/
|
|
26869
27366
|
export const proposalProtectedCallsUpdateUser = (options) => {
|
|
26870
27367
|
return (options.client ?? _heyApiClient).post({
|
|
26871
27368
|
security: [
|
|
@@ -29733,6 +30230,10 @@ export const remoteWaldurApiSyncResourceProjectPermissions = (options) => {
|
|
|
29733
30230
|
...options
|
|
29734
30231
|
});
|
|
29735
30232
|
};
|
|
30233
|
+
/**
|
|
30234
|
+
* List roles
|
|
30235
|
+
* Get a list of all available roles.
|
|
30236
|
+
*/
|
|
29736
30237
|
export const rolesList = (options) => {
|
|
29737
30238
|
return (options?.client ?? _heyApiClient).get({
|
|
29738
30239
|
security: [
|
|
@@ -29750,6 +30251,7 @@ export const rolesList = (options) => {
|
|
|
29750
30251
|
});
|
|
29751
30252
|
};
|
|
29752
30253
|
/**
|
|
30254
|
+
* List roles
|
|
29753
30255
|
* Get number of items in the collection matching the request parameters.
|
|
29754
30256
|
*/
|
|
29755
30257
|
export const rolesCount = (options) => {
|
|
@@ -29768,6 +30270,10 @@ export const rolesCount = (options) => {
|
|
|
29768
30270
|
...options
|
|
29769
30271
|
});
|
|
29770
30272
|
};
|
|
30273
|
+
/**
|
|
30274
|
+
* Create a new role
|
|
30275
|
+
* Allows staff users to create a new custom role with a specific set of permissions.
|
|
30276
|
+
*/
|
|
29771
30277
|
export const rolesCreate = (options) => {
|
|
29772
30278
|
return (options.client ?? _heyApiClient).post({
|
|
29773
30279
|
security: [
|
|
@@ -29788,6 +30294,10 @@ export const rolesCreate = (options) => {
|
|
|
29788
30294
|
}
|
|
29789
30295
|
});
|
|
29790
30296
|
};
|
|
30297
|
+
/**
|
|
30298
|
+
* Delete a role
|
|
30299
|
+
* Allows staff users to delete a custom role. System roles and roles that are currently in use cannot be deleted.
|
|
30300
|
+
*/
|
|
29791
30301
|
export const rolesDestroy = (options) => {
|
|
29792
30302
|
return (options.client ?? _heyApiClient).delete({
|
|
29793
30303
|
security: [
|
|
@@ -29804,6 +30314,10 @@ export const rolesDestroy = (options) => {
|
|
|
29804
30314
|
...options
|
|
29805
30315
|
});
|
|
29806
30316
|
};
|
|
30317
|
+
/**
|
|
30318
|
+
* Get role details
|
|
30319
|
+
* Retrieve the details of a specific role by its UUID.
|
|
30320
|
+
*/
|
|
29807
30321
|
export const rolesRetrieve = (options) => {
|
|
29808
30322
|
return (options.client ?? _heyApiClient).get({
|
|
29809
30323
|
security: [
|
|
@@ -29840,6 +30354,10 @@ export const rolesPartialUpdate = (options) => {
|
|
|
29840
30354
|
}
|
|
29841
30355
|
});
|
|
29842
30356
|
};
|
|
30357
|
+
/**
|
|
30358
|
+
* Update a role
|
|
30359
|
+
* Allows staff users to update an existing role's name, description, content type, and permissions. The name of a system role cannot be changed.
|
|
30360
|
+
*/
|
|
29843
30361
|
export const rolesUpdate = (options) => {
|
|
29844
30362
|
return (options.client ?? _heyApiClient).put({
|
|
29845
30363
|
security: [
|
|
@@ -29860,6 +30378,10 @@ export const rolesUpdate = (options) => {
|
|
|
29860
30378
|
}
|
|
29861
30379
|
});
|
|
29862
30380
|
};
|
|
30381
|
+
/**
|
|
30382
|
+
* Disable a role
|
|
30383
|
+
* Allows staff users to disable a role, preventing it from being assigned further. Existing assignments are not affected.
|
|
30384
|
+
*/
|
|
29863
30385
|
export const rolesDisable = (options) => {
|
|
29864
30386
|
return (options.client ?? _heyApiClient).post({
|
|
29865
30387
|
security: [
|
|
@@ -29876,6 +30398,10 @@ export const rolesDisable = (options) => {
|
|
|
29876
30398
|
...options
|
|
29877
30399
|
});
|
|
29878
30400
|
};
|
|
30401
|
+
/**
|
|
30402
|
+
* Enable a role
|
|
30403
|
+
* Allows staff users to enable a role, making it available for assignment.
|
|
30404
|
+
*/
|
|
29879
30405
|
export const rolesEnable = (options) => {
|
|
29880
30406
|
return (options.client ?? _heyApiClient).post({
|
|
29881
30407
|
security: [
|
|
@@ -29892,6 +30418,10 @@ export const rolesEnable = (options) => {
|
|
|
29892
30418
|
...options
|
|
29893
30419
|
});
|
|
29894
30420
|
};
|
|
30421
|
+
/**
|
|
30422
|
+
* Update role descriptions
|
|
30423
|
+
* Allows staff users to update the multilingual descriptions of a role.
|
|
30424
|
+
*/
|
|
29895
30425
|
export const rolesUpdateDescriptionsUpdate = (options) => {
|
|
29896
30426
|
return (options.client ?? _heyApiClient).put({
|
|
29897
30427
|
security: [
|
|
@@ -32023,6 +32553,10 @@ export const userPermissionRequestsReject = (options) => {
|
|
|
32023
32553
|
}
|
|
32024
32554
|
});
|
|
32025
32555
|
};
|
|
32556
|
+
/**
|
|
32557
|
+
* List user permissions
|
|
32558
|
+
* Get a list of all permissions for the current user. Staff and support users can view all user permissions. The list can be filtered by user, scope, role, etc.
|
|
32559
|
+
*/
|
|
32026
32560
|
export const userPermissionsList = (options) => {
|
|
32027
32561
|
return (options?.client ?? _heyApiClient).get({
|
|
32028
32562
|
security: [
|
|
@@ -32040,6 +32574,7 @@ export const userPermissionsList = (options) => {
|
|
|
32040
32574
|
});
|
|
32041
32575
|
};
|
|
32042
32576
|
/**
|
|
32577
|
+
* List user permissions
|
|
32043
32578
|
* Get number of items in the collection matching the request parameters.
|
|
32044
32579
|
*/
|
|
32045
32580
|
export const userPermissionsCount = (options) => {
|
|
@@ -32058,6 +32593,10 @@ export const userPermissionsCount = (options) => {
|
|
|
32058
32593
|
...options
|
|
32059
32594
|
});
|
|
32060
32595
|
};
|
|
32596
|
+
/**
|
|
32597
|
+
* Get permission details
|
|
32598
|
+
* Retrieve the details of a specific user permission grant by its UUID.
|
|
32599
|
+
*/
|
|
32061
32600
|
export const userPermissionsRetrieve = (options) => {
|
|
32062
32601
|
return (options.client ?? _heyApiClient).get({
|
|
32063
32602
|
security: [
|