waldur-js-client 1.0.4-dev.99 → 7.6.5

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;
@@ -1532,6 +1555,7 @@ export type ConstanceSettings = {
1532
1555
  FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
1533
1556
  KEYCLOAK_ICON?: string | null;
1534
1557
  COUNTRIES?: Array<string>;
1558
+ OIDC_AUTH_URL?: string;
1535
1559
  OIDC_INTROSPECTION_URL?: string;
1536
1560
  OIDC_CLIENT_ID?: string;
1537
1561
  OIDC_CLIENT_SECRET?: string;
@@ -1662,12 +1686,14 @@ export type ConstanceSettingsRequest = {
1662
1686
  FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
1663
1687
  KEYCLOAK_ICON?: (Blob | File) | null;
1664
1688
  COUNTRIES?: Array<string>;
1689
+ OIDC_AUTH_URL?: string;
1665
1690
  OIDC_INTROSPECTION_URL?: string;
1666
1691
  OIDC_CLIENT_ID?: string;
1667
1692
  OIDC_CLIENT_SECRET?: string;
1668
1693
  OIDC_USER_FIELD?: string;
1669
1694
  OIDC_CACHE_TIMEOUT?: number;
1670
1695
  };
1696
+ export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
1671
1697
  export type CoreAuthToken = {
1672
1698
  readonly token: string;
1673
1699
  };
@@ -1786,6 +1812,9 @@ export type Customer = {
1786
1812
  readonly blocked?: boolean;
1787
1813
  readonly archived?: boolean;
1788
1814
  readonly default_tax_percent?: string;
1815
+ /**
1816
+ * Start date of accounting
1817
+ */
1789
1818
  readonly accounting_start_date?: string;
1790
1819
  readonly projects_count?: number;
1791
1820
  readonly users_count?: number;
@@ -1804,6 +1833,9 @@ export type Customer = {
1804
1833
  abbreviation?: string;
1805
1834
  contact_details?: string;
1806
1835
  readonly agreement_number?: string;
1836
+ /**
1837
+ * Email address
1838
+ */
1807
1839
  email?: string;
1808
1840
  phone_number?: string;
1809
1841
  /**
@@ -1874,6 +1906,9 @@ export type CustomerDetails = {
1874
1906
  address?: string;
1875
1907
  country?: string;
1876
1908
  readonly country_name?: string | null;
1909
+ /**
1910
+ * Email address
1911
+ */
1877
1912
  email?: string;
1878
1913
  postal?: string;
1879
1914
  phone_number?: string;
@@ -1963,6 +1998,9 @@ export type CustomerRequest = {
1963
1998
  native_name?: string;
1964
1999
  abbreviation?: string;
1965
2000
  contact_details?: string;
2001
+ /**
2002
+ * Email address
2003
+ */
1966
2004
  email?: string;
1967
2005
  phone_number?: string;
1968
2006
  registration_code?: string;
@@ -2012,11 +2050,13 @@ export type CustomerUser = {
2012
2050
  */
2013
2051
  username?: string;
2014
2052
  readonly full_name?: string;
2053
+ /**
2054
+ * Email address
2055
+ */
2015
2056
  email?: string;
2016
- readonly role?: string;
2017
- readonly role_name?: string;
2057
+ readonly role_name?: string | null;
2018
2058
  readonly projects?: Array<NestedProjectPermission>;
2019
- readonly expiration_time?: string;
2059
+ readonly expiration_time?: string | null;
2020
2060
  image?: string | null;
2021
2061
  };
2022
2062
  export type DataVolume = {
@@ -2100,7 +2140,9 @@ export type DigitalOceanDroplet = {
2100
2140
  readonly region_name?: string;
2101
2141
  readonly marketplace_offering_uuid?: string | null;
2102
2142
  readonly marketplace_offering_name?: string | null;
2103
- readonly marketplace_offering_plugin_options?: {} | null;
2143
+ readonly marketplace_offering_plugin_options?: {
2144
+ [key: string]: unknown;
2145
+ } | null;
2104
2146
  readonly marketplace_category_uuid?: string | null;
2105
2147
  readonly marketplace_category_name?: string | null;
2106
2148
  readonly marketplace_resource_uuid?: string | null;
@@ -2176,6 +2218,7 @@ export type DigitalOceanSize = {
2176
2218
  };
2177
2219
  export type DirectionEnum = 'ingress' | 'egress';
2178
2220
  export type DiscountTypeEnum = 'discount' | 'special_price';
2221
+ export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
2179
2222
  export type DryRun = {
2180
2223
  readonly url: string;
2181
2224
  readonly uuid: string;
@@ -2283,6 +2326,9 @@ export type FinancialReport = {
2283
2326
  readonly uuid: string;
2284
2327
  abbreviation?: string;
2285
2328
  readonly created: string;
2329
+ /**
2330
+ * Start date of accounting
2331
+ */
2286
2332
  accounting_start_date?: string;
2287
2333
  registration_code?: string;
2288
2334
  agreement_number?: string;
@@ -2325,6 +2371,9 @@ export type FirecrestJob = {
2325
2371
  readonly backend_id?: string;
2326
2372
  readonly access_url?: string | null;
2327
2373
  runtime_state?: string;
2374
+ /**
2375
+ * Batch script file
2376
+ */
2328
2377
  file?: string;
2329
2378
  /**
2330
2379
  * Reference to user which submitted job
@@ -2335,6 +2384,9 @@ export type FirecrestJob = {
2335
2384
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
2336
2385
  */
2337
2386
  readonly user_username?: string | null;
2387
+ /**
2388
+ * Job output
2389
+ */
2338
2390
  readonly report?: unknown;
2339
2391
  };
2340
2392
  export type FirecrestJobRequest = {
@@ -2343,6 +2395,9 @@ export type FirecrestJobRequest = {
2343
2395
  service_settings: string;
2344
2396
  project: string;
2345
2397
  runtime_state?: string;
2398
+ /**
2399
+ * Batch script file
2400
+ */
2346
2401
  file: Blob | File;
2347
2402
  };
2348
2403
  export type FreeipaProfile = {
@@ -2355,6 +2410,9 @@ export type FreeipaProfile = {
2355
2410
  * Indicates when the user has agreed with the policy.
2356
2411
  */
2357
2412
  agreement_date?: string;
2413
+ /**
2414
+ * Active
2415
+ */
2358
2416
  readonly is_active: boolean;
2359
2417
  readonly user: string;
2360
2418
  readonly user_uuid: string;
@@ -2499,6 +2557,10 @@ export type IdentityProvider = {
2499
2557
  */
2500
2558
  management_url?: string;
2501
2559
  protected_fields?: unknown;
2560
+ /**
2561
+ * Space-separated list of scopes to request during authentication.
2562
+ */
2563
+ extra_scope?: string | null;
2502
2564
  };
2503
2565
  export type IdentityProviderRequest = {
2504
2566
  provider: string;
@@ -2523,6 +2585,28 @@ export type IdentityProviderRequest = {
2523
2585
  */
2524
2586
  management_url?: string;
2525
2587
  protected_fields?: unknown;
2588
+ /**
2589
+ * Space-separated list of scopes to request during authentication.
2590
+ */
2591
+ extra_scope?: string | null;
2592
+ };
2593
+ export type ImageCreateRequest = {
2594
+ name: string;
2595
+ min_ram?: number;
2596
+ min_disk?: number;
2597
+ disk_format?: DiskFormatEnum;
2598
+ container_format?: ContainerFormatEnum;
2599
+ visibility?: VisibilityEnum;
2600
+ };
2601
+ export type ImageCreateResponse = {
2602
+ image_id: string;
2603
+ name: string;
2604
+ status: string;
2605
+ upload_url: string;
2606
+ };
2607
+ export type ImageUploadResponse = {
2608
+ status: string;
2609
+ message: string;
2526
2610
  };
2527
2611
  export type ImportResourceRequest = {
2528
2612
  backend_id: string;
@@ -2541,10 +2625,16 @@ export type InstanceFlavorChangeRequest = {
2541
2625
  export type IntegrationStatus = {
2542
2626
  readonly agent_type?: string;
2543
2627
  readonly status?: string;
2628
+ /**
2629
+ * Time of latest backend request
2630
+ */
2544
2631
  readonly last_request_timestamp?: string | null;
2545
2632
  };
2546
2633
  export type IntegrationStatusDetails = {
2547
2634
  readonly status: string;
2635
+ /**
2636
+ * Time of latest backend request
2637
+ */
2548
2638
  readonly last_request_timestamp: string | null;
2549
2639
  offering: string;
2550
2640
  readonly url: string;
@@ -2610,6 +2700,9 @@ export type Invoice = {
2610
2700
  readonly url?: string;
2611
2701
  readonly uuid?: string;
2612
2702
  readonly number?: number;
2703
+ /**
2704
+ * Organization
2705
+ */
2613
2706
  customer?: string;
2614
2707
  price?: string;
2615
2708
  tax?: string;
@@ -2801,6 +2894,9 @@ export type Issue = {
2801
2894
  assignee?: string | null;
2802
2895
  readonly assignee_uuid: string | null;
2803
2896
  readonly assignee_name: string | null;
2897
+ /**
2898
+ * Organization
2899
+ */
2804
2900
  customer?: string | null;
2805
2901
  readonly customer_uuid: string | null;
2806
2902
  readonly customer_name: string | null;
@@ -2833,6 +2929,9 @@ export type IssueRequest = {
2833
2929
  priority?: string;
2834
2930
  caller?: string | null;
2835
2931
  assignee?: string | null;
2932
+ /**
2933
+ * Organization
2934
+ */
2836
2935
  customer?: string | null;
2837
2936
  project?: string | null;
2838
2937
  resource?: string;
@@ -2861,11 +2960,15 @@ export type JiraIssue = {
2861
2960
  };
2862
2961
  export type JiraIssueFields = {
2863
2962
  project: JiraIssueProject;
2864
- comment?: {};
2963
+ comment?: {
2964
+ [key: string]: unknown;
2965
+ };
2865
2966
  };
2866
2967
  export type JiraIssueFieldsRequest = {
2867
2968
  project: JiraIssueProjectRequest;
2868
- comment?: {};
2969
+ comment?: {
2970
+ [key: string]: unknown;
2971
+ };
2869
2972
  };
2870
2973
  export type JiraIssueProject = {
2871
2974
  id: string;
@@ -2884,6 +2987,9 @@ export type JiraIssueRequest = {
2884
2987
  export type KeycloakGroup = {
2885
2988
  readonly uuid: string;
2886
2989
  readonly url: string;
2990
+ /**
2991
+ * Group name
2992
+ */
2887
2993
  readonly name: string;
2888
2994
  readonly backend_id: string;
2889
2995
  readonly scope_type: string;
@@ -3052,6 +3158,9 @@ export type MarketplaceProviderCustomer = {
3052
3158
  slug?: string;
3053
3159
  abbreviation?: string;
3054
3160
  phone_number?: string;
3161
+ /**
3162
+ * Email address
3163
+ */
3055
3164
  email?: string;
3056
3165
  readonly payment_profiles?: Array<PaymentProfile>;
3057
3166
  billing_price_estimate?: NestedPriceEstimate;
@@ -3082,6 +3191,9 @@ export type MarketplaceServiceProviderUser = {
3082
3191
  first_name?: string;
3083
3192
  last_name?: string;
3084
3193
  organization?: string;
3194
+ /**
3195
+ * Email address
3196
+ */
3085
3197
  email?: string;
3086
3198
  phone_number?: string;
3087
3199
  readonly projects_count?: number;
@@ -3094,6 +3206,7 @@ export type MarketplaceServiceProviderUser = {
3094
3206
  */
3095
3207
  affiliations?: unknown;
3096
3208
  /**
3209
+ * Active
3097
3210
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
3098
3211
  */
3099
3212
  is_active?: boolean;
@@ -3219,6 +3332,18 @@ export type MergedPluginOptions = {
3219
3332
  managed_rancher_load_balancer_system_volume_type_name?: string;
3220
3333
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3221
3334
  managed_rancher_load_balancer_data_volume_type_name?: string;
3335
+ /**
3336
+ * Max number of vCPUs for tenants
3337
+ */
3338
+ managed_rancher_tenant_max_cpu?: number;
3339
+ /**
3340
+ * Max number of RAM for tenants
3341
+ */
3342
+ managed_rancher_tenant_max_ram?: number;
3343
+ /**
3344
+ * Max size of disk space for tenants (GB)
3345
+ */
3346
+ managed_rancher_tenant_max_disk?: number;
3222
3347
  /**
3223
3348
  * Slurm account name generation policy
3224
3349
  */
@@ -3345,6 +3470,18 @@ export type MergedPluginOptionsRequest = {
3345
3470
  managed_rancher_load_balancer_system_volume_type_name?: string;
3346
3471
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3347
3472
  managed_rancher_load_balancer_data_volume_type_name?: string;
3473
+ /**
3474
+ * Max number of vCPUs for tenants
3475
+ */
3476
+ managed_rancher_tenant_max_cpu?: number;
3477
+ /**
3478
+ * Max number of RAM for tenants
3479
+ */
3480
+ managed_rancher_tenant_max_ram?: number;
3481
+ /**
3482
+ * Max size of disk space for tenants (GB)
3483
+ */
3484
+ managed_rancher_tenant_max_disk?: number;
3348
3485
  /**
3349
3486
  * Slurm account name generation policy
3350
3487
  */
@@ -3412,8 +3549,17 @@ export type MergedSecretOptions = {
3412
3549
  * Organization UUID
3413
3550
  */
3414
3551
  customer_uuid?: string;
3552
+ /**
3553
+ * Rancher server URL
3554
+ */
3415
3555
  backend_url?: string;
3556
+ /**
3557
+ * Rancher access key
3558
+ */
3416
3559
  username?: string;
3560
+ /**
3561
+ * Rancher secret key
3562
+ */
3417
3563
  password?: string;
3418
3564
  cloud_init_template?: string;
3419
3565
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -3556,8 +3702,17 @@ export type MergedSecretOptionsRequest = {
3556
3702
  * Organization UUID
3557
3703
  */
3558
3704
  customer_uuid?: string;
3705
+ /**
3706
+ * Rancher server URL
3707
+ */
3559
3708
  backend_url?: string;
3709
+ /**
3710
+ * Rancher access key
3711
+ */
3560
3712
  username?: string;
3713
+ /**
3714
+ * Rancher secret key
3715
+ */
3561
3716
  password?: string;
3562
3717
  cloud_init_template?: string;
3563
3718
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -4064,7 +4219,9 @@ export type Offering = {
4064
4219
  category?: string;
4065
4220
  readonly category_uuid?: string;
4066
4221
  readonly category_title?: string;
4067
- readonly attributes?: {};
4222
+ readonly attributes?: {
4223
+ [key: string]: unknown;
4224
+ };
4068
4225
  options?: OfferingOptions;
4069
4226
  resource_options?: OfferingOptions;
4070
4227
  readonly components?: Array<OfferingComponent>;
@@ -4236,7 +4393,9 @@ export type OfferingCreate = {
4236
4393
  components?: Array<OfferingComponent>;
4237
4394
  plugin_options: MergedPluginOptions;
4238
4395
  secret_options: MergedSecretOptions;
4239
- readonly service_attributes: {};
4396
+ readonly service_attributes: {
4397
+ [key: string]: unknown;
4398
+ };
4240
4399
  state: OfferingState;
4241
4400
  vendor_details?: string;
4242
4401
  getting_started?: string;
@@ -4423,6 +4582,9 @@ export type OfferingPauseRequest = {
4423
4582
  };
4424
4583
  export type OfferingPermission = {
4425
4584
  readonly url: string;
4585
+ /**
4586
+ * ID
4587
+ */
4426
4588
  readonly pk: number;
4427
4589
  readonly created: string;
4428
4590
  expiration_time?: string | null;
@@ -4431,7 +4593,7 @@ export type OfferingPermission = {
4431
4593
  readonly offering_uuid: string;
4432
4594
  readonly offering_slug: string;
4433
4595
  readonly offering_name: string;
4434
- readonly role: string;
4596
+ role: string;
4435
4597
  readonly role_name: string;
4436
4598
  readonly user: string;
4437
4599
  readonly user_full_name: string;
@@ -4441,6 +4603,9 @@ export type OfferingPermission = {
4441
4603
  */
4442
4604
  readonly user_username: string;
4443
4605
  readonly user_uuid: string;
4606
+ /**
4607
+ * Email address
4608
+ */
4444
4609
  readonly user_email: string;
4445
4610
  };
4446
4611
  export type OfferingReference = {
@@ -4519,9 +4684,9 @@ export type OfferingUser = {
4519
4684
  user?: string;
4520
4685
  offering?: string;
4521
4686
  username?: string | null;
4522
- readonly offering_uuid?: string;
4687
+ offering_uuid?: string;
4523
4688
  readonly offering_name?: string;
4524
- readonly user_uuid?: string;
4689
+ user_uuid?: string;
4525
4690
  /**
4526
4691
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
4527
4692
  */
@@ -4537,9 +4702,11 @@ export type OfferingUser = {
4537
4702
  readonly is_restricted?: boolean;
4538
4703
  };
4539
4704
  export type OfferingUserRequest = {
4540
- user: string;
4541
- offering: string;
4705
+ user?: string;
4706
+ offering?: string;
4542
4707
  username?: string | null;
4708
+ offering_uuid?: string;
4709
+ user_uuid?: string;
4543
4710
  };
4544
4711
  export type OfferingUserRole = {
4545
4712
  name: string;
@@ -4628,7 +4795,9 @@ export type OpenStackBackup = {
4628
4795
  readonly tenant_uuid?: string;
4629
4796
  readonly marketplace_offering_uuid?: string | null;
4630
4797
  readonly marketplace_offering_name?: string | null;
4631
- readonly marketplace_offering_plugin_options?: {} | null;
4798
+ readonly marketplace_offering_plugin_options?: {
4799
+ [key: string]: unknown;
4800
+ } | null;
4632
4801
  readonly marketplace_category_uuid?: string | null;
4633
4802
  readonly marketplace_category_name?: string | null;
4634
4803
  readonly marketplace_resource_uuid?: string | null;
@@ -4744,7 +4913,9 @@ export type OpenStackFloatingIp = {
4744
4913
  readonly instance_url?: string | null;
4745
4914
  readonly marketplace_offering_uuid?: string | null;
4746
4915
  readonly marketplace_offering_name?: string | null;
4747
- readonly marketplace_offering_plugin_options?: {} | null;
4916
+ readonly marketplace_offering_plugin_options?: {
4917
+ [key: string]: unknown;
4918
+ } | null;
4748
4919
  readonly marketplace_category_uuid?: string | null;
4749
4920
  readonly marketplace_category_name?: string | null;
4750
4921
  readonly marketplace_resource_uuid?: string | null;
@@ -4857,7 +5028,9 @@ export type OpenStackInstance = {
4857
5028
  rancher_cluster?: RancherClusterReference | null;
4858
5029
  readonly marketplace_offering_uuid?: string | null;
4859
5030
  readonly marketplace_offering_name?: string | null;
4860
- readonly marketplace_offering_plugin_options?: {} | null;
5031
+ readonly marketplace_offering_plugin_options?: {
5032
+ [key: string]: unknown;
5033
+ } | null;
4861
5034
  readonly marketplace_category_uuid?: string | null;
4862
5035
  readonly marketplace_category_name?: string | null;
4863
5036
  readonly marketplace_resource_uuid?: string | null;
@@ -5034,7 +5207,9 @@ export type OpenStackNetwork = {
5034
5207
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
5035
5208
  readonly marketplace_offering_uuid?: string | null;
5036
5209
  readonly marketplace_offering_name?: string | null;
5037
- readonly marketplace_offering_plugin_options?: {} | null;
5210
+ readonly marketplace_offering_plugin_options?: {
5211
+ [key: string]: unknown;
5212
+ } | null;
5038
5213
  readonly marketplace_category_uuid?: string | null;
5039
5214
  readonly marketplace_category_name?: string | null;
5040
5215
  readonly marketplace_resource_uuid?: string | null;
@@ -5090,7 +5265,9 @@ export type OpenStackPort = {
5090
5265
  readonly status?: string | null;
5091
5266
  readonly marketplace_offering_uuid?: string | null;
5092
5267
  readonly marketplace_offering_name?: string | null;
5093
- readonly marketplace_offering_plugin_options?: {} | null;
5268
+ readonly marketplace_offering_plugin_options?: {
5269
+ [key: string]: unknown;
5270
+ } | null;
5094
5271
  readonly marketplace_category_uuid?: string | null;
5095
5272
  readonly marketplace_category_name?: string | null;
5096
5273
  readonly marketplace_resource_uuid?: string | null;
@@ -5154,7 +5331,9 @@ export type OpenStackRouter = {
5154
5331
  readonly ports?: Array<OpenStackNestedPort>;
5155
5332
  readonly marketplace_offering_uuid?: string | null;
5156
5333
  readonly marketplace_offering_name?: string | null;
5157
- readonly marketplace_offering_plugin_options?: {} | null;
5334
+ readonly marketplace_offering_plugin_options?: {
5335
+ [key: string]: unknown;
5336
+ } | null;
5158
5337
  readonly marketplace_category_uuid?: string | null;
5159
5338
  readonly marketplace_category_name?: string | null;
5160
5339
  readonly marketplace_resource_uuid?: string | null;
@@ -5205,7 +5384,9 @@ export type OpenStackSecurityGroup = {
5205
5384
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
5206
5385
  readonly marketplace_offering_uuid?: string | null;
5207
5386
  readonly marketplace_offering_name?: string | null;
5208
- readonly marketplace_offering_plugin_options?: {} | null;
5387
+ readonly marketplace_offering_plugin_options?: {
5388
+ [key: string]: unknown;
5389
+ } | null;
5209
5390
  readonly marketplace_category_uuid?: string | null;
5210
5391
  readonly marketplace_category_name?: string | null;
5211
5392
  readonly marketplace_resource_uuid?: string | null;
@@ -5293,7 +5474,9 @@ export type OpenStackServerGroup = {
5293
5474
  readonly instances?: Array<OpenStackNestedInstance>;
5294
5475
  readonly marketplace_offering_uuid?: string | null;
5295
5476
  readonly marketplace_offering_name?: string | null;
5296
- readonly marketplace_offering_plugin_options?: {} | null;
5477
+ readonly marketplace_offering_plugin_options?: {
5478
+ [key: string]: unknown;
5479
+ } | null;
5297
5480
  readonly marketplace_category_uuid?: string | null;
5298
5481
  readonly marketplace_category_name?: string | null;
5299
5482
  readonly marketplace_resource_uuid?: string | null;
@@ -5350,7 +5533,9 @@ export type OpenStackSnapshot = {
5350
5533
  kept_until?: string | null;
5351
5534
  readonly marketplace_offering_uuid?: string | null;
5352
5535
  readonly marketplace_offering_name?: string | null;
5353
- readonly marketplace_offering_plugin_options?: {} | null;
5536
+ readonly marketplace_offering_plugin_options?: {
5537
+ [key: string]: unknown;
5538
+ } | null;
5354
5539
  readonly marketplace_category_uuid?: string | null;
5355
5540
  readonly marketplace_category_name?: string | null;
5356
5541
  readonly marketplace_resource_uuid?: string | null;
@@ -5449,7 +5634,9 @@ export type OpenStackSubNet = {
5449
5634
  readonly is_connected?: boolean;
5450
5635
  readonly marketplace_offering_uuid?: string | null;
5451
5636
  readonly marketplace_offering_name?: string | null;
5452
- readonly marketplace_offering_plugin_options?: {} | null;
5637
+ readonly marketplace_offering_plugin_options?: {
5638
+ [key: string]: unknown;
5639
+ } | null;
5453
5640
  readonly marketplace_category_uuid?: string | null;
5454
5641
  readonly marketplace_category_name?: string | null;
5455
5642
  readonly marketplace_resource_uuid?: string | null;
@@ -5513,7 +5700,9 @@ export type OpenStackTenant = {
5513
5700
  default_volume_type_name?: string;
5514
5701
  readonly marketplace_offering_uuid?: string | null;
5515
5702
  readonly marketplace_offering_name?: string | null;
5516
- readonly marketplace_offering_plugin_options?: {} | null;
5703
+ readonly marketplace_offering_plugin_options?: {
5704
+ [key: string]: unknown;
5705
+ } | null;
5517
5706
  readonly marketplace_category_uuid?: string | null;
5518
5707
  readonly marketplace_category_name?: string | null;
5519
5708
  readonly marketplace_resource_uuid?: string | null;
@@ -5617,7 +5806,9 @@ export type OpenStackVolume = {
5617
5806
  readonly extend_enabled?: boolean;
5618
5807
  readonly marketplace_offering_uuid?: string | null;
5619
5808
  readonly marketplace_offering_name?: string | null;
5620
- readonly marketplace_offering_plugin_options?: {} | null;
5809
+ readonly marketplace_offering_plugin_options?: {
5810
+ [key: string]: unknown;
5811
+ } | null;
5621
5812
  readonly marketplace_category_uuid?: string | null;
5622
5813
  readonly marketplace_category_name?: string | null;
5623
5814
  readonly marketplace_resource_uuid?: string | null;
@@ -5720,6 +5911,9 @@ export type OrderCreate = {
5720
5911
  readonly marketplace_resource_uuid: string;
5721
5912
  readonly error_message: string;
5722
5913
  callback_url?: string | null;
5914
+ /**
5915
+ * Completion time
5916
+ */
5723
5917
  readonly completed_at: string | null;
5724
5918
  readonly url: string;
5725
5919
  readonly created_by: string;
@@ -5788,7 +5982,9 @@ export type OrderDetails = {
5788
5982
  /**
5789
5983
  * Get attributes excluding secret attributes, such as username and password.
5790
5984
  */
5791
- readonly attributes?: {};
5985
+ readonly attributes?: {
5986
+ [key: string]: unknown;
5987
+ };
5792
5988
  limits?: {
5793
5989
  [key: string]: number;
5794
5990
  };
@@ -5805,6 +6001,9 @@ export type OrderDetails = {
5805
6001
  readonly marketplace_resource_uuid?: string;
5806
6002
  readonly error_message?: string;
5807
6003
  callback_url?: string | null;
6004
+ /**
6005
+ * Completion time
6006
+ */
5808
6007
  readonly completed_at?: string | null;
5809
6008
  /**
5810
6009
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -6026,6 +6225,9 @@ export type PatchedCustomerRequest = {
6026
6225
  native_name?: string;
6027
6226
  abbreviation?: string;
6028
6227
  contact_details?: string;
6228
+ /**
6229
+ * Email address
6230
+ */
6029
6231
  email?: string;
6030
6232
  phone_number?: string;
6031
6233
  registration_code?: string;
@@ -6088,6 +6290,10 @@ export type PatchedIdentityProviderRequest = {
6088
6290
  */
6089
6291
  management_url?: string;
6090
6292
  protected_fields?: unknown;
6293
+ /**
6294
+ * Space-separated list of scopes to request during authentication.
6295
+ */
6296
+ extra_scope?: string | null;
6091
6297
  };
6092
6298
  export type PatchedInvoiceItemUpdateRequest = {
6093
6299
  article_code?: string;
@@ -6194,6 +6400,8 @@ export type PatchedOfferingUserRequest = {
6194
6400
  user?: string;
6195
6401
  offering?: string;
6196
6402
  username?: string | null;
6403
+ offering_uuid?: string;
6404
+ user_uuid?: string;
6197
6405
  };
6198
6406
  export type PatchedOfferingUserRoleRequest = {
6199
6407
  name?: string;
@@ -6306,8 +6514,14 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
6306
6514
  };
6307
6515
  export type PatchedProjectRequest = {
6308
6516
  name?: string;
6517
+ /**
6518
+ * Organization
6519
+ */
6309
6520
  customer?: string;
6310
6521
  description?: string;
6522
+ /**
6523
+ * Project type
6524
+ */
6311
6525
  type?: string | null;
6312
6526
  backend_id?: string;
6313
6527
  start_date?: string | null;
@@ -6400,7 +6614,9 @@ export type PatchedRancherApplicationRequest = {
6400
6614
  namespace?: string;
6401
6615
  namespace_name?: string;
6402
6616
  version?: string;
6403
- answers?: {};
6617
+ answers?: {
6618
+ [key: string]: unknown;
6619
+ };
6404
6620
  };
6405
6621
  export type PatchedRancherCatalogRequest = {
6406
6622
  name?: string;
@@ -6508,22 +6724,80 @@ export type PatchedRobotAccountRequest = {
6508
6724
  export type PatchedRoleDetailsRequest = {
6509
6725
  name?: string;
6510
6726
  description?: string;
6727
+ /**
6728
+ * Description [en]
6729
+ */
6511
6730
  description_en?: string | null;
6731
+ /**
6732
+ * Description [et]
6733
+ */
6512
6734
  description_et?: string | null;
6735
+ /**
6736
+ * Description [lt]
6737
+ */
6513
6738
  description_lt?: string | null;
6739
+ /**
6740
+ * Description [lv]
6741
+ */
6514
6742
  description_lv?: string | null;
6743
+ /**
6744
+ * Description [ru]
6745
+ */
6515
6746
  description_ru?: string | null;
6747
+ /**
6748
+ * Description [it]
6749
+ */
6516
6750
  description_it?: string | null;
6751
+ /**
6752
+ * Description [de]
6753
+ */
6517
6754
  description_de?: string | null;
6755
+ /**
6756
+ * Description [da]
6757
+ */
6518
6758
  description_da?: string | null;
6759
+ /**
6760
+ * Description [sv]
6761
+ */
6519
6762
  description_sv?: string | null;
6763
+ /**
6764
+ * Description [es]
6765
+ */
6520
6766
  description_es?: string | null;
6767
+ /**
6768
+ * Description [fr]
6769
+ */
6521
6770
  description_fr?: string | null;
6771
+ /**
6772
+ * Description [nb]
6773
+ */
6522
6774
  description_nb?: string | null;
6775
+ /**
6776
+ * Description [ar]
6777
+ */
6523
6778
  description_ar?: string | null;
6779
+ /**
6780
+ * Description [cs]
6781
+ */
6524
6782
  description_cs?: string | null;
6525
6783
  is_active?: boolean;
6526
6784
  };
6785
+ export type PatchedRulePlansRequest = {
6786
+ rule?: string;
6787
+ plan?: string;
6788
+ attributes?: {
6789
+ [key: string]: unknown;
6790
+ };
6791
+ limits?: {
6792
+ [key: string]: unknown;
6793
+ };
6794
+ };
6795
+ export type PatchedRuleRequest = {
6796
+ user_affiliations?: Array<string>;
6797
+ user_email_patterns?: Array<string>;
6798
+ customer?: string;
6799
+ project_role?: string | null;
6800
+ };
6527
6801
  export type PatchedScreenshotRequest = {
6528
6802
  name?: string;
6529
6803
  description?: string;
@@ -6565,14 +6839,17 @@ export type PatchedUserRequest = {
6565
6839
  organization?: string;
6566
6840
  description?: string;
6567
6841
  /**
6842
+ * Staff status
6568
6843
  * Designates whether the user can log into this admin site.
6569
6844
  */
6570
6845
  is_staff?: boolean;
6571
6846
  /**
6847
+ * Active
6572
6848
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
6573
6849
  */
6574
6850
  is_active?: boolean;
6575
6851
  /**
6852
+ * Support status
6576
6853
  * Designates whether the user is a global support user.
6577
6854
  */
6578
6855
  is_support?: boolean;
@@ -6730,7 +7007,13 @@ export type PlanComponent = {
6730
7007
  readonly measured_unit: string;
6731
7008
  billing_type: BillingTypeEnum;
6732
7009
  amount?: number;
7010
+ /**
7011
+ * Price per unit per billing period.
7012
+ */
6733
7013
  price?: string;
7014
+ /**
7015
+ * Price per unit for future month.
7016
+ */
6734
7017
  future_price?: string | null;
6735
7018
  };
6736
7019
  export type PlanUsageResponse = {
@@ -6774,6 +7057,9 @@ export type Project = {
6774
7057
  readonly uuid?: string;
6775
7058
  name?: string;
6776
7059
  readonly slug?: string;
7060
+ /**
7061
+ * Organization
7062
+ */
6777
7063
  customer?: string;
6778
7064
  readonly customer_uuid?: string;
6779
7065
  readonly customer_name?: string;
@@ -6782,6 +7068,9 @@ export type Project = {
6782
7068
  readonly customer_abbreviation?: string;
6783
7069
  description?: string;
6784
7070
  readonly created?: string;
7071
+ /**
7072
+ * Project type
7073
+ */
6785
7074
  type?: string | null;
6786
7075
  readonly type_name?: string | null;
6787
7076
  readonly type_uuid?: string | null;
@@ -6897,6 +7186,9 @@ export type ProjectPermissionLog = {
6897
7186
  */
6898
7187
  readonly user_username?: string;
6899
7188
  readonly user_uuid?: string;
7189
+ /**
7190
+ * Email address
7191
+ */
6900
7192
  readonly user_email?: string;
6901
7193
  };
6902
7194
  export type ProjectQuotas = {
@@ -6907,8 +7199,14 @@ export type ProjectQuotas = {
6907
7199
  };
6908
7200
  export type ProjectRequest = {
6909
7201
  name: string;
7202
+ /**
7203
+ * Organization
7204
+ */
6910
7205
  customer: string;
6911
7206
  description?: string;
7207
+ /**
7208
+ * Project type
7209
+ */
6912
7210
  type?: string | null;
6913
7211
  backend_id?: string;
6914
7212
  start_date?: string | null;
@@ -6971,6 +7269,9 @@ export type ProjectUser = {
6971
7269
  */
6972
7270
  username: string;
6973
7271
  readonly full_name: string;
7272
+ /**
7273
+ * Email address
7274
+ */
6974
7275
  email?: string;
6975
7276
  readonly role: string;
6976
7277
  readonly expiration_time: string | null;
@@ -7260,6 +7561,9 @@ export type ProviderOfferingCustomer = {
7260
7561
  slug: string;
7261
7562
  abbreviation?: string;
7262
7563
  phone_number?: string;
7564
+ /**
7565
+ * Email address
7566
+ */
7263
7567
  email?: string;
7264
7568
  };
7265
7569
  export type ProviderOfferingDetails = {
@@ -7288,13 +7592,17 @@ export type ProviderOfferingDetails = {
7288
7592
  category?: string;
7289
7593
  readonly category_uuid?: string;
7290
7594
  readonly category_title?: string;
7291
- readonly attributes?: {};
7595
+ readonly attributes?: {
7596
+ [key: string]: unknown;
7597
+ };
7292
7598
  options?: OfferingOptions;
7293
7599
  resource_options?: OfferingOptions;
7294
7600
  readonly components?: Array<OfferingComponent>;
7295
7601
  plugin_options?: MergedPluginOptions;
7296
7602
  secret_options?: MergedSecretOptions;
7297
- readonly service_attributes?: {};
7603
+ readonly service_attributes?: {
7604
+ [key: string]: unknown;
7605
+ };
7298
7606
  state?: OfferingState;
7299
7607
  vendor_details?: string;
7300
7608
  getting_started?: string;
@@ -7456,6 +7764,9 @@ export type ProviderRequestedOffering = {
7456
7764
  call: string;
7457
7765
  readonly description: string;
7458
7766
  readonly created_by_name: string;
7767
+ /**
7768
+ * Email address
7769
+ */
7459
7770
  readonly created_by_email: string;
7460
7771
  };
7461
7772
  export type ProviderRequestedResource = {
@@ -7477,6 +7788,9 @@ export type ProviderRequestedResource = {
7477
7788
  export type ProviderUser = {
7478
7789
  readonly uuid?: string;
7479
7790
  readonly full_name?: string;
7791
+ /**
7792
+ * Email address
7793
+ */
7480
7794
  email?: string;
7481
7795
  image?: string | null;
7482
7796
  };
@@ -7538,7 +7852,9 @@ export type PublicOfferingDetails = {
7538
7852
  category?: string;
7539
7853
  readonly category_uuid?: string;
7540
7854
  readonly category_title?: string;
7541
- readonly attributes?: {};
7855
+ readonly attributes?: {
7856
+ [key: string]: unknown;
7857
+ };
7542
7858
  options?: OfferingOptions;
7543
7859
  resource_options?: OfferingOptions;
7544
7860
  readonly components?: Array<OfferingComponent>;
@@ -7641,14 +7957,18 @@ export type RancherApplication = {
7641
7957
  rancher_project?: string;
7642
7958
  namespace?: string;
7643
7959
  version?: string;
7644
- answers?: {};
7960
+ answers?: {
7961
+ [key: string]: unknown;
7962
+ };
7645
7963
  readonly rancher_project_name?: string;
7646
7964
  readonly catalog_name?: string;
7647
7965
  readonly template_name?: string;
7648
7966
  readonly external_url?: string | null;
7649
7967
  readonly marketplace_offering_uuid?: string | null;
7650
7968
  readonly marketplace_offering_name?: string | null;
7651
- readonly marketplace_offering_plugin_options?: {} | null;
7969
+ readonly marketplace_offering_plugin_options?: {
7970
+ [key: string]: unknown;
7971
+ } | null;
7652
7972
  readonly marketplace_category_uuid?: string | null;
7653
7973
  readonly marketplace_category_name?: string | null;
7654
7974
  readonly marketplace_resource_uuid?: string | null;
@@ -7671,7 +7991,9 @@ export type RancherApplicationRequest = {
7671
7991
  namespace?: string;
7672
7992
  namespace_name?: string;
7673
7993
  version: string;
7674
- answers?: {};
7994
+ answers?: {
7995
+ [key: string]: unknown;
7996
+ };
7675
7997
  };
7676
7998
  export type RancherCatalog = {
7677
7999
  readonly uuid: string;
@@ -7789,9 +8111,12 @@ export type RancherCluster = {
7789
8111
  * Kubernetes version used in the cluster.
7790
8112
  */
7791
8113
  readonly kubernetes_version?: string;
8114
+ readonly router_ips?: Array<unknown>;
7792
8115
  readonly marketplace_offering_uuid?: string | null;
7793
8116
  readonly marketplace_offering_name?: string | null;
7794
- readonly marketplace_offering_plugin_options?: {} | null;
8117
+ readonly marketplace_offering_plugin_options?: {
8118
+ [key: string]: unknown;
8119
+ } | null;
7795
8120
  readonly marketplace_category_uuid?: string | null;
7796
8121
  readonly marketplace_category_name?: string | null;
7797
8122
  readonly marketplace_resource_uuid?: string | null;
@@ -7847,8 +8172,17 @@ export type RancherClusterTemplate = {
7847
8172
  nodes: Array<RancherClusterTemplateNode>;
7848
8173
  };
7849
8174
  export type RancherClusterTemplateNode = {
8175
+ /**
8176
+ * Min vCPU (cores)
8177
+ */
7850
8178
  min_vcpu: number;
8179
+ /**
8180
+ * Min RAM (GB)
8181
+ */
7851
8182
  min_ram: number;
8183
+ /**
8184
+ * System volume size (GB)
8185
+ */
7852
8186
  system_volume_size: number;
7853
8187
  preferred_volume_type?: string;
7854
8188
  role: RoleEnum;
@@ -7948,7 +8282,9 @@ export type RancherIngress = {
7948
8282
  rules?: unknown;
7949
8283
  readonly marketplace_offering_uuid?: string | null;
7950
8284
  readonly marketplace_offering_name?: string | null;
7951
- readonly marketplace_offering_plugin_options?: {} | null;
8285
+ readonly marketplace_offering_plugin_options?: {
8286
+ [key: string]: unknown;
8287
+ } | null;
7952
8288
  readonly marketplace_category_uuid?: string | null;
7953
8289
  readonly marketplace_category_name?: string | null;
7954
8290
  readonly marketplace_resource_uuid?: string | null;
@@ -8129,7 +8465,9 @@ export type RancherService = {
8129
8465
  target_workloads?: Array<RancherNestedWorkload>;
8130
8466
  readonly marketplace_offering_uuid?: string | null;
8131
8467
  readonly marketplace_offering_name?: string | null;
8132
- readonly marketplace_offering_plugin_options?: {} | null;
8468
+ readonly marketplace_offering_plugin_options?: {
8469
+ [key: string]: unknown;
8470
+ } | null;
8133
8471
  readonly marketplace_category_uuid?: string | null;
8134
8472
  readonly marketplace_category_name?: string | null;
8135
8473
  readonly marketplace_resource_uuid?: string | null;
@@ -8174,6 +8512,9 @@ export type RancherTemplateBaseQuestion = {
8174
8512
  description?: string;
8175
8513
  variable: string;
8176
8514
  required?: boolean;
8515
+ /**
8516
+ * Validate
8517
+ */
8177
8518
  validate_?: unknown;
8178
8519
  type: RancherTemplateQuestionType;
8179
8520
  default?: string | null;
@@ -8185,6 +8526,9 @@ export type RancherTemplateQuestion = {
8185
8526
  description?: string;
8186
8527
  variable: string;
8187
8528
  required?: boolean;
8529
+ /**
8530
+ * Validate
8531
+ */
8188
8532
  validate_?: unknown;
8189
8533
  type: RancherTemplateQuestionType;
8190
8534
  default?: string | null;
@@ -8433,7 +8777,9 @@ export type Resource = {
8433
8777
  readonly plan_name?: string | null;
8434
8778
  readonly plan_uuid?: string | null;
8435
8779
  readonly plan_description?: string | null;
8436
- readonly attributes?: {};
8780
+ readonly attributes?: {
8781
+ [key: string]: unknown;
8782
+ };
8437
8783
  readonly limits?: {
8438
8784
  [key: string]: number;
8439
8785
  };
@@ -8577,6 +8923,9 @@ export type ResourceSwitchPlanRequest = {
8577
8923
  plan: string;
8578
8924
  };
8579
8925
  export type ResourceTerminateRequest = {
8926
+ /**
8927
+ * Termination attributes
8928
+ */
8580
8929
  attributes?: unknown;
8581
8930
  };
8582
8931
  export type ResourceUpdate = {
@@ -8742,55 +9091,181 @@ export type RobotAccountRequest = {
8742
9091
  export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
8743
9092
  export type RoleDescription = {
8744
9093
  description?: string;
9094
+ /**
9095
+ * Description [en]
9096
+ */
8745
9097
  description_en?: string | null;
9098
+ /**
9099
+ * Description [et]
9100
+ */
8746
9101
  description_et?: string | null;
9102
+ /**
9103
+ * Description [lt]
9104
+ */
8747
9105
  description_lt?: string | null;
9106
+ /**
9107
+ * Description [lv]
9108
+ */
8748
9109
  description_lv?: string | null;
9110
+ /**
9111
+ * Description [ru]
9112
+ */
8749
9113
  description_ru?: string | null;
9114
+ /**
9115
+ * Description [it]
9116
+ */
8750
9117
  description_it?: string | null;
9118
+ /**
9119
+ * Description [de]
9120
+ */
8751
9121
  description_de?: string | null;
9122
+ /**
9123
+ * Description [da]
9124
+ */
8752
9125
  description_da?: string | null;
9126
+ /**
9127
+ * Description [sv]
9128
+ */
8753
9129
  description_sv?: string | null;
9130
+ /**
9131
+ * Description [es]
9132
+ */
8754
9133
  description_es?: string | null;
9134
+ /**
9135
+ * Description [fr]
9136
+ */
8755
9137
  description_fr?: string | null;
9138
+ /**
9139
+ * Description [nb]
9140
+ */
8756
9141
  description_nb?: string | null;
9142
+ /**
9143
+ * Description [ar]
9144
+ */
8757
9145
  description_ar?: string | null;
9146
+ /**
9147
+ * Description [cs]
9148
+ */
8758
9149
  description_cs?: string | null;
8759
9150
  };
8760
9151
  export type RoleDescriptionRequest = {
8761
9152
  description?: string;
9153
+ /**
9154
+ * Description [en]
9155
+ */
8762
9156
  description_en?: string | null;
9157
+ /**
9158
+ * Description [et]
9159
+ */
8763
9160
  description_et?: string | null;
9161
+ /**
9162
+ * Description [lt]
9163
+ */
8764
9164
  description_lt?: string | null;
9165
+ /**
9166
+ * Description [lv]
9167
+ */
8765
9168
  description_lv?: string | null;
9169
+ /**
9170
+ * Description [ru]
9171
+ */
8766
9172
  description_ru?: string | null;
9173
+ /**
9174
+ * Description [it]
9175
+ */
8767
9176
  description_it?: string | null;
9177
+ /**
9178
+ * Description [de]
9179
+ */
8768
9180
  description_de?: string | null;
9181
+ /**
9182
+ * Description [da]
9183
+ */
8769
9184
  description_da?: string | null;
9185
+ /**
9186
+ * Description [sv]
9187
+ */
8770
9188
  description_sv?: string | null;
9189
+ /**
9190
+ * Description [es]
9191
+ */
8771
9192
  description_es?: string | null;
9193
+ /**
9194
+ * Description [fr]
9195
+ */
8772
9196
  description_fr?: string | null;
9197
+ /**
9198
+ * Description [nb]
9199
+ */
8773
9200
  description_nb?: string | null;
9201
+ /**
9202
+ * Description [ar]
9203
+ */
8774
9204
  description_ar?: string | null;
9205
+ /**
9206
+ * Description [cs]
9207
+ */
8775
9208
  description_cs?: string | null;
8776
9209
  };
8777
9210
  export type RoleDetails = {
8778
9211
  readonly uuid?: string;
8779
9212
  name?: string;
8780
9213
  description?: string;
9214
+ /**
9215
+ * Description [en]
9216
+ */
8781
9217
  description_en?: string | null;
9218
+ /**
9219
+ * Description [et]
9220
+ */
8782
9221
  description_et?: string | null;
9222
+ /**
9223
+ * Description [lt]
9224
+ */
8783
9225
  description_lt?: string | null;
9226
+ /**
9227
+ * Description [lv]
9228
+ */
8784
9229
  description_lv?: string | null;
9230
+ /**
9231
+ * Description [ru]
9232
+ */
8785
9233
  description_ru?: string | null;
9234
+ /**
9235
+ * Description [it]
9236
+ */
8786
9237
  description_it?: string | null;
9238
+ /**
9239
+ * Description [de]
9240
+ */
8787
9241
  description_de?: string | null;
9242
+ /**
9243
+ * Description [da]
9244
+ */
8788
9245
  description_da?: string | null;
9246
+ /**
9247
+ * Description [sv]
9248
+ */
8789
9249
  description_sv?: string | null;
9250
+ /**
9251
+ * Description [es]
9252
+ */
8790
9253
  description_es?: string | null;
9254
+ /**
9255
+ * Description [fr]
9256
+ */
8791
9257
  description_fr?: string | null;
9258
+ /**
9259
+ * Description [nb]
9260
+ */
8792
9261
  description_nb?: string | null;
9262
+ /**
9263
+ * Description [ar]
9264
+ */
8793
9265
  description_ar?: string | null;
9266
+ /**
9267
+ * Description [cs]
9268
+ */
8794
9269
  description_cs?: string | null;
8795
9270
  readonly permissions?: Array<string>;
8796
9271
  readonly is_system_role?: boolean;
@@ -8802,19 +9277,61 @@ export type RoleEnum = 'agent' | 'server';
8802
9277
  export type RoleModifyRequest = {
8803
9278
  name: string;
8804
9279
  description?: string;
9280
+ /**
9281
+ * Description [en]
9282
+ */
8805
9283
  description_en?: string | null;
9284
+ /**
9285
+ * Description [et]
9286
+ */
8806
9287
  description_et?: string | null;
9288
+ /**
9289
+ * Description [lt]
9290
+ */
8807
9291
  description_lt?: string | null;
9292
+ /**
9293
+ * Description [lv]
9294
+ */
8808
9295
  description_lv?: string | null;
9296
+ /**
9297
+ * Description [ru]
9298
+ */
8809
9299
  description_ru?: string | null;
9300
+ /**
9301
+ * Description [it]
9302
+ */
8810
9303
  description_it?: string | null;
9304
+ /**
9305
+ * Description [de]
9306
+ */
8811
9307
  description_de?: string | null;
9308
+ /**
9309
+ * Description [da]
9310
+ */
8812
9311
  description_da?: string | null;
9312
+ /**
9313
+ * Description [sv]
9314
+ */
8813
9315
  description_sv?: string | null;
9316
+ /**
9317
+ * Description [es]
9318
+ */
8814
9319
  description_es?: string | null;
9320
+ /**
9321
+ * Description [fr]
9322
+ */
8815
9323
  description_fr?: string | null;
9324
+ /**
9325
+ * Description [nb]
9326
+ */
8816
9327
  description_nb?: string | null;
9328
+ /**
9329
+ * Description [ar]
9330
+ */
8817
9331
  description_ar?: string | null;
9332
+ /**
9333
+ * Description [cs]
9334
+ */
8818
9335
  description_cs?: string | null;
8819
9336
  permissions: unknown;
8820
9337
  is_active?: boolean;
@@ -8842,6 +9359,43 @@ export type RoundReviewer = {
8842
9359
  rejected_proposals: number;
8843
9360
  in_review_proposals: number;
8844
9361
  };
9362
+ export type Rule = {
9363
+ readonly uuid: string;
9364
+ readonly url: string;
9365
+ user_affiliations?: Array<string>;
9366
+ user_email_patterns?: Array<string>;
9367
+ customer: string;
9368
+ project_role?: string | null;
9369
+ readonly plans: Array<string>;
9370
+ };
9371
+ export type RulePlans = {
9372
+ readonly uuid: string;
9373
+ readonly url: string;
9374
+ rule: string;
9375
+ plan: string;
9376
+ attributes?: {
9377
+ [key: string]: unknown;
9378
+ };
9379
+ limits?: {
9380
+ [key: string]: unknown;
9381
+ };
9382
+ };
9383
+ export type RulePlansRequest = {
9384
+ rule: string;
9385
+ plan: string;
9386
+ attributes?: {
9387
+ [key: string]: unknown;
9388
+ };
9389
+ limits?: {
9390
+ [key: string]: unknown;
9391
+ };
9392
+ };
9393
+ export type RuleRequest = {
9394
+ user_affiliations?: Array<string>;
9395
+ user_email_patterns?: Array<string>;
9396
+ customer: string;
9397
+ project_role?: string | null;
9398
+ };
8845
9399
  export type RuntimeStates = {
8846
9400
  readonly value: string;
8847
9401
  readonly label: string;
@@ -8970,13 +9524,18 @@ export type ServiceSettings = {
8970
9524
  * Anybody can use it
8971
9525
  */
8972
9526
  shared?: boolean;
9527
+ /**
9528
+ * Organization
9529
+ */
8973
9530
  customer?: string | null;
8974
9531
  readonly customer_name?: string | null;
8975
9532
  readonly customer_native_name?: string;
8976
9533
  terms_of_services?: string;
8977
9534
  scope?: string | null;
8978
9535
  readonly scope_uuid?: string;
8979
- readonly options?: {};
9536
+ readonly options?: {
9537
+ [key: string]: unknown;
9538
+ };
8980
9539
  };
8981
9540
  export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
8982
9541
  export type SetMtu = {
@@ -9029,7 +9588,9 @@ export type SlurmAllocation = {
9029
9588
  readonly is_active?: boolean;
9030
9589
  readonly marketplace_offering_uuid?: string | null;
9031
9590
  readonly marketplace_offering_name?: string | null;
9032
- readonly marketplace_offering_plugin_options?: {} | null;
9591
+ readonly marketplace_offering_plugin_options?: {
9592
+ [key: string]: unknown;
9593
+ } | null;
9033
9594
  readonly marketplace_category_uuid?: string | null;
9034
9595
  readonly marketplace_category_name?: string | null;
9035
9596
  readonly marketplace_resource_uuid?: string | null;
@@ -9161,6 +9722,11 @@ export type TemplateVersion = {
9161
9722
  readonly app_readme: string;
9162
9723
  readonly questions: Array<RancherTemplateQuestion>;
9163
9724
  };
9725
+ export type Tenant = {
9726
+ readonly url: string;
9727
+ readonly uuid: string;
9728
+ name: string;
9729
+ };
9164
9730
  export type TokenRequest = {
9165
9731
  token: string;
9166
9732
  };
@@ -9185,14 +9751,17 @@ export type User = {
9185
9751
  readonly civil_number?: string | null;
9186
9752
  description?: string;
9187
9753
  /**
9754
+ * Staff status
9188
9755
  * Designates whether the user can log into this admin site.
9189
9756
  */
9190
9757
  is_staff?: boolean;
9191
9758
  /**
9759
+ * Active
9192
9760
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9193
9761
  */
9194
9762
  is_active?: boolean;
9195
9763
  /**
9764
+ * Support status
9196
9765
  * Designates whether the user is a global support user.
9197
9766
  */
9198
9767
  is_support?: boolean;
@@ -9230,6 +9799,7 @@ export type User = {
9230
9799
  readonly identity_provider_fields?: Array<string>;
9231
9800
  image?: string | null;
9232
9801
  /**
9802
+ * Source of identity
9233
9803
  * Indicates what identity provider was used.
9234
9804
  */
9235
9805
  readonly identity_source?: string;
@@ -9256,6 +9826,7 @@ export type UserAuthToken = {
9256
9826
  */
9257
9827
  readonly user_username: string;
9258
9828
  /**
9829
+ * Active
9259
9830
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9260
9831
  */
9261
9832
  readonly user_is_active: boolean;
@@ -9280,14 +9851,17 @@ export type UserRequest = {
9280
9851
  organization?: string;
9281
9852
  description?: string;
9282
9853
  /**
9854
+ * Staff status
9283
9855
  * Designates whether the user can log into this admin site.
9284
9856
  */
9285
9857
  is_staff?: boolean;
9286
9858
  /**
9859
+ * Active
9287
9860
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9288
9861
  */
9289
9862
  is_active?: boolean;
9290
9863
  /**
9864
+ * Support status
9291
9865
  * Designates whether the user is a global support user.
9292
9866
  */
9293
9867
  is_support?: boolean;
@@ -9324,6 +9898,9 @@ export type UserRoleDetails = {
9324
9898
  expiration_time?: string | null;
9325
9899
  readonly role_name?: string;
9326
9900
  readonly role_uuid?: string;
9901
+ /**
9902
+ * Email address
9903
+ */
9327
9904
  readonly user_email?: string;
9328
9905
  readonly user_full_name?: string;
9329
9906
  /**
@@ -9357,6 +9934,7 @@ export type Version = {
9357
9934
  */
9358
9935
  latest_version?: string;
9359
9936
  };
9937
+ export type VisibilityEnum = 'private' | 'public';
9360
9938
  export type VisibleInvitationDetails = {
9361
9939
  readonly scope_uuid: string;
9362
9940
  readonly scope_name: string;
@@ -9428,7 +10006,9 @@ export type VmwareDisk = {
9428
10006
  readonly vm_name?: string;
9429
10007
  readonly marketplace_offering_uuid?: string | null;
9430
10008
  readonly marketplace_offering_name?: string | null;
9431
- readonly marketplace_offering_plugin_options?: {} | null;
10009
+ readonly marketplace_offering_plugin_options?: {
10010
+ [key: string]: unknown;
10011
+ } | null;
9432
10012
  readonly marketplace_category_uuid?: string | null;
9433
10013
  readonly marketplace_category_name?: string | null;
9434
10014
  readonly marketplace_resource_uuid?: string | null;
@@ -9542,7 +10122,9 @@ export type VmwarePort = {
9542
10122
  readonly network_name?: string;
9543
10123
  readonly marketplace_offering_uuid?: string | null;
9544
10124
  readonly marketplace_offering_name?: string | null;
9545
- readonly marketplace_offering_plugin_options?: {} | null;
10125
+ readonly marketplace_offering_plugin_options?: {
10126
+ [key: string]: unknown;
10127
+ } | null;
9546
10128
  readonly marketplace_category_uuid?: string | null;
9547
10129
  readonly marketplace_category_name?: string | null;
9548
10130
  readonly marketplace_resource_uuid?: string | null;
@@ -9637,12 +10219,17 @@ export type VmwareVirtualMachine = {
9637
10219
  readonly datastore_name?: string;
9638
10220
  readonly folder_name?: string;
9639
10221
  readonly ports?: Array<VmwareNestedPort>;
10222
+ /**
10223
+ * The power state of the guest operating system.
10224
+ */
9640
10225
  guest_power_state?: GuestPowerStateEnum;
9641
10226
  readonly tools_state?: string;
9642
10227
  readonly tools_installed?: boolean;
9643
10228
  readonly marketplace_offering_uuid?: string | null;
9644
10229
  readonly marketplace_offering_name?: string | null;
9645
- readonly marketplace_offering_plugin_options?: {} | null;
10230
+ readonly marketplace_offering_plugin_options?: {
10231
+ [key: string]: unknown;
10232
+ } | null;
9646
10233
  readonly marketplace_category_uuid?: string | null;
9647
10234
  readonly marketplace_category_name?: string | null;
9648
10235
  readonly marketplace_resource_uuid?: string | null;
@@ -10160,6 +10747,166 @@ export type AuthValimoResultResponses = {
10160
10747
  200: AuthResult;
10161
10748
  };
10162
10749
  export type AuthValimoResultResponse = AuthValimoResultResponses[keyof AuthValimoResultResponses];
10750
+ export type AutoprovisioningRulePlansListData = {
10751
+ body?: never;
10752
+ path?: never;
10753
+ query?: {
10754
+ /**
10755
+ * A page number within the paginated result set.
10756
+ */
10757
+ page?: number;
10758
+ /**
10759
+ * Number of results to return per page.
10760
+ */
10761
+ page_size?: number;
10762
+ };
10763
+ url: '/api/autoprovisioning-rule-plans/';
10764
+ };
10765
+ export type AutoprovisioningRulePlansListResponses = {
10766
+ 200: Array<RulePlans>;
10767
+ };
10768
+ export type AutoprovisioningRulePlansListResponse = AutoprovisioningRulePlansListResponses[keyof AutoprovisioningRulePlansListResponses];
10769
+ export type AutoprovisioningRulePlansCreateData = {
10770
+ body: RulePlansRequest;
10771
+ path?: never;
10772
+ query?: never;
10773
+ url: '/api/autoprovisioning-rule-plans/';
10774
+ };
10775
+ export type AutoprovisioningRulePlansCreateResponses = {
10776
+ 201: RulePlans;
10777
+ };
10778
+ export type AutoprovisioningRulePlansCreateResponse = AutoprovisioningRulePlansCreateResponses[keyof AutoprovisioningRulePlansCreateResponses];
10779
+ export type AutoprovisioningRulePlansDestroyData = {
10780
+ body?: never;
10781
+ path: {
10782
+ uuid: string;
10783
+ };
10784
+ query?: never;
10785
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10786
+ };
10787
+ export type AutoprovisioningRulePlansDestroyResponses = {
10788
+ /**
10789
+ * No response body
10790
+ */
10791
+ 204: void;
10792
+ };
10793
+ export type AutoprovisioningRulePlansDestroyResponse = AutoprovisioningRulePlansDestroyResponses[keyof AutoprovisioningRulePlansDestroyResponses];
10794
+ export type AutoprovisioningRulePlansRetrieveData = {
10795
+ body?: never;
10796
+ path: {
10797
+ uuid: string;
10798
+ };
10799
+ query?: never;
10800
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10801
+ };
10802
+ export type AutoprovisioningRulePlansRetrieveResponses = {
10803
+ 200: RulePlans;
10804
+ };
10805
+ export type AutoprovisioningRulePlansRetrieveResponse = AutoprovisioningRulePlansRetrieveResponses[keyof AutoprovisioningRulePlansRetrieveResponses];
10806
+ export type AutoprovisioningRulePlansPartialUpdateData = {
10807
+ body?: PatchedRulePlansRequest;
10808
+ path: {
10809
+ uuid: string;
10810
+ };
10811
+ query?: never;
10812
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10813
+ };
10814
+ export type AutoprovisioningRulePlansPartialUpdateResponses = {
10815
+ 200: RulePlans;
10816
+ };
10817
+ export type AutoprovisioningRulePlansPartialUpdateResponse = AutoprovisioningRulePlansPartialUpdateResponses[keyof AutoprovisioningRulePlansPartialUpdateResponses];
10818
+ export type AutoprovisioningRulePlansUpdateData = {
10819
+ body: RulePlansRequest;
10820
+ path: {
10821
+ uuid: string;
10822
+ };
10823
+ query?: never;
10824
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10825
+ };
10826
+ export type AutoprovisioningRulePlansUpdateResponses = {
10827
+ 200: RulePlans;
10828
+ };
10829
+ export type AutoprovisioningRulePlansUpdateResponse = AutoprovisioningRulePlansUpdateResponses[keyof AutoprovisioningRulePlansUpdateResponses];
10830
+ export type AutoprovisioningRulesListData = {
10831
+ body?: never;
10832
+ path?: never;
10833
+ query?: {
10834
+ /**
10835
+ * A page number within the paginated result set.
10836
+ */
10837
+ page?: number;
10838
+ /**
10839
+ * Number of results to return per page.
10840
+ */
10841
+ page_size?: number;
10842
+ };
10843
+ url: '/api/autoprovisioning-rules/';
10844
+ };
10845
+ export type AutoprovisioningRulesListResponses = {
10846
+ 200: Array<Rule>;
10847
+ };
10848
+ export type AutoprovisioningRulesListResponse = AutoprovisioningRulesListResponses[keyof AutoprovisioningRulesListResponses];
10849
+ export type AutoprovisioningRulesCreateData = {
10850
+ body: RuleRequest;
10851
+ path?: never;
10852
+ query?: never;
10853
+ url: '/api/autoprovisioning-rules/';
10854
+ };
10855
+ export type AutoprovisioningRulesCreateResponses = {
10856
+ 201: Rule;
10857
+ };
10858
+ export type AutoprovisioningRulesCreateResponse = AutoprovisioningRulesCreateResponses[keyof AutoprovisioningRulesCreateResponses];
10859
+ export type AutoprovisioningRulesDestroyData = {
10860
+ body?: never;
10861
+ path: {
10862
+ uuid: string;
10863
+ };
10864
+ query?: never;
10865
+ url: '/api/autoprovisioning-rules/{uuid}/';
10866
+ };
10867
+ export type AutoprovisioningRulesDestroyResponses = {
10868
+ /**
10869
+ * No response body
10870
+ */
10871
+ 204: void;
10872
+ };
10873
+ export type AutoprovisioningRulesDestroyResponse = AutoprovisioningRulesDestroyResponses[keyof AutoprovisioningRulesDestroyResponses];
10874
+ export type AutoprovisioningRulesRetrieveData = {
10875
+ body?: never;
10876
+ path: {
10877
+ uuid: string;
10878
+ };
10879
+ query?: never;
10880
+ url: '/api/autoprovisioning-rules/{uuid}/';
10881
+ };
10882
+ export type AutoprovisioningRulesRetrieveResponses = {
10883
+ 200: Rule;
10884
+ };
10885
+ export type AutoprovisioningRulesRetrieveResponse = AutoprovisioningRulesRetrieveResponses[keyof AutoprovisioningRulesRetrieveResponses];
10886
+ export type AutoprovisioningRulesPartialUpdateData = {
10887
+ body?: PatchedRuleRequest;
10888
+ path: {
10889
+ uuid: string;
10890
+ };
10891
+ query?: never;
10892
+ url: '/api/autoprovisioning-rules/{uuid}/';
10893
+ };
10894
+ export type AutoprovisioningRulesPartialUpdateResponses = {
10895
+ 200: Rule;
10896
+ };
10897
+ export type AutoprovisioningRulesPartialUpdateResponse = AutoprovisioningRulesPartialUpdateResponses[keyof AutoprovisioningRulesPartialUpdateResponses];
10898
+ export type AutoprovisioningRulesUpdateData = {
10899
+ body: RuleRequest;
10900
+ path: {
10901
+ uuid: string;
10902
+ };
10903
+ query?: never;
10904
+ url: '/api/autoprovisioning-rules/{uuid}/';
10905
+ };
10906
+ export type AutoprovisioningRulesUpdateResponses = {
10907
+ 200: Rule;
10908
+ };
10909
+ export type AutoprovisioningRulesUpdateResponse = AutoprovisioningRulesUpdateResponses[keyof AutoprovisioningRulesUpdateResponses];
10163
10910
  export type AwsImagesListData = {
10164
10911
  body?: never;
10165
10912
  path?: never;
@@ -12096,7 +12843,9 @@ export type ConfigurationRetrieveData = {
12096
12843
  url: '/api/configuration/';
12097
12844
  };
12098
12845
  export type ConfigurationRetrieveResponses = {
12099
- 200: {};
12846
+ 200: {
12847
+ [key: string]: unknown;
12848
+ };
12100
12849
  };
12101
12850
  export type ConfigurationRetrieveResponse = ConfigurationRetrieveResponses[keyof ConfigurationRetrieveResponses];
12102
12851
  export type CustomerCreditsListData = {
@@ -12594,7 +13343,7 @@ export type CustomersUsersListData = {
12594
13343
  civil_number?: string;
12595
13344
  description?: string;
12596
13345
  email?: string;
12597
- field?: Array<'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role' | 'role_name' | 'url' | 'username' | 'uuid'>;
13346
+ field?: Array<'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid'>;
12598
13347
  full_name?: string;
12599
13348
  is_active?: string;
12600
13349
  job_title?: string;
@@ -13218,7 +13967,9 @@ export type EventsScopeTypesRetrieveResponses = {
13218
13967
  };
13219
13968
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
13220
13969
  export type FeatureValuesData = {
13221
- body?: {};
13970
+ body?: {
13971
+ [key: string]: unknown;
13972
+ };
13222
13973
  path?: never;
13223
13974
  query?: never;
13224
13975
  url: '/api/feature-values/';
@@ -16083,7 +16834,7 @@ export type MarketplaceOfferingUsersListResponses = {
16083
16834
  };
16084
16835
  export type MarketplaceOfferingUsersListResponse = MarketplaceOfferingUsersListResponses[keyof MarketplaceOfferingUsersListResponses];
16085
16836
  export type MarketplaceOfferingUsersCreateData = {
16086
- body: OfferingUserRequest;
16837
+ body?: OfferingUserRequest;
16087
16838
  path?: never;
16088
16839
  query?: never;
16089
16840
  url: '/api/marketplace-offering-users/';
@@ -16134,7 +16885,7 @@ export type MarketplaceOfferingUsersPartialUpdateResponses = {
16134
16885
  };
16135
16886
  export type MarketplaceOfferingUsersPartialUpdateResponse = MarketplaceOfferingUsersPartialUpdateResponses[keyof MarketplaceOfferingUsersPartialUpdateResponses];
16136
16887
  export type MarketplaceOfferingUsersUpdateData = {
16137
- body: OfferingUserRequest;
16888
+ body?: OfferingUserRequest;
16138
16889
  path: {
16139
16890
  uuid: string;
16140
16891
  };
@@ -16938,6 +17689,10 @@ export type MarketplaceProviderOfferingsListData = {
16938
17689
  shared?: boolean;
16939
17690
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
16940
17691
  type?: Array<string>;
17692
+ /**
17693
+ * Comma-separated offering UUIDs
17694
+ */
17695
+ uuid_list?: string;
16941
17696
  };
16942
17697
  url: '/api/marketplace-provider-offerings/';
16943
17698
  };
@@ -17114,6 +17869,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
17114
17869
  start?: string;
17115
17870
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17116
17871
  type?: Array<string>;
17872
+ /**
17873
+ * Comma-separated offering UUIDs
17874
+ */
17875
+ uuid_list?: string;
17117
17876
  };
17118
17877
  url: '/api/marketplace-provider-offerings/{uuid}/component_stats/';
17119
17878
  };
@@ -17204,6 +17963,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
17204
17963
  start?: string;
17205
17964
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17206
17965
  type?: Array<string>;
17966
+ /**
17967
+ * Comma-separated offering UUIDs
17968
+ */
17969
+ uuid_list?: string;
17207
17970
  };
17208
17971
  url: '/api/marketplace-provider-offerings/{uuid}/costs/';
17209
17972
  };
@@ -17299,6 +18062,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
17299
18062
  shared?: boolean;
17300
18063
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17301
18064
  type?: Array<string>;
18065
+ /**
18066
+ * Comma-separated offering UUIDs
18067
+ */
18068
+ uuid_list?: string;
17302
18069
  };
17303
18070
  url: '/api/marketplace-provider-offerings/{uuid}/customers/';
17304
18071
  };
@@ -17705,7 +18472,9 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
17705
18472
  };
17706
18473
  export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
17707
18474
  export type MarketplaceProviderOfferingsUpdateAttributesData = {
17708
- body?: {};
18475
+ body?: {
18476
+ [key: string]: unknown;
18477
+ };
17709
18478
  path: {
17710
18479
  uuid: string;
17711
18480
  };
@@ -17958,6 +18727,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
17958
18727
  shared?: boolean;
17959
18728
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17960
18729
  type?: Array<string>;
18730
+ /**
18731
+ * Comma-separated offering UUIDs
18732
+ */
18733
+ uuid_list?: string;
17961
18734
  };
17962
18735
  url: '/api/marketplace-provider-offerings/groups/';
17963
18736
  };
@@ -18419,6 +19192,10 @@ export type MarketplacePublicOfferingsListData = {
18419
19192
  shared?: boolean;
18420
19193
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
18421
19194
  type?: Array<string>;
19195
+ /**
19196
+ * Comma-separated offering UUIDs
19197
+ */
19198
+ uuid_list?: string;
18422
19199
  };
18423
19200
  url: '/api/marketplace-public-offerings/';
18424
19201
  };
@@ -19662,6 +20439,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
19662
20439
  shared?: boolean;
19663
20440
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
19664
20441
  type?: Array<string>;
20442
+ /**
20443
+ * Comma-separated offering UUIDs
20444
+ */
20445
+ uuid_list?: string;
19665
20446
  };
19666
20447
  url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
19667
20448
  };
@@ -19907,6 +20688,10 @@ export type MarketplaceServiceProvidersUsersListData = {
19907
20688
  */
19908
20689
  user_keyword?: string;
19909
20690
  username?: string;
20691
+ /**
20692
+ * Comma-separated usernames
20693
+ */
20694
+ username_list?: string;
19910
20695
  };
19911
20696
  url: '/api/marketplace-service-providers/{service_provider_uuid}/users/';
19912
20697
  };
@@ -21526,6 +22311,83 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
21526
22311
  */
21527
22312
  200: unknown;
21528
22313
  };
22314
+ export type OpenstackMarketplaceTenantsListData = {
22315
+ body?: never;
22316
+ path?: never;
22317
+ query?: {
22318
+ backend_id?: string;
22319
+ /**
22320
+ * Can manage
22321
+ */
22322
+ can_manage?: boolean;
22323
+ customer?: string;
22324
+ customer_abbreviation?: string;
22325
+ customer_name?: string;
22326
+ customer_native_name?: string;
22327
+ customer_uuid?: string;
22328
+ description?: string;
22329
+ external_ip?: string;
22330
+ name?: string;
22331
+ name_exact?: string;
22332
+ /**
22333
+ * A page number within the paginated result set.
22334
+ */
22335
+ page?: number;
22336
+ /**
22337
+ * Number of results to return per page.
22338
+ */
22339
+ page_size?: number;
22340
+ project?: string;
22341
+ project_name?: string;
22342
+ project_uuid?: string;
22343
+ service_settings_name?: string;
22344
+ service_settings_uuid?: string;
22345
+ state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
22346
+ uuid?: string;
22347
+ };
22348
+ url: '/api/openstack-marketplace-tenants/';
22349
+ };
22350
+ export type OpenstackMarketplaceTenantsListResponses = {
22351
+ 200: Array<Tenant>;
22352
+ };
22353
+ export type OpenstackMarketplaceTenantsListResponse = OpenstackMarketplaceTenantsListResponses[keyof OpenstackMarketplaceTenantsListResponses];
22354
+ export type OpenstackMarketplaceTenantsRetrieveData = {
22355
+ body?: never;
22356
+ path: {
22357
+ uuid: string;
22358
+ };
22359
+ query?: never;
22360
+ url: '/api/openstack-marketplace-tenants/{uuid}/';
22361
+ };
22362
+ export type OpenstackMarketplaceTenantsRetrieveResponses = {
22363
+ 200: Tenant;
22364
+ };
22365
+ export type OpenstackMarketplaceTenantsRetrieveResponse = OpenstackMarketplaceTenantsRetrieveResponses[keyof OpenstackMarketplaceTenantsRetrieveResponses];
22366
+ export type OpenstackMarketplaceTenantsCreateImageData = {
22367
+ body: ImageCreateRequest;
22368
+ path: {
22369
+ uuid: string;
22370
+ };
22371
+ query?: never;
22372
+ url: '/api/openstack-marketplace-tenants/{uuid}/create_image/';
22373
+ };
22374
+ export type OpenstackMarketplaceTenantsCreateImageResponses = {
22375
+ 201: ImageCreateResponse;
22376
+ };
22377
+ export type OpenstackMarketplaceTenantsCreateImageResponse = OpenstackMarketplaceTenantsCreateImageResponses[keyof OpenstackMarketplaceTenantsCreateImageResponses];
22378
+ export type OpenstackMarketplaceTenantsUploadImageDataData = {
22379
+ body?: Blob | File;
22380
+ path: {
22381
+ image_id: string;
22382
+ uuid: string;
22383
+ };
22384
+ query?: never;
22385
+ url: '/api/openstack-marketplace-tenants/{uuid}/upload_image_data/{image_id}/';
22386
+ };
22387
+ export type OpenstackMarketplaceTenantsUploadImageDataResponses = {
22388
+ 200: ImageUploadResponse;
22389
+ };
22390
+ export type OpenstackMarketplaceTenantsUploadImageDataResponse = OpenstackMarketplaceTenantsUploadImageDataResponses[keyof OpenstackMarketplaceTenantsUploadImageDataResponses];
21529
22391
  export type OpenstackMigrationsListData = {
21530
22392
  body?: never;
21531
22393
  path?: never;
@@ -23005,7 +23867,7 @@ export type OpenstackTenantsCreateSecurityGroupData = {
23005
23867
  url: '/api/openstack-tenants/{uuid}/create_security_group/';
23006
23868
  };
23007
23869
  export type OpenstackTenantsCreateSecurityGroupResponses = {
23008
- 200: OpenStackSecurityGroup;
23870
+ 201: OpenStackSecurityGroup;
23009
23871
  };
23010
23872
  export type OpenstackTenantsCreateSecurityGroupResponse = OpenstackTenantsCreateSecurityGroupResponses[keyof OpenstackTenantsCreateSecurityGroupResponses];
23011
23873
  export type OpenstackTenantsCreateServerGroupData = {
@@ -24114,6 +24976,20 @@ export type ProjectsStatsRetrieveResponses = {
24114
24976
  200: ComponentsUsageStats;
24115
24977
  };
24116
24978
  export type ProjectsStatsRetrieveResponse = ProjectsStatsRetrieveResponses[keyof ProjectsStatsRetrieveResponses];
24979
+ export type ProjectsSyncUserRolesData = {
24980
+ body?: never;
24981
+ path: {
24982
+ uuid: string;
24983
+ };
24984
+ query?: never;
24985
+ url: '/api/projects/{uuid}/sync_user_roles/';
24986
+ };
24987
+ export type ProjectsSyncUserRolesResponses = {
24988
+ /**
24989
+ * No response body
24990
+ */
24991
+ 200: unknown;
24992
+ };
24117
24993
  export type ProjectsUpdateUserData = {
24118
24994
  body: UserRoleUpdateRequest;
24119
24995
  path: {
@@ -25885,7 +26761,7 @@ export type RancherClustersListData = {
25885
26761
  customer_uuid?: string;
25886
26762
  description?: string;
25887
26763
  external_ip?: string;
25888
- field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
26764
+ field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
25889
26765
  name?: string;
25890
26766
  name_exact?: string;
25891
26767
  /**
@@ -25941,7 +26817,7 @@ export type RancherClustersRetrieveData = {
25941
26817
  uuid: string;
25942
26818
  };
25943
26819
  query?: {
25944
- field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
26820
+ field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
25945
26821
  };
25946
26822
  url: '/api/rancher-clusters/{uuid}/';
25947
26823
  };
@@ -28915,6 +29791,10 @@ export type UsersListData = {
28915
29791
  */
28916
29792
  user_keyword?: string;
28917
29793
  username?: string;
29794
+ /**
29795
+ * Comma-separated usernames
29796
+ */
29797
+ username_list?: string;
28918
29798
  };
28919
29799
  url: '/api/users/';
28920
29800
  };