waldur-js-client 8.0.7-dev.33 → 8.0.7-dev.35
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 +9 -4
- package/dist/sdk.gen.js +33 -9
- package/dist/types.gen.d.ts +191 -155
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -21951,6 +21951,34 @@ export const marketplaceProviderOfferingsStatsRetrieve = (options) => {
|
|
|
21951
21951
|
...options
|
|
21952
21952
|
});
|
|
21953
21953
|
};
|
|
21954
|
+
/**
|
|
21955
|
+
* Switch billing mode for builtin components
|
|
21956
|
+
* Switches all builtin components between monthly (LIMIT) and prepaid (ONE_TIME + is_prepaid) billing modes.
|
|
21957
|
+
*/
|
|
21958
|
+
export const marketplaceProviderOfferingsSwitchBillingMode = (options) => {
|
|
21959
|
+
return (options.client ?? _heyApiClient).post({
|
|
21960
|
+
security: [
|
|
21961
|
+
{
|
|
21962
|
+
name: 'Authorization',
|
|
21963
|
+
type: 'apiKey'
|
|
21964
|
+
},
|
|
21965
|
+
{
|
|
21966
|
+
scheme: 'bearer',
|
|
21967
|
+
type: 'http'
|
|
21968
|
+
},
|
|
21969
|
+
{
|
|
21970
|
+
scheme: 'bearer',
|
|
21971
|
+
type: 'http'
|
|
21972
|
+
}
|
|
21973
|
+
],
|
|
21974
|
+
url: '/api/marketplace-provider-offerings/{uuid}/switch_billing_mode/',
|
|
21975
|
+
...options,
|
|
21976
|
+
headers: {
|
|
21977
|
+
'Content-Type': 'application/json',
|
|
21978
|
+
...options.headers
|
|
21979
|
+
}
|
|
21980
|
+
});
|
|
21981
|
+
};
|
|
21954
21982
|
/**
|
|
21955
21983
|
* Synchronize offering service settings
|
|
21956
21984
|
* Schedules a synchronization task to pull the latest data for the offering's service settings from the backend.
|
|
@@ -37003,10 +37031,10 @@ export const openstackLoadbalancersDetachFloatingIp = (options) => {
|
|
|
37003
37031
|
});
|
|
37004
37032
|
};
|
|
37005
37033
|
/**
|
|
37006
|
-
*
|
|
37007
|
-
*
|
|
37034
|
+
* Unlink load balancer
|
|
37035
|
+
* Delete the load balancer from the Waldur database without scheduling operations on the OpenStack backend and without checking resource state. Staff-only; intended for cleaning up records stuck in transitional states.
|
|
37008
37036
|
*/
|
|
37009
|
-
export const
|
|
37037
|
+
export const openstackLoadbalancersUnlink = (options) => {
|
|
37010
37038
|
return (options.client ?? _heyApiClient).post({
|
|
37011
37039
|
security: [
|
|
37012
37040
|
{
|
|
@@ -37022,12 +37050,8 @@ export const openstackLoadbalancersUpdateVipSecurityGroups = (options) => {
|
|
|
37022
37050
|
type: 'http'
|
|
37023
37051
|
}
|
|
37024
37052
|
],
|
|
37025
|
-
url: '/api/openstack-loadbalancers/{uuid}/
|
|
37026
|
-
...options
|
|
37027
|
-
headers: {
|
|
37028
|
-
'Content-Type': 'application/json',
|
|
37029
|
-
...options.headers
|
|
37030
|
-
}
|
|
37053
|
+
url: '/api/openstack-loadbalancers/{uuid}/unlink/',
|
|
37054
|
+
...options
|
|
37031
37055
|
});
|
|
37032
37056
|
};
|
|
37033
37057
|
export const openstackMarketplaceTenantsList = (options) => {
|