waldur-js-client 1.0.4-dev.102 → 1.0.4-dev.104

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;
@@ -2503,23 +2558,7 @@ export type IdentityProvider = {
2503
2558
  /**
2504
2559
  * Space-separated list of scopes to request during authentication.
2505
2560
  */
2506
- scope?: string | null;
2507
- /**
2508
- * The field in Waldur User model to be used for looking up the user
2509
- */
2510
- user_field?: string;
2511
- /**
2512
- * The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
2513
- */
2514
- user_claim?: string;
2515
- /**
2516
- * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
2517
- */
2518
- attribute_mapping?: unknown;
2519
- /**
2520
- * Space-separated list of extra fields to persist.
2521
- */
2522
- extra_fields?: string | null;
2561
+ extra_scope?: string | null;
2523
2562
  };
2524
2563
  export type IdentityProviderRequest = {
2525
2564
  provider: string;
@@ -2547,23 +2586,7 @@ export type IdentityProviderRequest = {
2547
2586
  /**
2548
2587
  * Space-separated list of scopes to request during authentication.
2549
2588
  */
2550
- scope?: string | null;
2551
- /**
2552
- * The field in Waldur User model to be used for looking up the user
2553
- */
2554
- user_field?: string;
2555
- /**
2556
- * The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
2557
- */
2558
- user_claim?: string;
2559
- /**
2560
- * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
2561
- */
2562
- attribute_mapping?: unknown;
2563
- /**
2564
- * Space-separated list of extra fields to persist.
2565
- */
2566
- extra_fields?: string | null;
2589
+ extra_scope?: string | null;
2567
2590
  };
2568
2591
  export type ImageCreateRequest = {
2569
2592
  name: string;
@@ -2600,10 +2623,16 @@ export type InstanceFlavorChangeRequest = {
2600
2623
  export type IntegrationStatus = {
2601
2624
  readonly agent_type?: string;
2602
2625
  readonly status?: string;
2626
+ /**
2627
+ * Time of latest backend request
2628
+ */
2603
2629
  readonly last_request_timestamp?: string | null;
2604
2630
  };
2605
2631
  export type IntegrationStatusDetails = {
2606
2632
  readonly status: string;
2633
+ /**
2634
+ * Time of latest backend request
2635
+ */
2607
2636
  readonly last_request_timestamp: string | null;
2608
2637
  offering: string;
2609
2638
  readonly url: string;
@@ -2669,6 +2698,9 @@ export type Invoice = {
2669
2698
  readonly url?: string;
2670
2699
  readonly uuid?: string;
2671
2700
  readonly number?: number;
2701
+ /**
2702
+ * Organization
2703
+ */
2672
2704
  customer?: string;
2673
2705
  price?: string;
2674
2706
  tax?: string;
@@ -2860,6 +2892,9 @@ export type Issue = {
2860
2892
  assignee?: string | null;
2861
2893
  readonly assignee_uuid: string | null;
2862
2894
  readonly assignee_name: string | null;
2895
+ /**
2896
+ * Organization
2897
+ */
2863
2898
  customer?: string | null;
2864
2899
  readonly customer_uuid: string | null;
2865
2900
  readonly customer_name: string | null;
@@ -2892,6 +2927,9 @@ export type IssueRequest = {
2892
2927
  priority?: string;
2893
2928
  caller?: string | null;
2894
2929
  assignee?: string | null;
2930
+ /**
2931
+ * Organization
2932
+ */
2895
2933
  customer?: string | null;
2896
2934
  project?: string | null;
2897
2935
  resource?: string;
@@ -2920,11 +2958,15 @@ export type JiraIssue = {
2920
2958
  };
2921
2959
  export type JiraIssueFields = {
2922
2960
  project: JiraIssueProject;
2923
- comment?: {};
2961
+ comment?: {
2962
+ [key: string]: unknown;
2963
+ };
2924
2964
  };
2925
2965
  export type JiraIssueFieldsRequest = {
2926
2966
  project: JiraIssueProjectRequest;
2927
- comment?: {};
2967
+ comment?: {
2968
+ [key: string]: unknown;
2969
+ };
2928
2970
  };
2929
2971
  export type JiraIssueProject = {
2930
2972
  id: string;
@@ -2943,6 +2985,9 @@ export type JiraIssueRequest = {
2943
2985
  export type KeycloakGroup = {
2944
2986
  readonly uuid: string;
2945
2987
  readonly url: string;
2988
+ /**
2989
+ * Group name
2990
+ */
2946
2991
  readonly name: string;
2947
2992
  readonly backend_id: string;
2948
2993
  readonly scope_type: string;
@@ -3111,6 +3156,9 @@ export type MarketplaceProviderCustomer = {
3111
3156
  slug?: string;
3112
3157
  abbreviation?: string;
3113
3158
  phone_number?: string;
3159
+ /**
3160
+ * Email address
3161
+ */
3114
3162
  email?: string;
3115
3163
  readonly payment_profiles?: Array<PaymentProfile>;
3116
3164
  billing_price_estimate?: NestedPriceEstimate;
@@ -3141,6 +3189,9 @@ export type MarketplaceServiceProviderUser = {
3141
3189
  first_name?: string;
3142
3190
  last_name?: string;
3143
3191
  organization?: string;
3192
+ /**
3193
+ * Email address
3194
+ */
3144
3195
  email?: string;
3145
3196
  phone_number?: string;
3146
3197
  readonly projects_count?: number;
@@ -3153,6 +3204,7 @@ export type MarketplaceServiceProviderUser = {
3153
3204
  */
3154
3205
  affiliations?: unknown;
3155
3206
  /**
3207
+ * Active
3156
3208
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
3157
3209
  */
3158
3210
  is_active?: boolean;
@@ -3278,6 +3330,18 @@ export type MergedPluginOptions = {
3278
3330
  managed_rancher_load_balancer_system_volume_type_name?: string;
3279
3331
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3280
3332
  managed_rancher_load_balancer_data_volume_type_name?: string;
3333
+ /**
3334
+ * Max number of vCPUs for tenants
3335
+ */
3336
+ managed_rancher_tenant_max_cpu?: number;
3337
+ /**
3338
+ * Max number of RAM for tenants
3339
+ */
3340
+ managed_rancher_tenant_max_ram?: number;
3341
+ /**
3342
+ * Max size of disk space for tenants (GB)
3343
+ */
3344
+ managed_rancher_tenant_max_disk?: number;
3281
3345
  /**
3282
3346
  * Slurm account name generation policy
3283
3347
  */
@@ -3404,6 +3468,18 @@ export type MergedPluginOptionsRequest = {
3404
3468
  managed_rancher_load_balancer_system_volume_type_name?: string;
3405
3469
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3406
3470
  managed_rancher_load_balancer_data_volume_type_name?: string;
3471
+ /**
3472
+ * Max number of vCPUs for tenants
3473
+ */
3474
+ managed_rancher_tenant_max_cpu?: number;
3475
+ /**
3476
+ * Max number of RAM for tenants
3477
+ */
3478
+ managed_rancher_tenant_max_ram?: number;
3479
+ /**
3480
+ * Max size of disk space for tenants (GB)
3481
+ */
3482
+ managed_rancher_tenant_max_disk?: number;
3407
3483
  /**
3408
3484
  * Slurm account name generation policy
3409
3485
  */
@@ -3471,8 +3547,17 @@ export type MergedSecretOptions = {
3471
3547
  * Organization UUID
3472
3548
  */
3473
3549
  customer_uuid?: string;
3550
+ /**
3551
+ * Rancher server URL
3552
+ */
3474
3553
  backend_url?: string;
3554
+ /**
3555
+ * Rancher access key
3556
+ */
3475
3557
  username?: string;
3558
+ /**
3559
+ * Rancher secret key
3560
+ */
3476
3561
  password?: string;
3477
3562
  cloud_init_template?: string;
3478
3563
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -3615,8 +3700,17 @@ export type MergedSecretOptionsRequest = {
3615
3700
  * Organization UUID
3616
3701
  */
3617
3702
  customer_uuid?: string;
3703
+ /**
3704
+ * Rancher server URL
3705
+ */
3618
3706
  backend_url?: string;
3707
+ /**
3708
+ * Rancher access key
3709
+ */
3619
3710
  username?: string;
3711
+ /**
3712
+ * Rancher secret key
3713
+ */
3620
3714
  password?: string;
3621
3715
  cloud_init_template?: string;
3622
3716
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -4123,7 +4217,9 @@ export type Offering = {
4123
4217
  category?: string;
4124
4218
  readonly category_uuid?: string;
4125
4219
  readonly category_title?: string;
4126
- readonly attributes?: {};
4220
+ readonly attributes?: {
4221
+ [key: string]: unknown;
4222
+ };
4127
4223
  options?: OfferingOptions;
4128
4224
  resource_options?: OfferingOptions;
4129
4225
  readonly components?: Array<OfferingComponent>;
@@ -4295,7 +4391,9 @@ export type OfferingCreate = {
4295
4391
  components?: Array<OfferingComponent>;
4296
4392
  plugin_options: MergedPluginOptions;
4297
4393
  secret_options: MergedSecretOptions;
4298
- readonly service_attributes: {};
4394
+ readonly service_attributes: {
4395
+ [key: string]: unknown;
4396
+ };
4299
4397
  state: OfferingState;
4300
4398
  vendor_details?: string;
4301
4399
  getting_started?: string;
@@ -4482,6 +4580,9 @@ export type OfferingPauseRequest = {
4482
4580
  };
4483
4581
  export type OfferingPermission = {
4484
4582
  readonly url: string;
4583
+ /**
4584
+ * ID
4585
+ */
4485
4586
  readonly pk: number;
4486
4587
  readonly created: string;
4487
4588
  expiration_time?: string | null;
@@ -4500,6 +4601,9 @@ export type OfferingPermission = {
4500
4601
  */
4501
4602
  readonly user_username: string;
4502
4603
  readonly user_uuid: string;
4604
+ /**
4605
+ * Email address
4606
+ */
4503
4607
  readonly user_email: string;
4504
4608
  };
4505
4609
  export type OfferingReference = {
@@ -4689,7 +4793,9 @@ export type OpenStackBackup = {
4689
4793
  readonly tenant_uuid?: string;
4690
4794
  readonly marketplace_offering_uuid?: string | null;
4691
4795
  readonly marketplace_offering_name?: string | null;
4692
- readonly marketplace_offering_plugin_options?: {} | null;
4796
+ readonly marketplace_offering_plugin_options?: {
4797
+ [key: string]: unknown;
4798
+ } | null;
4693
4799
  readonly marketplace_category_uuid?: string | null;
4694
4800
  readonly marketplace_category_name?: string | null;
4695
4801
  readonly marketplace_resource_uuid?: string | null;
@@ -4805,7 +4911,9 @@ export type OpenStackFloatingIp = {
4805
4911
  readonly instance_url?: string | null;
4806
4912
  readonly marketplace_offering_uuid?: string | null;
4807
4913
  readonly marketplace_offering_name?: string | null;
4808
- readonly marketplace_offering_plugin_options?: {} | null;
4914
+ readonly marketplace_offering_plugin_options?: {
4915
+ [key: string]: unknown;
4916
+ } | null;
4809
4917
  readonly marketplace_category_uuid?: string | null;
4810
4918
  readonly marketplace_category_name?: string | null;
4811
4919
  readonly marketplace_resource_uuid?: string | null;
@@ -4918,7 +5026,9 @@ export type OpenStackInstance = {
4918
5026
  rancher_cluster?: RancherClusterReference | null;
4919
5027
  readonly marketplace_offering_uuid?: string | null;
4920
5028
  readonly marketplace_offering_name?: string | null;
4921
- readonly marketplace_offering_plugin_options?: {} | null;
5029
+ readonly marketplace_offering_plugin_options?: {
5030
+ [key: string]: unknown;
5031
+ } | null;
4922
5032
  readonly marketplace_category_uuid?: string | null;
4923
5033
  readonly marketplace_category_name?: string | null;
4924
5034
  readonly marketplace_resource_uuid?: string | null;
@@ -5095,7 +5205,9 @@ export type OpenStackNetwork = {
5095
5205
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
5096
5206
  readonly marketplace_offering_uuid?: string | null;
5097
5207
  readonly marketplace_offering_name?: string | null;
5098
- readonly marketplace_offering_plugin_options?: {} | null;
5208
+ readonly marketplace_offering_plugin_options?: {
5209
+ [key: string]: unknown;
5210
+ } | null;
5099
5211
  readonly marketplace_category_uuid?: string | null;
5100
5212
  readonly marketplace_category_name?: string | null;
5101
5213
  readonly marketplace_resource_uuid?: string | null;
@@ -5151,7 +5263,9 @@ export type OpenStackPort = {
5151
5263
  readonly status?: string | null;
5152
5264
  readonly marketplace_offering_uuid?: string | null;
5153
5265
  readonly marketplace_offering_name?: string | null;
5154
- readonly marketplace_offering_plugin_options?: {} | null;
5266
+ readonly marketplace_offering_plugin_options?: {
5267
+ [key: string]: unknown;
5268
+ } | null;
5155
5269
  readonly marketplace_category_uuid?: string | null;
5156
5270
  readonly marketplace_category_name?: string | null;
5157
5271
  readonly marketplace_resource_uuid?: string | null;
@@ -5215,7 +5329,9 @@ export type OpenStackRouter = {
5215
5329
  readonly ports?: Array<OpenStackNestedPort>;
5216
5330
  readonly marketplace_offering_uuid?: string | null;
5217
5331
  readonly marketplace_offering_name?: string | null;
5218
- readonly marketplace_offering_plugin_options?: {} | null;
5332
+ readonly marketplace_offering_plugin_options?: {
5333
+ [key: string]: unknown;
5334
+ } | null;
5219
5335
  readonly marketplace_category_uuid?: string | null;
5220
5336
  readonly marketplace_category_name?: string | null;
5221
5337
  readonly marketplace_resource_uuid?: string | null;
@@ -5266,7 +5382,9 @@ export type OpenStackSecurityGroup = {
5266
5382
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
5267
5383
  readonly marketplace_offering_uuid?: string | null;
5268
5384
  readonly marketplace_offering_name?: string | null;
5269
- readonly marketplace_offering_plugin_options?: {} | null;
5385
+ readonly marketplace_offering_plugin_options?: {
5386
+ [key: string]: unknown;
5387
+ } | null;
5270
5388
  readonly marketplace_category_uuid?: string | null;
5271
5389
  readonly marketplace_category_name?: string | null;
5272
5390
  readonly marketplace_resource_uuid?: string | null;
@@ -5354,7 +5472,9 @@ export type OpenStackServerGroup = {
5354
5472
  readonly instances?: Array<OpenStackNestedInstance>;
5355
5473
  readonly marketplace_offering_uuid?: string | null;
5356
5474
  readonly marketplace_offering_name?: string | null;
5357
- readonly marketplace_offering_plugin_options?: {} | null;
5475
+ readonly marketplace_offering_plugin_options?: {
5476
+ [key: string]: unknown;
5477
+ } | null;
5358
5478
  readonly marketplace_category_uuid?: string | null;
5359
5479
  readonly marketplace_category_name?: string | null;
5360
5480
  readonly marketplace_resource_uuid?: string | null;
@@ -5411,7 +5531,9 @@ export type OpenStackSnapshot = {
5411
5531
  kept_until?: string | null;
5412
5532
  readonly marketplace_offering_uuid?: string | null;
5413
5533
  readonly marketplace_offering_name?: string | null;
5414
- readonly marketplace_offering_plugin_options?: {} | null;
5534
+ readonly marketplace_offering_plugin_options?: {
5535
+ [key: string]: unknown;
5536
+ } | null;
5415
5537
  readonly marketplace_category_uuid?: string | null;
5416
5538
  readonly marketplace_category_name?: string | null;
5417
5539
  readonly marketplace_resource_uuid?: string | null;
@@ -5510,7 +5632,9 @@ export type OpenStackSubNet = {
5510
5632
  readonly is_connected?: boolean;
5511
5633
  readonly marketplace_offering_uuid?: string | null;
5512
5634
  readonly marketplace_offering_name?: string | null;
5513
- readonly marketplace_offering_plugin_options?: {} | null;
5635
+ readonly marketplace_offering_plugin_options?: {
5636
+ [key: string]: unknown;
5637
+ } | null;
5514
5638
  readonly marketplace_category_uuid?: string | null;
5515
5639
  readonly marketplace_category_name?: string | null;
5516
5640
  readonly marketplace_resource_uuid?: string | null;
@@ -5574,7 +5698,9 @@ export type OpenStackTenant = {
5574
5698
  default_volume_type_name?: string;
5575
5699
  readonly marketplace_offering_uuid?: string | null;
5576
5700
  readonly marketplace_offering_name?: string | null;
5577
- readonly marketplace_offering_plugin_options?: {} | null;
5701
+ readonly marketplace_offering_plugin_options?: {
5702
+ [key: string]: unknown;
5703
+ } | null;
5578
5704
  readonly marketplace_category_uuid?: string | null;
5579
5705
  readonly marketplace_category_name?: string | null;
5580
5706
  readonly marketplace_resource_uuid?: string | null;
@@ -5678,7 +5804,9 @@ export type OpenStackVolume = {
5678
5804
  readonly extend_enabled?: boolean;
5679
5805
  readonly marketplace_offering_uuid?: string | null;
5680
5806
  readonly marketplace_offering_name?: string | null;
5681
- readonly marketplace_offering_plugin_options?: {} | null;
5807
+ readonly marketplace_offering_plugin_options?: {
5808
+ [key: string]: unknown;
5809
+ } | null;
5682
5810
  readonly marketplace_category_uuid?: string | null;
5683
5811
  readonly marketplace_category_name?: string | null;
5684
5812
  readonly marketplace_resource_uuid?: string | null;
@@ -5781,6 +5909,9 @@ export type OrderCreate = {
5781
5909
  readonly marketplace_resource_uuid: string;
5782
5910
  readonly error_message: string;
5783
5911
  callback_url?: string | null;
5912
+ /**
5913
+ * Completion time
5914
+ */
5784
5915
  readonly completed_at: string | null;
5785
5916
  readonly url: string;
5786
5917
  readonly created_by: string;
@@ -5849,7 +5980,9 @@ export type OrderDetails = {
5849
5980
  /**
5850
5981
  * Get attributes excluding secret attributes, such as username and password.
5851
5982
  */
5852
- readonly attributes?: {};
5983
+ readonly attributes?: {
5984
+ [key: string]: unknown;
5985
+ };
5853
5986
  limits?: {
5854
5987
  [key: string]: number;
5855
5988
  };
@@ -5866,6 +5999,9 @@ export type OrderDetails = {
5866
5999
  readonly marketplace_resource_uuid?: string;
5867
6000
  readonly error_message?: string;
5868
6001
  callback_url?: string | null;
6002
+ /**
6003
+ * Completion time
6004
+ */
5869
6005
  readonly completed_at?: string | null;
5870
6006
  /**
5871
6007
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -6087,6 +6223,9 @@ export type PatchedCustomerRequest = {
6087
6223
  native_name?: string;
6088
6224
  abbreviation?: string;
6089
6225
  contact_details?: string;
6226
+ /**
6227
+ * Email address
6228
+ */
6090
6229
  email?: string;
6091
6230
  phone_number?: string;
6092
6231
  registration_code?: string;
@@ -6152,23 +6291,7 @@ export type PatchedIdentityProviderRequest = {
6152
6291
  /**
6153
6292
  * Space-separated list of scopes to request during authentication.
6154
6293
  */
6155
- scope?: string | null;
6156
- /**
6157
- * The field in Waldur User model to be used for looking up the user
6158
- */
6159
- user_field?: string;
6160
- /**
6161
- * The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
6162
- */
6163
- user_claim?: string;
6164
- /**
6165
- * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
6166
- */
6167
- attribute_mapping?: unknown;
6168
- /**
6169
- * Space-separated list of extra fields to persist.
6170
- */
6171
- extra_fields?: string | null;
6294
+ extra_scope?: string | null;
6172
6295
  };
6173
6296
  export type PatchedInvoiceItemUpdateRequest = {
6174
6297
  article_code?: string;
@@ -6389,8 +6512,14 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
6389
6512
  };
6390
6513
  export type PatchedProjectRequest = {
6391
6514
  name?: string;
6515
+ /**
6516
+ * Organization
6517
+ */
6392
6518
  customer?: string;
6393
6519
  description?: string;
6520
+ /**
6521
+ * Project type
6522
+ */
6394
6523
  type?: string | null;
6395
6524
  backend_id?: string;
6396
6525
  start_date?: string | null;
@@ -6483,7 +6612,9 @@ export type PatchedRancherApplicationRequest = {
6483
6612
  namespace?: string;
6484
6613
  namespace_name?: string;
6485
6614
  version?: string;
6486
- answers?: {};
6615
+ answers?: {
6616
+ [key: string]: unknown;
6617
+ };
6487
6618
  };
6488
6619
  export type PatchedRancherCatalogRequest = {
6489
6620
  name?: string;
@@ -6591,19 +6722,61 @@ export type PatchedRobotAccountRequest = {
6591
6722
  export type PatchedRoleDetailsRequest = {
6592
6723
  name?: string;
6593
6724
  description?: string;
6725
+ /**
6726
+ * Description [en]
6727
+ */
6594
6728
  description_en?: string | null;
6729
+ /**
6730
+ * Description [et]
6731
+ */
6595
6732
  description_et?: string | null;
6733
+ /**
6734
+ * Description [lt]
6735
+ */
6596
6736
  description_lt?: string | null;
6737
+ /**
6738
+ * Description [lv]
6739
+ */
6597
6740
  description_lv?: string | null;
6741
+ /**
6742
+ * Description [ru]
6743
+ */
6598
6744
  description_ru?: string | null;
6745
+ /**
6746
+ * Description [it]
6747
+ */
6599
6748
  description_it?: string | null;
6749
+ /**
6750
+ * Description [de]
6751
+ */
6600
6752
  description_de?: string | null;
6753
+ /**
6754
+ * Description [da]
6755
+ */
6601
6756
  description_da?: string | null;
6757
+ /**
6758
+ * Description [sv]
6759
+ */
6602
6760
  description_sv?: string | null;
6761
+ /**
6762
+ * Description [es]
6763
+ */
6603
6764
  description_es?: string | null;
6765
+ /**
6766
+ * Description [fr]
6767
+ */
6604
6768
  description_fr?: string | null;
6769
+ /**
6770
+ * Description [nb]
6771
+ */
6605
6772
  description_nb?: string | null;
6773
+ /**
6774
+ * Description [ar]
6775
+ */
6606
6776
  description_ar?: string | null;
6777
+ /**
6778
+ * Description [cs]
6779
+ */
6607
6780
  description_cs?: string | null;
6608
6781
  is_active?: boolean;
6609
6782
  };
@@ -6648,14 +6821,17 @@ export type PatchedUserRequest = {
6648
6821
  organization?: string;
6649
6822
  description?: string;
6650
6823
  /**
6824
+ * Staff status
6651
6825
  * Designates whether the user can log into this admin site.
6652
6826
  */
6653
6827
  is_staff?: boolean;
6654
6828
  /**
6829
+ * Active
6655
6830
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
6656
6831
  */
6657
6832
  is_active?: boolean;
6658
6833
  /**
6834
+ * Support status
6659
6835
  * Designates whether the user is a global support user.
6660
6836
  */
6661
6837
  is_support?: boolean;
@@ -6813,7 +6989,13 @@ export type PlanComponent = {
6813
6989
  readonly measured_unit: string;
6814
6990
  billing_type: BillingTypeEnum;
6815
6991
  amount?: number;
6992
+ /**
6993
+ * Price per unit per billing period.
6994
+ */
6816
6995
  price?: string;
6996
+ /**
6997
+ * Price per unit for future month.
6998
+ */
6817
6999
  future_price?: string | null;
6818
7000
  };
6819
7001
  export type PlanUsageResponse = {
@@ -6857,6 +7039,9 @@ export type Project = {
6857
7039
  readonly uuid?: string;
6858
7040
  name?: string;
6859
7041
  readonly slug?: string;
7042
+ /**
7043
+ * Organization
7044
+ */
6860
7045
  customer?: string;
6861
7046
  readonly customer_uuid?: string;
6862
7047
  readonly customer_name?: string;
@@ -6865,6 +7050,9 @@ export type Project = {
6865
7050
  readonly customer_abbreviation?: string;
6866
7051
  description?: string;
6867
7052
  readonly created?: string;
7053
+ /**
7054
+ * Project type
7055
+ */
6868
7056
  type?: string | null;
6869
7057
  readonly type_name?: string | null;
6870
7058
  readonly type_uuid?: string | null;
@@ -6980,6 +7168,9 @@ export type ProjectPermissionLog = {
6980
7168
  */
6981
7169
  readonly user_username?: string;
6982
7170
  readonly user_uuid?: string;
7171
+ /**
7172
+ * Email address
7173
+ */
6983
7174
  readonly user_email?: string;
6984
7175
  };
6985
7176
  export type ProjectQuotas = {
@@ -6990,8 +7181,14 @@ export type ProjectQuotas = {
6990
7181
  };
6991
7182
  export type ProjectRequest = {
6992
7183
  name: string;
7184
+ /**
7185
+ * Organization
7186
+ */
6993
7187
  customer: string;
6994
7188
  description?: string;
7189
+ /**
7190
+ * Project type
7191
+ */
6995
7192
  type?: string | null;
6996
7193
  backend_id?: string;
6997
7194
  start_date?: string | null;
@@ -7054,6 +7251,9 @@ export type ProjectUser = {
7054
7251
  */
7055
7252
  username: string;
7056
7253
  readonly full_name: string;
7254
+ /**
7255
+ * Email address
7256
+ */
7057
7257
  email?: string;
7058
7258
  readonly role: string;
7059
7259
  readonly expiration_time: string | null;
@@ -7343,6 +7543,9 @@ export type ProviderOfferingCustomer = {
7343
7543
  slug: string;
7344
7544
  abbreviation?: string;
7345
7545
  phone_number?: string;
7546
+ /**
7547
+ * Email address
7548
+ */
7346
7549
  email?: string;
7347
7550
  };
7348
7551
  export type ProviderOfferingDetails = {
@@ -7371,13 +7574,17 @@ export type ProviderOfferingDetails = {
7371
7574
  category?: string;
7372
7575
  readonly category_uuid?: string;
7373
7576
  readonly category_title?: string;
7374
- readonly attributes?: {};
7577
+ readonly attributes?: {
7578
+ [key: string]: unknown;
7579
+ };
7375
7580
  options?: OfferingOptions;
7376
7581
  resource_options?: OfferingOptions;
7377
7582
  readonly components?: Array<OfferingComponent>;
7378
7583
  plugin_options?: MergedPluginOptions;
7379
7584
  secret_options?: MergedSecretOptions;
7380
- readonly service_attributes?: {};
7585
+ readonly service_attributes?: {
7586
+ [key: string]: unknown;
7587
+ };
7381
7588
  state?: OfferingState;
7382
7589
  vendor_details?: string;
7383
7590
  getting_started?: string;
@@ -7539,6 +7746,9 @@ export type ProviderRequestedOffering = {
7539
7746
  call: string;
7540
7747
  readonly description: string;
7541
7748
  readonly created_by_name: string;
7749
+ /**
7750
+ * Email address
7751
+ */
7542
7752
  readonly created_by_email: string;
7543
7753
  };
7544
7754
  export type ProviderRequestedResource = {
@@ -7560,6 +7770,9 @@ export type ProviderRequestedResource = {
7560
7770
  export type ProviderUser = {
7561
7771
  readonly uuid?: string;
7562
7772
  readonly full_name?: string;
7773
+ /**
7774
+ * Email address
7775
+ */
7563
7776
  email?: string;
7564
7777
  image?: string | null;
7565
7778
  };
@@ -7621,7 +7834,9 @@ export type PublicOfferingDetails = {
7621
7834
  category?: string;
7622
7835
  readonly category_uuid?: string;
7623
7836
  readonly category_title?: string;
7624
- readonly attributes?: {};
7837
+ readonly attributes?: {
7838
+ [key: string]: unknown;
7839
+ };
7625
7840
  options?: OfferingOptions;
7626
7841
  resource_options?: OfferingOptions;
7627
7842
  readonly components?: Array<OfferingComponent>;
@@ -7724,14 +7939,18 @@ export type RancherApplication = {
7724
7939
  rancher_project?: string;
7725
7940
  namespace?: string;
7726
7941
  version?: string;
7727
- answers?: {};
7942
+ answers?: {
7943
+ [key: string]: unknown;
7944
+ };
7728
7945
  readonly rancher_project_name?: string;
7729
7946
  readonly catalog_name?: string;
7730
7947
  readonly template_name?: string;
7731
7948
  readonly external_url?: string | null;
7732
7949
  readonly marketplace_offering_uuid?: string | null;
7733
7950
  readonly marketplace_offering_name?: string | null;
7734
- readonly marketplace_offering_plugin_options?: {} | null;
7951
+ readonly marketplace_offering_plugin_options?: {
7952
+ [key: string]: unknown;
7953
+ } | null;
7735
7954
  readonly marketplace_category_uuid?: string | null;
7736
7955
  readonly marketplace_category_name?: string | null;
7737
7956
  readonly marketplace_resource_uuid?: string | null;
@@ -7754,7 +7973,9 @@ export type RancherApplicationRequest = {
7754
7973
  namespace?: string;
7755
7974
  namespace_name?: string;
7756
7975
  version: string;
7757
- answers?: {};
7976
+ answers?: {
7977
+ [key: string]: unknown;
7978
+ };
7758
7979
  };
7759
7980
  export type RancherCatalog = {
7760
7981
  readonly uuid: string;
@@ -7874,7 +8095,9 @@ export type RancherCluster = {
7874
8095
  readonly kubernetes_version?: string;
7875
8096
  readonly marketplace_offering_uuid?: string | null;
7876
8097
  readonly marketplace_offering_name?: string | null;
7877
- readonly marketplace_offering_plugin_options?: {} | null;
8098
+ readonly marketplace_offering_plugin_options?: {
8099
+ [key: string]: unknown;
8100
+ } | null;
7878
8101
  readonly marketplace_category_uuid?: string | null;
7879
8102
  readonly marketplace_category_name?: string | null;
7880
8103
  readonly marketplace_resource_uuid?: string | null;
@@ -7930,8 +8153,17 @@ export type RancherClusterTemplate = {
7930
8153
  nodes: Array<RancherClusterTemplateNode>;
7931
8154
  };
7932
8155
  export type RancherClusterTemplateNode = {
8156
+ /**
8157
+ * Min vCPU (cores)
8158
+ */
7933
8159
  min_vcpu: number;
8160
+ /**
8161
+ * Min RAM (GB)
8162
+ */
7934
8163
  min_ram: number;
8164
+ /**
8165
+ * System volume size (GB)
8166
+ */
7935
8167
  system_volume_size: number;
7936
8168
  preferred_volume_type?: string;
7937
8169
  role: RoleEnum;
@@ -8031,7 +8263,9 @@ export type RancherIngress = {
8031
8263
  rules?: unknown;
8032
8264
  readonly marketplace_offering_uuid?: string | null;
8033
8265
  readonly marketplace_offering_name?: string | null;
8034
- readonly marketplace_offering_plugin_options?: {} | null;
8266
+ readonly marketplace_offering_plugin_options?: {
8267
+ [key: string]: unknown;
8268
+ } | null;
8035
8269
  readonly marketplace_category_uuid?: string | null;
8036
8270
  readonly marketplace_category_name?: string | null;
8037
8271
  readonly marketplace_resource_uuid?: string | null;
@@ -8212,7 +8446,9 @@ export type RancherService = {
8212
8446
  target_workloads?: Array<RancherNestedWorkload>;
8213
8447
  readonly marketplace_offering_uuid?: string | null;
8214
8448
  readonly marketplace_offering_name?: string | null;
8215
- readonly marketplace_offering_plugin_options?: {} | null;
8449
+ readonly marketplace_offering_plugin_options?: {
8450
+ [key: string]: unknown;
8451
+ } | null;
8216
8452
  readonly marketplace_category_uuid?: string | null;
8217
8453
  readonly marketplace_category_name?: string | null;
8218
8454
  readonly marketplace_resource_uuid?: string | null;
@@ -8257,6 +8493,9 @@ export type RancherTemplateBaseQuestion = {
8257
8493
  description?: string;
8258
8494
  variable: string;
8259
8495
  required?: boolean;
8496
+ /**
8497
+ * Validate
8498
+ */
8260
8499
  validate_?: unknown;
8261
8500
  type: RancherTemplateQuestionType;
8262
8501
  default?: string | null;
@@ -8268,6 +8507,9 @@ export type RancherTemplateQuestion = {
8268
8507
  description?: string;
8269
8508
  variable: string;
8270
8509
  required?: boolean;
8510
+ /**
8511
+ * Validate
8512
+ */
8271
8513
  validate_?: unknown;
8272
8514
  type: RancherTemplateQuestionType;
8273
8515
  default?: string | null;
@@ -8516,7 +8758,9 @@ export type Resource = {
8516
8758
  readonly plan_name?: string | null;
8517
8759
  readonly plan_uuid?: string | null;
8518
8760
  readonly plan_description?: string | null;
8519
- readonly attributes?: {};
8761
+ readonly attributes?: {
8762
+ [key: string]: unknown;
8763
+ };
8520
8764
  readonly limits?: {
8521
8765
  [key: string]: number;
8522
8766
  };
@@ -8660,6 +8904,9 @@ export type ResourceSwitchPlanRequest = {
8660
8904
  plan: string;
8661
8905
  };
8662
8906
  export type ResourceTerminateRequest = {
8907
+ /**
8908
+ * Termination attributes
8909
+ */
8663
8910
  attributes?: unknown;
8664
8911
  };
8665
8912
  export type ResourceUpdate = {
@@ -8825,55 +9072,181 @@ export type RobotAccountRequest = {
8825
9072
  export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
8826
9073
  export type RoleDescription = {
8827
9074
  description?: string;
9075
+ /**
9076
+ * Description [en]
9077
+ */
8828
9078
  description_en?: string | null;
9079
+ /**
9080
+ * Description [et]
9081
+ */
8829
9082
  description_et?: string | null;
9083
+ /**
9084
+ * Description [lt]
9085
+ */
8830
9086
  description_lt?: string | null;
9087
+ /**
9088
+ * Description [lv]
9089
+ */
8831
9090
  description_lv?: string | null;
9091
+ /**
9092
+ * Description [ru]
9093
+ */
8832
9094
  description_ru?: string | null;
9095
+ /**
9096
+ * Description [it]
9097
+ */
8833
9098
  description_it?: string | null;
9099
+ /**
9100
+ * Description [de]
9101
+ */
8834
9102
  description_de?: string | null;
9103
+ /**
9104
+ * Description [da]
9105
+ */
8835
9106
  description_da?: string | null;
9107
+ /**
9108
+ * Description [sv]
9109
+ */
8836
9110
  description_sv?: string | null;
9111
+ /**
9112
+ * Description [es]
9113
+ */
8837
9114
  description_es?: string | null;
9115
+ /**
9116
+ * Description [fr]
9117
+ */
8838
9118
  description_fr?: string | null;
9119
+ /**
9120
+ * Description [nb]
9121
+ */
8839
9122
  description_nb?: string | null;
9123
+ /**
9124
+ * Description [ar]
9125
+ */
8840
9126
  description_ar?: string | null;
9127
+ /**
9128
+ * Description [cs]
9129
+ */
8841
9130
  description_cs?: string | null;
8842
9131
  };
8843
9132
  export type RoleDescriptionRequest = {
8844
9133
  description?: string;
9134
+ /**
9135
+ * Description [en]
9136
+ */
8845
9137
  description_en?: string | null;
9138
+ /**
9139
+ * Description [et]
9140
+ */
8846
9141
  description_et?: string | null;
9142
+ /**
9143
+ * Description [lt]
9144
+ */
8847
9145
  description_lt?: string | null;
9146
+ /**
9147
+ * Description [lv]
9148
+ */
8848
9149
  description_lv?: string | null;
9150
+ /**
9151
+ * Description [ru]
9152
+ */
8849
9153
  description_ru?: string | null;
9154
+ /**
9155
+ * Description [it]
9156
+ */
8850
9157
  description_it?: string | null;
9158
+ /**
9159
+ * Description [de]
9160
+ */
8851
9161
  description_de?: string | null;
9162
+ /**
9163
+ * Description [da]
9164
+ */
8852
9165
  description_da?: string | null;
9166
+ /**
9167
+ * Description [sv]
9168
+ */
8853
9169
  description_sv?: string | null;
9170
+ /**
9171
+ * Description [es]
9172
+ */
8854
9173
  description_es?: string | null;
9174
+ /**
9175
+ * Description [fr]
9176
+ */
8855
9177
  description_fr?: string | null;
9178
+ /**
9179
+ * Description [nb]
9180
+ */
8856
9181
  description_nb?: string | null;
9182
+ /**
9183
+ * Description [ar]
9184
+ */
8857
9185
  description_ar?: string | null;
9186
+ /**
9187
+ * Description [cs]
9188
+ */
8858
9189
  description_cs?: string | null;
8859
9190
  };
8860
9191
  export type RoleDetails = {
8861
9192
  readonly uuid?: string;
8862
9193
  name?: string;
8863
9194
  description?: string;
9195
+ /**
9196
+ * Description [en]
9197
+ */
8864
9198
  description_en?: string | null;
9199
+ /**
9200
+ * Description [et]
9201
+ */
8865
9202
  description_et?: string | null;
9203
+ /**
9204
+ * Description [lt]
9205
+ */
8866
9206
  description_lt?: string | null;
9207
+ /**
9208
+ * Description [lv]
9209
+ */
8867
9210
  description_lv?: string | null;
9211
+ /**
9212
+ * Description [ru]
9213
+ */
8868
9214
  description_ru?: string | null;
9215
+ /**
9216
+ * Description [it]
9217
+ */
8869
9218
  description_it?: string | null;
9219
+ /**
9220
+ * Description [de]
9221
+ */
8870
9222
  description_de?: string | null;
9223
+ /**
9224
+ * Description [da]
9225
+ */
8871
9226
  description_da?: string | null;
9227
+ /**
9228
+ * Description [sv]
9229
+ */
8872
9230
  description_sv?: string | null;
9231
+ /**
9232
+ * Description [es]
9233
+ */
8873
9234
  description_es?: string | null;
9235
+ /**
9236
+ * Description [fr]
9237
+ */
8874
9238
  description_fr?: string | null;
9239
+ /**
9240
+ * Description [nb]
9241
+ */
8875
9242
  description_nb?: string | null;
9243
+ /**
9244
+ * Description [ar]
9245
+ */
8876
9246
  description_ar?: string | null;
9247
+ /**
9248
+ * Description [cs]
9249
+ */
8877
9250
  description_cs?: string | null;
8878
9251
  readonly permissions?: Array<string>;
8879
9252
  readonly is_system_role?: boolean;
@@ -8885,19 +9258,61 @@ export type RoleEnum = 'agent' | 'server';
8885
9258
  export type RoleModifyRequest = {
8886
9259
  name: string;
8887
9260
  description?: string;
9261
+ /**
9262
+ * Description [en]
9263
+ */
8888
9264
  description_en?: string | null;
9265
+ /**
9266
+ * Description [et]
9267
+ */
8889
9268
  description_et?: string | null;
9269
+ /**
9270
+ * Description [lt]
9271
+ */
8890
9272
  description_lt?: string | null;
9273
+ /**
9274
+ * Description [lv]
9275
+ */
8891
9276
  description_lv?: string | null;
9277
+ /**
9278
+ * Description [ru]
9279
+ */
8892
9280
  description_ru?: string | null;
9281
+ /**
9282
+ * Description [it]
9283
+ */
8893
9284
  description_it?: string | null;
9285
+ /**
9286
+ * Description [de]
9287
+ */
8894
9288
  description_de?: string | null;
9289
+ /**
9290
+ * Description [da]
9291
+ */
8895
9292
  description_da?: string | null;
9293
+ /**
9294
+ * Description [sv]
9295
+ */
8896
9296
  description_sv?: string | null;
9297
+ /**
9298
+ * Description [es]
9299
+ */
8897
9300
  description_es?: string | null;
9301
+ /**
9302
+ * Description [fr]
9303
+ */
8898
9304
  description_fr?: string | null;
9305
+ /**
9306
+ * Description [nb]
9307
+ */
8899
9308
  description_nb?: string | null;
9309
+ /**
9310
+ * Description [ar]
9311
+ */
8900
9312
  description_ar?: string | null;
9313
+ /**
9314
+ * Description [cs]
9315
+ */
8901
9316
  description_cs?: string | null;
8902
9317
  permissions: unknown;
8903
9318
  is_active?: boolean;
@@ -9053,13 +9468,18 @@ export type ServiceSettings = {
9053
9468
  * Anybody can use it
9054
9469
  */
9055
9470
  shared?: boolean;
9471
+ /**
9472
+ * Organization
9473
+ */
9056
9474
  customer?: string | null;
9057
9475
  readonly customer_name?: string | null;
9058
9476
  readonly customer_native_name?: string;
9059
9477
  terms_of_services?: string;
9060
9478
  scope?: string | null;
9061
9479
  readonly scope_uuid?: string;
9062
- readonly options?: {};
9480
+ readonly options?: {
9481
+ [key: string]: unknown;
9482
+ };
9063
9483
  };
9064
9484
  export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
9065
9485
  export type SetMtu = {
@@ -9112,7 +9532,9 @@ export type SlurmAllocation = {
9112
9532
  readonly is_active?: boolean;
9113
9533
  readonly marketplace_offering_uuid?: string | null;
9114
9534
  readonly marketplace_offering_name?: string | null;
9115
- readonly marketplace_offering_plugin_options?: {} | null;
9535
+ readonly marketplace_offering_plugin_options?: {
9536
+ [key: string]: unknown;
9537
+ } | null;
9116
9538
  readonly marketplace_category_uuid?: string | null;
9117
9539
  readonly marketplace_category_name?: string | null;
9118
9540
  readonly marketplace_resource_uuid?: string | null;
@@ -9273,14 +9695,17 @@ export type User = {
9273
9695
  readonly civil_number?: string | null;
9274
9696
  description?: string;
9275
9697
  /**
9698
+ * Staff status
9276
9699
  * Designates whether the user can log into this admin site.
9277
9700
  */
9278
9701
  is_staff?: boolean;
9279
9702
  /**
9703
+ * Active
9280
9704
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9281
9705
  */
9282
9706
  is_active?: boolean;
9283
9707
  /**
9708
+ * Support status
9284
9709
  * Designates whether the user is a global support user.
9285
9710
  */
9286
9711
  is_support?: boolean;
@@ -9318,6 +9743,7 @@ export type User = {
9318
9743
  readonly identity_provider_fields?: Array<string>;
9319
9744
  image?: string | null;
9320
9745
  /**
9746
+ * Source of identity
9321
9747
  * Indicates what identity provider was used.
9322
9748
  */
9323
9749
  readonly identity_source?: string;
@@ -9344,6 +9770,7 @@ export type UserAuthToken = {
9344
9770
  */
9345
9771
  readonly user_username: string;
9346
9772
  /**
9773
+ * Active
9347
9774
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9348
9775
  */
9349
9776
  readonly user_is_active: boolean;
@@ -9368,14 +9795,17 @@ export type UserRequest = {
9368
9795
  organization?: string;
9369
9796
  description?: string;
9370
9797
  /**
9798
+ * Staff status
9371
9799
  * Designates whether the user can log into this admin site.
9372
9800
  */
9373
9801
  is_staff?: boolean;
9374
9802
  /**
9803
+ * Active
9375
9804
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9376
9805
  */
9377
9806
  is_active?: boolean;
9378
9807
  /**
9808
+ * Support status
9379
9809
  * Designates whether the user is a global support user.
9380
9810
  */
9381
9811
  is_support?: boolean;
@@ -9412,6 +9842,9 @@ export type UserRoleDetails = {
9412
9842
  expiration_time?: string | null;
9413
9843
  readonly role_name?: string;
9414
9844
  readonly role_uuid?: string;
9845
+ /**
9846
+ * Email address
9847
+ */
9415
9848
  readonly user_email?: string;
9416
9849
  readonly user_full_name?: string;
9417
9850
  /**
@@ -9517,7 +9950,9 @@ export type VmwareDisk = {
9517
9950
  readonly vm_name?: string;
9518
9951
  readonly marketplace_offering_uuid?: string | null;
9519
9952
  readonly marketplace_offering_name?: string | null;
9520
- readonly marketplace_offering_plugin_options?: {} | null;
9953
+ readonly marketplace_offering_plugin_options?: {
9954
+ [key: string]: unknown;
9955
+ } | null;
9521
9956
  readonly marketplace_category_uuid?: string | null;
9522
9957
  readonly marketplace_category_name?: string | null;
9523
9958
  readonly marketplace_resource_uuid?: string | null;
@@ -9631,7 +10066,9 @@ export type VmwarePort = {
9631
10066
  readonly network_name?: string;
9632
10067
  readonly marketplace_offering_uuid?: string | null;
9633
10068
  readonly marketplace_offering_name?: string | null;
9634
- readonly marketplace_offering_plugin_options?: {} | null;
10069
+ readonly marketplace_offering_plugin_options?: {
10070
+ [key: string]: unknown;
10071
+ } | null;
9635
10072
  readonly marketplace_category_uuid?: string | null;
9636
10073
  readonly marketplace_category_name?: string | null;
9637
10074
  readonly marketplace_resource_uuid?: string | null;
@@ -9726,12 +10163,17 @@ export type VmwareVirtualMachine = {
9726
10163
  readonly datastore_name?: string;
9727
10164
  readonly folder_name?: string;
9728
10165
  readonly ports?: Array<VmwareNestedPort>;
10166
+ /**
10167
+ * The power state of the guest operating system.
10168
+ */
9729
10169
  guest_power_state?: GuestPowerStateEnum;
9730
10170
  readonly tools_state?: string;
9731
10171
  readonly tools_installed?: boolean;
9732
10172
  readonly marketplace_offering_uuid?: string | null;
9733
10173
  readonly marketplace_offering_name?: string | null;
9734
- readonly marketplace_offering_plugin_options?: {} | null;
10174
+ readonly marketplace_offering_plugin_options?: {
10175
+ [key: string]: unknown;
10176
+ } | null;
9735
10177
  readonly marketplace_category_uuid?: string | null;
9736
10178
  readonly marketplace_category_name?: string | null;
9737
10179
  readonly marketplace_resource_uuid?: string | null;
@@ -12185,7 +12627,9 @@ export type ConfigurationRetrieveData = {
12185
12627
  url: '/api/configuration/';
12186
12628
  };
12187
12629
  export type ConfigurationRetrieveResponses = {
12188
- 200: {};
12630
+ 200: {
12631
+ [key: string]: unknown;
12632
+ };
12189
12633
  };
12190
12634
  export type ConfigurationRetrieveResponse = ConfigurationRetrieveResponses[keyof ConfigurationRetrieveResponses];
12191
12635
  export type CustomerCreditsListData = {
@@ -13307,7 +13751,9 @@ export type EventsScopeTypesRetrieveResponses = {
13307
13751
  };
13308
13752
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
13309
13753
  export type FeatureValuesData = {
13310
- body?: {};
13754
+ body?: {
13755
+ [key: string]: unknown;
13756
+ };
13311
13757
  path?: never;
13312
13758
  query?: never;
13313
13759
  url: '/api/feature-values/';
@@ -17794,7 +18240,9 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
17794
18240
  };
17795
18241
  export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
17796
18242
  export type MarketplaceProviderOfferingsUpdateAttributesData = {
17797
- body?: {};
18243
+ body?: {
18244
+ [key: string]: unknown;
18245
+ };
17798
18246
  path: {
17799
18247
  uuid: string;
17800
18248
  };