waldur-js-client 1.0.4-dev.103 → 1.0.4-dev.105

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.
@@ -93,6 +93,7 @@ export type AuthToken = {
93
93
  */
94
94
  readonly user_username: string;
95
95
  /**
96
+ * Active
96
97
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
97
98
  */
98
99
  readonly user_is_active: boolean;
@@ -166,7 +167,9 @@ export type AwsInstance = {
166
167
  readonly image_name?: string;
167
168
  readonly marketplace_offering_uuid?: string | null;
168
169
  readonly marketplace_offering_name?: string | null;
169
- readonly marketplace_offering_plugin_options?: {} | null;
170
+ readonly marketplace_offering_plugin_options?: {
171
+ [key: string]: unknown;
172
+ } | null;
170
173
  readonly marketplace_category_uuid?: string | null;
171
174
  readonly marketplace_category_name?: string | null;
172
175
  readonly marketplace_resource_uuid?: string | null;
@@ -254,7 +257,9 @@ export type AwsVolume = {
254
257
  readonly runtime_state?: string;
255
258
  readonly marketplace_offering_uuid?: string | null;
256
259
  readonly marketplace_offering_name?: string | null;
257
- readonly marketplace_offering_plugin_options?: {} | null;
260
+ readonly marketplace_offering_plugin_options?: {
261
+ [key: string]: unknown;
262
+ } | null;
258
263
  readonly marketplace_category_uuid?: string | null;
259
264
  readonly marketplace_category_name?: string | null;
260
265
  readonly marketplace_resource_uuid?: string | null;
@@ -333,7 +338,9 @@ export type AzurePublicIp = {
333
338
  resource_group?: string;
334
339
  readonly marketplace_offering_uuid?: string | null;
335
340
  readonly marketplace_offering_name?: string | null;
336
- readonly marketplace_offering_plugin_options?: {} | null;
341
+ readonly marketplace_offering_plugin_options?: {
342
+ [key: string]: unknown;
343
+ } | null;
337
344
  readonly marketplace_category_uuid?: string | null;
338
345
  readonly marketplace_category_name?: string | null;
339
346
  readonly marketplace_resource_uuid?: string | null;
@@ -378,7 +385,9 @@ export type AzureResourceGroup = {
378
385
  location?: string;
379
386
  readonly marketplace_offering_uuid?: string | null;
380
387
  readonly marketplace_offering_name?: string | null;
381
- readonly marketplace_offering_plugin_options?: {} | null;
388
+ readonly marketplace_offering_plugin_options?: {
389
+ [key: string]: unknown;
390
+ } | null;
382
391
  readonly marketplace_category_uuid?: string | null;
383
392
  readonly marketplace_category_name?: string | null;
384
393
  readonly marketplace_resource_uuid?: string | null;
@@ -432,7 +441,9 @@ export type AzureSqlDatabase = {
432
441
  readonly server_marketplace_uuid?: string;
433
442
  readonly marketplace_offering_uuid?: string | null;
434
443
  readonly marketplace_offering_name?: string | null;
435
- readonly marketplace_offering_plugin_options?: {} | null;
444
+ readonly marketplace_offering_plugin_options?: {
445
+ [key: string]: unknown;
446
+ } | null;
436
447
  readonly marketplace_category_uuid?: string | null;
437
448
  readonly marketplace_category_name?: string | null;
438
449
  readonly marketplace_resource_uuid?: string | null;
@@ -492,7 +503,9 @@ export type AzureSqlServer = {
492
503
  readonly location_name?: string;
493
504
  readonly marketplace_offering_uuid?: string | null;
494
505
  readonly marketplace_offering_name?: string | null;
495
- readonly marketplace_offering_plugin_options?: {} | null;
506
+ readonly marketplace_offering_plugin_options?: {
507
+ [key: string]: unknown;
508
+ } | null;
496
509
  readonly marketplace_category_uuid?: string | null;
497
510
  readonly marketplace_category_name?: string | null;
498
511
  readonly marketplace_resource_uuid?: string | null;
@@ -577,7 +590,9 @@ export type AzureVirtualMachine = {
577
590
  readonly size_name?: string;
578
591
  readonly marketplace_offering_uuid?: string | null;
579
592
  readonly marketplace_offering_name?: string | null;
580
- readonly marketplace_offering_plugin_options?: {} | null;
593
+ readonly marketplace_offering_plugin_options?: {
594
+ [key: string]: unknown;
595
+ } | null;
581
596
  readonly marketplace_category_uuid?: string | null;
582
597
  readonly marketplace_category_name?: string | null;
583
598
  readonly marketplace_resource_uuid?: string | null;
@@ -746,6 +761,9 @@ export type BasicUser = {
746
761
  username: string;
747
762
  readonly full_name: string;
748
763
  native_name?: string;
764
+ /**
765
+ * Email address
766
+ */
749
767
  email?: string;
750
768
  image?: string | null;
751
769
  };
@@ -788,7 +806,9 @@ export type BookingResource = {
788
806
  readonly plan_name?: string | null;
789
807
  readonly plan_uuid?: string | null;
790
808
  readonly plan_description?: string | null;
791
- readonly attributes?: {};
809
+ readonly attributes?: {
810
+ [key: string]: unknown;
811
+ };
792
812
  readonly limits?: {
793
813
  [key: string]: number;
794
814
  };
@@ -1257,6 +1277,9 @@ export type Comment = {
1257
1277
  readonly author_name: string;
1258
1278
  readonly author_uuid: string;
1259
1279
  readonly author_user: string;
1280
+ /**
1281
+ * Email address
1282
+ */
1260
1283
  readonly author_email: string;
1261
1284
  readonly backend_id: string | null;
1262
1285
  remote_id?: string | null;
@@ -1787,6 +1810,9 @@ export type Customer = {
1787
1810
  readonly blocked?: boolean;
1788
1811
  readonly archived?: boolean;
1789
1812
  readonly default_tax_percent?: string;
1813
+ /**
1814
+ * Start date of accounting
1815
+ */
1790
1816
  readonly accounting_start_date?: string;
1791
1817
  readonly projects_count?: number;
1792
1818
  readonly users_count?: number;
@@ -1805,6 +1831,9 @@ export type Customer = {
1805
1831
  abbreviation?: string;
1806
1832
  contact_details?: string;
1807
1833
  readonly agreement_number?: string;
1834
+ /**
1835
+ * Email address
1836
+ */
1808
1837
  email?: string;
1809
1838
  phone_number?: string;
1810
1839
  /**
@@ -1875,6 +1904,9 @@ export type CustomerDetails = {
1875
1904
  address?: string;
1876
1905
  country?: string;
1877
1906
  readonly country_name?: string | null;
1907
+ /**
1908
+ * Email address
1909
+ */
1878
1910
  email?: string;
1879
1911
  postal?: string;
1880
1912
  phone_number?: string;
@@ -1964,6 +1996,9 @@ export type CustomerRequest = {
1964
1996
  native_name?: string;
1965
1997
  abbreviation?: string;
1966
1998
  contact_details?: string;
1999
+ /**
2000
+ * Email address
2001
+ */
1967
2002
  email?: string;
1968
2003
  phone_number?: string;
1969
2004
  registration_code?: string;
@@ -2013,6 +2048,9 @@ export type CustomerUser = {
2013
2048
  */
2014
2049
  username?: string;
2015
2050
  readonly full_name?: string;
2051
+ /**
2052
+ * Email address
2053
+ */
2016
2054
  email?: string;
2017
2055
  readonly role_name?: string | null;
2018
2056
  readonly projects?: Array<NestedProjectPermission>;
@@ -2100,7 +2138,9 @@ export type DigitalOceanDroplet = {
2100
2138
  readonly region_name?: string;
2101
2139
  readonly marketplace_offering_uuid?: string | null;
2102
2140
  readonly marketplace_offering_name?: string | null;
2103
- readonly marketplace_offering_plugin_options?: {} | null;
2141
+ readonly marketplace_offering_plugin_options?: {
2142
+ [key: string]: unknown;
2143
+ } | null;
2104
2144
  readonly marketplace_category_uuid?: string | null;
2105
2145
  readonly marketplace_category_name?: string | null;
2106
2146
  readonly marketplace_resource_uuid?: string | null;
@@ -2284,6 +2324,9 @@ export type FinancialReport = {
2284
2324
  readonly uuid: string;
2285
2325
  abbreviation?: string;
2286
2326
  readonly created: string;
2327
+ /**
2328
+ * Start date of accounting
2329
+ */
2287
2330
  accounting_start_date?: string;
2288
2331
  registration_code?: string;
2289
2332
  agreement_number?: string;
@@ -2326,6 +2369,9 @@ export type FirecrestJob = {
2326
2369
  readonly backend_id?: string;
2327
2370
  readonly access_url?: string | null;
2328
2371
  runtime_state?: string;
2372
+ /**
2373
+ * Batch script file
2374
+ */
2329
2375
  file?: string;
2330
2376
  /**
2331
2377
  * Reference to user which submitted job
@@ -2336,6 +2382,9 @@ export type FirecrestJob = {
2336
2382
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
2337
2383
  */
2338
2384
  readonly user_username?: string | null;
2385
+ /**
2386
+ * Job output
2387
+ */
2339
2388
  readonly report?: unknown;
2340
2389
  };
2341
2390
  export type FirecrestJobRequest = {
@@ -2344,6 +2393,9 @@ export type FirecrestJobRequest = {
2344
2393
  service_settings: string;
2345
2394
  project: string;
2346
2395
  runtime_state?: string;
2396
+ /**
2397
+ * Batch script file
2398
+ */
2347
2399
  file: Blob | File;
2348
2400
  };
2349
2401
  export type FreeipaProfile = {
@@ -2356,6 +2408,9 @@ export type FreeipaProfile = {
2356
2408
  * Indicates when the user has agreed with the policy.
2357
2409
  */
2358
2410
  agreement_date?: string;
2411
+ /**
2412
+ * Active
2413
+ */
2359
2414
  readonly is_active: boolean;
2360
2415
  readonly user: string;
2361
2416
  readonly user_uuid: string;
@@ -2568,10 +2623,16 @@ export type InstanceFlavorChangeRequest = {
2568
2623
  export type IntegrationStatus = {
2569
2624
  readonly agent_type?: string;
2570
2625
  readonly status?: string;
2626
+ /**
2627
+ * Time of latest backend request
2628
+ */
2571
2629
  readonly last_request_timestamp?: string | null;
2572
2630
  };
2573
2631
  export type IntegrationStatusDetails = {
2574
2632
  readonly status: string;
2633
+ /**
2634
+ * Time of latest backend request
2635
+ */
2575
2636
  readonly last_request_timestamp: string | null;
2576
2637
  offering: string;
2577
2638
  readonly url: string;
@@ -2637,6 +2698,9 @@ export type Invoice = {
2637
2698
  readonly url?: string;
2638
2699
  readonly uuid?: string;
2639
2700
  readonly number?: number;
2701
+ /**
2702
+ * Organization
2703
+ */
2640
2704
  customer?: string;
2641
2705
  price?: string;
2642
2706
  tax?: string;
@@ -2828,6 +2892,9 @@ export type Issue = {
2828
2892
  assignee?: string | null;
2829
2893
  readonly assignee_uuid: string | null;
2830
2894
  readonly assignee_name: string | null;
2895
+ /**
2896
+ * Organization
2897
+ */
2831
2898
  customer?: string | null;
2832
2899
  readonly customer_uuid: string | null;
2833
2900
  readonly customer_name: string | null;
@@ -2860,6 +2927,9 @@ export type IssueRequest = {
2860
2927
  priority?: string;
2861
2928
  caller?: string | null;
2862
2929
  assignee?: string | null;
2930
+ /**
2931
+ * Organization
2932
+ */
2863
2933
  customer?: string | null;
2864
2934
  project?: string | null;
2865
2935
  resource?: string;
@@ -2888,11 +2958,15 @@ export type JiraIssue = {
2888
2958
  };
2889
2959
  export type JiraIssueFields = {
2890
2960
  project: JiraIssueProject;
2891
- comment?: {};
2961
+ comment?: {
2962
+ [key: string]: unknown;
2963
+ };
2892
2964
  };
2893
2965
  export type JiraIssueFieldsRequest = {
2894
2966
  project: JiraIssueProjectRequest;
2895
- comment?: {};
2967
+ comment?: {
2968
+ [key: string]: unknown;
2969
+ };
2896
2970
  };
2897
2971
  export type JiraIssueProject = {
2898
2972
  id: string;
@@ -2911,6 +2985,9 @@ export type JiraIssueRequest = {
2911
2985
  export type KeycloakGroup = {
2912
2986
  readonly uuid: string;
2913
2987
  readonly url: string;
2988
+ /**
2989
+ * Group name
2990
+ */
2914
2991
  readonly name: string;
2915
2992
  readonly backend_id: string;
2916
2993
  readonly scope_type: string;
@@ -3079,6 +3156,9 @@ export type MarketplaceProviderCustomer = {
3079
3156
  slug?: string;
3080
3157
  abbreviation?: string;
3081
3158
  phone_number?: string;
3159
+ /**
3160
+ * Email address
3161
+ */
3082
3162
  email?: string;
3083
3163
  readonly payment_profiles?: Array<PaymentProfile>;
3084
3164
  billing_price_estimate?: NestedPriceEstimate;
@@ -3109,6 +3189,9 @@ export type MarketplaceServiceProviderUser = {
3109
3189
  first_name?: string;
3110
3190
  last_name?: string;
3111
3191
  organization?: string;
3192
+ /**
3193
+ * Email address
3194
+ */
3112
3195
  email?: string;
3113
3196
  phone_number?: string;
3114
3197
  readonly projects_count?: number;
@@ -3121,6 +3204,7 @@ export type MarketplaceServiceProviderUser = {
3121
3204
  */
3122
3205
  affiliations?: unknown;
3123
3206
  /**
3207
+ * Active
3124
3208
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
3125
3209
  */
3126
3210
  is_active?: boolean;
@@ -3463,8 +3547,17 @@ export type MergedSecretOptions = {
3463
3547
  * Organization UUID
3464
3548
  */
3465
3549
  customer_uuid?: string;
3550
+ /**
3551
+ * Rancher server URL
3552
+ */
3466
3553
  backend_url?: string;
3554
+ /**
3555
+ * Rancher access key
3556
+ */
3467
3557
  username?: string;
3558
+ /**
3559
+ * Rancher secret key
3560
+ */
3468
3561
  password?: string;
3469
3562
  cloud_init_template?: string;
3470
3563
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -3607,8 +3700,17 @@ export type MergedSecretOptionsRequest = {
3607
3700
  * Organization UUID
3608
3701
  */
3609
3702
  customer_uuid?: string;
3703
+ /**
3704
+ * Rancher server URL
3705
+ */
3610
3706
  backend_url?: string;
3707
+ /**
3708
+ * Rancher access key
3709
+ */
3611
3710
  username?: string;
3711
+ /**
3712
+ * Rancher secret key
3713
+ */
3612
3714
  password?: string;
3613
3715
  cloud_init_template?: string;
3614
3716
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -4115,7 +4217,9 @@ export type Offering = {
4115
4217
  category?: string;
4116
4218
  readonly category_uuid?: string;
4117
4219
  readonly category_title?: string;
4118
- readonly attributes?: {};
4220
+ readonly attributes?: {
4221
+ [key: string]: unknown;
4222
+ };
4119
4223
  options?: OfferingOptions;
4120
4224
  resource_options?: OfferingOptions;
4121
4225
  readonly components?: Array<OfferingComponent>;
@@ -4287,7 +4391,9 @@ export type OfferingCreate = {
4287
4391
  components?: Array<OfferingComponent>;
4288
4392
  plugin_options: MergedPluginOptions;
4289
4393
  secret_options: MergedSecretOptions;
4290
- readonly service_attributes: {};
4394
+ readonly service_attributes: {
4395
+ [key: string]: unknown;
4396
+ };
4291
4397
  state: OfferingState;
4292
4398
  vendor_details?: string;
4293
4399
  getting_started?: string;
@@ -4474,6 +4580,9 @@ export type OfferingPauseRequest = {
4474
4580
  };
4475
4581
  export type OfferingPermission = {
4476
4582
  readonly url: string;
4583
+ /**
4584
+ * ID
4585
+ */
4477
4586
  readonly pk: number;
4478
4587
  readonly created: string;
4479
4588
  expiration_time?: string | null;
@@ -4492,6 +4601,9 @@ export type OfferingPermission = {
4492
4601
  */
4493
4602
  readonly user_username: string;
4494
4603
  readonly user_uuid: string;
4604
+ /**
4605
+ * Email address
4606
+ */
4495
4607
  readonly user_email: string;
4496
4608
  };
4497
4609
  export type OfferingReference = {
@@ -4681,7 +4793,9 @@ export type OpenStackBackup = {
4681
4793
  readonly tenant_uuid?: string;
4682
4794
  readonly marketplace_offering_uuid?: string | null;
4683
4795
  readonly marketplace_offering_name?: string | null;
4684
- readonly marketplace_offering_plugin_options?: {} | null;
4796
+ readonly marketplace_offering_plugin_options?: {
4797
+ [key: string]: unknown;
4798
+ } | null;
4685
4799
  readonly marketplace_category_uuid?: string | null;
4686
4800
  readonly marketplace_category_name?: string | null;
4687
4801
  readonly marketplace_resource_uuid?: string | null;
@@ -4797,7 +4911,9 @@ export type OpenStackFloatingIp = {
4797
4911
  readonly instance_url?: string | null;
4798
4912
  readonly marketplace_offering_uuid?: string | null;
4799
4913
  readonly marketplace_offering_name?: string | null;
4800
- readonly marketplace_offering_plugin_options?: {} | null;
4914
+ readonly marketplace_offering_plugin_options?: {
4915
+ [key: string]: unknown;
4916
+ } | null;
4801
4917
  readonly marketplace_category_uuid?: string | null;
4802
4918
  readonly marketplace_category_name?: string | null;
4803
4919
  readonly marketplace_resource_uuid?: string | null;
@@ -4910,7 +5026,9 @@ export type OpenStackInstance = {
4910
5026
  rancher_cluster?: RancherClusterReference | null;
4911
5027
  readonly marketplace_offering_uuid?: string | null;
4912
5028
  readonly marketplace_offering_name?: string | null;
4913
- readonly marketplace_offering_plugin_options?: {} | null;
5029
+ readonly marketplace_offering_plugin_options?: {
5030
+ [key: string]: unknown;
5031
+ } | null;
4914
5032
  readonly marketplace_category_uuid?: string | null;
4915
5033
  readonly marketplace_category_name?: string | null;
4916
5034
  readonly marketplace_resource_uuid?: string | null;
@@ -5087,7 +5205,9 @@ export type OpenStackNetwork = {
5087
5205
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
5088
5206
  readonly marketplace_offering_uuid?: string | null;
5089
5207
  readonly marketplace_offering_name?: string | null;
5090
- readonly marketplace_offering_plugin_options?: {} | null;
5208
+ readonly marketplace_offering_plugin_options?: {
5209
+ [key: string]: unknown;
5210
+ } | null;
5091
5211
  readonly marketplace_category_uuid?: string | null;
5092
5212
  readonly marketplace_category_name?: string | null;
5093
5213
  readonly marketplace_resource_uuid?: string | null;
@@ -5143,7 +5263,9 @@ export type OpenStackPort = {
5143
5263
  readonly status?: string | null;
5144
5264
  readonly marketplace_offering_uuid?: string | null;
5145
5265
  readonly marketplace_offering_name?: string | null;
5146
- readonly marketplace_offering_plugin_options?: {} | null;
5266
+ readonly marketplace_offering_plugin_options?: {
5267
+ [key: string]: unknown;
5268
+ } | null;
5147
5269
  readonly marketplace_category_uuid?: string | null;
5148
5270
  readonly marketplace_category_name?: string | null;
5149
5271
  readonly marketplace_resource_uuid?: string | null;
@@ -5207,7 +5329,9 @@ export type OpenStackRouter = {
5207
5329
  readonly ports?: Array<OpenStackNestedPort>;
5208
5330
  readonly marketplace_offering_uuid?: string | null;
5209
5331
  readonly marketplace_offering_name?: string | null;
5210
- readonly marketplace_offering_plugin_options?: {} | null;
5332
+ readonly marketplace_offering_plugin_options?: {
5333
+ [key: string]: unknown;
5334
+ } | null;
5211
5335
  readonly marketplace_category_uuid?: string | null;
5212
5336
  readonly marketplace_category_name?: string | null;
5213
5337
  readonly marketplace_resource_uuid?: string | null;
@@ -5258,7 +5382,9 @@ export type OpenStackSecurityGroup = {
5258
5382
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
5259
5383
  readonly marketplace_offering_uuid?: string | null;
5260
5384
  readonly marketplace_offering_name?: string | null;
5261
- readonly marketplace_offering_plugin_options?: {} | null;
5385
+ readonly marketplace_offering_plugin_options?: {
5386
+ [key: string]: unknown;
5387
+ } | null;
5262
5388
  readonly marketplace_category_uuid?: string | null;
5263
5389
  readonly marketplace_category_name?: string | null;
5264
5390
  readonly marketplace_resource_uuid?: string | null;
@@ -5346,7 +5472,9 @@ export type OpenStackServerGroup = {
5346
5472
  readonly instances?: Array<OpenStackNestedInstance>;
5347
5473
  readonly marketplace_offering_uuid?: string | null;
5348
5474
  readonly marketplace_offering_name?: string | null;
5349
- readonly marketplace_offering_plugin_options?: {} | null;
5475
+ readonly marketplace_offering_plugin_options?: {
5476
+ [key: string]: unknown;
5477
+ } | null;
5350
5478
  readonly marketplace_category_uuid?: string | null;
5351
5479
  readonly marketplace_category_name?: string | null;
5352
5480
  readonly marketplace_resource_uuid?: string | null;
@@ -5403,7 +5531,9 @@ export type OpenStackSnapshot = {
5403
5531
  kept_until?: string | null;
5404
5532
  readonly marketplace_offering_uuid?: string | null;
5405
5533
  readonly marketplace_offering_name?: string | null;
5406
- readonly marketplace_offering_plugin_options?: {} | null;
5534
+ readonly marketplace_offering_plugin_options?: {
5535
+ [key: string]: unknown;
5536
+ } | null;
5407
5537
  readonly marketplace_category_uuid?: string | null;
5408
5538
  readonly marketplace_category_name?: string | null;
5409
5539
  readonly marketplace_resource_uuid?: string | null;
@@ -5502,7 +5632,9 @@ export type OpenStackSubNet = {
5502
5632
  readonly is_connected?: boolean;
5503
5633
  readonly marketplace_offering_uuid?: string | null;
5504
5634
  readonly marketplace_offering_name?: string | null;
5505
- readonly marketplace_offering_plugin_options?: {} | null;
5635
+ readonly marketplace_offering_plugin_options?: {
5636
+ [key: string]: unknown;
5637
+ } | null;
5506
5638
  readonly marketplace_category_uuid?: string | null;
5507
5639
  readonly marketplace_category_name?: string | null;
5508
5640
  readonly marketplace_resource_uuid?: string | null;
@@ -5566,7 +5698,9 @@ export type OpenStackTenant = {
5566
5698
  default_volume_type_name?: string;
5567
5699
  readonly marketplace_offering_uuid?: string | null;
5568
5700
  readonly marketplace_offering_name?: string | null;
5569
- readonly marketplace_offering_plugin_options?: {} | null;
5701
+ readonly marketplace_offering_plugin_options?: {
5702
+ [key: string]: unknown;
5703
+ } | null;
5570
5704
  readonly marketplace_category_uuid?: string | null;
5571
5705
  readonly marketplace_category_name?: string | null;
5572
5706
  readonly marketplace_resource_uuid?: string | null;
@@ -5670,7 +5804,9 @@ export type OpenStackVolume = {
5670
5804
  readonly extend_enabled?: boolean;
5671
5805
  readonly marketplace_offering_uuid?: string | null;
5672
5806
  readonly marketplace_offering_name?: string | null;
5673
- readonly marketplace_offering_plugin_options?: {} | null;
5807
+ readonly marketplace_offering_plugin_options?: {
5808
+ [key: string]: unknown;
5809
+ } | null;
5674
5810
  readonly marketplace_category_uuid?: string | null;
5675
5811
  readonly marketplace_category_name?: string | null;
5676
5812
  readonly marketplace_resource_uuid?: string | null;
@@ -5773,6 +5909,9 @@ export type OrderCreate = {
5773
5909
  readonly marketplace_resource_uuid: string;
5774
5910
  readonly error_message: string;
5775
5911
  callback_url?: string | null;
5912
+ /**
5913
+ * Completion time
5914
+ */
5776
5915
  readonly completed_at: string | null;
5777
5916
  readonly url: string;
5778
5917
  readonly created_by: string;
@@ -5841,7 +5980,9 @@ export type OrderDetails = {
5841
5980
  /**
5842
5981
  * Get attributes excluding secret attributes, such as username and password.
5843
5982
  */
5844
- readonly attributes?: {};
5983
+ readonly attributes?: {
5984
+ [key: string]: unknown;
5985
+ };
5845
5986
  limits?: {
5846
5987
  [key: string]: number;
5847
5988
  };
@@ -5858,6 +5999,9 @@ export type OrderDetails = {
5858
5999
  readonly marketplace_resource_uuid?: string;
5859
6000
  readonly error_message?: string;
5860
6001
  callback_url?: string | null;
6002
+ /**
6003
+ * Completion time
6004
+ */
5861
6005
  readonly completed_at?: string | null;
5862
6006
  /**
5863
6007
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -6079,6 +6223,9 @@ export type PatchedCustomerRequest = {
6079
6223
  native_name?: string;
6080
6224
  abbreviation?: string;
6081
6225
  contact_details?: string;
6226
+ /**
6227
+ * Email address
6228
+ */
6082
6229
  email?: string;
6083
6230
  phone_number?: string;
6084
6231
  registration_code?: string;
@@ -6365,8 +6512,14 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
6365
6512
  };
6366
6513
  export type PatchedProjectRequest = {
6367
6514
  name?: string;
6515
+ /**
6516
+ * Organization
6517
+ */
6368
6518
  customer?: string;
6369
6519
  description?: string;
6520
+ /**
6521
+ * Project type
6522
+ */
6370
6523
  type?: string | null;
6371
6524
  backend_id?: string;
6372
6525
  start_date?: string | null;
@@ -6459,7 +6612,9 @@ export type PatchedRancherApplicationRequest = {
6459
6612
  namespace?: string;
6460
6613
  namespace_name?: string;
6461
6614
  version?: string;
6462
- answers?: {};
6615
+ answers?: {
6616
+ [key: string]: unknown;
6617
+ };
6463
6618
  };
6464
6619
  export type PatchedRancherCatalogRequest = {
6465
6620
  name?: string;
@@ -6567,19 +6722,61 @@ export type PatchedRobotAccountRequest = {
6567
6722
  export type PatchedRoleDetailsRequest = {
6568
6723
  name?: string;
6569
6724
  description?: string;
6725
+ /**
6726
+ * Description [en]
6727
+ */
6570
6728
  description_en?: string | null;
6729
+ /**
6730
+ * Description [et]
6731
+ */
6571
6732
  description_et?: string | null;
6733
+ /**
6734
+ * Description [lt]
6735
+ */
6572
6736
  description_lt?: string | null;
6737
+ /**
6738
+ * Description [lv]
6739
+ */
6573
6740
  description_lv?: string | null;
6741
+ /**
6742
+ * Description [ru]
6743
+ */
6574
6744
  description_ru?: string | null;
6745
+ /**
6746
+ * Description [it]
6747
+ */
6575
6748
  description_it?: string | null;
6749
+ /**
6750
+ * Description [de]
6751
+ */
6576
6752
  description_de?: string | null;
6753
+ /**
6754
+ * Description [da]
6755
+ */
6577
6756
  description_da?: string | null;
6757
+ /**
6758
+ * Description [sv]
6759
+ */
6578
6760
  description_sv?: string | null;
6761
+ /**
6762
+ * Description [es]
6763
+ */
6579
6764
  description_es?: string | null;
6765
+ /**
6766
+ * Description [fr]
6767
+ */
6580
6768
  description_fr?: string | null;
6769
+ /**
6770
+ * Description [nb]
6771
+ */
6581
6772
  description_nb?: string | null;
6773
+ /**
6774
+ * Description [ar]
6775
+ */
6582
6776
  description_ar?: string | null;
6777
+ /**
6778
+ * Description [cs]
6779
+ */
6583
6780
  description_cs?: string | null;
6584
6781
  is_active?: boolean;
6585
6782
  };
@@ -6624,14 +6821,17 @@ export type PatchedUserRequest = {
6624
6821
  organization?: string;
6625
6822
  description?: string;
6626
6823
  /**
6824
+ * Staff status
6627
6825
  * Designates whether the user can log into this admin site.
6628
6826
  */
6629
6827
  is_staff?: boolean;
6630
6828
  /**
6829
+ * Active
6631
6830
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
6632
6831
  */
6633
6832
  is_active?: boolean;
6634
6833
  /**
6834
+ * Support status
6635
6835
  * Designates whether the user is a global support user.
6636
6836
  */
6637
6837
  is_support?: boolean;
@@ -6789,7 +6989,13 @@ export type PlanComponent = {
6789
6989
  readonly measured_unit: string;
6790
6990
  billing_type: BillingTypeEnum;
6791
6991
  amount?: number;
6992
+ /**
6993
+ * Price per unit per billing period.
6994
+ */
6792
6995
  price?: string;
6996
+ /**
6997
+ * Price per unit for future month.
6998
+ */
6793
6999
  future_price?: string | null;
6794
7000
  };
6795
7001
  export type PlanUsageResponse = {
@@ -6833,6 +7039,9 @@ export type Project = {
6833
7039
  readonly uuid?: string;
6834
7040
  name?: string;
6835
7041
  readonly slug?: string;
7042
+ /**
7043
+ * Organization
7044
+ */
6836
7045
  customer?: string;
6837
7046
  readonly customer_uuid?: string;
6838
7047
  readonly customer_name?: string;
@@ -6841,6 +7050,9 @@ export type Project = {
6841
7050
  readonly customer_abbreviation?: string;
6842
7051
  description?: string;
6843
7052
  readonly created?: string;
7053
+ /**
7054
+ * Project type
7055
+ */
6844
7056
  type?: string | null;
6845
7057
  readonly type_name?: string | null;
6846
7058
  readonly type_uuid?: string | null;
@@ -6956,6 +7168,9 @@ export type ProjectPermissionLog = {
6956
7168
  */
6957
7169
  readonly user_username?: string;
6958
7170
  readonly user_uuid?: string;
7171
+ /**
7172
+ * Email address
7173
+ */
6959
7174
  readonly user_email?: string;
6960
7175
  };
6961
7176
  export type ProjectQuotas = {
@@ -6966,8 +7181,14 @@ export type ProjectQuotas = {
6966
7181
  };
6967
7182
  export type ProjectRequest = {
6968
7183
  name: string;
7184
+ /**
7185
+ * Organization
7186
+ */
6969
7187
  customer: string;
6970
7188
  description?: string;
7189
+ /**
7190
+ * Project type
7191
+ */
6971
7192
  type?: string | null;
6972
7193
  backend_id?: string;
6973
7194
  start_date?: string | null;
@@ -7030,6 +7251,9 @@ export type ProjectUser = {
7030
7251
  */
7031
7252
  username: string;
7032
7253
  readonly full_name: string;
7254
+ /**
7255
+ * Email address
7256
+ */
7033
7257
  email?: string;
7034
7258
  readonly role: string;
7035
7259
  readonly expiration_time: string | null;
@@ -7319,6 +7543,9 @@ export type ProviderOfferingCustomer = {
7319
7543
  slug: string;
7320
7544
  abbreviation?: string;
7321
7545
  phone_number?: string;
7546
+ /**
7547
+ * Email address
7548
+ */
7322
7549
  email?: string;
7323
7550
  };
7324
7551
  export type ProviderOfferingDetails = {
@@ -7347,13 +7574,17 @@ export type ProviderOfferingDetails = {
7347
7574
  category?: string;
7348
7575
  readonly category_uuid?: string;
7349
7576
  readonly category_title?: string;
7350
- readonly attributes?: {};
7577
+ readonly attributes?: {
7578
+ [key: string]: unknown;
7579
+ };
7351
7580
  options?: OfferingOptions;
7352
7581
  resource_options?: OfferingOptions;
7353
7582
  readonly components?: Array<OfferingComponent>;
7354
7583
  plugin_options?: MergedPluginOptions;
7355
7584
  secret_options?: MergedSecretOptions;
7356
- readonly service_attributes?: {};
7585
+ readonly service_attributes?: {
7586
+ [key: string]: unknown;
7587
+ };
7357
7588
  state?: OfferingState;
7358
7589
  vendor_details?: string;
7359
7590
  getting_started?: string;
@@ -7515,6 +7746,9 @@ export type ProviderRequestedOffering = {
7515
7746
  call: string;
7516
7747
  readonly description: string;
7517
7748
  readonly created_by_name: string;
7749
+ /**
7750
+ * Email address
7751
+ */
7518
7752
  readonly created_by_email: string;
7519
7753
  };
7520
7754
  export type ProviderRequestedResource = {
@@ -7536,6 +7770,9 @@ export type ProviderRequestedResource = {
7536
7770
  export type ProviderUser = {
7537
7771
  readonly uuid?: string;
7538
7772
  readonly full_name?: string;
7773
+ /**
7774
+ * Email address
7775
+ */
7539
7776
  email?: string;
7540
7777
  image?: string | null;
7541
7778
  };
@@ -7597,7 +7834,9 @@ export type PublicOfferingDetails = {
7597
7834
  category?: string;
7598
7835
  readonly category_uuid?: string;
7599
7836
  readonly category_title?: string;
7600
- readonly attributes?: {};
7837
+ readonly attributes?: {
7838
+ [key: string]: unknown;
7839
+ };
7601
7840
  options?: OfferingOptions;
7602
7841
  resource_options?: OfferingOptions;
7603
7842
  readonly components?: Array<OfferingComponent>;
@@ -7700,14 +7939,18 @@ export type RancherApplication = {
7700
7939
  rancher_project?: string;
7701
7940
  namespace?: string;
7702
7941
  version?: string;
7703
- answers?: {};
7942
+ answers?: {
7943
+ [key: string]: unknown;
7944
+ };
7704
7945
  readonly rancher_project_name?: string;
7705
7946
  readonly catalog_name?: string;
7706
7947
  readonly template_name?: string;
7707
7948
  readonly external_url?: string | null;
7708
7949
  readonly marketplace_offering_uuid?: string | null;
7709
7950
  readonly marketplace_offering_name?: string | null;
7710
- readonly marketplace_offering_plugin_options?: {} | null;
7951
+ readonly marketplace_offering_plugin_options?: {
7952
+ [key: string]: unknown;
7953
+ } | null;
7711
7954
  readonly marketplace_category_uuid?: string | null;
7712
7955
  readonly marketplace_category_name?: string | null;
7713
7956
  readonly marketplace_resource_uuid?: string | null;
@@ -7730,7 +7973,9 @@ export type RancherApplicationRequest = {
7730
7973
  namespace?: string;
7731
7974
  namespace_name?: string;
7732
7975
  version: string;
7733
- answers?: {};
7976
+ answers?: {
7977
+ [key: string]: unknown;
7978
+ };
7734
7979
  };
7735
7980
  export type RancherCatalog = {
7736
7981
  readonly uuid: string;
@@ -7850,7 +8095,9 @@ export type RancherCluster = {
7850
8095
  readonly kubernetes_version?: string;
7851
8096
  readonly marketplace_offering_uuid?: string | null;
7852
8097
  readonly marketplace_offering_name?: string | null;
7853
- readonly marketplace_offering_plugin_options?: {} | null;
8098
+ readonly marketplace_offering_plugin_options?: {
8099
+ [key: string]: unknown;
8100
+ } | null;
7854
8101
  readonly marketplace_category_uuid?: string | null;
7855
8102
  readonly marketplace_category_name?: string | null;
7856
8103
  readonly marketplace_resource_uuid?: string | null;
@@ -7906,8 +8153,17 @@ export type RancherClusterTemplate = {
7906
8153
  nodes: Array<RancherClusterTemplateNode>;
7907
8154
  };
7908
8155
  export type RancherClusterTemplateNode = {
8156
+ /**
8157
+ * Min vCPU (cores)
8158
+ */
7909
8159
  min_vcpu: number;
8160
+ /**
8161
+ * Min RAM (GB)
8162
+ */
7910
8163
  min_ram: number;
8164
+ /**
8165
+ * System volume size (GB)
8166
+ */
7911
8167
  system_volume_size: number;
7912
8168
  preferred_volume_type?: string;
7913
8169
  role: RoleEnum;
@@ -8007,7 +8263,9 @@ export type RancherIngress = {
8007
8263
  rules?: unknown;
8008
8264
  readonly marketplace_offering_uuid?: string | null;
8009
8265
  readonly marketplace_offering_name?: string | null;
8010
- readonly marketplace_offering_plugin_options?: {} | null;
8266
+ readonly marketplace_offering_plugin_options?: {
8267
+ [key: string]: unknown;
8268
+ } | null;
8011
8269
  readonly marketplace_category_uuid?: string | null;
8012
8270
  readonly marketplace_category_name?: string | null;
8013
8271
  readonly marketplace_resource_uuid?: string | null;
@@ -8188,7 +8446,9 @@ export type RancherService = {
8188
8446
  target_workloads?: Array<RancherNestedWorkload>;
8189
8447
  readonly marketplace_offering_uuid?: string | null;
8190
8448
  readonly marketplace_offering_name?: string | null;
8191
- readonly marketplace_offering_plugin_options?: {} | null;
8449
+ readonly marketplace_offering_plugin_options?: {
8450
+ [key: string]: unknown;
8451
+ } | null;
8192
8452
  readonly marketplace_category_uuid?: string | null;
8193
8453
  readonly marketplace_category_name?: string | null;
8194
8454
  readonly marketplace_resource_uuid?: string | null;
@@ -8233,6 +8493,9 @@ export type RancherTemplateBaseQuestion = {
8233
8493
  description?: string;
8234
8494
  variable: string;
8235
8495
  required?: boolean;
8496
+ /**
8497
+ * Validate
8498
+ */
8236
8499
  validate_?: unknown;
8237
8500
  type: RancherTemplateQuestionType;
8238
8501
  default?: string | null;
@@ -8244,6 +8507,9 @@ export type RancherTemplateQuestion = {
8244
8507
  description?: string;
8245
8508
  variable: string;
8246
8509
  required?: boolean;
8510
+ /**
8511
+ * Validate
8512
+ */
8247
8513
  validate_?: unknown;
8248
8514
  type: RancherTemplateQuestionType;
8249
8515
  default?: string | null;
@@ -8492,7 +8758,9 @@ export type Resource = {
8492
8758
  readonly plan_name?: string | null;
8493
8759
  readonly plan_uuid?: string | null;
8494
8760
  readonly plan_description?: string | null;
8495
- readonly attributes?: {};
8761
+ readonly attributes?: {
8762
+ [key: string]: unknown;
8763
+ };
8496
8764
  readonly limits?: {
8497
8765
  [key: string]: number;
8498
8766
  };
@@ -8636,6 +8904,9 @@ export type ResourceSwitchPlanRequest = {
8636
8904
  plan: string;
8637
8905
  };
8638
8906
  export type ResourceTerminateRequest = {
8907
+ /**
8908
+ * Termination attributes
8909
+ */
8639
8910
  attributes?: unknown;
8640
8911
  };
8641
8912
  export type ResourceUpdate = {
@@ -8801,55 +9072,181 @@ export type RobotAccountRequest = {
8801
9072
  export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
8802
9073
  export type RoleDescription = {
8803
9074
  description?: string;
9075
+ /**
9076
+ * Description [en]
9077
+ */
8804
9078
  description_en?: string | null;
9079
+ /**
9080
+ * Description [et]
9081
+ */
8805
9082
  description_et?: string | null;
9083
+ /**
9084
+ * Description [lt]
9085
+ */
8806
9086
  description_lt?: string | null;
9087
+ /**
9088
+ * Description [lv]
9089
+ */
8807
9090
  description_lv?: string | null;
9091
+ /**
9092
+ * Description [ru]
9093
+ */
8808
9094
  description_ru?: string | null;
9095
+ /**
9096
+ * Description [it]
9097
+ */
8809
9098
  description_it?: string | null;
9099
+ /**
9100
+ * Description [de]
9101
+ */
8810
9102
  description_de?: string | null;
9103
+ /**
9104
+ * Description [da]
9105
+ */
8811
9106
  description_da?: string | null;
9107
+ /**
9108
+ * Description [sv]
9109
+ */
8812
9110
  description_sv?: string | null;
9111
+ /**
9112
+ * Description [es]
9113
+ */
8813
9114
  description_es?: string | null;
9115
+ /**
9116
+ * Description [fr]
9117
+ */
8814
9118
  description_fr?: string | null;
9119
+ /**
9120
+ * Description [nb]
9121
+ */
8815
9122
  description_nb?: string | null;
9123
+ /**
9124
+ * Description [ar]
9125
+ */
8816
9126
  description_ar?: string | null;
9127
+ /**
9128
+ * Description [cs]
9129
+ */
8817
9130
  description_cs?: string | null;
8818
9131
  };
8819
9132
  export type RoleDescriptionRequest = {
8820
9133
  description?: string;
9134
+ /**
9135
+ * Description [en]
9136
+ */
8821
9137
  description_en?: string | null;
9138
+ /**
9139
+ * Description [et]
9140
+ */
8822
9141
  description_et?: string | null;
9142
+ /**
9143
+ * Description [lt]
9144
+ */
8823
9145
  description_lt?: string | null;
9146
+ /**
9147
+ * Description [lv]
9148
+ */
8824
9149
  description_lv?: string | null;
9150
+ /**
9151
+ * Description [ru]
9152
+ */
8825
9153
  description_ru?: string | null;
9154
+ /**
9155
+ * Description [it]
9156
+ */
8826
9157
  description_it?: string | null;
9158
+ /**
9159
+ * Description [de]
9160
+ */
8827
9161
  description_de?: string | null;
9162
+ /**
9163
+ * Description [da]
9164
+ */
8828
9165
  description_da?: string | null;
9166
+ /**
9167
+ * Description [sv]
9168
+ */
8829
9169
  description_sv?: string | null;
9170
+ /**
9171
+ * Description [es]
9172
+ */
8830
9173
  description_es?: string | null;
9174
+ /**
9175
+ * Description [fr]
9176
+ */
8831
9177
  description_fr?: string | null;
9178
+ /**
9179
+ * Description [nb]
9180
+ */
8832
9181
  description_nb?: string | null;
9182
+ /**
9183
+ * Description [ar]
9184
+ */
8833
9185
  description_ar?: string | null;
9186
+ /**
9187
+ * Description [cs]
9188
+ */
8834
9189
  description_cs?: string | null;
8835
9190
  };
8836
9191
  export type RoleDetails = {
8837
9192
  readonly uuid?: string;
8838
9193
  name?: string;
8839
9194
  description?: string;
9195
+ /**
9196
+ * Description [en]
9197
+ */
8840
9198
  description_en?: string | null;
9199
+ /**
9200
+ * Description [et]
9201
+ */
8841
9202
  description_et?: string | null;
9203
+ /**
9204
+ * Description [lt]
9205
+ */
8842
9206
  description_lt?: string | null;
9207
+ /**
9208
+ * Description [lv]
9209
+ */
8843
9210
  description_lv?: string | null;
9211
+ /**
9212
+ * Description [ru]
9213
+ */
8844
9214
  description_ru?: string | null;
9215
+ /**
9216
+ * Description [it]
9217
+ */
8845
9218
  description_it?: string | null;
9219
+ /**
9220
+ * Description [de]
9221
+ */
8846
9222
  description_de?: string | null;
9223
+ /**
9224
+ * Description [da]
9225
+ */
8847
9226
  description_da?: string | null;
9227
+ /**
9228
+ * Description [sv]
9229
+ */
8848
9230
  description_sv?: string | null;
9231
+ /**
9232
+ * Description [es]
9233
+ */
8849
9234
  description_es?: string | null;
9235
+ /**
9236
+ * Description [fr]
9237
+ */
8850
9238
  description_fr?: string | null;
9239
+ /**
9240
+ * Description [nb]
9241
+ */
8851
9242
  description_nb?: string | null;
9243
+ /**
9244
+ * Description [ar]
9245
+ */
8852
9246
  description_ar?: string | null;
9247
+ /**
9248
+ * Description [cs]
9249
+ */
8853
9250
  description_cs?: string | null;
8854
9251
  readonly permissions?: Array<string>;
8855
9252
  readonly is_system_role?: boolean;
@@ -8861,19 +9258,61 @@ export type RoleEnum = 'agent' | 'server';
8861
9258
  export type RoleModifyRequest = {
8862
9259
  name: string;
8863
9260
  description?: string;
9261
+ /**
9262
+ * Description [en]
9263
+ */
8864
9264
  description_en?: string | null;
9265
+ /**
9266
+ * Description [et]
9267
+ */
8865
9268
  description_et?: string | null;
9269
+ /**
9270
+ * Description [lt]
9271
+ */
8866
9272
  description_lt?: string | null;
9273
+ /**
9274
+ * Description [lv]
9275
+ */
8867
9276
  description_lv?: string | null;
9277
+ /**
9278
+ * Description [ru]
9279
+ */
8868
9280
  description_ru?: string | null;
9281
+ /**
9282
+ * Description [it]
9283
+ */
8869
9284
  description_it?: string | null;
9285
+ /**
9286
+ * Description [de]
9287
+ */
8870
9288
  description_de?: string | null;
9289
+ /**
9290
+ * Description [da]
9291
+ */
8871
9292
  description_da?: string | null;
9293
+ /**
9294
+ * Description [sv]
9295
+ */
8872
9296
  description_sv?: string | null;
9297
+ /**
9298
+ * Description [es]
9299
+ */
8873
9300
  description_es?: string | null;
9301
+ /**
9302
+ * Description [fr]
9303
+ */
8874
9304
  description_fr?: string | null;
9305
+ /**
9306
+ * Description [nb]
9307
+ */
8875
9308
  description_nb?: string | null;
9309
+ /**
9310
+ * Description [ar]
9311
+ */
8876
9312
  description_ar?: string | null;
9313
+ /**
9314
+ * Description [cs]
9315
+ */
8877
9316
  description_cs?: string | null;
8878
9317
  permissions: unknown;
8879
9318
  is_active?: boolean;
@@ -9029,13 +9468,18 @@ export type ServiceSettings = {
9029
9468
  * Anybody can use it
9030
9469
  */
9031
9470
  shared?: boolean;
9471
+ /**
9472
+ * Organization
9473
+ */
9032
9474
  customer?: string | null;
9033
9475
  readonly customer_name?: string | null;
9034
9476
  readonly customer_native_name?: string;
9035
9477
  terms_of_services?: string;
9036
9478
  scope?: string | null;
9037
9479
  readonly scope_uuid?: string;
9038
- readonly options?: {};
9480
+ readonly options?: {
9481
+ [key: string]: unknown;
9482
+ };
9039
9483
  };
9040
9484
  export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
9041
9485
  export type SetMtu = {
@@ -9088,7 +9532,9 @@ export type SlurmAllocation = {
9088
9532
  readonly is_active?: boolean;
9089
9533
  readonly marketplace_offering_uuid?: string | null;
9090
9534
  readonly marketplace_offering_name?: string | null;
9091
- readonly marketplace_offering_plugin_options?: {} | null;
9535
+ readonly marketplace_offering_plugin_options?: {
9536
+ [key: string]: unknown;
9537
+ } | null;
9092
9538
  readonly marketplace_category_uuid?: string | null;
9093
9539
  readonly marketplace_category_name?: string | null;
9094
9540
  readonly marketplace_resource_uuid?: string | null;
@@ -9249,14 +9695,17 @@ export type User = {
9249
9695
  readonly civil_number?: string | null;
9250
9696
  description?: string;
9251
9697
  /**
9698
+ * Staff status
9252
9699
  * Designates whether the user can log into this admin site.
9253
9700
  */
9254
9701
  is_staff?: boolean;
9255
9702
  /**
9703
+ * Active
9256
9704
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9257
9705
  */
9258
9706
  is_active?: boolean;
9259
9707
  /**
9708
+ * Support status
9260
9709
  * Designates whether the user is a global support user.
9261
9710
  */
9262
9711
  is_support?: boolean;
@@ -9294,6 +9743,7 @@ export type User = {
9294
9743
  readonly identity_provider_fields?: Array<string>;
9295
9744
  image?: string | null;
9296
9745
  /**
9746
+ * Source of identity
9297
9747
  * Indicates what identity provider was used.
9298
9748
  */
9299
9749
  readonly identity_source?: string;
@@ -9320,6 +9770,7 @@ export type UserAuthToken = {
9320
9770
  */
9321
9771
  readonly user_username: string;
9322
9772
  /**
9773
+ * Active
9323
9774
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9324
9775
  */
9325
9776
  readonly user_is_active: boolean;
@@ -9344,14 +9795,17 @@ export type UserRequest = {
9344
9795
  organization?: string;
9345
9796
  description?: string;
9346
9797
  /**
9798
+ * Staff status
9347
9799
  * Designates whether the user can log into this admin site.
9348
9800
  */
9349
9801
  is_staff?: boolean;
9350
9802
  /**
9803
+ * Active
9351
9804
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9352
9805
  */
9353
9806
  is_active?: boolean;
9354
9807
  /**
9808
+ * Support status
9355
9809
  * Designates whether the user is a global support user.
9356
9810
  */
9357
9811
  is_support?: boolean;
@@ -9388,6 +9842,9 @@ export type UserRoleDetails = {
9388
9842
  expiration_time?: string | null;
9389
9843
  readonly role_name?: string;
9390
9844
  readonly role_uuid?: string;
9845
+ /**
9846
+ * Email address
9847
+ */
9391
9848
  readonly user_email?: string;
9392
9849
  readonly user_full_name?: string;
9393
9850
  /**
@@ -9493,7 +9950,9 @@ export type VmwareDisk = {
9493
9950
  readonly vm_name?: string;
9494
9951
  readonly marketplace_offering_uuid?: string | null;
9495
9952
  readonly marketplace_offering_name?: string | null;
9496
- readonly marketplace_offering_plugin_options?: {} | null;
9953
+ readonly marketplace_offering_plugin_options?: {
9954
+ [key: string]: unknown;
9955
+ } | null;
9497
9956
  readonly marketplace_category_uuid?: string | null;
9498
9957
  readonly marketplace_category_name?: string | null;
9499
9958
  readonly marketplace_resource_uuid?: string | null;
@@ -9607,7 +10066,9 @@ export type VmwarePort = {
9607
10066
  readonly network_name?: string;
9608
10067
  readonly marketplace_offering_uuid?: string | null;
9609
10068
  readonly marketplace_offering_name?: string | null;
9610
- readonly marketplace_offering_plugin_options?: {} | null;
10069
+ readonly marketplace_offering_plugin_options?: {
10070
+ [key: string]: unknown;
10071
+ } | null;
9611
10072
  readonly marketplace_category_uuid?: string | null;
9612
10073
  readonly marketplace_category_name?: string | null;
9613
10074
  readonly marketplace_resource_uuid?: string | null;
@@ -9702,12 +10163,17 @@ export type VmwareVirtualMachine = {
9702
10163
  readonly datastore_name?: string;
9703
10164
  readonly folder_name?: string;
9704
10165
  readonly ports?: Array<VmwareNestedPort>;
10166
+ /**
10167
+ * The power state of the guest operating system.
10168
+ */
9705
10169
  guest_power_state?: GuestPowerStateEnum;
9706
10170
  readonly tools_state?: string;
9707
10171
  readonly tools_installed?: boolean;
9708
10172
  readonly marketplace_offering_uuid?: string | null;
9709
10173
  readonly marketplace_offering_name?: string | null;
9710
- readonly marketplace_offering_plugin_options?: {} | null;
10174
+ readonly marketplace_offering_plugin_options?: {
10175
+ [key: string]: unknown;
10176
+ } | null;
9711
10177
  readonly marketplace_category_uuid?: string | null;
9712
10178
  readonly marketplace_category_name?: string | null;
9713
10179
  readonly marketplace_resource_uuid?: string | null;
@@ -12161,7 +12627,9 @@ export type ConfigurationRetrieveData = {
12161
12627
  url: '/api/configuration/';
12162
12628
  };
12163
12629
  export type ConfigurationRetrieveResponses = {
12164
- 200: {};
12630
+ 200: {
12631
+ [key: string]: unknown;
12632
+ };
12165
12633
  };
12166
12634
  export type ConfigurationRetrieveResponse = ConfigurationRetrieveResponses[keyof ConfigurationRetrieveResponses];
12167
12635
  export type CustomerCreditsListData = {
@@ -13283,7 +13751,9 @@ export type EventsScopeTypesRetrieveResponses = {
13283
13751
  };
13284
13752
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
13285
13753
  export type FeatureValuesData = {
13286
- body?: {};
13754
+ body?: {
13755
+ [key: string]: unknown;
13756
+ };
13287
13757
  path?: never;
13288
13758
  query?: never;
13289
13759
  url: '/api/feature-values/';
@@ -17770,7 +18240,9 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
17770
18240
  };
17771
18241
  export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
17772
18242
  export type MarketplaceProviderOfferingsUpdateAttributesData = {
17773
- body?: {};
18243
+ body?: {
18244
+ [key: string]: unknown;
18245
+ };
17774
18246
  path: {
17775
18247
  uuid: string;
17776
18248
  };