waldur-js-client 1.0.4-dev.49 → 1.0.4-dev.50
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 +45 -31
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ export type AwsInstance = {
|
|
|
166
166
|
readonly image_name?: string;
|
|
167
167
|
readonly marketplace_offering_uuid?: string;
|
|
168
168
|
readonly marketplace_offering_name?: string;
|
|
169
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
169
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
170
170
|
readonly marketplace_category_uuid?: string;
|
|
171
171
|
readonly marketplace_category_name?: string;
|
|
172
172
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -254,7 +254,7 @@ export type AwsVolume = {
|
|
|
254
254
|
readonly runtime_state?: string;
|
|
255
255
|
readonly marketplace_offering_uuid?: string;
|
|
256
256
|
readonly marketplace_offering_name?: string;
|
|
257
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
257
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
258
258
|
readonly marketplace_category_uuid?: string;
|
|
259
259
|
readonly marketplace_category_name?: string;
|
|
260
260
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -333,7 +333,7 @@ export type AzurePublicIp = {
|
|
|
333
333
|
resource_group?: string;
|
|
334
334
|
readonly marketplace_offering_uuid?: string;
|
|
335
335
|
readonly marketplace_offering_name?: string;
|
|
336
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
336
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
337
337
|
readonly marketplace_category_uuid?: string;
|
|
338
338
|
readonly marketplace_category_name?: string;
|
|
339
339
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -378,7 +378,7 @@ export type AzureResourceGroup = {
|
|
|
378
378
|
location?: string;
|
|
379
379
|
readonly marketplace_offering_uuid?: string;
|
|
380
380
|
readonly marketplace_offering_name?: string;
|
|
381
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
381
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
382
382
|
readonly marketplace_category_uuid?: string;
|
|
383
383
|
readonly marketplace_category_name?: string;
|
|
384
384
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -432,7 +432,7 @@ export type AzureSqlDatabase = {
|
|
|
432
432
|
readonly server_marketplace_uuid?: string;
|
|
433
433
|
readonly marketplace_offering_uuid?: string;
|
|
434
434
|
readonly marketplace_offering_name?: string;
|
|
435
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
435
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
436
436
|
readonly marketplace_category_uuid?: string;
|
|
437
437
|
readonly marketplace_category_name?: string;
|
|
438
438
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -492,7 +492,7 @@ export type AzureSqlServer = {
|
|
|
492
492
|
readonly location_name?: string;
|
|
493
493
|
readonly marketplace_offering_uuid?: string;
|
|
494
494
|
readonly marketplace_offering_name?: string;
|
|
495
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
495
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
496
496
|
readonly marketplace_category_uuid?: string;
|
|
497
497
|
readonly marketplace_category_name?: string;
|
|
498
498
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -577,7 +577,7 @@ export type AzureVirtualMachine = {
|
|
|
577
577
|
readonly size_name?: string;
|
|
578
578
|
readonly marketplace_offering_uuid?: string;
|
|
579
579
|
readonly marketplace_offering_name?: string;
|
|
580
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
580
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
581
581
|
readonly marketplace_category_uuid?: string;
|
|
582
582
|
readonly marketplace_category_name?: string;
|
|
583
583
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -898,6 +898,7 @@ export type CallDocument = {
|
|
|
898
898
|
*/
|
|
899
899
|
file?: string | null;
|
|
900
900
|
readonly file_name?: string;
|
|
901
|
+
readonly file_size?: number;
|
|
901
902
|
description?: string;
|
|
902
903
|
readonly created?: string;
|
|
903
904
|
};
|
|
@@ -1977,7 +1978,7 @@ export type DigitalOceanDroplet = {
|
|
|
1977
1978
|
readonly region_name?: string;
|
|
1978
1979
|
readonly marketplace_offering_uuid?: string;
|
|
1979
1980
|
readonly marketplace_offering_name?: string;
|
|
1980
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
1981
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
1981
1982
|
readonly marketplace_category_uuid?: string;
|
|
1982
1983
|
readonly marketplace_category_name?: string;
|
|
1983
1984
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -2671,7 +2672,7 @@ export type Issue = {
|
|
|
2671
2672
|
readonly modified: string;
|
|
2672
2673
|
readonly first_response_sla: string | null;
|
|
2673
2674
|
template?: string | null;
|
|
2674
|
-
feedback: NestedFeedback;
|
|
2675
|
+
feedback: NestedFeedback | null;
|
|
2675
2676
|
readonly resolved: boolean | null;
|
|
2676
2677
|
readonly update_is_available: boolean;
|
|
2677
2678
|
readonly destroy_is_available: boolean;
|
|
@@ -3063,6 +3064,12 @@ export type MergedPluginOptions = {
|
|
|
3063
3064
|
managed_rancher_server_flavor_name?: string;
|
|
3064
3065
|
managed_rancher_server_system_volume_size_gb?: number;
|
|
3065
3066
|
managed_rancher_server_system_volume_type_name?: string;
|
|
3067
|
+
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3068
|
+
managed_rancher_load_balancer_flavor_name?: string;
|
|
3069
|
+
managed_rancher_load_balancer_system_volume_size_gb?: number;
|
|
3070
|
+
managed_rancher_load_balancer_system_volume_type_name?: string;
|
|
3071
|
+
managed_rancher_load_balancer_data_volume_size_gb?: number;
|
|
3072
|
+
managed_rancher_load_balancer_data_volume_type_name?: string;
|
|
3066
3073
|
/**
|
|
3067
3074
|
* Slurm account name generation policy
|
|
3068
3075
|
*/
|
|
@@ -3180,6 +3187,12 @@ export type MergedPluginOptionsRequest = {
|
|
|
3180
3187
|
managed_rancher_server_flavor_name?: string;
|
|
3181
3188
|
managed_rancher_server_system_volume_size_gb?: number;
|
|
3182
3189
|
managed_rancher_server_system_volume_type_name?: string;
|
|
3190
|
+
managed_rancher_load_balancer_cloud_init_template?: string;
|
|
3191
|
+
managed_rancher_load_balancer_flavor_name?: string;
|
|
3192
|
+
managed_rancher_load_balancer_system_volume_size_gb?: number;
|
|
3193
|
+
managed_rancher_load_balancer_system_volume_type_name?: string;
|
|
3194
|
+
managed_rancher_load_balancer_data_volume_size_gb?: number;
|
|
3195
|
+
managed_rancher_load_balancer_data_volume_type_name?: string;
|
|
3183
3196
|
/**
|
|
3184
3197
|
* Slurm account name generation policy
|
|
3185
3198
|
*/
|
|
@@ -4400,7 +4413,7 @@ export type OpenStackBackup = {
|
|
|
4400
4413
|
readonly tenant_uuid?: string;
|
|
4401
4414
|
readonly marketplace_offering_uuid?: string;
|
|
4402
4415
|
readonly marketplace_offering_name?: string;
|
|
4403
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4416
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4404
4417
|
readonly marketplace_category_uuid?: string;
|
|
4405
4418
|
readonly marketplace_category_name?: string;
|
|
4406
4419
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -4516,7 +4529,7 @@ export type OpenStackFloatingIp = {
|
|
|
4516
4529
|
readonly instance_url?: string | null;
|
|
4517
4530
|
readonly marketplace_offering_uuid?: string;
|
|
4518
4531
|
readonly marketplace_offering_name?: string;
|
|
4519
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4532
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4520
4533
|
readonly marketplace_category_uuid?: string;
|
|
4521
4534
|
readonly marketplace_category_name?: string;
|
|
4522
4535
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -4613,7 +4626,7 @@ export type OpenStackInstance = {
|
|
|
4613
4626
|
readonly flavor_name?: string;
|
|
4614
4627
|
readonly volumes?: Array<OpenStackNestedVolume>;
|
|
4615
4628
|
security_groups?: Array<OpenStackNestedSecurityGroup>;
|
|
4616
|
-
server_group?: OpenStackNestedServerGroup;
|
|
4629
|
+
server_group?: OpenStackNestedServerGroup | null;
|
|
4617
4630
|
floating_ips?: Array<OpenStackNestedFloatingIp>;
|
|
4618
4631
|
ports?: Array<OpenStackNestedPort>;
|
|
4619
4632
|
availability_zone?: string | null;
|
|
@@ -4629,7 +4642,7 @@ export type OpenStackInstance = {
|
|
|
4629
4642
|
rancher_cluster?: RancherClusterReference | null;
|
|
4630
4643
|
readonly marketplace_offering_uuid?: string;
|
|
4631
4644
|
readonly marketplace_offering_name?: string;
|
|
4632
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4645
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4633
4646
|
readonly marketplace_category_uuid?: string;
|
|
4634
4647
|
readonly marketplace_category_name?: string;
|
|
4635
4648
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -4803,7 +4816,7 @@ export type OpenStackNetwork = {
|
|
|
4803
4816
|
readonly rbac_policies?: Array<NetworkRbacPolicy>;
|
|
4804
4817
|
readonly marketplace_offering_uuid?: string;
|
|
4805
4818
|
readonly marketplace_offering_name?: string;
|
|
4806
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4819
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4807
4820
|
readonly marketplace_category_uuid?: string;
|
|
4808
4821
|
readonly marketplace_category_name?: string;
|
|
4809
4822
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -4858,7 +4871,7 @@ export type OpenStackPort = {
|
|
|
4858
4871
|
readonly admin_state_up?: string | null;
|
|
4859
4872
|
readonly marketplace_offering_uuid?: string;
|
|
4860
4873
|
readonly marketplace_offering_name?: string;
|
|
4861
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4874
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4862
4875
|
readonly marketplace_category_uuid?: string;
|
|
4863
4876
|
readonly marketplace_category_name?: string;
|
|
4864
4877
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -4920,7 +4933,7 @@ export type OpenStackRouter = {
|
|
|
4920
4933
|
readonly fixed_ips?: Array<OpenStackFixedIp>;
|
|
4921
4934
|
readonly marketplace_offering_uuid?: string;
|
|
4922
4935
|
readonly marketplace_offering_name?: string;
|
|
4923
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4936
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4924
4937
|
readonly marketplace_category_uuid?: string;
|
|
4925
4938
|
readonly marketplace_category_name?: string;
|
|
4926
4939
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -4967,7 +4980,7 @@ export type OpenStackSecurityGroup = {
|
|
|
4967
4980
|
rules?: Array<OpenStackSecurityGroupRuleCreate>;
|
|
4968
4981
|
readonly marketplace_offering_uuid?: string;
|
|
4969
4982
|
readonly marketplace_offering_name?: string;
|
|
4970
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
4983
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
4971
4984
|
readonly marketplace_category_uuid?: string;
|
|
4972
4985
|
readonly marketplace_category_name?: string;
|
|
4973
4986
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -5055,7 +5068,7 @@ export type OpenStackServerGroup = {
|
|
|
5055
5068
|
readonly instances?: Array<OpenStackNestedInstance>;
|
|
5056
5069
|
readonly marketplace_offering_uuid?: string;
|
|
5057
5070
|
readonly marketplace_offering_name?: string;
|
|
5058
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
5071
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5059
5072
|
readonly marketplace_category_uuid?: string;
|
|
5060
5073
|
readonly marketplace_category_name?: string;
|
|
5061
5074
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -5112,7 +5125,7 @@ export type OpenStackSnapshot = {
|
|
|
5112
5125
|
kept_until?: string | null;
|
|
5113
5126
|
readonly marketplace_offering_uuid?: string;
|
|
5114
5127
|
readonly marketplace_offering_name?: string;
|
|
5115
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
5128
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5116
5129
|
readonly marketplace_category_uuid?: string;
|
|
5117
5130
|
readonly marketplace_category_name?: string;
|
|
5118
5131
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -5211,7 +5224,7 @@ export type OpenStackSubNet = {
|
|
|
5211
5224
|
readonly is_connected?: boolean;
|
|
5212
5225
|
readonly marketplace_offering_uuid?: string;
|
|
5213
5226
|
readonly marketplace_offering_name?: string;
|
|
5214
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
5227
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5215
5228
|
readonly marketplace_category_uuid?: string;
|
|
5216
5229
|
readonly marketplace_category_name?: string;
|
|
5217
5230
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -5275,7 +5288,7 @@ export type OpenStackTenant = {
|
|
|
5275
5288
|
default_volume_type_name?: string;
|
|
5276
5289
|
readonly marketplace_offering_uuid?: string;
|
|
5277
5290
|
readonly marketplace_offering_name?: string;
|
|
5278
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
5291
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5279
5292
|
readonly marketplace_category_uuid?: string;
|
|
5280
5293
|
readonly marketplace_category_name?: string;
|
|
5281
5294
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -5378,7 +5391,7 @@ export type OpenStackVolume = {
|
|
|
5378
5391
|
readonly tenant_uuid?: string;
|
|
5379
5392
|
readonly marketplace_offering_uuid?: string;
|
|
5380
5393
|
readonly marketplace_offering_name?: string;
|
|
5381
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
5394
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
5382
5395
|
readonly marketplace_category_uuid?: string;
|
|
5383
5396
|
readonly marketplace_category_name?: string;
|
|
5384
5397
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -6730,6 +6743,7 @@ export type ProposalDocumentation = {
|
|
|
6730
6743
|
*/
|
|
6731
6744
|
file?: string | null;
|
|
6732
6745
|
readonly file_name: string;
|
|
6746
|
+
readonly file_size: number;
|
|
6733
6747
|
readonly created: string;
|
|
6734
6748
|
};
|
|
6735
6749
|
export type ProposalDocumentationRequest = {
|
|
@@ -7292,7 +7306,7 @@ export type RancherApplication = {
|
|
|
7292
7306
|
readonly external_url?: string | null;
|
|
7293
7307
|
readonly marketplace_offering_uuid?: string;
|
|
7294
7308
|
readonly marketplace_offering_name?: string;
|
|
7295
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
7309
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7296
7310
|
readonly marketplace_category_uuid?: string;
|
|
7297
7311
|
readonly marketplace_category_name?: string;
|
|
7298
7312
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -7421,7 +7435,7 @@ export type RancherCluster = {
|
|
|
7421
7435
|
readonly management_security_group?: string;
|
|
7422
7436
|
readonly marketplace_offering_uuid?: string;
|
|
7423
7437
|
readonly marketplace_offering_name?: string;
|
|
7424
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
7438
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7425
7439
|
readonly marketplace_category_uuid?: string;
|
|
7426
7440
|
readonly marketplace_category_name?: string;
|
|
7427
7441
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -7556,7 +7570,7 @@ export type RancherIngress = {
|
|
|
7556
7570
|
rules?: unknown;
|
|
7557
7571
|
readonly marketplace_offering_uuid?: string;
|
|
7558
7572
|
readonly marketplace_offering_name?: string;
|
|
7559
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
7573
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7560
7574
|
readonly marketplace_category_uuid?: string;
|
|
7561
7575
|
readonly marketplace_category_name?: string;
|
|
7562
7576
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -7730,7 +7744,7 @@ export type RancherService = {
|
|
|
7730
7744
|
target_workloads?: Array<RancherNestedWorkload>;
|
|
7731
7745
|
readonly marketplace_offering_uuid?: string;
|
|
7732
7746
|
readonly marketplace_offering_name?: string;
|
|
7733
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
7747
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
7734
7748
|
readonly marketplace_category_uuid?: string;
|
|
7735
7749
|
readonly marketplace_category_name?: string;
|
|
7736
7750
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -8624,7 +8638,7 @@ export type SlurmAllocation = {
|
|
|
8624
8638
|
readonly is_active?: boolean;
|
|
8625
8639
|
readonly marketplace_offering_uuid?: string;
|
|
8626
8640
|
readonly marketplace_offering_name?: string;
|
|
8627
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
8641
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
8628
8642
|
readonly marketplace_category_uuid?: string;
|
|
8629
8643
|
readonly marketplace_category_name?: string;
|
|
8630
8644
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -9014,7 +9028,7 @@ export type VmwareDisk = {
|
|
|
9014
9028
|
readonly vm_name?: string;
|
|
9015
9029
|
readonly marketplace_offering_uuid?: string;
|
|
9016
9030
|
readonly marketplace_offering_name?: string;
|
|
9017
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
9031
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
9018
9032
|
readonly marketplace_category_uuid?: string;
|
|
9019
9033
|
readonly marketplace_category_name?: string;
|
|
9020
9034
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -9128,7 +9142,7 @@ export type VmwarePort = {
|
|
|
9128
9142
|
readonly network_name?: string;
|
|
9129
9143
|
readonly marketplace_offering_uuid?: string;
|
|
9130
9144
|
readonly marketplace_offering_name?: string;
|
|
9131
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
9145
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
9132
9146
|
readonly marketplace_category_uuid?: string;
|
|
9133
9147
|
readonly marketplace_category_name?: string;
|
|
9134
9148
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -9228,7 +9242,7 @@ export type VmwareVirtualMachine = {
|
|
|
9228
9242
|
readonly tools_installed?: boolean;
|
|
9229
9243
|
readonly marketplace_offering_uuid?: string;
|
|
9230
9244
|
readonly marketplace_offering_name?: string;
|
|
9231
|
-
readonly marketplace_offering_plugin_options?: {};
|
|
9245
|
+
readonly marketplace_offering_plugin_options?: {} | null;
|
|
9232
9246
|
readonly marketplace_category_uuid?: string;
|
|
9233
9247
|
readonly marketplace_category_name?: string;
|
|
9234
9248
|
readonly marketplace_resource_uuid?: string;
|
|
@@ -22612,7 +22626,7 @@ export type OpenstackVolumesSnapshotData = {
|
|
|
22612
22626
|
url: '/api/openstack-volumes/{uuid}/snapshot/';
|
|
22613
22627
|
};
|
|
22614
22628
|
export type OpenstackVolumesSnapshotResponses = {
|
|
22615
|
-
|
|
22629
|
+
201: OpenStackSnapshot;
|
|
22616
22630
|
};
|
|
22617
22631
|
export type OpenstackVolumesSnapshotResponse = OpenstackVolumesSnapshotResponses[keyof OpenstackVolumesSnapshotResponses];
|
|
22618
22632
|
export type OpenstackVolumesUnlinkData = {
|