waldur-js-client 1.0.4-dev.96 → 1.0.4-dev.97
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.gen.d.ts +3 -4
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3143,7 +3143,6 @@ export type MergedPluginOptions = {
|
|
|
3143
3143
|
managed_rancher_server_data_volume_type_name?: string;
|
|
3144
3144
|
managed_rancher_worker_system_volume_size_gb?: number;
|
|
3145
3145
|
managed_rancher_worker_system_volume_type_name?: string;
|
|
3146
|
-
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3147
3146
|
managed_rancher_load_balancer_flavor_name?: string;
|
|
3148
3147
|
managed_rancher_load_balancer_system_volume_size_gb?: number;
|
|
3149
3148
|
managed_rancher_load_balancer_system_volume_type_name?: string;
|
|
@@ -3270,7 +3269,6 @@ export type MergedPluginOptionsRequest = {
|
|
|
3270
3269
|
managed_rancher_server_data_volume_type_name?: string;
|
|
3271
3270
|
managed_rancher_worker_system_volume_size_gb?: number;
|
|
3272
3271
|
managed_rancher_worker_system_volume_type_name?: string;
|
|
3273
|
-
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3274
3272
|
managed_rancher_load_balancer_flavor_name?: string;
|
|
3275
3273
|
managed_rancher_load_balancer_system_volume_size_gb?: number;
|
|
3276
3274
|
managed_rancher_load_balancer_system_volume_type_name?: string;
|
|
@@ -3347,6 +3345,7 @@ export type MergedSecretOptions = {
|
|
|
3347
3345
|
username?: string;
|
|
3348
3346
|
password?: string;
|
|
3349
3347
|
cloud_init_template?: string;
|
|
3348
|
+
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3350
3349
|
/**
|
|
3351
3350
|
* Host of the Vault server
|
|
3352
3351
|
*/
|
|
@@ -3490,6 +3489,7 @@ export type MergedSecretOptionsRequest = {
|
|
|
3490
3489
|
username?: string;
|
|
3491
3490
|
password?: string;
|
|
3492
3491
|
cloud_init_template?: string;
|
|
3492
|
+
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3493
3493
|
/**
|
|
3494
3494
|
* Host of the Vault server
|
|
3495
3495
|
*/
|
|
@@ -5641,7 +5641,7 @@ export type OrderCreate = {
|
|
|
5641
5641
|
readonly resource_name: string;
|
|
5642
5642
|
readonly cost: string | null;
|
|
5643
5643
|
state: OrderState;
|
|
5644
|
-
output
|
|
5644
|
+
readonly output: string;
|
|
5645
5645
|
readonly marketplace_resource_uuid: string;
|
|
5646
5646
|
readonly error_message: string;
|
|
5647
5647
|
callback_url?: string | null;
|
|
@@ -5675,7 +5675,6 @@ export type OrderCreateRequest = {
|
|
|
5675
5675
|
[key: string]: number;
|
|
5676
5676
|
};
|
|
5677
5677
|
type?: RequestTypes;
|
|
5678
|
-
output?: string;
|
|
5679
5678
|
accepting_terms_of_service?: boolean;
|
|
5680
5679
|
callback_url?: string | null;
|
|
5681
5680
|
project: string;
|