waldur-js-client 1.0.4-dev.50 → 1.0.4-dev.51
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 +238 -227
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -164,16 +164,16 @@ export type AwsInstance = {
|
|
|
164
164
|
readonly key_name?: string;
|
|
165
165
|
readonly key_fingerprint?: string;
|
|
166
166
|
readonly image_name?: string;
|
|
167
|
-
readonly marketplace_offering_uuid?: string;
|
|
168
|
-
readonly marketplace_offering_name?: string;
|
|
167
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
168
|
+
readonly marketplace_offering_name?: string | null;
|
|
169
169
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
170
|
-
readonly marketplace_category_uuid?: string;
|
|
170
|
+
readonly marketplace_category_uuid?: string | null;
|
|
171
171
|
readonly marketplace_category_name?: string;
|
|
172
|
-
readonly marketplace_resource_uuid?: string;
|
|
173
|
-
readonly marketplace_plan_uuid?: string;
|
|
174
|
-
readonly marketplace_resource_state?: string;
|
|
175
|
-
readonly is_usage_based?: boolean;
|
|
176
|
-
readonly is_limit_based?: boolean;
|
|
172
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
173
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
174
|
+
readonly marketplace_resource_state?: string | null;
|
|
175
|
+
readonly is_usage_based?: boolean | null;
|
|
176
|
+
readonly is_limit_based?: boolean | null;
|
|
177
177
|
};
|
|
178
178
|
export type AwsInstanceRequest = {
|
|
179
179
|
name: string;
|
|
@@ -252,16 +252,16 @@ export type AwsVolume = {
|
|
|
252
252
|
readonly device?: string | null;
|
|
253
253
|
readonly instance?: string | null;
|
|
254
254
|
readonly runtime_state?: string;
|
|
255
|
-
readonly marketplace_offering_uuid?: string;
|
|
256
|
-
readonly marketplace_offering_name?: string;
|
|
255
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
256
|
+
readonly marketplace_offering_name?: string | null;
|
|
257
257
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
258
|
-
readonly marketplace_category_uuid?: string;
|
|
258
|
+
readonly marketplace_category_uuid?: string | null;
|
|
259
259
|
readonly marketplace_category_name?: string;
|
|
260
|
-
readonly marketplace_resource_uuid?: string;
|
|
261
|
-
readonly marketplace_plan_uuid?: string;
|
|
262
|
-
readonly marketplace_resource_state?: string;
|
|
263
|
-
readonly is_usage_based?: boolean;
|
|
264
|
-
readonly is_limit_based?: boolean;
|
|
260
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
261
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
262
|
+
readonly marketplace_resource_state?: string | null;
|
|
263
|
+
readonly is_usage_based?: boolean | null;
|
|
264
|
+
readonly is_limit_based?: boolean | null;
|
|
265
265
|
};
|
|
266
266
|
export type AwsVolumeAttach = {
|
|
267
267
|
instance: string;
|
|
@@ -331,16 +331,16 @@ export type AzurePublicIp = {
|
|
|
331
331
|
readonly access_url?: string | null;
|
|
332
332
|
location?: string;
|
|
333
333
|
resource_group?: string;
|
|
334
|
-
readonly marketplace_offering_uuid?: string;
|
|
335
|
-
readonly marketplace_offering_name?: string;
|
|
334
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
335
|
+
readonly marketplace_offering_name?: string | null;
|
|
336
336
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
337
|
-
readonly marketplace_category_uuid?: string;
|
|
337
|
+
readonly marketplace_category_uuid?: string | null;
|
|
338
338
|
readonly marketplace_category_name?: string;
|
|
339
|
-
readonly marketplace_resource_uuid?: string;
|
|
340
|
-
readonly marketplace_plan_uuid?: string;
|
|
341
|
-
readonly marketplace_resource_state?: string;
|
|
342
|
-
readonly is_usage_based?: boolean;
|
|
343
|
-
readonly is_limit_based?: boolean;
|
|
339
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
340
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
341
|
+
readonly marketplace_resource_state?: string | null;
|
|
342
|
+
readonly is_usage_based?: boolean | null;
|
|
343
|
+
readonly is_limit_based?: boolean | null;
|
|
344
344
|
};
|
|
345
345
|
export type AzurePublicIpRequest = {
|
|
346
346
|
name: string;
|
|
@@ -376,16 +376,16 @@ export type AzureResourceGroup = {
|
|
|
376
376
|
readonly backend_id?: string;
|
|
377
377
|
readonly access_url?: string | null;
|
|
378
378
|
location?: string;
|
|
379
|
-
readonly marketplace_offering_uuid?: string;
|
|
380
|
-
readonly marketplace_offering_name?: string;
|
|
379
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
380
|
+
readonly marketplace_offering_name?: string | null;
|
|
381
381
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
382
|
-
readonly marketplace_category_uuid?: string;
|
|
382
|
+
readonly marketplace_category_uuid?: string | null;
|
|
383
383
|
readonly marketplace_category_name?: string;
|
|
384
|
-
readonly marketplace_resource_uuid?: string;
|
|
385
|
-
readonly marketplace_plan_uuid?: string;
|
|
386
|
-
readonly marketplace_resource_state?: string;
|
|
387
|
-
readonly is_usage_based?: boolean;
|
|
388
|
-
readonly is_limit_based?: boolean;
|
|
384
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
385
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
386
|
+
readonly marketplace_resource_state?: string | null;
|
|
387
|
+
readonly is_usage_based?: boolean | null;
|
|
388
|
+
readonly is_limit_based?: boolean | null;
|
|
389
389
|
};
|
|
390
390
|
export type AzureSize = {
|
|
391
391
|
readonly url: string;
|
|
@@ -430,16 +430,16 @@ export type AzureSqlDatabase = {
|
|
|
430
430
|
readonly server_name?: string;
|
|
431
431
|
readonly server_uuid?: string;
|
|
432
432
|
readonly server_marketplace_uuid?: string;
|
|
433
|
-
readonly marketplace_offering_uuid?: string;
|
|
434
|
-
readonly marketplace_offering_name?: string;
|
|
433
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
434
|
+
readonly marketplace_offering_name?: string | null;
|
|
435
435
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
436
|
-
readonly marketplace_category_uuid?: string;
|
|
436
|
+
readonly marketplace_category_uuid?: string | null;
|
|
437
437
|
readonly marketplace_category_name?: string;
|
|
438
|
-
readonly marketplace_resource_uuid?: string;
|
|
439
|
-
readonly marketplace_plan_uuid?: string;
|
|
440
|
-
readonly marketplace_resource_state?: string;
|
|
441
|
-
readonly is_usage_based?: boolean;
|
|
442
|
-
readonly is_limit_based?: boolean;
|
|
438
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
439
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
440
|
+
readonly marketplace_resource_state?: string | null;
|
|
441
|
+
readonly is_usage_based?: boolean | null;
|
|
442
|
+
readonly is_limit_based?: boolean | null;
|
|
443
443
|
};
|
|
444
444
|
export type AzureSqlDatabaseCreate = {
|
|
445
445
|
name: string;
|
|
@@ -490,16 +490,16 @@ export type AzureSqlServer = {
|
|
|
490
490
|
readonly fqdn?: string | null;
|
|
491
491
|
readonly resource_group_name?: string;
|
|
492
492
|
readonly location_name?: string;
|
|
493
|
-
readonly marketplace_offering_uuid?: string;
|
|
494
|
-
readonly marketplace_offering_name?: string;
|
|
493
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
494
|
+
readonly marketplace_offering_name?: string | null;
|
|
495
495
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
496
|
-
readonly marketplace_category_uuid?: string;
|
|
496
|
+
readonly marketplace_category_uuid?: string | null;
|
|
497
497
|
readonly marketplace_category_name?: string;
|
|
498
|
-
readonly marketplace_resource_uuid?: string;
|
|
499
|
-
readonly marketplace_plan_uuid?: string;
|
|
500
|
-
readonly marketplace_resource_state?: string;
|
|
501
|
-
readonly is_usage_based?: boolean;
|
|
502
|
-
readonly is_limit_based?: boolean;
|
|
498
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
499
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
500
|
+
readonly marketplace_resource_state?: string | null;
|
|
501
|
+
readonly is_usage_based?: boolean | null;
|
|
502
|
+
readonly is_limit_based?: boolean | null;
|
|
503
503
|
};
|
|
504
504
|
export type AzureSqlServerRequest = {
|
|
505
505
|
name: string;
|
|
@@ -575,16 +575,16 @@ export type AzureVirtualMachine = {
|
|
|
575
575
|
readonly resource_group_name?: string;
|
|
576
576
|
readonly location_name?: string;
|
|
577
577
|
readonly size_name?: string;
|
|
578
|
-
readonly marketplace_offering_uuid?: string;
|
|
579
|
-
readonly marketplace_offering_name?: string;
|
|
578
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
579
|
+
readonly marketplace_offering_name?: string | null;
|
|
580
580
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
581
|
-
readonly marketplace_category_uuid?: string;
|
|
581
|
+
readonly marketplace_category_uuid?: string | null;
|
|
582
582
|
readonly marketplace_category_name?: string;
|
|
583
|
-
readonly marketplace_resource_uuid?: string;
|
|
584
|
-
readonly marketplace_plan_uuid?: string;
|
|
585
|
-
readonly marketplace_resource_state?: string;
|
|
586
|
-
readonly is_usage_based?: boolean;
|
|
587
|
-
readonly is_limit_based?: boolean;
|
|
583
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
584
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
585
|
+
readonly marketplace_resource_state?: string | null;
|
|
586
|
+
readonly is_usage_based?: boolean | null;
|
|
587
|
+
readonly is_limit_based?: boolean | null;
|
|
588
588
|
};
|
|
589
589
|
export type AzureVirtualMachineRequest = {
|
|
590
590
|
name: string;
|
|
@@ -1902,11 +1902,13 @@ export type CustomerUser = {
|
|
|
1902
1902
|
export type DataVolume = {
|
|
1903
1903
|
size: number;
|
|
1904
1904
|
volume_type?: string | null;
|
|
1905
|
+
filesystem?: string;
|
|
1905
1906
|
mount_point?: MountPointEnum;
|
|
1906
1907
|
};
|
|
1907
1908
|
export type DataVolumeRequest = {
|
|
1908
1909
|
size: number;
|
|
1909
1910
|
volume_type?: string | null;
|
|
1911
|
+
filesystem?: string;
|
|
1910
1912
|
mount_point?: MountPointEnum;
|
|
1911
1913
|
};
|
|
1912
1914
|
export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
|
|
@@ -1976,16 +1978,16 @@ export type DigitalOceanDroplet = {
|
|
|
1976
1978
|
readonly image_name?: string;
|
|
1977
1979
|
readonly runtime_state?: string;
|
|
1978
1980
|
readonly region_name?: string;
|
|
1979
|
-
readonly marketplace_offering_uuid?: string;
|
|
1980
|
-
readonly marketplace_offering_name?: string;
|
|
1981
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
1982
|
+
readonly marketplace_offering_name?: string | null;
|
|
1981
1983
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
1982
|
-
readonly marketplace_category_uuid?: string;
|
|
1984
|
+
readonly marketplace_category_uuid?: string | null;
|
|
1983
1985
|
readonly marketplace_category_name?: string;
|
|
1984
|
-
readonly marketplace_resource_uuid?: string;
|
|
1985
|
-
readonly marketplace_plan_uuid?: string;
|
|
1986
|
-
readonly marketplace_resource_state?: string;
|
|
1987
|
-
readonly is_usage_based?: boolean;
|
|
1988
|
-
readonly is_limit_based?: boolean;
|
|
1986
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
1987
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
1988
|
+
readonly marketplace_resource_state?: string | null;
|
|
1989
|
+
readonly is_usage_based?: boolean | null;
|
|
1990
|
+
readonly is_limit_based?: boolean | null;
|
|
1989
1991
|
};
|
|
1990
1992
|
export type DigitalOceanDropletRequest = {
|
|
1991
1993
|
name: string;
|
|
@@ -3064,6 +3066,10 @@ export type MergedPluginOptions = {
|
|
|
3064
3066
|
managed_rancher_server_flavor_name?: string;
|
|
3065
3067
|
managed_rancher_server_system_volume_size_gb?: number;
|
|
3066
3068
|
managed_rancher_server_system_volume_type_name?: string;
|
|
3069
|
+
managed_rancher_server_data_volume_size_gb?: number;
|
|
3070
|
+
managed_rancher_server_data_volume_type_name?: string;
|
|
3071
|
+
managed_rancher_worker_system_volume_size_gb?: number;
|
|
3072
|
+
managed_rancher_worker_system_volume_type_name?: string;
|
|
3067
3073
|
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3068
3074
|
managed_rancher_load_balancer_flavor_name?: string;
|
|
3069
3075
|
managed_rancher_load_balancer_system_volume_size_gb?: number;
|
|
@@ -3187,6 +3193,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
3187
3193
|
managed_rancher_server_flavor_name?: string;
|
|
3188
3194
|
managed_rancher_server_system_volume_size_gb?: number;
|
|
3189
3195
|
managed_rancher_server_system_volume_type_name?: string;
|
|
3196
|
+
managed_rancher_server_data_volume_size_gb?: number;
|
|
3197
|
+
managed_rancher_server_data_volume_type_name?: string;
|
|
3198
|
+
managed_rancher_worker_system_volume_size_gb?: number;
|
|
3199
|
+
managed_rancher_worker_system_volume_type_name?: string;
|
|
3190
3200
|
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3191
3201
|
managed_rancher_load_balancer_flavor_name?: string;
|
|
3192
3202
|
managed_rancher_load_balancer_system_volume_size_gb?: number;
|
|
@@ -3490,7 +3500,7 @@ export type MigrationDetailsRequest = {
|
|
|
3490
3500
|
mappings: MappingRequest;
|
|
3491
3501
|
};
|
|
3492
3502
|
export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
|
|
3493
|
-
export type MountPointEnum = '/var/lib/docker' | '/var/lib/etcd' | '/opt/media01';
|
|
3503
|
+
export type MountPointEnum = '/var/lib/docker' | '/var/lib/etcd' | '/opt/media01' | '/opt/rke2_storage';
|
|
3494
3504
|
export type MoveProjectRequest = {
|
|
3495
3505
|
customer: string;
|
|
3496
3506
|
preserve_permissions: boolean;
|
|
@@ -4411,16 +4421,16 @@ export type OpenStackBackup = {
|
|
|
4411
4421
|
readonly instance_ports?: Array<OpenStackNestedPort>;
|
|
4412
4422
|
readonly instance_floating_ips?: Array<OpenStackNestedFloatingIp>;
|
|
4413
4423
|
readonly tenant_uuid?: string;
|
|
4414
|
-
readonly marketplace_offering_uuid?: string;
|
|
4415
|
-
readonly marketplace_offering_name?: string;
|
|
4424
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4425
|
+
readonly marketplace_offering_name?: string | null;
|
|
4416
4426
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4417
|
-
readonly marketplace_category_uuid?: string;
|
|
4427
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4418
4428
|
readonly marketplace_category_name?: string;
|
|
4419
|
-
readonly marketplace_resource_uuid?: string;
|
|
4420
|
-
readonly marketplace_plan_uuid?: string;
|
|
4421
|
-
readonly marketplace_resource_state?: string;
|
|
4422
|
-
readonly is_usage_based?: boolean;
|
|
4423
|
-
readonly is_limit_based?: boolean;
|
|
4429
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4430
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4431
|
+
readonly marketplace_resource_state?: string | null;
|
|
4432
|
+
readonly is_usage_based?: boolean | null;
|
|
4433
|
+
readonly is_limit_based?: boolean | null;
|
|
4424
4434
|
};
|
|
4425
4435
|
export type OpenStackBackupRequest = {
|
|
4426
4436
|
name: string;
|
|
@@ -4527,16 +4537,16 @@ export type OpenStackFloatingIp = {
|
|
|
4527
4537
|
readonly instance_uuid?: string | null;
|
|
4528
4538
|
readonly instance_name?: string | null;
|
|
4529
4539
|
readonly instance_url?: string | null;
|
|
4530
|
-
readonly marketplace_offering_uuid?: string;
|
|
4531
|
-
readonly marketplace_offering_name?: string;
|
|
4540
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4541
|
+
readonly marketplace_offering_name?: string | null;
|
|
4532
4542
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4533
|
-
readonly marketplace_category_uuid?: string;
|
|
4543
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4534
4544
|
readonly marketplace_category_name?: string;
|
|
4535
|
-
readonly marketplace_resource_uuid?: string;
|
|
4536
|
-
readonly marketplace_plan_uuid?: string;
|
|
4537
|
-
readonly marketplace_resource_state?: string;
|
|
4538
|
-
readonly is_usage_based?: boolean;
|
|
4539
|
-
readonly is_limit_based?: boolean;
|
|
4545
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4546
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4547
|
+
readonly marketplace_resource_state?: string | null;
|
|
4548
|
+
readonly is_usage_based?: boolean | null;
|
|
4549
|
+
readonly is_limit_based?: boolean | null;
|
|
4540
4550
|
};
|
|
4541
4551
|
export type OpenStackFloatingIpAttachRequest = {
|
|
4542
4552
|
port: string;
|
|
@@ -4640,16 +4650,16 @@ export type OpenStackInstance = {
|
|
|
4640
4650
|
tenant?: string;
|
|
4641
4651
|
readonly external_address?: Array<string>;
|
|
4642
4652
|
rancher_cluster?: RancherClusterReference | null;
|
|
4643
|
-
readonly marketplace_offering_uuid?: string;
|
|
4644
|
-
readonly marketplace_offering_name?: string;
|
|
4653
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4654
|
+
readonly marketplace_offering_name?: string | null;
|
|
4645
4655
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4646
|
-
readonly marketplace_category_uuid?: string;
|
|
4656
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4647
4657
|
readonly marketplace_category_name?: string;
|
|
4648
|
-
readonly marketplace_resource_uuid?: string;
|
|
4649
|
-
readonly marketplace_plan_uuid?: string;
|
|
4650
|
-
readonly marketplace_resource_state?: string;
|
|
4651
|
-
readonly is_usage_based?: boolean;
|
|
4652
|
-
readonly is_limit_based?: boolean;
|
|
4658
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4659
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4660
|
+
readonly marketplace_resource_state?: string | null;
|
|
4661
|
+
readonly is_usage_based?: boolean | null;
|
|
4662
|
+
readonly is_limit_based?: boolean | null;
|
|
4653
4663
|
};
|
|
4654
4664
|
export type OpenStackInstanceAllowedAddressPairsUpdateRequest = {
|
|
4655
4665
|
subnet: string;
|
|
@@ -4814,16 +4824,16 @@ export type OpenStackNetwork = {
|
|
|
4814
4824
|
*/
|
|
4815
4825
|
readonly mtu?: number | null;
|
|
4816
4826
|
readonly rbac_policies?: Array<NetworkRbacPolicy>;
|
|
4817
|
-
readonly marketplace_offering_uuid?: string;
|
|
4818
|
-
readonly marketplace_offering_name?: string;
|
|
4827
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4828
|
+
readonly marketplace_offering_name?: string | null;
|
|
4819
4829
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4820
|
-
readonly marketplace_category_uuid?: string;
|
|
4830
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4821
4831
|
readonly marketplace_category_name?: string;
|
|
4822
|
-
readonly marketplace_resource_uuid?: string;
|
|
4823
|
-
readonly marketplace_plan_uuid?: string;
|
|
4824
|
-
readonly marketplace_resource_state?: string;
|
|
4825
|
-
readonly is_usage_based?: boolean;
|
|
4826
|
-
readonly is_limit_based?: boolean;
|
|
4832
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4833
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4834
|
+
readonly marketplace_resource_state?: string | null;
|
|
4835
|
+
readonly is_usage_based?: boolean | null;
|
|
4836
|
+
readonly is_limit_based?: boolean | null;
|
|
4827
4837
|
};
|
|
4828
4838
|
export type OpenStackNetworkRequest = {
|
|
4829
4839
|
name: string;
|
|
@@ -4869,16 +4879,17 @@ export type OpenStackPort = {
|
|
|
4869
4879
|
port_security_enabled?: boolean;
|
|
4870
4880
|
security_groups?: Array<OpenStackPortNestedSecurityGroup>;
|
|
4871
4881
|
readonly admin_state_up?: string | null;
|
|
4872
|
-
readonly
|
|
4873
|
-
readonly
|
|
4882
|
+
readonly status?: string | null;
|
|
4883
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4884
|
+
readonly marketplace_offering_name?: string | null;
|
|
4874
4885
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4875
|
-
readonly marketplace_category_uuid?: string;
|
|
4886
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4876
4887
|
readonly marketplace_category_name?: string;
|
|
4877
|
-
readonly marketplace_resource_uuid?: string;
|
|
4878
|
-
readonly marketplace_plan_uuid?: string;
|
|
4879
|
-
readonly marketplace_resource_state?: string;
|
|
4880
|
-
readonly is_usage_based?: boolean;
|
|
4881
|
-
readonly is_limit_based?: boolean;
|
|
4888
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4889
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4890
|
+
readonly marketplace_resource_state?: string | null;
|
|
4891
|
+
readonly is_usage_based?: boolean | null;
|
|
4892
|
+
readonly is_limit_based?: boolean | null;
|
|
4882
4893
|
};
|
|
4883
4894
|
export type OpenStackPortIpUpdateRequest = {
|
|
4884
4895
|
subnet: string;
|
|
@@ -4931,16 +4942,16 @@ export type OpenStackRouter = {
|
|
|
4931
4942
|
readonly tenant_uuid?: string;
|
|
4932
4943
|
routes?: Array<OpenStackStaticRoute>;
|
|
4933
4944
|
readonly fixed_ips?: Array<OpenStackFixedIp>;
|
|
4934
|
-
readonly marketplace_offering_uuid?: string;
|
|
4935
|
-
readonly marketplace_offering_name?: string;
|
|
4945
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4946
|
+
readonly marketplace_offering_name?: string | null;
|
|
4936
4947
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4937
|
-
readonly marketplace_category_uuid?: string;
|
|
4948
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4938
4949
|
readonly marketplace_category_name?: string;
|
|
4939
|
-
readonly marketplace_resource_uuid?: string;
|
|
4940
|
-
readonly marketplace_plan_uuid?: string;
|
|
4941
|
-
readonly marketplace_resource_state?: string;
|
|
4942
|
-
readonly is_usage_based?: boolean;
|
|
4943
|
-
readonly is_limit_based?: boolean;
|
|
4950
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4951
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4952
|
+
readonly marketplace_resource_state?: string | null;
|
|
4953
|
+
readonly is_usage_based?: boolean | null;
|
|
4954
|
+
readonly is_limit_based?: boolean | null;
|
|
4944
4955
|
readonly offering_external_ips?: Array<string> | null;
|
|
4945
4956
|
};
|
|
4946
4957
|
export type OpenStackRouterSetRoutes = {
|
|
@@ -4978,16 +4989,16 @@ export type OpenStackSecurityGroup = {
|
|
|
4978
4989
|
readonly tenant_name?: string;
|
|
4979
4990
|
readonly tenant_uuid?: string;
|
|
4980
4991
|
rules?: Array<OpenStackSecurityGroupRuleCreate>;
|
|
4981
|
-
readonly marketplace_offering_uuid?: string;
|
|
4982
|
-
readonly marketplace_offering_name?: string;
|
|
4992
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
4993
|
+
readonly marketplace_offering_name?: string | null;
|
|
4983
4994
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4984
|
-
readonly marketplace_category_uuid?: string;
|
|
4995
|
+
readonly marketplace_category_uuid?: string | null;
|
|
4985
4996
|
readonly marketplace_category_name?: string;
|
|
4986
|
-
readonly marketplace_resource_uuid?: string;
|
|
4987
|
-
readonly marketplace_plan_uuid?: string;
|
|
4988
|
-
readonly marketplace_resource_state?: string;
|
|
4989
|
-
readonly is_usage_based?: boolean;
|
|
4990
|
-
readonly is_limit_based?: boolean;
|
|
4997
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4998
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
4999
|
+
readonly marketplace_resource_state?: string | null;
|
|
5000
|
+
readonly is_usage_based?: boolean | null;
|
|
5001
|
+
readonly is_limit_based?: boolean | null;
|
|
4991
5002
|
};
|
|
4992
5003
|
export type OpenStackSecurityGroupRequest = {
|
|
4993
5004
|
name: string;
|
|
@@ -5066,16 +5077,16 @@ export type OpenStackServerGroup = {
|
|
|
5066
5077
|
policy?: PolicyEnum | BlankEnum;
|
|
5067
5078
|
readonly display_name?: string;
|
|
5068
5079
|
readonly instances?: Array<OpenStackNestedInstance>;
|
|
5069
|
-
readonly marketplace_offering_uuid?: string;
|
|
5070
|
-
readonly marketplace_offering_name?: string;
|
|
5080
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
5081
|
+
readonly marketplace_offering_name?: string | null;
|
|
5071
5082
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5072
|
-
readonly marketplace_category_uuid?: string;
|
|
5083
|
+
readonly marketplace_category_uuid?: string | null;
|
|
5073
5084
|
readonly marketplace_category_name?: string;
|
|
5074
|
-
readonly marketplace_resource_uuid?: string;
|
|
5075
|
-
readonly marketplace_plan_uuid?: string;
|
|
5076
|
-
readonly marketplace_resource_state?: string;
|
|
5077
|
-
readonly is_usage_based?: boolean;
|
|
5078
|
-
readonly is_limit_based?: boolean;
|
|
5085
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
5086
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
5087
|
+
readonly marketplace_resource_state?: string | null;
|
|
5088
|
+
readonly is_usage_based?: boolean | null;
|
|
5089
|
+
readonly is_limit_based?: boolean | null;
|
|
5079
5090
|
};
|
|
5080
5091
|
export type OpenStackServerGroupRequest = {
|
|
5081
5092
|
name: string;
|
|
@@ -5123,16 +5134,16 @@ export type OpenStackSnapshot = {
|
|
|
5123
5134
|
* Guaranteed time of snapshot retention. If null - keep forever.
|
|
5124
5135
|
*/
|
|
5125
5136
|
kept_until?: string | null;
|
|
5126
|
-
readonly marketplace_offering_uuid?: string;
|
|
5127
|
-
readonly marketplace_offering_name?: string;
|
|
5137
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
5138
|
+
readonly marketplace_offering_name?: string | null;
|
|
5128
5139
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5129
|
-
readonly marketplace_category_uuid?: string;
|
|
5140
|
+
readonly marketplace_category_uuid?: string | null;
|
|
5130
5141
|
readonly marketplace_category_name?: string;
|
|
5131
|
-
readonly marketplace_resource_uuid?: string;
|
|
5132
|
-
readonly marketplace_plan_uuid?: string;
|
|
5133
|
-
readonly marketplace_resource_state?: string;
|
|
5134
|
-
readonly is_usage_based?: boolean;
|
|
5135
|
-
readonly is_limit_based?: boolean;
|
|
5142
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
5143
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
5144
|
+
readonly marketplace_resource_state?: string | null;
|
|
5145
|
+
readonly is_usage_based?: boolean | null;
|
|
5146
|
+
readonly is_limit_based?: boolean | null;
|
|
5136
5147
|
};
|
|
5137
5148
|
export type OpenStackSnapshotRequest = {
|
|
5138
5149
|
name: string;
|
|
@@ -5222,16 +5233,16 @@ export type OpenStackSubNet = {
|
|
|
5222
5233
|
* Is subnet connected to the default tenant router.
|
|
5223
5234
|
*/
|
|
5224
5235
|
readonly is_connected?: boolean;
|
|
5225
|
-
readonly marketplace_offering_uuid?: string;
|
|
5226
|
-
readonly marketplace_offering_name?: string;
|
|
5236
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
5237
|
+
readonly marketplace_offering_name?: string | null;
|
|
5227
5238
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5228
|
-
readonly marketplace_category_uuid?: string;
|
|
5239
|
+
readonly marketplace_category_uuid?: string | null;
|
|
5229
5240
|
readonly marketplace_category_name?: string;
|
|
5230
|
-
readonly marketplace_resource_uuid?: string;
|
|
5231
|
-
readonly marketplace_plan_uuid?: string;
|
|
5232
|
-
readonly marketplace_resource_state?: string;
|
|
5233
|
-
readonly is_usage_based?: boolean;
|
|
5234
|
-
readonly is_limit_based?: boolean;
|
|
5241
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
5242
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
5243
|
+
readonly marketplace_resource_state?: string | null;
|
|
5244
|
+
readonly is_usage_based?: boolean | null;
|
|
5245
|
+
readonly is_limit_based?: boolean | null;
|
|
5235
5246
|
};
|
|
5236
5247
|
export type OpenStackSubNetAllocationPool = {
|
|
5237
5248
|
start?: string;
|
|
@@ -5286,16 +5297,16 @@ export type OpenStackTenant = {
|
|
|
5286
5297
|
* Volume type name to use when creating volumes.
|
|
5287
5298
|
*/
|
|
5288
5299
|
default_volume_type_name?: string;
|
|
5289
|
-
readonly marketplace_offering_uuid?: string;
|
|
5290
|
-
readonly marketplace_offering_name?: string;
|
|
5300
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
5301
|
+
readonly marketplace_offering_name?: string | null;
|
|
5291
5302
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5292
|
-
readonly marketplace_category_uuid?: string;
|
|
5303
|
+
readonly marketplace_category_uuid?: string | null;
|
|
5293
5304
|
readonly marketplace_category_name?: string;
|
|
5294
|
-
readonly marketplace_resource_uuid?: string;
|
|
5295
|
-
readonly marketplace_plan_uuid?: string;
|
|
5296
|
-
readonly marketplace_resource_state?: string;
|
|
5297
|
-
readonly is_usage_based?: boolean;
|
|
5298
|
-
readonly is_limit_based?: boolean;
|
|
5305
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
5306
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
5307
|
+
readonly marketplace_resource_state?: string | null;
|
|
5308
|
+
readonly is_usage_based?: boolean | null;
|
|
5309
|
+
readonly is_limit_based?: boolean | null;
|
|
5299
5310
|
};
|
|
5300
5311
|
export type OpenStackTenantChangePasswordRequest = {
|
|
5301
5312
|
/**
|
|
@@ -5389,16 +5400,16 @@ export type OpenStackVolume = {
|
|
|
5389
5400
|
readonly instance_marketplace_uuid?: string;
|
|
5390
5401
|
tenant?: string;
|
|
5391
5402
|
readonly tenant_uuid?: string;
|
|
5392
|
-
readonly marketplace_offering_uuid?: string;
|
|
5393
|
-
readonly marketplace_offering_name?: string;
|
|
5403
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
5404
|
+
readonly marketplace_offering_name?: string | null;
|
|
5394
5405
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5395
|
-
readonly marketplace_category_uuid?: string;
|
|
5406
|
+
readonly marketplace_category_uuid?: string | null;
|
|
5396
5407
|
readonly marketplace_category_name?: string;
|
|
5397
|
-
readonly marketplace_resource_uuid?: string;
|
|
5398
|
-
readonly marketplace_plan_uuid?: string;
|
|
5399
|
-
readonly marketplace_resource_state?: string;
|
|
5400
|
-
readonly is_usage_based?: boolean;
|
|
5401
|
-
readonly is_limit_based?: boolean;
|
|
5408
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
5409
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
5410
|
+
readonly marketplace_resource_state?: string | null;
|
|
5411
|
+
readonly is_usage_based?: boolean | null;
|
|
5412
|
+
readonly is_limit_based?: boolean | null;
|
|
5402
5413
|
};
|
|
5403
5414
|
export type OpenStackVolumeAvailabilityZone = {
|
|
5404
5415
|
readonly url: string;
|
|
@@ -7304,16 +7315,16 @@ export type RancherApplication = {
|
|
|
7304
7315
|
readonly catalog_name?: string;
|
|
7305
7316
|
readonly template_name?: string;
|
|
7306
7317
|
readonly external_url?: string | null;
|
|
7307
|
-
readonly marketplace_offering_uuid?: string;
|
|
7308
|
-
readonly marketplace_offering_name?: string;
|
|
7318
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
7319
|
+
readonly marketplace_offering_name?: string | null;
|
|
7309
7320
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7310
|
-
readonly marketplace_category_uuid?: string;
|
|
7321
|
+
readonly marketplace_category_uuid?: string | null;
|
|
7311
7322
|
readonly marketplace_category_name?: string;
|
|
7312
|
-
readonly marketplace_resource_uuid?: string;
|
|
7313
|
-
readonly marketplace_plan_uuid?: string;
|
|
7314
|
-
readonly marketplace_resource_state?: string;
|
|
7315
|
-
readonly is_usage_based?: boolean;
|
|
7316
|
-
readonly is_limit_based?: boolean;
|
|
7323
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
7324
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
7325
|
+
readonly marketplace_resource_state?: string | null;
|
|
7326
|
+
readonly is_usage_based?: boolean | null;
|
|
7327
|
+
readonly is_limit_based?: boolean | null;
|
|
7317
7328
|
};
|
|
7318
7329
|
export type RancherApplicationRequest = {
|
|
7319
7330
|
name: string;
|
|
@@ -7433,16 +7444,16 @@ export type RancherCluster = {
|
|
|
7433
7444
|
*/
|
|
7434
7445
|
install_longhorn?: boolean;
|
|
7435
7446
|
readonly management_security_group?: string;
|
|
7436
|
-
readonly marketplace_offering_uuid?: string;
|
|
7437
|
-
readonly marketplace_offering_name?: string;
|
|
7447
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
7448
|
+
readonly marketplace_offering_name?: string | null;
|
|
7438
7449
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7439
|
-
readonly marketplace_category_uuid?: string;
|
|
7450
|
+
readonly marketplace_category_uuid?: string | null;
|
|
7440
7451
|
readonly marketplace_category_name?: string;
|
|
7441
|
-
readonly marketplace_resource_uuid?: string;
|
|
7442
|
-
readonly marketplace_plan_uuid?: string;
|
|
7443
|
-
readonly marketplace_resource_state?: string;
|
|
7444
|
-
readonly is_usage_based?: boolean;
|
|
7445
|
-
readonly is_limit_based?: boolean;
|
|
7452
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
7453
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
7454
|
+
readonly marketplace_resource_state?: string | null;
|
|
7455
|
+
readonly is_usage_based?: boolean | null;
|
|
7456
|
+
readonly is_limit_based?: boolean | null;
|
|
7446
7457
|
};
|
|
7447
7458
|
export type RancherClusterReference = {
|
|
7448
7459
|
readonly uuid?: string;
|
|
@@ -7568,16 +7579,16 @@ export type RancherIngress = {
|
|
|
7568
7579
|
namespace?: string;
|
|
7569
7580
|
readonly namespace_name?: string;
|
|
7570
7581
|
rules?: unknown;
|
|
7571
|
-
readonly marketplace_offering_uuid?: string;
|
|
7572
|
-
readonly marketplace_offering_name?: string;
|
|
7582
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
7583
|
+
readonly marketplace_offering_name?: string | null;
|
|
7573
7584
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7574
|
-
readonly marketplace_category_uuid?: string;
|
|
7585
|
+
readonly marketplace_category_uuid?: string | null;
|
|
7575
7586
|
readonly marketplace_category_name?: string;
|
|
7576
|
-
readonly marketplace_resource_uuid?: string;
|
|
7577
|
-
readonly marketplace_plan_uuid?: string;
|
|
7578
|
-
readonly marketplace_resource_state?: string;
|
|
7579
|
-
readonly is_usage_based?: boolean;
|
|
7580
|
-
readonly is_limit_based?: boolean;
|
|
7587
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
7588
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
7589
|
+
readonly marketplace_resource_state?: string | null;
|
|
7590
|
+
readonly is_usage_based?: boolean | null;
|
|
7591
|
+
readonly is_limit_based?: boolean | null;
|
|
7581
7592
|
};
|
|
7582
7593
|
export type RancherIngressRequest = {
|
|
7583
7594
|
name: string;
|
|
@@ -7742,16 +7753,16 @@ export type RancherService = {
|
|
|
7742
7753
|
cluster_ip?: string | null;
|
|
7743
7754
|
selector?: unknown;
|
|
7744
7755
|
target_workloads?: Array<RancherNestedWorkload>;
|
|
7745
|
-
readonly marketplace_offering_uuid?: string;
|
|
7746
|
-
readonly marketplace_offering_name?: string;
|
|
7756
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
7757
|
+
readonly marketplace_offering_name?: string | null;
|
|
7747
7758
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7748
|
-
readonly marketplace_category_uuid?: string;
|
|
7759
|
+
readonly marketplace_category_uuid?: string | null;
|
|
7749
7760
|
readonly marketplace_category_name?: string;
|
|
7750
|
-
readonly marketplace_resource_uuid?: string;
|
|
7751
|
-
readonly marketplace_plan_uuid?: string;
|
|
7752
|
-
readonly marketplace_resource_state?: string;
|
|
7753
|
-
readonly is_usage_based?: boolean;
|
|
7754
|
-
readonly is_limit_based?: boolean;
|
|
7761
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
7762
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
7763
|
+
readonly marketplace_resource_state?: string | null;
|
|
7764
|
+
readonly is_usage_based?: boolean | null;
|
|
7765
|
+
readonly is_limit_based?: boolean | null;
|
|
7755
7766
|
};
|
|
7756
7767
|
export type RancherServiceRequest = {
|
|
7757
7768
|
name: string;
|
|
@@ -8636,16 +8647,16 @@ export type SlurmAllocation = {
|
|
|
8636
8647
|
readonly username?: string | null;
|
|
8637
8648
|
readonly gateway?: string | null;
|
|
8638
8649
|
readonly is_active?: boolean;
|
|
8639
|
-
readonly marketplace_offering_uuid?: string;
|
|
8640
|
-
readonly marketplace_offering_name?: string;
|
|
8650
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
8651
|
+
readonly marketplace_offering_name?: string | null;
|
|
8641
8652
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
8642
|
-
readonly marketplace_category_uuid?: string;
|
|
8653
|
+
readonly marketplace_category_uuid?: string | null;
|
|
8643
8654
|
readonly marketplace_category_name?: string;
|
|
8644
|
-
readonly marketplace_resource_uuid?: string;
|
|
8645
|
-
readonly marketplace_plan_uuid?: string;
|
|
8646
|
-
readonly marketplace_resource_state?: string;
|
|
8647
|
-
readonly is_usage_based?: boolean;
|
|
8648
|
-
readonly is_limit_based?: boolean;
|
|
8655
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
8656
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
8657
|
+
readonly marketplace_resource_state?: string | null;
|
|
8658
|
+
readonly is_usage_based?: boolean | null;
|
|
8659
|
+
readonly is_limit_based?: boolean | null;
|
|
8649
8660
|
};
|
|
8650
8661
|
export type SlurmAllocationRequest = {
|
|
8651
8662
|
name: string;
|
|
@@ -9026,16 +9037,16 @@ export type VmwareDisk = {
|
|
|
9026
9037
|
readonly vm?: string;
|
|
9027
9038
|
readonly vm_uuid?: string;
|
|
9028
9039
|
readonly vm_name?: string;
|
|
9029
|
-
readonly marketplace_offering_uuid?: string;
|
|
9030
|
-
readonly marketplace_offering_name?: string;
|
|
9040
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
9041
|
+
readonly marketplace_offering_name?: string | null;
|
|
9031
9042
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
9032
|
-
readonly marketplace_category_uuid?: string;
|
|
9043
|
+
readonly marketplace_category_uuid?: string | null;
|
|
9033
9044
|
readonly marketplace_category_name?: string;
|
|
9034
|
-
readonly marketplace_resource_uuid?: string;
|
|
9035
|
-
readonly marketplace_plan_uuid?: string;
|
|
9036
|
-
readonly marketplace_resource_state?: string;
|
|
9037
|
-
readonly is_usage_based?: boolean;
|
|
9038
|
-
readonly is_limit_based?: boolean;
|
|
9045
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
9046
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
9047
|
+
readonly marketplace_resource_state?: string | null;
|
|
9048
|
+
readonly is_usage_based?: boolean | null;
|
|
9049
|
+
readonly is_limit_based?: boolean | null;
|
|
9039
9050
|
};
|
|
9040
9051
|
export type VmwareDiskExtend = {
|
|
9041
9052
|
/**
|
|
@@ -9140,16 +9151,16 @@ export type VmwarePort = {
|
|
|
9140
9151
|
readonly vm_name?: string;
|
|
9141
9152
|
network?: string;
|
|
9142
9153
|
readonly network_name?: string;
|
|
9143
|
-
readonly marketplace_offering_uuid?: string;
|
|
9144
|
-
readonly marketplace_offering_name?: string;
|
|
9154
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
9155
|
+
readonly marketplace_offering_name?: string | null;
|
|
9145
9156
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
9146
|
-
readonly marketplace_category_uuid?: string;
|
|
9157
|
+
readonly marketplace_category_uuid?: string | null;
|
|
9147
9158
|
readonly marketplace_category_name?: string;
|
|
9148
|
-
readonly marketplace_resource_uuid?: string;
|
|
9149
|
-
readonly marketplace_plan_uuid?: string;
|
|
9150
|
-
readonly marketplace_resource_state?: string;
|
|
9151
|
-
readonly is_usage_based?: boolean;
|
|
9152
|
-
readonly is_limit_based?: boolean;
|
|
9159
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
9160
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
9161
|
+
readonly marketplace_resource_state?: string | null;
|
|
9162
|
+
readonly is_usage_based?: boolean | null;
|
|
9163
|
+
readonly is_limit_based?: boolean | null;
|
|
9153
9164
|
};
|
|
9154
9165
|
export type VmwarePortRequest = {
|
|
9155
9166
|
description?: string;
|
|
@@ -9240,16 +9251,16 @@ export type VmwareVirtualMachine = {
|
|
|
9240
9251
|
guest_power_state?: GuestPowerStateEnum;
|
|
9241
9252
|
readonly tools_state?: string;
|
|
9242
9253
|
readonly tools_installed?: boolean;
|
|
9243
|
-
readonly marketplace_offering_uuid?: string;
|
|
9244
|
-
readonly marketplace_offering_name?: string;
|
|
9254
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
9255
|
+
readonly marketplace_offering_name?: string | null;
|
|
9245
9256
|
readonly marketplace_offering_plugin_options?: {} | null;
|
|
9246
|
-
readonly marketplace_category_uuid?: string;
|
|
9257
|
+
readonly marketplace_category_uuid?: string | null;
|
|
9247
9258
|
readonly marketplace_category_name?: string;
|
|
9248
|
-
readonly marketplace_resource_uuid?: string;
|
|
9249
|
-
readonly marketplace_plan_uuid?: string;
|
|
9250
|
-
readonly marketplace_resource_state?: string;
|
|
9251
|
-
readonly is_usage_based?: boolean;
|
|
9252
|
-
readonly is_limit_based?: boolean;
|
|
9259
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
9260
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
9261
|
+
readonly marketplace_resource_state?: string | null;
|
|
9262
|
+
readonly is_usage_based?: boolean | null;
|
|
9263
|
+
readonly is_limit_based?: boolean | null;
|
|
9253
9264
|
};
|
|
9254
9265
|
export type VmwareVirtualMachineRequest = {
|
|
9255
9266
|
name: string;
|
|
@@ -21209,7 +21220,7 @@ export type OpenstackPortsListData = {
|
|
|
21209
21220
|
body?: never;
|
|
21210
21221
|
path?: never;
|
|
21211
21222
|
query?: {
|
|
21212
|
-
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
21223
|
+
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
21213
21224
|
name?: string;
|
|
21214
21225
|
name_exact?: string;
|
|
21215
21226
|
/**
|
|
@@ -21266,7 +21277,7 @@ export type OpenstackPortsRetrieveData = {
|
|
|
21266
21277
|
uuid: string;
|
|
21267
21278
|
};
|
|
21268
21279
|
query?: {
|
|
21269
|
-
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
21280
|
+
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
21270
21281
|
};
|
|
21271
21282
|
url: '/api/openstack-ports/{uuid}/';
|
|
21272
21283
|
};
|