waldur-js-client 1.0.4-dev.99 → 7.6.6-dev.0

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
  };
@@ -1777,7 +1803,6 @@ export type Customer = {
1777
1803
  readonly created?: string;
1778
1804
  readonly organization_groups?: Array<OrganizationGroup>;
1779
1805
  readonly display_name?: string;
1780
- readonly projects?: Array<PermissionProject>;
1781
1806
  /**
1782
1807
  * Organization identifier in another application.
1783
1808
  */
@@ -1786,6 +1811,9 @@ export type Customer = {
1786
1811
  readonly blocked?: boolean;
1787
1812
  readonly archived?: boolean;
1788
1813
  readonly default_tax_percent?: string;
1814
+ /**
1815
+ * Start date of accounting
1816
+ */
1789
1817
  readonly accounting_start_date?: string;
1790
1818
  readonly projects_count?: number;
1791
1819
  readonly users_count?: number;
@@ -1804,6 +1832,9 @@ export type Customer = {
1804
1832
  abbreviation?: string;
1805
1833
  contact_details?: string;
1806
1834
  readonly agreement_number?: string;
1835
+ /**
1836
+ * Email address
1837
+ */
1807
1838
  email?: string;
1808
1839
  phone_number?: string;
1809
1840
  /**
@@ -1874,6 +1905,9 @@ export type CustomerDetails = {
1874
1905
  address?: string;
1875
1906
  country?: string;
1876
1907
  readonly country_name?: string | null;
1908
+ /**
1909
+ * Email address
1910
+ */
1877
1911
  email?: string;
1878
1912
  postal?: string;
1879
1913
  phone_number?: string;
@@ -1963,6 +1997,9 @@ export type CustomerRequest = {
1963
1997
  native_name?: string;
1964
1998
  abbreviation?: string;
1965
1999
  contact_details?: string;
2000
+ /**
2001
+ * Email address
2002
+ */
1966
2003
  email?: string;
1967
2004
  phone_number?: string;
1968
2005
  registration_code?: string;
@@ -2012,11 +2049,13 @@ export type CustomerUser = {
2012
2049
  */
2013
2050
  username?: string;
2014
2051
  readonly full_name?: string;
2052
+ /**
2053
+ * Email address
2054
+ */
2015
2055
  email?: string;
2016
- readonly role?: string;
2017
- readonly role_name?: string;
2056
+ readonly role_name?: string | null;
2018
2057
  readonly projects?: Array<NestedProjectPermission>;
2019
- readonly expiration_time?: string;
2058
+ readonly expiration_time?: string | null;
2020
2059
  image?: string | null;
2021
2060
  };
2022
2061
  export type DataVolume = {
@@ -2100,7 +2139,9 @@ export type DigitalOceanDroplet = {
2100
2139
  readonly region_name?: string;
2101
2140
  readonly marketplace_offering_uuid?: string | null;
2102
2141
  readonly marketplace_offering_name?: string | null;
2103
- readonly marketplace_offering_plugin_options?: {} | null;
2142
+ readonly marketplace_offering_plugin_options?: {
2143
+ [key: string]: unknown;
2144
+ } | null;
2104
2145
  readonly marketplace_category_uuid?: string | null;
2105
2146
  readonly marketplace_category_name?: string | null;
2106
2147
  readonly marketplace_resource_uuid?: string | null;
@@ -2176,6 +2217,7 @@ export type DigitalOceanSize = {
2176
2217
  };
2177
2218
  export type DirectionEnum = 'ingress' | 'egress';
2178
2219
  export type DiscountTypeEnum = 'discount' | 'special_price';
2220
+ export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
2179
2221
  export type DryRun = {
2180
2222
  readonly url: string;
2181
2223
  readonly uuid: string;
@@ -2283,6 +2325,9 @@ export type FinancialReport = {
2283
2325
  readonly uuid: string;
2284
2326
  abbreviation?: string;
2285
2327
  readonly created: string;
2328
+ /**
2329
+ * Start date of accounting
2330
+ */
2286
2331
  accounting_start_date?: string;
2287
2332
  registration_code?: string;
2288
2333
  agreement_number?: string;
@@ -2325,6 +2370,9 @@ export type FirecrestJob = {
2325
2370
  readonly backend_id?: string;
2326
2371
  readonly access_url?: string | null;
2327
2372
  runtime_state?: string;
2373
+ /**
2374
+ * Batch script file
2375
+ */
2328
2376
  file?: string;
2329
2377
  /**
2330
2378
  * Reference to user which submitted job
@@ -2335,6 +2383,9 @@ export type FirecrestJob = {
2335
2383
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
2336
2384
  */
2337
2385
  readonly user_username?: string | null;
2386
+ /**
2387
+ * Job output
2388
+ */
2338
2389
  readonly report?: unknown;
2339
2390
  };
2340
2391
  export type FirecrestJobRequest = {
@@ -2343,6 +2394,9 @@ export type FirecrestJobRequest = {
2343
2394
  service_settings: string;
2344
2395
  project: string;
2345
2396
  runtime_state?: string;
2397
+ /**
2398
+ * Batch script file
2399
+ */
2346
2400
  file: Blob | File;
2347
2401
  };
2348
2402
  export type FreeipaProfile = {
@@ -2355,6 +2409,9 @@ export type FreeipaProfile = {
2355
2409
  * Indicates when the user has agreed with the policy.
2356
2410
  */
2357
2411
  agreement_date?: string;
2412
+ /**
2413
+ * Active
2414
+ */
2358
2415
  readonly is_active: boolean;
2359
2416
  readonly user: string;
2360
2417
  readonly user_uuid: string;
@@ -2499,6 +2556,10 @@ export type IdentityProvider = {
2499
2556
  */
2500
2557
  management_url?: string;
2501
2558
  protected_fields?: unknown;
2559
+ /**
2560
+ * Space-separated list of scopes to request during authentication.
2561
+ */
2562
+ extra_scope?: string | null;
2502
2563
  };
2503
2564
  export type IdentityProviderRequest = {
2504
2565
  provider: string;
@@ -2523,6 +2584,28 @@ export type IdentityProviderRequest = {
2523
2584
  */
2524
2585
  management_url?: string;
2525
2586
  protected_fields?: unknown;
2587
+ /**
2588
+ * Space-separated list of scopes to request during authentication.
2589
+ */
2590
+ extra_scope?: string | null;
2591
+ };
2592
+ export type ImageCreateRequest = {
2593
+ name: string;
2594
+ min_ram?: number;
2595
+ min_disk?: number;
2596
+ disk_format?: DiskFormatEnum;
2597
+ container_format?: ContainerFormatEnum;
2598
+ visibility?: VisibilityEnum;
2599
+ };
2600
+ export type ImageCreateResponse = {
2601
+ image_id: string;
2602
+ name: string;
2603
+ status: string;
2604
+ upload_url: string;
2605
+ };
2606
+ export type ImageUploadResponse = {
2607
+ status: string;
2608
+ message: string;
2526
2609
  };
2527
2610
  export type ImportResourceRequest = {
2528
2611
  backend_id: string;
@@ -2541,10 +2624,16 @@ export type InstanceFlavorChangeRequest = {
2541
2624
  export type IntegrationStatus = {
2542
2625
  readonly agent_type?: string;
2543
2626
  readonly status?: string;
2627
+ /**
2628
+ * Time of latest backend request
2629
+ */
2544
2630
  readonly last_request_timestamp?: string | null;
2545
2631
  };
2546
2632
  export type IntegrationStatusDetails = {
2547
2633
  readonly status: string;
2634
+ /**
2635
+ * Time of latest backend request
2636
+ */
2548
2637
  readonly last_request_timestamp: string | null;
2549
2638
  offering: string;
2550
2639
  readonly url: string;
@@ -2610,6 +2699,9 @@ export type Invoice = {
2610
2699
  readonly url?: string;
2611
2700
  readonly uuid?: string;
2612
2701
  readonly number?: number;
2702
+ /**
2703
+ * Organization
2704
+ */
2613
2705
  customer?: string;
2614
2706
  price?: string;
2615
2707
  tax?: string;
@@ -2801,6 +2893,9 @@ export type Issue = {
2801
2893
  assignee?: string | null;
2802
2894
  readonly assignee_uuid: string | null;
2803
2895
  readonly assignee_name: string | null;
2896
+ /**
2897
+ * Organization
2898
+ */
2804
2899
  customer?: string | null;
2805
2900
  readonly customer_uuid: string | null;
2806
2901
  readonly customer_name: string | null;
@@ -2833,6 +2928,9 @@ export type IssueRequest = {
2833
2928
  priority?: string;
2834
2929
  caller?: string | null;
2835
2930
  assignee?: string | null;
2931
+ /**
2932
+ * Organization
2933
+ */
2836
2934
  customer?: string | null;
2837
2935
  project?: string | null;
2838
2936
  resource?: string;
@@ -2861,11 +2959,15 @@ export type JiraIssue = {
2861
2959
  };
2862
2960
  export type JiraIssueFields = {
2863
2961
  project: JiraIssueProject;
2864
- comment?: {};
2962
+ comment?: {
2963
+ [key: string]: unknown;
2964
+ };
2865
2965
  };
2866
2966
  export type JiraIssueFieldsRequest = {
2867
2967
  project: JiraIssueProjectRequest;
2868
- comment?: {};
2968
+ comment?: {
2969
+ [key: string]: unknown;
2970
+ };
2869
2971
  };
2870
2972
  export type JiraIssueProject = {
2871
2973
  id: string;
@@ -2884,6 +2986,9 @@ export type JiraIssueRequest = {
2884
2986
  export type KeycloakGroup = {
2885
2987
  readonly uuid: string;
2886
2988
  readonly url: string;
2989
+ /**
2990
+ * Group name
2991
+ */
2887
2992
  readonly name: string;
2888
2993
  readonly backend_id: string;
2889
2994
  readonly scope_type: string;
@@ -3052,6 +3157,9 @@ export type MarketplaceProviderCustomer = {
3052
3157
  slug?: string;
3053
3158
  abbreviation?: string;
3054
3159
  phone_number?: string;
3160
+ /**
3161
+ * Email address
3162
+ */
3055
3163
  email?: string;
3056
3164
  readonly payment_profiles?: Array<PaymentProfile>;
3057
3165
  billing_price_estimate?: NestedPriceEstimate;
@@ -3082,6 +3190,9 @@ export type MarketplaceServiceProviderUser = {
3082
3190
  first_name?: string;
3083
3191
  last_name?: string;
3084
3192
  organization?: string;
3193
+ /**
3194
+ * Email address
3195
+ */
3085
3196
  email?: string;
3086
3197
  phone_number?: string;
3087
3198
  readonly projects_count?: number;
@@ -3094,6 +3205,7 @@ export type MarketplaceServiceProviderUser = {
3094
3205
  */
3095
3206
  affiliations?: unknown;
3096
3207
  /**
3208
+ * Active
3097
3209
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
3098
3210
  */
3099
3211
  is_active?: boolean;
@@ -3219,6 +3331,18 @@ export type MergedPluginOptions = {
3219
3331
  managed_rancher_load_balancer_system_volume_type_name?: string;
3220
3332
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3221
3333
  managed_rancher_load_balancer_data_volume_type_name?: string;
3334
+ /**
3335
+ * Max number of vCPUs for tenants
3336
+ */
3337
+ managed_rancher_tenant_max_cpu?: number;
3338
+ /**
3339
+ * Max number of RAM for tenants
3340
+ */
3341
+ managed_rancher_tenant_max_ram?: number;
3342
+ /**
3343
+ * Max size of disk space for tenants (GB)
3344
+ */
3345
+ managed_rancher_tenant_max_disk?: number;
3222
3346
  /**
3223
3347
  * Slurm account name generation policy
3224
3348
  */
@@ -3345,6 +3469,18 @@ export type MergedPluginOptionsRequest = {
3345
3469
  managed_rancher_load_balancer_system_volume_type_name?: string;
3346
3470
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3347
3471
  managed_rancher_load_balancer_data_volume_type_name?: string;
3472
+ /**
3473
+ * Max number of vCPUs for tenants
3474
+ */
3475
+ managed_rancher_tenant_max_cpu?: number;
3476
+ /**
3477
+ * Max number of RAM for tenants
3478
+ */
3479
+ managed_rancher_tenant_max_ram?: number;
3480
+ /**
3481
+ * Max size of disk space for tenants (GB)
3482
+ */
3483
+ managed_rancher_tenant_max_disk?: number;
3348
3484
  /**
3349
3485
  * Slurm account name generation policy
3350
3486
  */
@@ -3412,8 +3548,17 @@ export type MergedSecretOptions = {
3412
3548
  * Organization UUID
3413
3549
  */
3414
3550
  customer_uuid?: string;
3551
+ /**
3552
+ * Rancher server URL
3553
+ */
3415
3554
  backend_url?: string;
3555
+ /**
3556
+ * Rancher access key
3557
+ */
3416
3558
  username?: string;
3559
+ /**
3560
+ * Rancher secret key
3561
+ */
3417
3562
  password?: string;
3418
3563
  cloud_init_template?: string;
3419
3564
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -3556,8 +3701,17 @@ export type MergedSecretOptionsRequest = {
3556
3701
  * Organization UUID
3557
3702
  */
3558
3703
  customer_uuid?: string;
3704
+ /**
3705
+ * Rancher server URL
3706
+ */
3559
3707
  backend_url?: string;
3708
+ /**
3709
+ * Rancher access key
3710
+ */
3560
3711
  username?: string;
3712
+ /**
3713
+ * Rancher secret key
3714
+ */
3561
3715
  password?: string;
3562
3716
  cloud_init_template?: string;
3563
3717
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -4064,7 +4218,9 @@ export type Offering = {
4064
4218
  category?: string;
4065
4219
  readonly category_uuid?: string;
4066
4220
  readonly category_title?: string;
4067
- readonly attributes?: {};
4221
+ readonly attributes?: {
4222
+ [key: string]: unknown;
4223
+ };
4068
4224
  options?: OfferingOptions;
4069
4225
  resource_options?: OfferingOptions;
4070
4226
  readonly components?: Array<OfferingComponent>;
@@ -4236,7 +4392,9 @@ export type OfferingCreate = {
4236
4392
  components?: Array<OfferingComponent>;
4237
4393
  plugin_options: MergedPluginOptions;
4238
4394
  secret_options: MergedSecretOptions;
4239
- readonly service_attributes: {};
4395
+ readonly service_attributes: {
4396
+ [key: string]: unknown;
4397
+ };
4240
4398
  state: OfferingState;
4241
4399
  vendor_details?: string;
4242
4400
  getting_started?: string;
@@ -4423,6 +4581,9 @@ export type OfferingPauseRequest = {
4423
4581
  };
4424
4582
  export type OfferingPermission = {
4425
4583
  readonly url: string;
4584
+ /**
4585
+ * ID
4586
+ */
4426
4587
  readonly pk: number;
4427
4588
  readonly created: string;
4428
4589
  expiration_time?: string | null;
@@ -4441,6 +4602,9 @@ export type OfferingPermission = {
4441
4602
  */
4442
4603
  readonly user_username: string;
4443
4604
  readonly user_uuid: string;
4605
+ /**
4606
+ * Email address
4607
+ */
4444
4608
  readonly user_email: string;
4445
4609
  };
4446
4610
  export type OfferingReference = {
@@ -4519,9 +4683,9 @@ export type OfferingUser = {
4519
4683
  user?: string;
4520
4684
  offering?: string;
4521
4685
  username?: string | null;
4522
- readonly offering_uuid?: string;
4686
+ offering_uuid?: string;
4523
4687
  readonly offering_name?: string;
4524
- readonly user_uuid?: string;
4688
+ user_uuid?: string;
4525
4689
  /**
4526
4690
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
4527
4691
  */
@@ -4537,9 +4701,11 @@ export type OfferingUser = {
4537
4701
  readonly is_restricted?: boolean;
4538
4702
  };
4539
4703
  export type OfferingUserRequest = {
4540
- user: string;
4541
- offering: string;
4704
+ user?: string;
4705
+ offering?: string;
4542
4706
  username?: string | null;
4707
+ offering_uuid?: string;
4708
+ user_uuid?: string;
4543
4709
  };
4544
4710
  export type OfferingUserRole = {
4545
4711
  name: string;
@@ -4628,7 +4794,9 @@ export type OpenStackBackup = {
4628
4794
  readonly tenant_uuid?: string;
4629
4795
  readonly marketplace_offering_uuid?: string | null;
4630
4796
  readonly marketplace_offering_name?: string | null;
4631
- readonly marketplace_offering_plugin_options?: {} | null;
4797
+ readonly marketplace_offering_plugin_options?: {
4798
+ [key: string]: unknown;
4799
+ } | null;
4632
4800
  readonly marketplace_category_uuid?: string | null;
4633
4801
  readonly marketplace_category_name?: string | null;
4634
4802
  readonly marketplace_resource_uuid?: string | null;
@@ -4744,7 +4912,9 @@ export type OpenStackFloatingIp = {
4744
4912
  readonly instance_url?: string | null;
4745
4913
  readonly marketplace_offering_uuid?: string | null;
4746
4914
  readonly marketplace_offering_name?: string | null;
4747
- readonly marketplace_offering_plugin_options?: {} | null;
4915
+ readonly marketplace_offering_plugin_options?: {
4916
+ [key: string]: unknown;
4917
+ } | null;
4748
4918
  readonly marketplace_category_uuid?: string | null;
4749
4919
  readonly marketplace_category_name?: string | null;
4750
4920
  readonly marketplace_resource_uuid?: string | null;
@@ -4857,7 +5027,9 @@ export type OpenStackInstance = {
4857
5027
  rancher_cluster?: RancherClusterReference | null;
4858
5028
  readonly marketplace_offering_uuid?: string | null;
4859
5029
  readonly marketplace_offering_name?: string | null;
4860
- readonly marketplace_offering_plugin_options?: {} | null;
5030
+ readonly marketplace_offering_plugin_options?: {
5031
+ [key: string]: unknown;
5032
+ } | null;
4861
5033
  readonly marketplace_category_uuid?: string | null;
4862
5034
  readonly marketplace_category_name?: string | null;
4863
5035
  readonly marketplace_resource_uuid?: string | null;
@@ -5034,7 +5206,9 @@ export type OpenStackNetwork = {
5034
5206
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
5035
5207
  readonly marketplace_offering_uuid?: string | null;
5036
5208
  readonly marketplace_offering_name?: string | null;
5037
- readonly marketplace_offering_plugin_options?: {} | null;
5209
+ readonly marketplace_offering_plugin_options?: {
5210
+ [key: string]: unknown;
5211
+ } | null;
5038
5212
  readonly marketplace_category_uuid?: string | null;
5039
5213
  readonly marketplace_category_name?: string | null;
5040
5214
  readonly marketplace_resource_uuid?: string | null;
@@ -5090,7 +5264,9 @@ export type OpenStackPort = {
5090
5264
  readonly status?: string | null;
5091
5265
  readonly marketplace_offering_uuid?: string | null;
5092
5266
  readonly marketplace_offering_name?: string | null;
5093
- readonly marketplace_offering_plugin_options?: {} | null;
5267
+ readonly marketplace_offering_plugin_options?: {
5268
+ [key: string]: unknown;
5269
+ } | null;
5094
5270
  readonly marketplace_category_uuid?: string | null;
5095
5271
  readonly marketplace_category_name?: string | null;
5096
5272
  readonly marketplace_resource_uuid?: string | null;
@@ -5154,7 +5330,9 @@ export type OpenStackRouter = {
5154
5330
  readonly ports?: Array<OpenStackNestedPort>;
5155
5331
  readonly marketplace_offering_uuid?: string | null;
5156
5332
  readonly marketplace_offering_name?: string | null;
5157
- readonly marketplace_offering_plugin_options?: {} | null;
5333
+ readonly marketplace_offering_plugin_options?: {
5334
+ [key: string]: unknown;
5335
+ } | null;
5158
5336
  readonly marketplace_category_uuid?: string | null;
5159
5337
  readonly marketplace_category_name?: string | null;
5160
5338
  readonly marketplace_resource_uuid?: string | null;
@@ -5205,7 +5383,9 @@ export type OpenStackSecurityGroup = {
5205
5383
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
5206
5384
  readonly marketplace_offering_uuid?: string | null;
5207
5385
  readonly marketplace_offering_name?: string | null;
5208
- readonly marketplace_offering_plugin_options?: {} | null;
5386
+ readonly marketplace_offering_plugin_options?: {
5387
+ [key: string]: unknown;
5388
+ } | null;
5209
5389
  readonly marketplace_category_uuid?: string | null;
5210
5390
  readonly marketplace_category_name?: string | null;
5211
5391
  readonly marketplace_resource_uuid?: string | null;
@@ -5293,7 +5473,9 @@ export type OpenStackServerGroup = {
5293
5473
  readonly instances?: Array<OpenStackNestedInstance>;
5294
5474
  readonly marketplace_offering_uuid?: string | null;
5295
5475
  readonly marketplace_offering_name?: string | null;
5296
- readonly marketplace_offering_plugin_options?: {} | null;
5476
+ readonly marketplace_offering_plugin_options?: {
5477
+ [key: string]: unknown;
5478
+ } | null;
5297
5479
  readonly marketplace_category_uuid?: string | null;
5298
5480
  readonly marketplace_category_name?: string | null;
5299
5481
  readonly marketplace_resource_uuid?: string | null;
@@ -5350,7 +5532,9 @@ export type OpenStackSnapshot = {
5350
5532
  kept_until?: string | null;
5351
5533
  readonly marketplace_offering_uuid?: string | null;
5352
5534
  readonly marketplace_offering_name?: string | null;
5353
- readonly marketplace_offering_plugin_options?: {} | null;
5535
+ readonly marketplace_offering_plugin_options?: {
5536
+ [key: string]: unknown;
5537
+ } | null;
5354
5538
  readonly marketplace_category_uuid?: string | null;
5355
5539
  readonly marketplace_category_name?: string | null;
5356
5540
  readonly marketplace_resource_uuid?: string | null;
@@ -5449,7 +5633,9 @@ export type OpenStackSubNet = {
5449
5633
  readonly is_connected?: boolean;
5450
5634
  readonly marketplace_offering_uuid?: string | null;
5451
5635
  readonly marketplace_offering_name?: string | null;
5452
- readonly marketplace_offering_plugin_options?: {} | null;
5636
+ readonly marketplace_offering_plugin_options?: {
5637
+ [key: string]: unknown;
5638
+ } | null;
5453
5639
  readonly marketplace_category_uuid?: string | null;
5454
5640
  readonly marketplace_category_name?: string | null;
5455
5641
  readonly marketplace_resource_uuid?: string | null;
@@ -5513,7 +5699,9 @@ export type OpenStackTenant = {
5513
5699
  default_volume_type_name?: string;
5514
5700
  readonly marketplace_offering_uuid?: string | null;
5515
5701
  readonly marketplace_offering_name?: string | null;
5516
- readonly marketplace_offering_plugin_options?: {} | null;
5702
+ readonly marketplace_offering_plugin_options?: {
5703
+ [key: string]: unknown;
5704
+ } | null;
5517
5705
  readonly marketplace_category_uuid?: string | null;
5518
5706
  readonly marketplace_category_name?: string | null;
5519
5707
  readonly marketplace_resource_uuid?: string | null;
@@ -5617,7 +5805,9 @@ export type OpenStackVolume = {
5617
5805
  readonly extend_enabled?: boolean;
5618
5806
  readonly marketplace_offering_uuid?: string | null;
5619
5807
  readonly marketplace_offering_name?: string | null;
5620
- readonly marketplace_offering_plugin_options?: {} | null;
5808
+ readonly marketplace_offering_plugin_options?: {
5809
+ [key: string]: unknown;
5810
+ } | null;
5621
5811
  readonly marketplace_category_uuid?: string | null;
5622
5812
  readonly marketplace_category_name?: string | null;
5623
5813
  readonly marketplace_resource_uuid?: string | null;
@@ -5720,6 +5910,9 @@ export type OrderCreate = {
5720
5910
  readonly marketplace_resource_uuid: string;
5721
5911
  readonly error_message: string;
5722
5912
  callback_url?: string | null;
5913
+ /**
5914
+ * Completion time
5915
+ */
5723
5916
  readonly completed_at: string | null;
5724
5917
  readonly url: string;
5725
5918
  readonly created_by: string;
@@ -5788,7 +5981,9 @@ export type OrderDetails = {
5788
5981
  /**
5789
5982
  * Get attributes excluding secret attributes, such as username and password.
5790
5983
  */
5791
- readonly attributes?: {};
5984
+ readonly attributes?: {
5985
+ [key: string]: unknown;
5986
+ };
5792
5987
  limits?: {
5793
5988
  [key: string]: number;
5794
5989
  };
@@ -5805,6 +6000,9 @@ export type OrderDetails = {
5805
6000
  readonly marketplace_resource_uuid?: string;
5806
6001
  readonly error_message?: string;
5807
6002
  callback_url?: string | null;
6003
+ /**
6004
+ * Completion time
6005
+ */
5808
6006
  readonly completed_at?: string | null;
5809
6007
  /**
5810
6008
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -6026,6 +6224,9 @@ export type PatchedCustomerRequest = {
6026
6224
  native_name?: string;
6027
6225
  abbreviation?: string;
6028
6226
  contact_details?: string;
6227
+ /**
6228
+ * Email address
6229
+ */
6029
6230
  email?: string;
6030
6231
  phone_number?: string;
6031
6232
  registration_code?: string;
@@ -6088,6 +6289,10 @@ export type PatchedIdentityProviderRequest = {
6088
6289
  */
6089
6290
  management_url?: string;
6090
6291
  protected_fields?: unknown;
6292
+ /**
6293
+ * Space-separated list of scopes to request during authentication.
6294
+ */
6295
+ extra_scope?: string | null;
6091
6296
  };
6092
6297
  export type PatchedInvoiceItemUpdateRequest = {
6093
6298
  article_code?: string;
@@ -6194,6 +6399,8 @@ export type PatchedOfferingUserRequest = {
6194
6399
  user?: string;
6195
6400
  offering?: string;
6196
6401
  username?: string | null;
6402
+ offering_uuid?: string;
6403
+ user_uuid?: string;
6197
6404
  };
6198
6405
  export type PatchedOfferingUserRoleRequest = {
6199
6406
  name?: string;
@@ -6306,8 +6513,14 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
6306
6513
  };
6307
6514
  export type PatchedProjectRequest = {
6308
6515
  name?: string;
6516
+ /**
6517
+ * Organization
6518
+ */
6309
6519
  customer?: string;
6310
6520
  description?: string;
6521
+ /**
6522
+ * Project type
6523
+ */
6311
6524
  type?: string | null;
6312
6525
  backend_id?: string;
6313
6526
  start_date?: string | null;
@@ -6400,7 +6613,9 @@ export type PatchedRancherApplicationRequest = {
6400
6613
  namespace?: string;
6401
6614
  namespace_name?: string;
6402
6615
  version?: string;
6403
- answers?: {};
6616
+ answers?: {
6617
+ [key: string]: unknown;
6618
+ };
6404
6619
  };
6405
6620
  export type PatchedRancherCatalogRequest = {
6406
6621
  name?: string;
@@ -6508,22 +6723,80 @@ export type PatchedRobotAccountRequest = {
6508
6723
  export type PatchedRoleDetailsRequest = {
6509
6724
  name?: string;
6510
6725
  description?: string;
6726
+ /**
6727
+ * Description [en]
6728
+ */
6511
6729
  description_en?: string | null;
6730
+ /**
6731
+ * Description [et]
6732
+ */
6512
6733
  description_et?: string | null;
6734
+ /**
6735
+ * Description [lt]
6736
+ */
6513
6737
  description_lt?: string | null;
6738
+ /**
6739
+ * Description [lv]
6740
+ */
6514
6741
  description_lv?: string | null;
6742
+ /**
6743
+ * Description [ru]
6744
+ */
6515
6745
  description_ru?: string | null;
6746
+ /**
6747
+ * Description [it]
6748
+ */
6516
6749
  description_it?: string | null;
6750
+ /**
6751
+ * Description [de]
6752
+ */
6517
6753
  description_de?: string | null;
6754
+ /**
6755
+ * Description [da]
6756
+ */
6518
6757
  description_da?: string | null;
6758
+ /**
6759
+ * Description [sv]
6760
+ */
6519
6761
  description_sv?: string | null;
6762
+ /**
6763
+ * Description [es]
6764
+ */
6520
6765
  description_es?: string | null;
6766
+ /**
6767
+ * Description [fr]
6768
+ */
6521
6769
  description_fr?: string | null;
6770
+ /**
6771
+ * Description [nb]
6772
+ */
6522
6773
  description_nb?: string | null;
6774
+ /**
6775
+ * Description [ar]
6776
+ */
6523
6777
  description_ar?: string | null;
6778
+ /**
6779
+ * Description [cs]
6780
+ */
6524
6781
  description_cs?: string | null;
6525
6782
  is_active?: boolean;
6526
6783
  };
6784
+ export type PatchedRulePlansRequest = {
6785
+ rule?: string;
6786
+ plan?: string;
6787
+ attributes?: {
6788
+ [key: string]: unknown;
6789
+ };
6790
+ limits?: {
6791
+ [key: string]: unknown;
6792
+ };
6793
+ };
6794
+ export type PatchedRuleRequest = {
6795
+ user_affiliations?: Array<string>;
6796
+ user_email_patterns?: Array<string>;
6797
+ customer?: string;
6798
+ project_role?: string | null;
6799
+ };
6527
6800
  export type PatchedScreenshotRequest = {
6528
6801
  name?: string;
6529
6802
  description?: string;
@@ -6565,14 +6838,17 @@ export type PatchedUserRequest = {
6565
6838
  organization?: string;
6566
6839
  description?: string;
6567
6840
  /**
6841
+ * Staff status
6568
6842
  * Designates whether the user can log into this admin site.
6569
6843
  */
6570
6844
  is_staff?: boolean;
6571
6845
  /**
6846
+ * Active
6572
6847
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
6573
6848
  */
6574
6849
  is_active?: boolean;
6575
6850
  /**
6851
+ * Support status
6576
6852
  * Designates whether the user is a global support user.
6577
6853
  */
6578
6854
  is_support?: boolean;
@@ -6686,17 +6962,6 @@ export type Permission = {
6686
6962
  readonly customer_uuid?: string;
6687
6963
  readonly customer_name?: string;
6688
6964
  };
6689
- export type PermissionProject = {
6690
- readonly url?: string;
6691
- readonly uuid?: string;
6692
- name?: string;
6693
- image?: string | null;
6694
- readonly resource_count?: number;
6695
- /**
6696
- * The date is inclusive. Once reached, all project resource will be scheduled for termination.
6697
- */
6698
- end_date?: string | null;
6699
- };
6700
6965
  export type PermissionRequest = {
6701
6966
  readonly url: string;
6702
6967
  readonly uuid: string;
@@ -6730,7 +6995,13 @@ export type PlanComponent = {
6730
6995
  readonly measured_unit: string;
6731
6996
  billing_type: BillingTypeEnum;
6732
6997
  amount?: number;
6998
+ /**
6999
+ * Price per unit per billing period.
7000
+ */
6733
7001
  price?: string;
7002
+ /**
7003
+ * Price per unit for future month.
7004
+ */
6734
7005
  future_price?: string | null;
6735
7006
  };
6736
7007
  export type PlanUsageResponse = {
@@ -6774,6 +7045,9 @@ export type Project = {
6774
7045
  readonly uuid?: string;
6775
7046
  name?: string;
6776
7047
  readonly slug?: string;
7048
+ /**
7049
+ * Organization
7050
+ */
6777
7051
  customer?: string;
6778
7052
  readonly customer_uuid?: string;
6779
7053
  readonly customer_name?: string;
@@ -6782,6 +7056,9 @@ export type Project = {
6782
7056
  readonly customer_abbreviation?: string;
6783
7057
  description?: string;
6784
7058
  readonly created?: string;
7059
+ /**
7060
+ * Project type
7061
+ */
6785
7062
  type?: string | null;
6786
7063
  readonly type_name?: string | null;
6787
7064
  readonly type_uuid?: string | null;
@@ -6897,6 +7174,9 @@ export type ProjectPermissionLog = {
6897
7174
  */
6898
7175
  readonly user_username?: string;
6899
7176
  readonly user_uuid?: string;
7177
+ /**
7178
+ * Email address
7179
+ */
6900
7180
  readonly user_email?: string;
6901
7181
  };
6902
7182
  export type ProjectQuotas = {
@@ -6907,8 +7187,14 @@ export type ProjectQuotas = {
6907
7187
  };
6908
7188
  export type ProjectRequest = {
6909
7189
  name: string;
7190
+ /**
7191
+ * Organization
7192
+ */
6910
7193
  customer: string;
6911
7194
  description?: string;
7195
+ /**
7196
+ * Project type
7197
+ */
6912
7198
  type?: string | null;
6913
7199
  backend_id?: string;
6914
7200
  start_date?: string | null;
@@ -6971,6 +7257,9 @@ export type ProjectUser = {
6971
7257
  */
6972
7258
  username: string;
6973
7259
  readonly full_name: string;
7260
+ /**
7261
+ * Email address
7262
+ */
6974
7263
  email?: string;
6975
7264
  readonly role: string;
6976
7265
  readonly expiration_time: string | null;
@@ -7260,6 +7549,9 @@ export type ProviderOfferingCustomer = {
7260
7549
  slug: string;
7261
7550
  abbreviation?: string;
7262
7551
  phone_number?: string;
7552
+ /**
7553
+ * Email address
7554
+ */
7263
7555
  email?: string;
7264
7556
  };
7265
7557
  export type ProviderOfferingDetails = {
@@ -7288,13 +7580,17 @@ export type ProviderOfferingDetails = {
7288
7580
  category?: string;
7289
7581
  readonly category_uuid?: string;
7290
7582
  readonly category_title?: string;
7291
- readonly attributes?: {};
7583
+ readonly attributes?: {
7584
+ [key: string]: unknown;
7585
+ };
7292
7586
  options?: OfferingOptions;
7293
7587
  resource_options?: OfferingOptions;
7294
7588
  readonly components?: Array<OfferingComponent>;
7295
7589
  plugin_options?: MergedPluginOptions;
7296
7590
  secret_options?: MergedSecretOptions;
7297
- readonly service_attributes?: {};
7591
+ readonly service_attributes?: {
7592
+ [key: string]: unknown;
7593
+ };
7298
7594
  state?: OfferingState;
7299
7595
  vendor_details?: string;
7300
7596
  getting_started?: string;
@@ -7456,6 +7752,9 @@ export type ProviderRequestedOffering = {
7456
7752
  call: string;
7457
7753
  readonly description: string;
7458
7754
  readonly created_by_name: string;
7755
+ /**
7756
+ * Email address
7757
+ */
7459
7758
  readonly created_by_email: string;
7460
7759
  };
7461
7760
  export type ProviderRequestedResource = {
@@ -7477,6 +7776,9 @@ export type ProviderRequestedResource = {
7477
7776
  export type ProviderUser = {
7478
7777
  readonly uuid?: string;
7479
7778
  readonly full_name?: string;
7779
+ /**
7780
+ * Email address
7781
+ */
7480
7782
  email?: string;
7481
7783
  image?: string | null;
7482
7784
  };
@@ -7538,7 +7840,9 @@ export type PublicOfferingDetails = {
7538
7840
  category?: string;
7539
7841
  readonly category_uuid?: string;
7540
7842
  readonly category_title?: string;
7541
- readonly attributes?: {};
7843
+ readonly attributes?: {
7844
+ [key: string]: unknown;
7845
+ };
7542
7846
  options?: OfferingOptions;
7543
7847
  resource_options?: OfferingOptions;
7544
7848
  readonly components?: Array<OfferingComponent>;
@@ -7641,14 +7945,18 @@ export type RancherApplication = {
7641
7945
  rancher_project?: string;
7642
7946
  namespace?: string;
7643
7947
  version?: string;
7644
- answers?: {};
7948
+ answers?: {
7949
+ [key: string]: unknown;
7950
+ };
7645
7951
  readonly rancher_project_name?: string;
7646
7952
  readonly catalog_name?: string;
7647
7953
  readonly template_name?: string;
7648
7954
  readonly external_url?: string | null;
7649
7955
  readonly marketplace_offering_uuid?: string | null;
7650
7956
  readonly marketplace_offering_name?: string | null;
7651
- readonly marketplace_offering_plugin_options?: {} | null;
7957
+ readonly marketplace_offering_plugin_options?: {
7958
+ [key: string]: unknown;
7959
+ } | null;
7652
7960
  readonly marketplace_category_uuid?: string | null;
7653
7961
  readonly marketplace_category_name?: string | null;
7654
7962
  readonly marketplace_resource_uuid?: string | null;
@@ -7671,7 +7979,9 @@ export type RancherApplicationRequest = {
7671
7979
  namespace?: string;
7672
7980
  namespace_name?: string;
7673
7981
  version: string;
7674
- answers?: {};
7982
+ answers?: {
7983
+ [key: string]: unknown;
7984
+ };
7675
7985
  };
7676
7986
  export type RancherCatalog = {
7677
7987
  readonly uuid: string;
@@ -7789,9 +8099,12 @@ export type RancherCluster = {
7789
8099
  * Kubernetes version used in the cluster.
7790
8100
  */
7791
8101
  readonly kubernetes_version?: string;
8102
+ readonly router_ips?: Array<unknown>;
7792
8103
  readonly marketplace_offering_uuid?: string | null;
7793
8104
  readonly marketplace_offering_name?: string | null;
7794
- readonly marketplace_offering_plugin_options?: {} | null;
8105
+ readonly marketplace_offering_plugin_options?: {
8106
+ [key: string]: unknown;
8107
+ } | null;
7795
8108
  readonly marketplace_category_uuid?: string | null;
7796
8109
  readonly marketplace_category_name?: string | null;
7797
8110
  readonly marketplace_resource_uuid?: string | null;
@@ -7847,8 +8160,17 @@ export type RancherClusterTemplate = {
7847
8160
  nodes: Array<RancherClusterTemplateNode>;
7848
8161
  };
7849
8162
  export type RancherClusterTemplateNode = {
8163
+ /**
8164
+ * Min vCPU (cores)
8165
+ */
7850
8166
  min_vcpu: number;
8167
+ /**
8168
+ * Min RAM (GB)
8169
+ */
7851
8170
  min_ram: number;
8171
+ /**
8172
+ * System volume size (GB)
8173
+ */
7852
8174
  system_volume_size: number;
7853
8175
  preferred_volume_type?: string;
7854
8176
  role: RoleEnum;
@@ -7948,7 +8270,9 @@ export type RancherIngress = {
7948
8270
  rules?: unknown;
7949
8271
  readonly marketplace_offering_uuid?: string | null;
7950
8272
  readonly marketplace_offering_name?: string | null;
7951
- readonly marketplace_offering_plugin_options?: {} | null;
8273
+ readonly marketplace_offering_plugin_options?: {
8274
+ [key: string]: unknown;
8275
+ } | null;
7952
8276
  readonly marketplace_category_uuid?: string | null;
7953
8277
  readonly marketplace_category_name?: string | null;
7954
8278
  readonly marketplace_resource_uuid?: string | null;
@@ -8129,7 +8453,9 @@ export type RancherService = {
8129
8453
  target_workloads?: Array<RancherNestedWorkload>;
8130
8454
  readonly marketplace_offering_uuid?: string | null;
8131
8455
  readonly marketplace_offering_name?: string | null;
8132
- readonly marketplace_offering_plugin_options?: {} | null;
8456
+ readonly marketplace_offering_plugin_options?: {
8457
+ [key: string]: unknown;
8458
+ } | null;
8133
8459
  readonly marketplace_category_uuid?: string | null;
8134
8460
  readonly marketplace_category_name?: string | null;
8135
8461
  readonly marketplace_resource_uuid?: string | null;
@@ -8174,6 +8500,9 @@ export type RancherTemplateBaseQuestion = {
8174
8500
  description?: string;
8175
8501
  variable: string;
8176
8502
  required?: boolean;
8503
+ /**
8504
+ * Validate
8505
+ */
8177
8506
  validate_?: unknown;
8178
8507
  type: RancherTemplateQuestionType;
8179
8508
  default?: string | null;
@@ -8185,6 +8514,9 @@ export type RancherTemplateQuestion = {
8185
8514
  description?: string;
8186
8515
  variable: string;
8187
8516
  required?: boolean;
8517
+ /**
8518
+ * Validate
8519
+ */
8188
8520
  validate_?: unknown;
8189
8521
  type: RancherTemplateQuestionType;
8190
8522
  default?: string | null;
@@ -8433,7 +8765,9 @@ export type Resource = {
8433
8765
  readonly plan_name?: string | null;
8434
8766
  readonly plan_uuid?: string | null;
8435
8767
  readonly plan_description?: string | null;
8436
- readonly attributes?: {};
8768
+ readonly attributes?: {
8769
+ [key: string]: unknown;
8770
+ };
8437
8771
  readonly limits?: {
8438
8772
  [key: string]: number;
8439
8773
  };
@@ -8577,6 +8911,9 @@ export type ResourceSwitchPlanRequest = {
8577
8911
  plan: string;
8578
8912
  };
8579
8913
  export type ResourceTerminateRequest = {
8914
+ /**
8915
+ * Termination attributes
8916
+ */
8580
8917
  attributes?: unknown;
8581
8918
  };
8582
8919
  export type ResourceUpdate = {
@@ -8742,55 +9079,181 @@ export type RobotAccountRequest = {
8742
9079
  export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
8743
9080
  export type RoleDescription = {
8744
9081
  description?: string;
9082
+ /**
9083
+ * Description [en]
9084
+ */
8745
9085
  description_en?: string | null;
9086
+ /**
9087
+ * Description [et]
9088
+ */
8746
9089
  description_et?: string | null;
9090
+ /**
9091
+ * Description [lt]
9092
+ */
8747
9093
  description_lt?: string | null;
9094
+ /**
9095
+ * Description [lv]
9096
+ */
8748
9097
  description_lv?: string | null;
9098
+ /**
9099
+ * Description [ru]
9100
+ */
8749
9101
  description_ru?: string | null;
9102
+ /**
9103
+ * Description [it]
9104
+ */
8750
9105
  description_it?: string | null;
9106
+ /**
9107
+ * Description [de]
9108
+ */
8751
9109
  description_de?: string | null;
9110
+ /**
9111
+ * Description [da]
9112
+ */
8752
9113
  description_da?: string | null;
9114
+ /**
9115
+ * Description [sv]
9116
+ */
8753
9117
  description_sv?: string | null;
9118
+ /**
9119
+ * Description [es]
9120
+ */
8754
9121
  description_es?: string | null;
9122
+ /**
9123
+ * Description [fr]
9124
+ */
8755
9125
  description_fr?: string | null;
9126
+ /**
9127
+ * Description [nb]
9128
+ */
8756
9129
  description_nb?: string | null;
9130
+ /**
9131
+ * Description [ar]
9132
+ */
8757
9133
  description_ar?: string | null;
9134
+ /**
9135
+ * Description [cs]
9136
+ */
8758
9137
  description_cs?: string | null;
8759
9138
  };
8760
9139
  export type RoleDescriptionRequest = {
8761
9140
  description?: string;
9141
+ /**
9142
+ * Description [en]
9143
+ */
8762
9144
  description_en?: string | null;
9145
+ /**
9146
+ * Description [et]
9147
+ */
8763
9148
  description_et?: string | null;
9149
+ /**
9150
+ * Description [lt]
9151
+ */
8764
9152
  description_lt?: string | null;
9153
+ /**
9154
+ * Description [lv]
9155
+ */
8765
9156
  description_lv?: string | null;
9157
+ /**
9158
+ * Description [ru]
9159
+ */
8766
9160
  description_ru?: string | null;
9161
+ /**
9162
+ * Description [it]
9163
+ */
8767
9164
  description_it?: string | null;
9165
+ /**
9166
+ * Description [de]
9167
+ */
8768
9168
  description_de?: string | null;
9169
+ /**
9170
+ * Description [da]
9171
+ */
8769
9172
  description_da?: string | null;
9173
+ /**
9174
+ * Description [sv]
9175
+ */
8770
9176
  description_sv?: string | null;
9177
+ /**
9178
+ * Description [es]
9179
+ */
8771
9180
  description_es?: string | null;
9181
+ /**
9182
+ * Description [fr]
9183
+ */
8772
9184
  description_fr?: string | null;
9185
+ /**
9186
+ * Description [nb]
9187
+ */
8773
9188
  description_nb?: string | null;
9189
+ /**
9190
+ * Description [ar]
9191
+ */
8774
9192
  description_ar?: string | null;
9193
+ /**
9194
+ * Description [cs]
9195
+ */
8775
9196
  description_cs?: string | null;
8776
9197
  };
8777
9198
  export type RoleDetails = {
8778
9199
  readonly uuid?: string;
8779
9200
  name?: string;
8780
9201
  description?: string;
9202
+ /**
9203
+ * Description [en]
9204
+ */
8781
9205
  description_en?: string | null;
9206
+ /**
9207
+ * Description [et]
9208
+ */
8782
9209
  description_et?: string | null;
9210
+ /**
9211
+ * Description [lt]
9212
+ */
8783
9213
  description_lt?: string | null;
9214
+ /**
9215
+ * Description [lv]
9216
+ */
8784
9217
  description_lv?: string | null;
9218
+ /**
9219
+ * Description [ru]
9220
+ */
8785
9221
  description_ru?: string | null;
9222
+ /**
9223
+ * Description [it]
9224
+ */
8786
9225
  description_it?: string | null;
9226
+ /**
9227
+ * Description [de]
9228
+ */
8787
9229
  description_de?: string | null;
9230
+ /**
9231
+ * Description [da]
9232
+ */
8788
9233
  description_da?: string | null;
9234
+ /**
9235
+ * Description [sv]
9236
+ */
8789
9237
  description_sv?: string | null;
9238
+ /**
9239
+ * Description [es]
9240
+ */
8790
9241
  description_es?: string | null;
9242
+ /**
9243
+ * Description [fr]
9244
+ */
8791
9245
  description_fr?: string | null;
9246
+ /**
9247
+ * Description [nb]
9248
+ */
8792
9249
  description_nb?: string | null;
9250
+ /**
9251
+ * Description [ar]
9252
+ */
8793
9253
  description_ar?: string | null;
9254
+ /**
9255
+ * Description [cs]
9256
+ */
8794
9257
  description_cs?: string | null;
8795
9258
  readonly permissions?: Array<string>;
8796
9259
  readonly is_system_role?: boolean;
@@ -8802,19 +9265,61 @@ export type RoleEnum = 'agent' | 'server';
8802
9265
  export type RoleModifyRequest = {
8803
9266
  name: string;
8804
9267
  description?: string;
9268
+ /**
9269
+ * Description [en]
9270
+ */
8805
9271
  description_en?: string | null;
9272
+ /**
9273
+ * Description [et]
9274
+ */
8806
9275
  description_et?: string | null;
9276
+ /**
9277
+ * Description [lt]
9278
+ */
8807
9279
  description_lt?: string | null;
9280
+ /**
9281
+ * Description [lv]
9282
+ */
8808
9283
  description_lv?: string | null;
9284
+ /**
9285
+ * Description [ru]
9286
+ */
8809
9287
  description_ru?: string | null;
9288
+ /**
9289
+ * Description [it]
9290
+ */
8810
9291
  description_it?: string | null;
9292
+ /**
9293
+ * Description [de]
9294
+ */
8811
9295
  description_de?: string | null;
9296
+ /**
9297
+ * Description [da]
9298
+ */
8812
9299
  description_da?: string | null;
9300
+ /**
9301
+ * Description [sv]
9302
+ */
8813
9303
  description_sv?: string | null;
9304
+ /**
9305
+ * Description [es]
9306
+ */
8814
9307
  description_es?: string | null;
9308
+ /**
9309
+ * Description [fr]
9310
+ */
8815
9311
  description_fr?: string | null;
9312
+ /**
9313
+ * Description [nb]
9314
+ */
8816
9315
  description_nb?: string | null;
9316
+ /**
9317
+ * Description [ar]
9318
+ */
8817
9319
  description_ar?: string | null;
9320
+ /**
9321
+ * Description [cs]
9322
+ */
8818
9323
  description_cs?: string | null;
8819
9324
  permissions: unknown;
8820
9325
  is_active?: boolean;
@@ -8842,6 +9347,43 @@ export type RoundReviewer = {
8842
9347
  rejected_proposals: number;
8843
9348
  in_review_proposals: number;
8844
9349
  };
9350
+ export type Rule = {
9351
+ readonly uuid: string;
9352
+ readonly url: string;
9353
+ user_affiliations?: Array<string>;
9354
+ user_email_patterns?: Array<string>;
9355
+ customer: string;
9356
+ project_role?: string | null;
9357
+ readonly plans: Array<string>;
9358
+ };
9359
+ export type RulePlans = {
9360
+ readonly uuid: string;
9361
+ readonly url: string;
9362
+ rule: string;
9363
+ plan: string;
9364
+ attributes?: {
9365
+ [key: string]: unknown;
9366
+ };
9367
+ limits?: {
9368
+ [key: string]: unknown;
9369
+ };
9370
+ };
9371
+ export type RulePlansRequest = {
9372
+ rule: string;
9373
+ plan: string;
9374
+ attributes?: {
9375
+ [key: string]: unknown;
9376
+ };
9377
+ limits?: {
9378
+ [key: string]: unknown;
9379
+ };
9380
+ };
9381
+ export type RuleRequest = {
9382
+ user_affiliations?: Array<string>;
9383
+ user_email_patterns?: Array<string>;
9384
+ customer: string;
9385
+ project_role?: string | null;
9386
+ };
8845
9387
  export type RuntimeStates = {
8846
9388
  readonly value: string;
8847
9389
  readonly label: string;
@@ -8970,13 +9512,18 @@ export type ServiceSettings = {
8970
9512
  * Anybody can use it
8971
9513
  */
8972
9514
  shared?: boolean;
9515
+ /**
9516
+ * Organization
9517
+ */
8973
9518
  customer?: string | null;
8974
9519
  readonly customer_name?: string | null;
8975
9520
  readonly customer_native_name?: string;
8976
9521
  terms_of_services?: string;
8977
9522
  scope?: string | null;
8978
9523
  readonly scope_uuid?: string;
8979
- readonly options?: {};
9524
+ readonly options?: {
9525
+ [key: string]: unknown;
9526
+ };
8980
9527
  };
8981
9528
  export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
8982
9529
  export type SetMtu = {
@@ -9029,7 +9576,9 @@ export type SlurmAllocation = {
9029
9576
  readonly is_active?: boolean;
9030
9577
  readonly marketplace_offering_uuid?: string | null;
9031
9578
  readonly marketplace_offering_name?: string | null;
9032
- readonly marketplace_offering_plugin_options?: {} | null;
9579
+ readonly marketplace_offering_plugin_options?: {
9580
+ [key: string]: unknown;
9581
+ } | null;
9033
9582
  readonly marketplace_category_uuid?: string | null;
9034
9583
  readonly marketplace_category_name?: string | null;
9035
9584
  readonly marketplace_resource_uuid?: string | null;
@@ -9161,6 +9710,11 @@ export type TemplateVersion = {
9161
9710
  readonly app_readme: string;
9162
9711
  readonly questions: Array<RancherTemplateQuestion>;
9163
9712
  };
9713
+ export type Tenant = {
9714
+ readonly url: string;
9715
+ readonly uuid: string;
9716
+ name: string;
9717
+ };
9164
9718
  export type TokenRequest = {
9165
9719
  token: string;
9166
9720
  };
@@ -9185,14 +9739,17 @@ export type User = {
9185
9739
  readonly civil_number?: string | null;
9186
9740
  description?: string;
9187
9741
  /**
9742
+ * Staff status
9188
9743
  * Designates whether the user can log into this admin site.
9189
9744
  */
9190
9745
  is_staff?: boolean;
9191
9746
  /**
9747
+ * Active
9192
9748
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9193
9749
  */
9194
9750
  is_active?: boolean;
9195
9751
  /**
9752
+ * Support status
9196
9753
  * Designates whether the user is a global support user.
9197
9754
  */
9198
9755
  is_support?: boolean;
@@ -9230,6 +9787,7 @@ export type User = {
9230
9787
  readonly identity_provider_fields?: Array<string>;
9231
9788
  image?: string | null;
9232
9789
  /**
9790
+ * Source of identity
9233
9791
  * Indicates what identity provider was used.
9234
9792
  */
9235
9793
  readonly identity_source?: string;
@@ -9256,6 +9814,7 @@ export type UserAuthToken = {
9256
9814
  */
9257
9815
  readonly user_username: string;
9258
9816
  /**
9817
+ * Active
9259
9818
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9260
9819
  */
9261
9820
  readonly user_is_active: boolean;
@@ -9280,14 +9839,17 @@ export type UserRequest = {
9280
9839
  organization?: string;
9281
9840
  description?: string;
9282
9841
  /**
9842
+ * Staff status
9283
9843
  * Designates whether the user can log into this admin site.
9284
9844
  */
9285
9845
  is_staff?: boolean;
9286
9846
  /**
9847
+ * Active
9287
9848
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9288
9849
  */
9289
9850
  is_active?: boolean;
9290
9851
  /**
9852
+ * Support status
9291
9853
  * Designates whether the user is a global support user.
9292
9854
  */
9293
9855
  is_support?: boolean;
@@ -9324,6 +9886,9 @@ export type UserRoleDetails = {
9324
9886
  expiration_time?: string | null;
9325
9887
  readonly role_name?: string;
9326
9888
  readonly role_uuid?: string;
9889
+ /**
9890
+ * Email address
9891
+ */
9327
9892
  readonly user_email?: string;
9328
9893
  readonly user_full_name?: string;
9329
9894
  /**
@@ -9357,6 +9922,7 @@ export type Version = {
9357
9922
  */
9358
9923
  latest_version?: string;
9359
9924
  };
9925
+ export type VisibilityEnum = 'private' | 'public';
9360
9926
  export type VisibleInvitationDetails = {
9361
9927
  readonly scope_uuid: string;
9362
9928
  readonly scope_name: string;
@@ -9428,7 +9994,9 @@ export type VmwareDisk = {
9428
9994
  readonly vm_name?: string;
9429
9995
  readonly marketplace_offering_uuid?: string | null;
9430
9996
  readonly marketplace_offering_name?: string | null;
9431
- readonly marketplace_offering_plugin_options?: {} | null;
9997
+ readonly marketplace_offering_plugin_options?: {
9998
+ [key: string]: unknown;
9999
+ } | null;
9432
10000
  readonly marketplace_category_uuid?: string | null;
9433
10001
  readonly marketplace_category_name?: string | null;
9434
10002
  readonly marketplace_resource_uuid?: string | null;
@@ -9542,7 +10110,9 @@ export type VmwarePort = {
9542
10110
  readonly network_name?: string;
9543
10111
  readonly marketplace_offering_uuid?: string | null;
9544
10112
  readonly marketplace_offering_name?: string | null;
9545
- readonly marketplace_offering_plugin_options?: {} | null;
10113
+ readonly marketplace_offering_plugin_options?: {
10114
+ [key: string]: unknown;
10115
+ } | null;
9546
10116
  readonly marketplace_category_uuid?: string | null;
9547
10117
  readonly marketplace_category_name?: string | null;
9548
10118
  readonly marketplace_resource_uuid?: string | null;
@@ -9637,12 +10207,17 @@ export type VmwareVirtualMachine = {
9637
10207
  readonly datastore_name?: string;
9638
10208
  readonly folder_name?: string;
9639
10209
  readonly ports?: Array<VmwareNestedPort>;
10210
+ /**
10211
+ * The power state of the guest operating system.
10212
+ */
9640
10213
  guest_power_state?: GuestPowerStateEnum;
9641
10214
  readonly tools_state?: string;
9642
10215
  readonly tools_installed?: boolean;
9643
10216
  readonly marketplace_offering_uuid?: string | null;
9644
10217
  readonly marketplace_offering_name?: string | null;
9645
- readonly marketplace_offering_plugin_options?: {} | null;
10218
+ readonly marketplace_offering_plugin_options?: {
10219
+ [key: string]: unknown;
10220
+ } | null;
9646
10221
  readonly marketplace_category_uuid?: string | null;
9647
10222
  readonly marketplace_category_name?: string | null;
9648
10223
  readonly marketplace_resource_uuid?: string | null;
@@ -10160,6 +10735,166 @@ export type AuthValimoResultResponses = {
10160
10735
  200: AuthResult;
10161
10736
  };
10162
10737
  export type AuthValimoResultResponse = AuthValimoResultResponses[keyof AuthValimoResultResponses];
10738
+ export type AutoprovisioningRulePlansListData = {
10739
+ body?: never;
10740
+ path?: never;
10741
+ query?: {
10742
+ /**
10743
+ * A page number within the paginated result set.
10744
+ */
10745
+ page?: number;
10746
+ /**
10747
+ * Number of results to return per page.
10748
+ */
10749
+ page_size?: number;
10750
+ };
10751
+ url: '/api/autoprovisioning-rule-plans/';
10752
+ };
10753
+ export type AutoprovisioningRulePlansListResponses = {
10754
+ 200: Array<RulePlans>;
10755
+ };
10756
+ export type AutoprovisioningRulePlansListResponse = AutoprovisioningRulePlansListResponses[keyof AutoprovisioningRulePlansListResponses];
10757
+ export type AutoprovisioningRulePlansCreateData = {
10758
+ body: RulePlansRequest;
10759
+ path?: never;
10760
+ query?: never;
10761
+ url: '/api/autoprovisioning-rule-plans/';
10762
+ };
10763
+ export type AutoprovisioningRulePlansCreateResponses = {
10764
+ 201: RulePlans;
10765
+ };
10766
+ export type AutoprovisioningRulePlansCreateResponse = AutoprovisioningRulePlansCreateResponses[keyof AutoprovisioningRulePlansCreateResponses];
10767
+ export type AutoprovisioningRulePlansDestroyData = {
10768
+ body?: never;
10769
+ path: {
10770
+ uuid: string;
10771
+ };
10772
+ query?: never;
10773
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10774
+ };
10775
+ export type AutoprovisioningRulePlansDestroyResponses = {
10776
+ /**
10777
+ * No response body
10778
+ */
10779
+ 204: void;
10780
+ };
10781
+ export type AutoprovisioningRulePlansDestroyResponse = AutoprovisioningRulePlansDestroyResponses[keyof AutoprovisioningRulePlansDestroyResponses];
10782
+ export type AutoprovisioningRulePlansRetrieveData = {
10783
+ body?: never;
10784
+ path: {
10785
+ uuid: string;
10786
+ };
10787
+ query?: never;
10788
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10789
+ };
10790
+ export type AutoprovisioningRulePlansRetrieveResponses = {
10791
+ 200: RulePlans;
10792
+ };
10793
+ export type AutoprovisioningRulePlansRetrieveResponse = AutoprovisioningRulePlansRetrieveResponses[keyof AutoprovisioningRulePlansRetrieveResponses];
10794
+ export type AutoprovisioningRulePlansPartialUpdateData = {
10795
+ body?: PatchedRulePlansRequest;
10796
+ path: {
10797
+ uuid: string;
10798
+ };
10799
+ query?: never;
10800
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10801
+ };
10802
+ export type AutoprovisioningRulePlansPartialUpdateResponses = {
10803
+ 200: RulePlans;
10804
+ };
10805
+ export type AutoprovisioningRulePlansPartialUpdateResponse = AutoprovisioningRulePlansPartialUpdateResponses[keyof AutoprovisioningRulePlansPartialUpdateResponses];
10806
+ export type AutoprovisioningRulePlansUpdateData = {
10807
+ body: RulePlansRequest;
10808
+ path: {
10809
+ uuid: string;
10810
+ };
10811
+ query?: never;
10812
+ url: '/api/autoprovisioning-rule-plans/{uuid}/';
10813
+ };
10814
+ export type AutoprovisioningRulePlansUpdateResponses = {
10815
+ 200: RulePlans;
10816
+ };
10817
+ export type AutoprovisioningRulePlansUpdateResponse = AutoprovisioningRulePlansUpdateResponses[keyof AutoprovisioningRulePlansUpdateResponses];
10818
+ export type AutoprovisioningRulesListData = {
10819
+ body?: never;
10820
+ path?: never;
10821
+ query?: {
10822
+ /**
10823
+ * A page number within the paginated result set.
10824
+ */
10825
+ page?: number;
10826
+ /**
10827
+ * Number of results to return per page.
10828
+ */
10829
+ page_size?: number;
10830
+ };
10831
+ url: '/api/autoprovisioning-rules/';
10832
+ };
10833
+ export type AutoprovisioningRulesListResponses = {
10834
+ 200: Array<Rule>;
10835
+ };
10836
+ export type AutoprovisioningRulesListResponse = AutoprovisioningRulesListResponses[keyof AutoprovisioningRulesListResponses];
10837
+ export type AutoprovisioningRulesCreateData = {
10838
+ body: RuleRequest;
10839
+ path?: never;
10840
+ query?: never;
10841
+ url: '/api/autoprovisioning-rules/';
10842
+ };
10843
+ export type AutoprovisioningRulesCreateResponses = {
10844
+ 201: Rule;
10845
+ };
10846
+ export type AutoprovisioningRulesCreateResponse = AutoprovisioningRulesCreateResponses[keyof AutoprovisioningRulesCreateResponses];
10847
+ export type AutoprovisioningRulesDestroyData = {
10848
+ body?: never;
10849
+ path: {
10850
+ uuid: string;
10851
+ };
10852
+ query?: never;
10853
+ url: '/api/autoprovisioning-rules/{uuid}/';
10854
+ };
10855
+ export type AutoprovisioningRulesDestroyResponses = {
10856
+ /**
10857
+ * No response body
10858
+ */
10859
+ 204: void;
10860
+ };
10861
+ export type AutoprovisioningRulesDestroyResponse = AutoprovisioningRulesDestroyResponses[keyof AutoprovisioningRulesDestroyResponses];
10862
+ export type AutoprovisioningRulesRetrieveData = {
10863
+ body?: never;
10864
+ path: {
10865
+ uuid: string;
10866
+ };
10867
+ query?: never;
10868
+ url: '/api/autoprovisioning-rules/{uuid}/';
10869
+ };
10870
+ export type AutoprovisioningRulesRetrieveResponses = {
10871
+ 200: Rule;
10872
+ };
10873
+ export type AutoprovisioningRulesRetrieveResponse = AutoprovisioningRulesRetrieveResponses[keyof AutoprovisioningRulesRetrieveResponses];
10874
+ export type AutoprovisioningRulesPartialUpdateData = {
10875
+ body?: PatchedRuleRequest;
10876
+ path: {
10877
+ uuid: string;
10878
+ };
10879
+ query?: never;
10880
+ url: '/api/autoprovisioning-rules/{uuid}/';
10881
+ };
10882
+ export type AutoprovisioningRulesPartialUpdateResponses = {
10883
+ 200: Rule;
10884
+ };
10885
+ export type AutoprovisioningRulesPartialUpdateResponse = AutoprovisioningRulesPartialUpdateResponses[keyof AutoprovisioningRulesPartialUpdateResponses];
10886
+ export type AutoprovisioningRulesUpdateData = {
10887
+ body: RuleRequest;
10888
+ path: {
10889
+ uuid: string;
10890
+ };
10891
+ query?: never;
10892
+ url: '/api/autoprovisioning-rules/{uuid}/';
10893
+ };
10894
+ export type AutoprovisioningRulesUpdateResponses = {
10895
+ 200: Rule;
10896
+ };
10897
+ export type AutoprovisioningRulesUpdateResponse = AutoprovisioningRulesUpdateResponses[keyof AutoprovisioningRulesUpdateResponses];
10163
10898
  export type AwsImagesListData = {
10164
10899
  body?: never;
10165
10900
  path?: never;
@@ -12096,7 +12831,9 @@ export type ConfigurationRetrieveData = {
12096
12831
  url: '/api/configuration/';
12097
12832
  };
12098
12833
  export type ConfigurationRetrieveResponses = {
12099
- 200: {};
12834
+ 200: {
12835
+ [key: string]: unknown;
12836
+ };
12100
12837
  };
12101
12838
  export type ConfigurationRetrieveResponse = ConfigurationRetrieveResponses[keyof ConfigurationRetrieveResponses];
12102
12839
  export type CustomerCreditsListData = {
@@ -12324,7 +13061,7 @@ export type CustomersListData = {
12324
13061
  archived?: boolean;
12325
13062
  backend_id?: string;
12326
13063
  contact_details?: string;
12327
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
13064
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
12328
13065
  name?: string;
12329
13066
  name_exact?: string;
12330
13067
  native_name?: string;
@@ -12426,7 +13163,7 @@ export type CustomersRetrieveData = {
12426
13163
  uuid: string;
12427
13164
  };
12428
13165
  query?: {
12429
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
13166
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
12430
13167
  };
12431
13168
  url: '/api/customers/{uuid}/';
12432
13169
  };
@@ -12594,7 +13331,7 @@ export type CustomersUsersListData = {
12594
13331
  civil_number?: string;
12595
13332
  description?: string;
12596
13333
  email?: string;
12597
- field?: Array<'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role' | 'role_name' | 'url' | 'username' | 'uuid'>;
13334
+ field?: Array<'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid'>;
12598
13335
  full_name?: string;
12599
13336
  is_active?: string;
12600
13337
  job_title?: string;
@@ -13218,7 +13955,9 @@ export type EventsScopeTypesRetrieveResponses = {
13218
13955
  };
13219
13956
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
13220
13957
  export type FeatureValuesData = {
13221
- body?: {};
13958
+ body?: {
13959
+ [key: string]: unknown;
13960
+ };
13222
13961
  path?: never;
13223
13962
  query?: never;
13224
13963
  url: '/api/feature-values/';
@@ -16083,7 +16822,7 @@ export type MarketplaceOfferingUsersListResponses = {
16083
16822
  };
16084
16823
  export type MarketplaceOfferingUsersListResponse = MarketplaceOfferingUsersListResponses[keyof MarketplaceOfferingUsersListResponses];
16085
16824
  export type MarketplaceOfferingUsersCreateData = {
16086
- body: OfferingUserRequest;
16825
+ body?: OfferingUserRequest;
16087
16826
  path?: never;
16088
16827
  query?: never;
16089
16828
  url: '/api/marketplace-offering-users/';
@@ -16134,7 +16873,7 @@ export type MarketplaceOfferingUsersPartialUpdateResponses = {
16134
16873
  };
16135
16874
  export type MarketplaceOfferingUsersPartialUpdateResponse = MarketplaceOfferingUsersPartialUpdateResponses[keyof MarketplaceOfferingUsersPartialUpdateResponses];
16136
16875
  export type MarketplaceOfferingUsersUpdateData = {
16137
- body: OfferingUserRequest;
16876
+ body?: OfferingUserRequest;
16138
16877
  path: {
16139
16878
  uuid: string;
16140
16879
  };
@@ -16938,6 +17677,10 @@ export type MarketplaceProviderOfferingsListData = {
16938
17677
  shared?: boolean;
16939
17678
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
16940
17679
  type?: Array<string>;
17680
+ /**
17681
+ * Comma-separated offering UUIDs
17682
+ */
17683
+ uuid_list?: string;
16941
17684
  };
16942
17685
  url: '/api/marketplace-provider-offerings/';
16943
17686
  };
@@ -17114,6 +17857,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
17114
17857
  start?: string;
17115
17858
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17116
17859
  type?: Array<string>;
17860
+ /**
17861
+ * Comma-separated offering UUIDs
17862
+ */
17863
+ uuid_list?: string;
17117
17864
  };
17118
17865
  url: '/api/marketplace-provider-offerings/{uuid}/component_stats/';
17119
17866
  };
@@ -17204,6 +17951,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
17204
17951
  start?: string;
17205
17952
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17206
17953
  type?: Array<string>;
17954
+ /**
17955
+ * Comma-separated offering UUIDs
17956
+ */
17957
+ uuid_list?: string;
17207
17958
  };
17208
17959
  url: '/api/marketplace-provider-offerings/{uuid}/costs/';
17209
17960
  };
@@ -17299,6 +18050,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
17299
18050
  shared?: boolean;
17300
18051
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17301
18052
  type?: Array<string>;
18053
+ /**
18054
+ * Comma-separated offering UUIDs
18055
+ */
18056
+ uuid_list?: string;
17302
18057
  };
17303
18058
  url: '/api/marketplace-provider-offerings/{uuid}/customers/';
17304
18059
  };
@@ -17705,7 +18460,9 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
17705
18460
  };
17706
18461
  export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
17707
18462
  export type MarketplaceProviderOfferingsUpdateAttributesData = {
17708
- body?: {};
18463
+ body?: {
18464
+ [key: string]: unknown;
18465
+ };
17709
18466
  path: {
17710
18467
  uuid: string;
17711
18468
  };
@@ -17958,6 +18715,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
17958
18715
  shared?: boolean;
17959
18716
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17960
18717
  type?: Array<string>;
18718
+ /**
18719
+ * Comma-separated offering UUIDs
18720
+ */
18721
+ uuid_list?: string;
17961
18722
  };
17962
18723
  url: '/api/marketplace-provider-offerings/groups/';
17963
18724
  };
@@ -18419,6 +19180,10 @@ export type MarketplacePublicOfferingsListData = {
18419
19180
  shared?: boolean;
18420
19181
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
18421
19182
  type?: Array<string>;
19183
+ /**
19184
+ * Comma-separated offering UUIDs
19185
+ */
19186
+ uuid_list?: string;
18422
19187
  };
18423
19188
  url: '/api/marketplace-public-offerings/';
18424
19189
  };
@@ -19662,6 +20427,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
19662
20427
  shared?: boolean;
19663
20428
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
19664
20429
  type?: Array<string>;
20430
+ /**
20431
+ * Comma-separated offering UUIDs
20432
+ */
20433
+ uuid_list?: string;
19665
20434
  };
19666
20435
  url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
19667
20436
  };
@@ -19907,6 +20676,10 @@ export type MarketplaceServiceProvidersUsersListData = {
19907
20676
  */
19908
20677
  user_keyword?: string;
19909
20678
  username?: string;
20679
+ /**
20680
+ * Comma-separated usernames
20681
+ */
20682
+ username_list?: string;
19910
20683
  };
19911
20684
  url: '/api/marketplace-service-providers/{service_provider_uuid}/users/';
19912
20685
  };
@@ -21526,6 +22299,83 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
21526
22299
  */
21527
22300
  200: unknown;
21528
22301
  };
22302
+ export type OpenstackMarketplaceTenantsListData = {
22303
+ body?: never;
22304
+ path?: never;
22305
+ query?: {
22306
+ backend_id?: string;
22307
+ /**
22308
+ * Can manage
22309
+ */
22310
+ can_manage?: boolean;
22311
+ customer?: string;
22312
+ customer_abbreviation?: string;
22313
+ customer_name?: string;
22314
+ customer_native_name?: string;
22315
+ customer_uuid?: string;
22316
+ description?: string;
22317
+ external_ip?: string;
22318
+ name?: string;
22319
+ name_exact?: string;
22320
+ /**
22321
+ * A page number within the paginated result set.
22322
+ */
22323
+ page?: number;
22324
+ /**
22325
+ * Number of results to return per page.
22326
+ */
22327
+ page_size?: number;
22328
+ project?: string;
22329
+ project_name?: string;
22330
+ project_uuid?: string;
22331
+ service_settings_name?: string;
22332
+ service_settings_uuid?: string;
22333
+ state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
22334
+ uuid?: string;
22335
+ };
22336
+ url: '/api/openstack-marketplace-tenants/';
22337
+ };
22338
+ export type OpenstackMarketplaceTenantsListResponses = {
22339
+ 200: Array<Tenant>;
22340
+ };
22341
+ export type OpenstackMarketplaceTenantsListResponse = OpenstackMarketplaceTenantsListResponses[keyof OpenstackMarketplaceTenantsListResponses];
22342
+ export type OpenstackMarketplaceTenantsRetrieveData = {
22343
+ body?: never;
22344
+ path: {
22345
+ uuid: string;
22346
+ };
22347
+ query?: never;
22348
+ url: '/api/openstack-marketplace-tenants/{uuid}/';
22349
+ };
22350
+ export type OpenstackMarketplaceTenantsRetrieveResponses = {
22351
+ 200: Tenant;
22352
+ };
22353
+ export type OpenstackMarketplaceTenantsRetrieveResponse = OpenstackMarketplaceTenantsRetrieveResponses[keyof OpenstackMarketplaceTenantsRetrieveResponses];
22354
+ export type OpenstackMarketplaceTenantsCreateImageData = {
22355
+ body: ImageCreateRequest;
22356
+ path: {
22357
+ uuid: string;
22358
+ };
22359
+ query?: never;
22360
+ url: '/api/openstack-marketplace-tenants/{uuid}/create_image/';
22361
+ };
22362
+ export type OpenstackMarketplaceTenantsCreateImageResponses = {
22363
+ 201: ImageCreateResponse;
22364
+ };
22365
+ export type OpenstackMarketplaceTenantsCreateImageResponse = OpenstackMarketplaceTenantsCreateImageResponses[keyof OpenstackMarketplaceTenantsCreateImageResponses];
22366
+ export type OpenstackMarketplaceTenantsUploadImageDataData = {
22367
+ body?: Blob | File;
22368
+ path: {
22369
+ image_id: string;
22370
+ uuid: string;
22371
+ };
22372
+ query?: never;
22373
+ url: '/api/openstack-marketplace-tenants/{uuid}/upload_image_data/{image_id}/';
22374
+ };
22375
+ export type OpenstackMarketplaceTenantsUploadImageDataResponses = {
22376
+ 200: ImageUploadResponse;
22377
+ };
22378
+ export type OpenstackMarketplaceTenantsUploadImageDataResponse = OpenstackMarketplaceTenantsUploadImageDataResponses[keyof OpenstackMarketplaceTenantsUploadImageDataResponses];
21529
22379
  export type OpenstackMigrationsListData = {
21530
22380
  body?: never;
21531
22381
  path?: never;
@@ -23005,7 +23855,7 @@ export type OpenstackTenantsCreateSecurityGroupData = {
23005
23855
  url: '/api/openstack-tenants/{uuid}/create_security_group/';
23006
23856
  };
23007
23857
  export type OpenstackTenantsCreateSecurityGroupResponses = {
23008
- 200: OpenStackSecurityGroup;
23858
+ 201: OpenStackSecurityGroup;
23009
23859
  };
23010
23860
  export type OpenstackTenantsCreateSecurityGroupResponse = OpenstackTenantsCreateSecurityGroupResponses[keyof OpenstackTenantsCreateSecurityGroupResponses];
23011
23861
  export type OpenstackTenantsCreateServerGroupData = {
@@ -24114,6 +24964,20 @@ export type ProjectsStatsRetrieveResponses = {
24114
24964
  200: ComponentsUsageStats;
24115
24965
  };
24116
24966
  export type ProjectsStatsRetrieveResponse = ProjectsStatsRetrieveResponses[keyof ProjectsStatsRetrieveResponses];
24967
+ export type ProjectsSyncUserRolesData = {
24968
+ body?: never;
24969
+ path: {
24970
+ uuid: string;
24971
+ };
24972
+ query?: never;
24973
+ url: '/api/projects/{uuid}/sync_user_roles/';
24974
+ };
24975
+ export type ProjectsSyncUserRolesResponses = {
24976
+ /**
24977
+ * No response body
24978
+ */
24979
+ 200: unknown;
24980
+ };
24117
24981
  export type ProjectsUpdateUserData = {
24118
24982
  body: UserRoleUpdateRequest;
24119
24983
  path: {
@@ -25885,7 +26749,7 @@ export type RancherClustersListData = {
25885
26749
  customer_uuid?: string;
25886
26750
  description?: string;
25887
26751
  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'>;
26752
+ 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
26753
  name?: string;
25890
26754
  name_exact?: string;
25891
26755
  /**
@@ -25941,7 +26805,7 @@ export type RancherClustersRetrieveData = {
25941
26805
  uuid: string;
25942
26806
  };
25943
26807
  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'>;
26808
+ 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
26809
  };
25946
26810
  url: '/api/rancher-clusters/{uuid}/';
25947
26811
  };
@@ -28915,6 +29779,10 @@ export type UsersListData = {
28915
29779
  */
28916
29780
  user_keyword?: string;
28917
29781
  username?: string;
29782
+ /**
29783
+ * Comma-separated usernames
29784
+ */
29785
+ username_list?: string;
28918
29786
  };
28919
29787
  url: '/api/users/';
28920
29788
  };