waldur-js-client 1.0.4-dev.98 → 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;
@@ -2415,10 +2473,28 @@ export type GroupInvitation = {
2415
2473
  readonly created: string;
2416
2474
  readonly expires: string;
2417
2475
  readonly is_active: boolean;
2476
+ /**
2477
+ * Create project and grant project permissions instead of customer permissions
2478
+ */
2479
+ auto_create_project?: boolean;
2480
+ /**
2481
+ * Template for project name. Supports {username}, {email}, {full_name} variables
2482
+ */
2483
+ project_name_template?: string;
2484
+ project_role?: string | null;
2418
2485
  };
2419
2486
  export type GroupInvitationRequest = {
2420
2487
  role: string;
2421
2488
  scope: string;
2489
+ /**
2490
+ * Create project and grant project permissions instead of customer permissions
2491
+ */
2492
+ auto_create_project?: boolean;
2493
+ /**
2494
+ * Template for project name. Supports {username}, {email}, {full_name} variables
2495
+ */
2496
+ project_name_template?: string;
2497
+ project_role?: string | null;
2422
2498
  };
2423
2499
  export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
2424
2500
  export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
@@ -2481,6 +2557,10 @@ export type IdentityProvider = {
2481
2557
  */
2482
2558
  management_url?: string;
2483
2559
  protected_fields?: unknown;
2560
+ /**
2561
+ * Space-separated list of scopes to request during authentication.
2562
+ */
2563
+ extra_scope?: string | null;
2484
2564
  };
2485
2565
  export type IdentityProviderRequest = {
2486
2566
  provider: string;
@@ -2505,6 +2585,28 @@ export type IdentityProviderRequest = {
2505
2585
  */
2506
2586
  management_url?: string;
2507
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;
2508
2610
  };
2509
2611
  export type ImportResourceRequest = {
2510
2612
  backend_id: string;
@@ -2523,10 +2625,16 @@ export type InstanceFlavorChangeRequest = {
2523
2625
  export type IntegrationStatus = {
2524
2626
  readonly agent_type?: string;
2525
2627
  readonly status?: string;
2628
+ /**
2629
+ * Time of latest backend request
2630
+ */
2526
2631
  readonly last_request_timestamp?: string | null;
2527
2632
  };
2528
2633
  export type IntegrationStatusDetails = {
2529
2634
  readonly status: string;
2635
+ /**
2636
+ * Time of latest backend request
2637
+ */
2530
2638
  readonly last_request_timestamp: string | null;
2531
2639
  offering: string;
2532
2640
  readonly url: string;
@@ -2592,6 +2700,9 @@ export type Invoice = {
2592
2700
  readonly url?: string;
2593
2701
  readonly uuid?: string;
2594
2702
  readonly number?: number;
2703
+ /**
2704
+ * Organization
2705
+ */
2595
2706
  customer?: string;
2596
2707
  price?: string;
2597
2708
  tax?: string;
@@ -2783,6 +2894,9 @@ export type Issue = {
2783
2894
  assignee?: string | null;
2784
2895
  readonly assignee_uuid: string | null;
2785
2896
  readonly assignee_name: string | null;
2897
+ /**
2898
+ * Organization
2899
+ */
2786
2900
  customer?: string | null;
2787
2901
  readonly customer_uuid: string | null;
2788
2902
  readonly customer_name: string | null;
@@ -2815,6 +2929,9 @@ export type IssueRequest = {
2815
2929
  priority?: string;
2816
2930
  caller?: string | null;
2817
2931
  assignee?: string | null;
2932
+ /**
2933
+ * Organization
2934
+ */
2818
2935
  customer?: string | null;
2819
2936
  project?: string | null;
2820
2937
  resource?: string;
@@ -2843,11 +2960,15 @@ export type JiraIssue = {
2843
2960
  };
2844
2961
  export type JiraIssueFields = {
2845
2962
  project: JiraIssueProject;
2846
- comment?: {};
2963
+ comment?: {
2964
+ [key: string]: unknown;
2965
+ };
2847
2966
  };
2848
2967
  export type JiraIssueFieldsRequest = {
2849
2968
  project: JiraIssueProjectRequest;
2850
- comment?: {};
2969
+ comment?: {
2970
+ [key: string]: unknown;
2971
+ };
2851
2972
  };
2852
2973
  export type JiraIssueProject = {
2853
2974
  id: string;
@@ -2866,6 +2987,9 @@ export type JiraIssueRequest = {
2866
2987
  export type KeycloakGroup = {
2867
2988
  readonly uuid: string;
2868
2989
  readonly url: string;
2990
+ /**
2991
+ * Group name
2992
+ */
2869
2993
  readonly name: string;
2870
2994
  readonly backend_id: string;
2871
2995
  readonly scope_type: string;
@@ -3034,6 +3158,9 @@ export type MarketplaceProviderCustomer = {
3034
3158
  slug?: string;
3035
3159
  abbreviation?: string;
3036
3160
  phone_number?: string;
3161
+ /**
3162
+ * Email address
3163
+ */
3037
3164
  email?: string;
3038
3165
  readonly payment_profiles?: Array<PaymentProfile>;
3039
3166
  billing_price_estimate?: NestedPriceEstimate;
@@ -3064,6 +3191,9 @@ export type MarketplaceServiceProviderUser = {
3064
3191
  first_name?: string;
3065
3192
  last_name?: string;
3066
3193
  organization?: string;
3194
+ /**
3195
+ * Email address
3196
+ */
3067
3197
  email?: string;
3068
3198
  phone_number?: string;
3069
3199
  readonly projects_count?: number;
@@ -3076,6 +3206,7 @@ export type MarketplaceServiceProviderUser = {
3076
3206
  */
3077
3207
  affiliations?: unknown;
3078
3208
  /**
3209
+ * Active
3079
3210
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
3080
3211
  */
3081
3212
  is_active?: boolean;
@@ -3201,6 +3332,18 @@ export type MergedPluginOptions = {
3201
3332
  managed_rancher_load_balancer_system_volume_type_name?: string;
3202
3333
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3203
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;
3204
3347
  /**
3205
3348
  * Slurm account name generation policy
3206
3349
  */
@@ -3327,6 +3470,18 @@ export type MergedPluginOptionsRequest = {
3327
3470
  managed_rancher_load_balancer_system_volume_type_name?: string;
3328
3471
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3329
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;
3330
3485
  /**
3331
3486
  * Slurm account name generation policy
3332
3487
  */
@@ -3394,8 +3549,17 @@ export type MergedSecretOptions = {
3394
3549
  * Organization UUID
3395
3550
  */
3396
3551
  customer_uuid?: string;
3552
+ /**
3553
+ * Rancher server URL
3554
+ */
3397
3555
  backend_url?: string;
3556
+ /**
3557
+ * Rancher access key
3558
+ */
3398
3559
  username?: string;
3560
+ /**
3561
+ * Rancher secret key
3562
+ */
3399
3563
  password?: string;
3400
3564
  cloud_init_template?: string;
3401
3565
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -3538,8 +3702,17 @@ export type MergedSecretOptionsRequest = {
3538
3702
  * Organization UUID
3539
3703
  */
3540
3704
  customer_uuid?: string;
3705
+ /**
3706
+ * Rancher server URL
3707
+ */
3541
3708
  backend_url?: string;
3709
+ /**
3710
+ * Rancher access key
3711
+ */
3542
3712
  username?: string;
3713
+ /**
3714
+ * Rancher secret key
3715
+ */
3543
3716
  password?: string;
3544
3717
  cloud_init_template?: string;
3545
3718
  managed_rancher_load_balancer_cloud_init_template?: string;
@@ -4046,7 +4219,9 @@ export type Offering = {
4046
4219
  category?: string;
4047
4220
  readonly category_uuid?: string;
4048
4221
  readonly category_title?: string;
4049
- readonly attributes?: {};
4222
+ readonly attributes?: {
4223
+ [key: string]: unknown;
4224
+ };
4050
4225
  options?: OfferingOptions;
4051
4226
  resource_options?: OfferingOptions;
4052
4227
  readonly components?: Array<OfferingComponent>;
@@ -4218,7 +4393,9 @@ export type OfferingCreate = {
4218
4393
  components?: Array<OfferingComponent>;
4219
4394
  plugin_options: MergedPluginOptions;
4220
4395
  secret_options: MergedSecretOptions;
4221
- readonly service_attributes: {};
4396
+ readonly service_attributes: {
4397
+ [key: string]: unknown;
4398
+ };
4222
4399
  state: OfferingState;
4223
4400
  vendor_details?: string;
4224
4401
  getting_started?: string;
@@ -4405,6 +4582,9 @@ export type OfferingPauseRequest = {
4405
4582
  };
4406
4583
  export type OfferingPermission = {
4407
4584
  readonly url: string;
4585
+ /**
4586
+ * ID
4587
+ */
4408
4588
  readonly pk: number;
4409
4589
  readonly created: string;
4410
4590
  expiration_time?: string | null;
@@ -4413,7 +4593,7 @@ export type OfferingPermission = {
4413
4593
  readonly offering_uuid: string;
4414
4594
  readonly offering_slug: string;
4415
4595
  readonly offering_name: string;
4416
- readonly role: string;
4596
+ role: string;
4417
4597
  readonly role_name: string;
4418
4598
  readonly user: string;
4419
4599
  readonly user_full_name: string;
@@ -4423,6 +4603,9 @@ export type OfferingPermission = {
4423
4603
  */
4424
4604
  readonly user_username: string;
4425
4605
  readonly user_uuid: string;
4606
+ /**
4607
+ * Email address
4608
+ */
4426
4609
  readonly user_email: string;
4427
4610
  };
4428
4611
  export type OfferingReference = {
@@ -4501,9 +4684,9 @@ export type OfferingUser = {
4501
4684
  user?: string;
4502
4685
  offering?: string;
4503
4686
  username?: string | null;
4504
- readonly offering_uuid?: string;
4687
+ offering_uuid?: string;
4505
4688
  readonly offering_name?: string;
4506
- readonly user_uuid?: string;
4689
+ user_uuid?: string;
4507
4690
  /**
4508
4691
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
4509
4692
  */
@@ -4519,9 +4702,11 @@ export type OfferingUser = {
4519
4702
  readonly is_restricted?: boolean;
4520
4703
  };
4521
4704
  export type OfferingUserRequest = {
4522
- user: string;
4523
- offering: string;
4705
+ user?: string;
4706
+ offering?: string;
4524
4707
  username?: string | null;
4708
+ offering_uuid?: string;
4709
+ user_uuid?: string;
4525
4710
  };
4526
4711
  export type OfferingUserRole = {
4527
4712
  name: string;
@@ -4610,7 +4795,9 @@ export type OpenStackBackup = {
4610
4795
  readonly tenant_uuid?: string;
4611
4796
  readonly marketplace_offering_uuid?: string | null;
4612
4797
  readonly marketplace_offering_name?: string | null;
4613
- readonly marketplace_offering_plugin_options?: {} | null;
4798
+ readonly marketplace_offering_plugin_options?: {
4799
+ [key: string]: unknown;
4800
+ } | null;
4614
4801
  readonly marketplace_category_uuid?: string | null;
4615
4802
  readonly marketplace_category_name?: string | null;
4616
4803
  readonly marketplace_resource_uuid?: string | null;
@@ -4726,7 +4913,9 @@ export type OpenStackFloatingIp = {
4726
4913
  readonly instance_url?: string | null;
4727
4914
  readonly marketplace_offering_uuid?: string | null;
4728
4915
  readonly marketplace_offering_name?: string | null;
4729
- readonly marketplace_offering_plugin_options?: {} | null;
4916
+ readonly marketplace_offering_plugin_options?: {
4917
+ [key: string]: unknown;
4918
+ } | null;
4730
4919
  readonly marketplace_category_uuid?: string | null;
4731
4920
  readonly marketplace_category_name?: string | null;
4732
4921
  readonly marketplace_resource_uuid?: string | null;
@@ -4839,7 +5028,9 @@ export type OpenStackInstance = {
4839
5028
  rancher_cluster?: RancherClusterReference | null;
4840
5029
  readonly marketplace_offering_uuid?: string | null;
4841
5030
  readonly marketplace_offering_name?: string | null;
4842
- readonly marketplace_offering_plugin_options?: {} | null;
5031
+ readonly marketplace_offering_plugin_options?: {
5032
+ [key: string]: unknown;
5033
+ } | null;
4843
5034
  readonly marketplace_category_uuid?: string | null;
4844
5035
  readonly marketplace_category_name?: string | null;
4845
5036
  readonly marketplace_resource_uuid?: string | null;
@@ -5016,7 +5207,9 @@ export type OpenStackNetwork = {
5016
5207
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
5017
5208
  readonly marketplace_offering_uuid?: string | null;
5018
5209
  readonly marketplace_offering_name?: string | null;
5019
- readonly marketplace_offering_plugin_options?: {} | null;
5210
+ readonly marketplace_offering_plugin_options?: {
5211
+ [key: string]: unknown;
5212
+ } | null;
5020
5213
  readonly marketplace_category_uuid?: string | null;
5021
5214
  readonly marketplace_category_name?: string | null;
5022
5215
  readonly marketplace_resource_uuid?: string | null;
@@ -5072,7 +5265,9 @@ export type OpenStackPort = {
5072
5265
  readonly status?: string | null;
5073
5266
  readonly marketplace_offering_uuid?: string | null;
5074
5267
  readonly marketplace_offering_name?: string | null;
5075
- readonly marketplace_offering_plugin_options?: {} | null;
5268
+ readonly marketplace_offering_plugin_options?: {
5269
+ [key: string]: unknown;
5270
+ } | null;
5076
5271
  readonly marketplace_category_uuid?: string | null;
5077
5272
  readonly marketplace_category_name?: string | null;
5078
5273
  readonly marketplace_resource_uuid?: string | null;
@@ -5136,7 +5331,9 @@ export type OpenStackRouter = {
5136
5331
  readonly ports?: Array<OpenStackNestedPort>;
5137
5332
  readonly marketplace_offering_uuid?: string | null;
5138
5333
  readonly marketplace_offering_name?: string | null;
5139
- readonly marketplace_offering_plugin_options?: {} | null;
5334
+ readonly marketplace_offering_plugin_options?: {
5335
+ [key: string]: unknown;
5336
+ } | null;
5140
5337
  readonly marketplace_category_uuid?: string | null;
5141
5338
  readonly marketplace_category_name?: string | null;
5142
5339
  readonly marketplace_resource_uuid?: string | null;
@@ -5187,7 +5384,9 @@ export type OpenStackSecurityGroup = {
5187
5384
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
5188
5385
  readonly marketplace_offering_uuid?: string | null;
5189
5386
  readonly marketplace_offering_name?: string | null;
5190
- readonly marketplace_offering_plugin_options?: {} | null;
5387
+ readonly marketplace_offering_plugin_options?: {
5388
+ [key: string]: unknown;
5389
+ } | null;
5191
5390
  readonly marketplace_category_uuid?: string | null;
5192
5391
  readonly marketplace_category_name?: string | null;
5193
5392
  readonly marketplace_resource_uuid?: string | null;
@@ -5275,7 +5474,9 @@ export type OpenStackServerGroup = {
5275
5474
  readonly instances?: Array<OpenStackNestedInstance>;
5276
5475
  readonly marketplace_offering_uuid?: string | null;
5277
5476
  readonly marketplace_offering_name?: string | null;
5278
- readonly marketplace_offering_plugin_options?: {} | null;
5477
+ readonly marketplace_offering_plugin_options?: {
5478
+ [key: string]: unknown;
5479
+ } | null;
5279
5480
  readonly marketplace_category_uuid?: string | null;
5280
5481
  readonly marketplace_category_name?: string | null;
5281
5482
  readonly marketplace_resource_uuid?: string | null;
@@ -5332,7 +5533,9 @@ export type OpenStackSnapshot = {
5332
5533
  kept_until?: string | null;
5333
5534
  readonly marketplace_offering_uuid?: string | null;
5334
5535
  readonly marketplace_offering_name?: string | null;
5335
- readonly marketplace_offering_plugin_options?: {} | null;
5536
+ readonly marketplace_offering_plugin_options?: {
5537
+ [key: string]: unknown;
5538
+ } | null;
5336
5539
  readonly marketplace_category_uuid?: string | null;
5337
5540
  readonly marketplace_category_name?: string | null;
5338
5541
  readonly marketplace_resource_uuid?: string | null;
@@ -5431,7 +5634,9 @@ export type OpenStackSubNet = {
5431
5634
  readonly is_connected?: boolean;
5432
5635
  readonly marketplace_offering_uuid?: string | null;
5433
5636
  readonly marketplace_offering_name?: string | null;
5434
- readonly marketplace_offering_plugin_options?: {} | null;
5637
+ readonly marketplace_offering_plugin_options?: {
5638
+ [key: string]: unknown;
5639
+ } | null;
5435
5640
  readonly marketplace_category_uuid?: string | null;
5436
5641
  readonly marketplace_category_name?: string | null;
5437
5642
  readonly marketplace_resource_uuid?: string | null;
@@ -5495,7 +5700,9 @@ export type OpenStackTenant = {
5495
5700
  default_volume_type_name?: string;
5496
5701
  readonly marketplace_offering_uuid?: string | null;
5497
5702
  readonly marketplace_offering_name?: string | null;
5498
- readonly marketplace_offering_plugin_options?: {} | null;
5703
+ readonly marketplace_offering_plugin_options?: {
5704
+ [key: string]: unknown;
5705
+ } | null;
5499
5706
  readonly marketplace_category_uuid?: string | null;
5500
5707
  readonly marketplace_category_name?: string | null;
5501
5708
  readonly marketplace_resource_uuid?: string | null;
@@ -5599,7 +5806,9 @@ export type OpenStackVolume = {
5599
5806
  readonly extend_enabled?: boolean;
5600
5807
  readonly marketplace_offering_uuid?: string | null;
5601
5808
  readonly marketplace_offering_name?: string | null;
5602
- readonly marketplace_offering_plugin_options?: {} | null;
5809
+ readonly marketplace_offering_plugin_options?: {
5810
+ [key: string]: unknown;
5811
+ } | null;
5603
5812
  readonly marketplace_category_uuid?: string | null;
5604
5813
  readonly marketplace_category_name?: string | null;
5605
5814
  readonly marketplace_resource_uuid?: string | null;
@@ -5702,6 +5911,9 @@ export type OrderCreate = {
5702
5911
  readonly marketplace_resource_uuid: string;
5703
5912
  readonly error_message: string;
5704
5913
  callback_url?: string | null;
5914
+ /**
5915
+ * Completion time
5916
+ */
5705
5917
  readonly completed_at: string | null;
5706
5918
  readonly url: string;
5707
5919
  readonly created_by: string;
@@ -5770,7 +5982,9 @@ export type OrderDetails = {
5770
5982
  /**
5771
5983
  * Get attributes excluding secret attributes, such as username and password.
5772
5984
  */
5773
- readonly attributes?: {};
5985
+ readonly attributes?: {
5986
+ [key: string]: unknown;
5987
+ };
5774
5988
  limits?: {
5775
5989
  [key: string]: number;
5776
5990
  };
@@ -5787,6 +6001,9 @@ export type OrderDetails = {
5787
6001
  readonly marketplace_resource_uuid?: string;
5788
6002
  readonly error_message?: string;
5789
6003
  callback_url?: string | null;
6004
+ /**
6005
+ * Completion time
6006
+ */
5790
6007
  readonly completed_at?: string | null;
5791
6008
  /**
5792
6009
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -6008,6 +6225,9 @@ export type PatchedCustomerRequest = {
6008
6225
  native_name?: string;
6009
6226
  abbreviation?: string;
6010
6227
  contact_details?: string;
6228
+ /**
6229
+ * Email address
6230
+ */
6011
6231
  email?: string;
6012
6232
  phone_number?: string;
6013
6233
  registration_code?: string;
@@ -6070,6 +6290,10 @@ export type PatchedIdentityProviderRequest = {
6070
6290
  */
6071
6291
  management_url?: string;
6072
6292
  protected_fields?: unknown;
6293
+ /**
6294
+ * Space-separated list of scopes to request during authentication.
6295
+ */
6296
+ extra_scope?: string | null;
6073
6297
  };
6074
6298
  export type PatchedInvoiceItemUpdateRequest = {
6075
6299
  article_code?: string;
@@ -6176,6 +6400,8 @@ export type PatchedOfferingUserRequest = {
6176
6400
  user?: string;
6177
6401
  offering?: string;
6178
6402
  username?: string | null;
6403
+ offering_uuid?: string;
6404
+ user_uuid?: string;
6179
6405
  };
6180
6406
  export type PatchedOfferingUserRoleRequest = {
6181
6407
  name?: string;
@@ -6288,8 +6514,14 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
6288
6514
  };
6289
6515
  export type PatchedProjectRequest = {
6290
6516
  name?: string;
6517
+ /**
6518
+ * Organization
6519
+ */
6291
6520
  customer?: string;
6292
6521
  description?: string;
6522
+ /**
6523
+ * Project type
6524
+ */
6293
6525
  type?: string | null;
6294
6526
  backend_id?: string;
6295
6527
  start_date?: string | null;
@@ -6382,7 +6614,9 @@ export type PatchedRancherApplicationRequest = {
6382
6614
  namespace?: string;
6383
6615
  namespace_name?: string;
6384
6616
  version?: string;
6385
- answers?: {};
6617
+ answers?: {
6618
+ [key: string]: unknown;
6619
+ };
6386
6620
  };
6387
6621
  export type PatchedRancherCatalogRequest = {
6388
6622
  name?: string;
@@ -6490,22 +6724,80 @@ export type PatchedRobotAccountRequest = {
6490
6724
  export type PatchedRoleDetailsRequest = {
6491
6725
  name?: string;
6492
6726
  description?: string;
6727
+ /**
6728
+ * Description [en]
6729
+ */
6493
6730
  description_en?: string | null;
6731
+ /**
6732
+ * Description [et]
6733
+ */
6494
6734
  description_et?: string | null;
6735
+ /**
6736
+ * Description [lt]
6737
+ */
6495
6738
  description_lt?: string | null;
6739
+ /**
6740
+ * Description [lv]
6741
+ */
6496
6742
  description_lv?: string | null;
6743
+ /**
6744
+ * Description [ru]
6745
+ */
6497
6746
  description_ru?: string | null;
6747
+ /**
6748
+ * Description [it]
6749
+ */
6498
6750
  description_it?: string | null;
6751
+ /**
6752
+ * Description [de]
6753
+ */
6499
6754
  description_de?: string | null;
6755
+ /**
6756
+ * Description [da]
6757
+ */
6500
6758
  description_da?: string | null;
6759
+ /**
6760
+ * Description [sv]
6761
+ */
6501
6762
  description_sv?: string | null;
6763
+ /**
6764
+ * Description [es]
6765
+ */
6502
6766
  description_es?: string | null;
6767
+ /**
6768
+ * Description [fr]
6769
+ */
6503
6770
  description_fr?: string | null;
6771
+ /**
6772
+ * Description [nb]
6773
+ */
6504
6774
  description_nb?: string | null;
6775
+ /**
6776
+ * Description [ar]
6777
+ */
6505
6778
  description_ar?: string | null;
6779
+ /**
6780
+ * Description [cs]
6781
+ */
6506
6782
  description_cs?: string | null;
6507
6783
  is_active?: boolean;
6508
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
+ };
6509
6801
  export type PatchedScreenshotRequest = {
6510
6802
  name?: string;
6511
6803
  description?: string;
@@ -6547,14 +6839,17 @@ export type PatchedUserRequest = {
6547
6839
  organization?: string;
6548
6840
  description?: string;
6549
6841
  /**
6842
+ * Staff status
6550
6843
  * Designates whether the user can log into this admin site.
6551
6844
  */
6552
6845
  is_staff?: boolean;
6553
6846
  /**
6847
+ * Active
6554
6848
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
6555
6849
  */
6556
6850
  is_active?: boolean;
6557
6851
  /**
6852
+ * Support status
6558
6853
  * Designates whether the user is a global support user.
6559
6854
  */
6560
6855
  is_support?: boolean;
@@ -6712,7 +7007,13 @@ export type PlanComponent = {
6712
7007
  readonly measured_unit: string;
6713
7008
  billing_type: BillingTypeEnum;
6714
7009
  amount?: number;
7010
+ /**
7011
+ * Price per unit per billing period.
7012
+ */
6715
7013
  price?: string;
7014
+ /**
7015
+ * Price per unit for future month.
7016
+ */
6716
7017
  future_price?: string | null;
6717
7018
  };
6718
7019
  export type PlanUsageResponse = {
@@ -6756,6 +7057,9 @@ export type Project = {
6756
7057
  readonly uuid?: string;
6757
7058
  name?: string;
6758
7059
  readonly slug?: string;
7060
+ /**
7061
+ * Organization
7062
+ */
6759
7063
  customer?: string;
6760
7064
  readonly customer_uuid?: string;
6761
7065
  readonly customer_name?: string;
@@ -6764,6 +7068,9 @@ export type Project = {
6764
7068
  readonly customer_abbreviation?: string;
6765
7069
  description?: string;
6766
7070
  readonly created?: string;
7071
+ /**
7072
+ * Project type
7073
+ */
6767
7074
  type?: string | null;
6768
7075
  readonly type_name?: string | null;
6769
7076
  readonly type_uuid?: string | null;
@@ -6879,6 +7186,9 @@ export type ProjectPermissionLog = {
6879
7186
  */
6880
7187
  readonly user_username?: string;
6881
7188
  readonly user_uuid?: string;
7189
+ /**
7190
+ * Email address
7191
+ */
6882
7192
  readonly user_email?: string;
6883
7193
  };
6884
7194
  export type ProjectQuotas = {
@@ -6889,8 +7199,14 @@ export type ProjectQuotas = {
6889
7199
  };
6890
7200
  export type ProjectRequest = {
6891
7201
  name: string;
7202
+ /**
7203
+ * Organization
7204
+ */
6892
7205
  customer: string;
6893
7206
  description?: string;
7207
+ /**
7208
+ * Project type
7209
+ */
6894
7210
  type?: string | null;
6895
7211
  backend_id?: string;
6896
7212
  start_date?: string | null;
@@ -6953,6 +7269,9 @@ export type ProjectUser = {
6953
7269
  */
6954
7270
  username: string;
6955
7271
  readonly full_name: string;
7272
+ /**
7273
+ * Email address
7274
+ */
6956
7275
  email?: string;
6957
7276
  readonly role: string;
6958
7277
  readonly expiration_time: string | null;
@@ -7242,6 +7561,9 @@ export type ProviderOfferingCustomer = {
7242
7561
  slug: string;
7243
7562
  abbreviation?: string;
7244
7563
  phone_number?: string;
7564
+ /**
7565
+ * Email address
7566
+ */
7245
7567
  email?: string;
7246
7568
  };
7247
7569
  export type ProviderOfferingDetails = {
@@ -7270,13 +7592,17 @@ export type ProviderOfferingDetails = {
7270
7592
  category?: string;
7271
7593
  readonly category_uuid?: string;
7272
7594
  readonly category_title?: string;
7273
- readonly attributes?: {};
7595
+ readonly attributes?: {
7596
+ [key: string]: unknown;
7597
+ };
7274
7598
  options?: OfferingOptions;
7275
7599
  resource_options?: OfferingOptions;
7276
7600
  readonly components?: Array<OfferingComponent>;
7277
7601
  plugin_options?: MergedPluginOptions;
7278
7602
  secret_options?: MergedSecretOptions;
7279
- readonly service_attributes?: {};
7603
+ readonly service_attributes?: {
7604
+ [key: string]: unknown;
7605
+ };
7280
7606
  state?: OfferingState;
7281
7607
  vendor_details?: string;
7282
7608
  getting_started?: string;
@@ -7438,6 +7764,9 @@ export type ProviderRequestedOffering = {
7438
7764
  call: string;
7439
7765
  readonly description: string;
7440
7766
  readonly created_by_name: string;
7767
+ /**
7768
+ * Email address
7769
+ */
7441
7770
  readonly created_by_email: string;
7442
7771
  };
7443
7772
  export type ProviderRequestedResource = {
@@ -7459,6 +7788,9 @@ export type ProviderRequestedResource = {
7459
7788
  export type ProviderUser = {
7460
7789
  readonly uuid?: string;
7461
7790
  readonly full_name?: string;
7791
+ /**
7792
+ * Email address
7793
+ */
7462
7794
  email?: string;
7463
7795
  image?: string | null;
7464
7796
  };
@@ -7520,7 +7852,9 @@ export type PublicOfferingDetails = {
7520
7852
  category?: string;
7521
7853
  readonly category_uuid?: string;
7522
7854
  readonly category_title?: string;
7523
- readonly attributes?: {};
7855
+ readonly attributes?: {
7856
+ [key: string]: unknown;
7857
+ };
7524
7858
  options?: OfferingOptions;
7525
7859
  resource_options?: OfferingOptions;
7526
7860
  readonly components?: Array<OfferingComponent>;
@@ -7623,14 +7957,18 @@ export type RancherApplication = {
7623
7957
  rancher_project?: string;
7624
7958
  namespace?: string;
7625
7959
  version?: string;
7626
- answers?: {};
7960
+ answers?: {
7961
+ [key: string]: unknown;
7962
+ };
7627
7963
  readonly rancher_project_name?: string;
7628
7964
  readonly catalog_name?: string;
7629
7965
  readonly template_name?: string;
7630
7966
  readonly external_url?: string | null;
7631
7967
  readonly marketplace_offering_uuid?: string | null;
7632
7968
  readonly marketplace_offering_name?: string | null;
7633
- readonly marketplace_offering_plugin_options?: {} | null;
7969
+ readonly marketplace_offering_plugin_options?: {
7970
+ [key: string]: unknown;
7971
+ } | null;
7634
7972
  readonly marketplace_category_uuid?: string | null;
7635
7973
  readonly marketplace_category_name?: string | null;
7636
7974
  readonly marketplace_resource_uuid?: string | null;
@@ -7653,7 +7991,9 @@ export type RancherApplicationRequest = {
7653
7991
  namespace?: string;
7654
7992
  namespace_name?: string;
7655
7993
  version: string;
7656
- answers?: {};
7994
+ answers?: {
7995
+ [key: string]: unknown;
7996
+ };
7657
7997
  };
7658
7998
  export type RancherCatalog = {
7659
7999
  readonly uuid: string;
@@ -7771,9 +8111,12 @@ export type RancherCluster = {
7771
8111
  * Kubernetes version used in the cluster.
7772
8112
  */
7773
8113
  readonly kubernetes_version?: string;
8114
+ readonly router_ips?: Array<unknown>;
7774
8115
  readonly marketplace_offering_uuid?: string | null;
7775
8116
  readonly marketplace_offering_name?: string | null;
7776
- readonly marketplace_offering_plugin_options?: {} | null;
8117
+ readonly marketplace_offering_plugin_options?: {
8118
+ [key: string]: unknown;
8119
+ } | null;
7777
8120
  readonly marketplace_category_uuid?: string | null;
7778
8121
  readonly marketplace_category_name?: string | null;
7779
8122
  readonly marketplace_resource_uuid?: string | null;
@@ -7829,8 +8172,17 @@ export type RancherClusterTemplate = {
7829
8172
  nodes: Array<RancherClusterTemplateNode>;
7830
8173
  };
7831
8174
  export type RancherClusterTemplateNode = {
8175
+ /**
8176
+ * Min vCPU (cores)
8177
+ */
7832
8178
  min_vcpu: number;
8179
+ /**
8180
+ * Min RAM (GB)
8181
+ */
7833
8182
  min_ram: number;
8183
+ /**
8184
+ * System volume size (GB)
8185
+ */
7834
8186
  system_volume_size: number;
7835
8187
  preferred_volume_type?: string;
7836
8188
  role: RoleEnum;
@@ -7930,7 +8282,9 @@ export type RancherIngress = {
7930
8282
  rules?: unknown;
7931
8283
  readonly marketplace_offering_uuid?: string | null;
7932
8284
  readonly marketplace_offering_name?: string | null;
7933
- readonly marketplace_offering_plugin_options?: {} | null;
8285
+ readonly marketplace_offering_plugin_options?: {
8286
+ [key: string]: unknown;
8287
+ } | null;
7934
8288
  readonly marketplace_category_uuid?: string | null;
7935
8289
  readonly marketplace_category_name?: string | null;
7936
8290
  readonly marketplace_resource_uuid?: string | null;
@@ -8111,7 +8465,9 @@ export type RancherService = {
8111
8465
  target_workloads?: Array<RancherNestedWorkload>;
8112
8466
  readonly marketplace_offering_uuid?: string | null;
8113
8467
  readonly marketplace_offering_name?: string | null;
8114
- readonly marketplace_offering_plugin_options?: {} | null;
8468
+ readonly marketplace_offering_plugin_options?: {
8469
+ [key: string]: unknown;
8470
+ } | null;
8115
8471
  readonly marketplace_category_uuid?: string | null;
8116
8472
  readonly marketplace_category_name?: string | null;
8117
8473
  readonly marketplace_resource_uuid?: string | null;
@@ -8156,6 +8512,9 @@ export type RancherTemplateBaseQuestion = {
8156
8512
  description?: string;
8157
8513
  variable: string;
8158
8514
  required?: boolean;
8515
+ /**
8516
+ * Validate
8517
+ */
8159
8518
  validate_?: unknown;
8160
8519
  type: RancherTemplateQuestionType;
8161
8520
  default?: string | null;
@@ -8167,6 +8526,9 @@ export type RancherTemplateQuestion = {
8167
8526
  description?: string;
8168
8527
  variable: string;
8169
8528
  required?: boolean;
8529
+ /**
8530
+ * Validate
8531
+ */
8170
8532
  validate_?: unknown;
8171
8533
  type: RancherTemplateQuestionType;
8172
8534
  default?: string | null;
@@ -8415,7 +8777,9 @@ export type Resource = {
8415
8777
  readonly plan_name?: string | null;
8416
8778
  readonly plan_uuid?: string | null;
8417
8779
  readonly plan_description?: string | null;
8418
- readonly attributes?: {};
8780
+ readonly attributes?: {
8781
+ [key: string]: unknown;
8782
+ };
8419
8783
  readonly limits?: {
8420
8784
  [key: string]: number;
8421
8785
  };
@@ -8559,6 +8923,9 @@ export type ResourceSwitchPlanRequest = {
8559
8923
  plan: string;
8560
8924
  };
8561
8925
  export type ResourceTerminateRequest = {
8926
+ /**
8927
+ * Termination attributes
8928
+ */
8562
8929
  attributes?: unknown;
8563
8930
  };
8564
8931
  export type ResourceUpdate = {
@@ -8724,55 +9091,181 @@ export type RobotAccountRequest = {
8724
9091
  export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
8725
9092
  export type RoleDescription = {
8726
9093
  description?: string;
9094
+ /**
9095
+ * Description [en]
9096
+ */
8727
9097
  description_en?: string | null;
9098
+ /**
9099
+ * Description [et]
9100
+ */
8728
9101
  description_et?: string | null;
9102
+ /**
9103
+ * Description [lt]
9104
+ */
8729
9105
  description_lt?: string | null;
9106
+ /**
9107
+ * Description [lv]
9108
+ */
8730
9109
  description_lv?: string | null;
9110
+ /**
9111
+ * Description [ru]
9112
+ */
8731
9113
  description_ru?: string | null;
9114
+ /**
9115
+ * Description [it]
9116
+ */
8732
9117
  description_it?: string | null;
9118
+ /**
9119
+ * Description [de]
9120
+ */
8733
9121
  description_de?: string | null;
9122
+ /**
9123
+ * Description [da]
9124
+ */
8734
9125
  description_da?: string | null;
9126
+ /**
9127
+ * Description [sv]
9128
+ */
8735
9129
  description_sv?: string | null;
9130
+ /**
9131
+ * Description [es]
9132
+ */
8736
9133
  description_es?: string | null;
9134
+ /**
9135
+ * Description [fr]
9136
+ */
8737
9137
  description_fr?: string | null;
9138
+ /**
9139
+ * Description [nb]
9140
+ */
8738
9141
  description_nb?: string | null;
9142
+ /**
9143
+ * Description [ar]
9144
+ */
8739
9145
  description_ar?: string | null;
9146
+ /**
9147
+ * Description [cs]
9148
+ */
8740
9149
  description_cs?: string | null;
8741
9150
  };
8742
9151
  export type RoleDescriptionRequest = {
8743
9152
  description?: string;
9153
+ /**
9154
+ * Description [en]
9155
+ */
8744
9156
  description_en?: string | null;
9157
+ /**
9158
+ * Description [et]
9159
+ */
8745
9160
  description_et?: string | null;
9161
+ /**
9162
+ * Description [lt]
9163
+ */
8746
9164
  description_lt?: string | null;
9165
+ /**
9166
+ * Description [lv]
9167
+ */
8747
9168
  description_lv?: string | null;
9169
+ /**
9170
+ * Description [ru]
9171
+ */
8748
9172
  description_ru?: string | null;
9173
+ /**
9174
+ * Description [it]
9175
+ */
8749
9176
  description_it?: string | null;
9177
+ /**
9178
+ * Description [de]
9179
+ */
8750
9180
  description_de?: string | null;
9181
+ /**
9182
+ * Description [da]
9183
+ */
8751
9184
  description_da?: string | null;
9185
+ /**
9186
+ * Description [sv]
9187
+ */
8752
9188
  description_sv?: string | null;
9189
+ /**
9190
+ * Description [es]
9191
+ */
8753
9192
  description_es?: string | null;
9193
+ /**
9194
+ * Description [fr]
9195
+ */
8754
9196
  description_fr?: string | null;
9197
+ /**
9198
+ * Description [nb]
9199
+ */
8755
9200
  description_nb?: string | null;
9201
+ /**
9202
+ * Description [ar]
9203
+ */
8756
9204
  description_ar?: string | null;
9205
+ /**
9206
+ * Description [cs]
9207
+ */
8757
9208
  description_cs?: string | null;
8758
9209
  };
8759
9210
  export type RoleDetails = {
8760
9211
  readonly uuid?: string;
8761
9212
  name?: string;
8762
9213
  description?: string;
9214
+ /**
9215
+ * Description [en]
9216
+ */
8763
9217
  description_en?: string | null;
9218
+ /**
9219
+ * Description [et]
9220
+ */
8764
9221
  description_et?: string | null;
9222
+ /**
9223
+ * Description [lt]
9224
+ */
8765
9225
  description_lt?: string | null;
9226
+ /**
9227
+ * Description [lv]
9228
+ */
8766
9229
  description_lv?: string | null;
9230
+ /**
9231
+ * Description [ru]
9232
+ */
8767
9233
  description_ru?: string | null;
9234
+ /**
9235
+ * Description [it]
9236
+ */
8768
9237
  description_it?: string | null;
9238
+ /**
9239
+ * Description [de]
9240
+ */
8769
9241
  description_de?: string | null;
9242
+ /**
9243
+ * Description [da]
9244
+ */
8770
9245
  description_da?: string | null;
9246
+ /**
9247
+ * Description [sv]
9248
+ */
8771
9249
  description_sv?: string | null;
9250
+ /**
9251
+ * Description [es]
9252
+ */
8772
9253
  description_es?: string | null;
9254
+ /**
9255
+ * Description [fr]
9256
+ */
8773
9257
  description_fr?: string | null;
9258
+ /**
9259
+ * Description [nb]
9260
+ */
8774
9261
  description_nb?: string | null;
9262
+ /**
9263
+ * Description [ar]
9264
+ */
8775
9265
  description_ar?: string | null;
9266
+ /**
9267
+ * Description [cs]
9268
+ */
8776
9269
  description_cs?: string | null;
8777
9270
  readonly permissions?: Array<string>;
8778
9271
  readonly is_system_role?: boolean;
@@ -8784,19 +9277,61 @@ export type RoleEnum = 'agent' | 'server';
8784
9277
  export type RoleModifyRequest = {
8785
9278
  name: string;
8786
9279
  description?: string;
9280
+ /**
9281
+ * Description [en]
9282
+ */
8787
9283
  description_en?: string | null;
9284
+ /**
9285
+ * Description [et]
9286
+ */
8788
9287
  description_et?: string | null;
9288
+ /**
9289
+ * Description [lt]
9290
+ */
8789
9291
  description_lt?: string | null;
9292
+ /**
9293
+ * Description [lv]
9294
+ */
8790
9295
  description_lv?: string | null;
9296
+ /**
9297
+ * Description [ru]
9298
+ */
8791
9299
  description_ru?: string | null;
9300
+ /**
9301
+ * Description [it]
9302
+ */
8792
9303
  description_it?: string | null;
9304
+ /**
9305
+ * Description [de]
9306
+ */
8793
9307
  description_de?: string | null;
9308
+ /**
9309
+ * Description [da]
9310
+ */
8794
9311
  description_da?: string | null;
9312
+ /**
9313
+ * Description [sv]
9314
+ */
8795
9315
  description_sv?: string | null;
9316
+ /**
9317
+ * Description [es]
9318
+ */
8796
9319
  description_es?: string | null;
9320
+ /**
9321
+ * Description [fr]
9322
+ */
8797
9323
  description_fr?: string | null;
9324
+ /**
9325
+ * Description [nb]
9326
+ */
8798
9327
  description_nb?: string | null;
9328
+ /**
9329
+ * Description [ar]
9330
+ */
8799
9331
  description_ar?: string | null;
9332
+ /**
9333
+ * Description [cs]
9334
+ */
8800
9335
  description_cs?: string | null;
8801
9336
  permissions: unknown;
8802
9337
  is_active?: boolean;
@@ -8824,6 +9359,43 @@ export type RoundReviewer = {
8824
9359
  rejected_proposals: number;
8825
9360
  in_review_proposals: number;
8826
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
+ };
8827
9399
  export type RuntimeStates = {
8828
9400
  readonly value: string;
8829
9401
  readonly label: string;
@@ -8952,13 +9524,18 @@ export type ServiceSettings = {
8952
9524
  * Anybody can use it
8953
9525
  */
8954
9526
  shared?: boolean;
9527
+ /**
9528
+ * Organization
9529
+ */
8955
9530
  customer?: string | null;
8956
9531
  readonly customer_name?: string | null;
8957
9532
  readonly customer_native_name?: string;
8958
9533
  terms_of_services?: string;
8959
9534
  scope?: string | null;
8960
9535
  readonly scope_uuid?: string;
8961
- readonly options?: {};
9536
+ readonly options?: {
9537
+ [key: string]: unknown;
9538
+ };
8962
9539
  };
8963
9540
  export type ServiceSettingsStateEnum = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
8964
9541
  export type SetMtu = {
@@ -9011,7 +9588,9 @@ export type SlurmAllocation = {
9011
9588
  readonly is_active?: boolean;
9012
9589
  readonly marketplace_offering_uuid?: string | null;
9013
9590
  readonly marketplace_offering_name?: string | null;
9014
- readonly marketplace_offering_plugin_options?: {} | null;
9591
+ readonly marketplace_offering_plugin_options?: {
9592
+ [key: string]: unknown;
9593
+ } | null;
9015
9594
  readonly marketplace_category_uuid?: string | null;
9016
9595
  readonly marketplace_category_name?: string | null;
9017
9596
  readonly marketplace_resource_uuid?: string | null;
@@ -9143,6 +9722,11 @@ export type TemplateVersion = {
9143
9722
  readonly app_readme: string;
9144
9723
  readonly questions: Array<RancherTemplateQuestion>;
9145
9724
  };
9725
+ export type Tenant = {
9726
+ readonly url: string;
9727
+ readonly uuid: string;
9728
+ name: string;
9729
+ };
9146
9730
  export type TokenRequest = {
9147
9731
  token: string;
9148
9732
  };
@@ -9167,14 +9751,17 @@ export type User = {
9167
9751
  readonly civil_number?: string | null;
9168
9752
  description?: string;
9169
9753
  /**
9754
+ * Staff status
9170
9755
  * Designates whether the user can log into this admin site.
9171
9756
  */
9172
9757
  is_staff?: boolean;
9173
9758
  /**
9759
+ * Active
9174
9760
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9175
9761
  */
9176
9762
  is_active?: boolean;
9177
9763
  /**
9764
+ * Support status
9178
9765
  * Designates whether the user is a global support user.
9179
9766
  */
9180
9767
  is_support?: boolean;
@@ -9212,6 +9799,7 @@ export type User = {
9212
9799
  readonly identity_provider_fields?: Array<string>;
9213
9800
  image?: string | null;
9214
9801
  /**
9802
+ * Source of identity
9215
9803
  * Indicates what identity provider was used.
9216
9804
  */
9217
9805
  readonly identity_source?: string;
@@ -9238,6 +9826,7 @@ export type UserAuthToken = {
9238
9826
  */
9239
9827
  readonly user_username: string;
9240
9828
  /**
9829
+ * Active
9241
9830
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9242
9831
  */
9243
9832
  readonly user_is_active: boolean;
@@ -9262,14 +9851,17 @@ export type UserRequest = {
9262
9851
  organization?: string;
9263
9852
  description?: string;
9264
9853
  /**
9854
+ * Staff status
9265
9855
  * Designates whether the user can log into this admin site.
9266
9856
  */
9267
9857
  is_staff?: boolean;
9268
9858
  /**
9859
+ * Active
9269
9860
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
9270
9861
  */
9271
9862
  is_active?: boolean;
9272
9863
  /**
9864
+ * Support status
9273
9865
  * Designates whether the user is a global support user.
9274
9866
  */
9275
9867
  is_support?: boolean;
@@ -9306,6 +9898,9 @@ export type UserRoleDetails = {
9306
9898
  expiration_time?: string | null;
9307
9899
  readonly role_name?: string;
9308
9900
  readonly role_uuid?: string;
9901
+ /**
9902
+ * Email address
9903
+ */
9309
9904
  readonly user_email?: string;
9310
9905
  readonly user_full_name?: string;
9311
9906
  /**
@@ -9339,6 +9934,7 @@ export type Version = {
9339
9934
  */
9340
9935
  latest_version?: string;
9341
9936
  };
9937
+ export type VisibilityEnum = 'private' | 'public';
9342
9938
  export type VisibleInvitationDetails = {
9343
9939
  readonly scope_uuid: string;
9344
9940
  readonly scope_name: string;
@@ -9410,7 +10006,9 @@ export type VmwareDisk = {
9410
10006
  readonly vm_name?: string;
9411
10007
  readonly marketplace_offering_uuid?: string | null;
9412
10008
  readonly marketplace_offering_name?: string | null;
9413
- readonly marketplace_offering_plugin_options?: {} | null;
10009
+ readonly marketplace_offering_plugin_options?: {
10010
+ [key: string]: unknown;
10011
+ } | null;
9414
10012
  readonly marketplace_category_uuid?: string | null;
9415
10013
  readonly marketplace_category_name?: string | null;
9416
10014
  readonly marketplace_resource_uuid?: string | null;
@@ -9524,7 +10122,9 @@ export type VmwarePort = {
9524
10122
  readonly network_name?: string;
9525
10123
  readonly marketplace_offering_uuid?: string | null;
9526
10124
  readonly marketplace_offering_name?: string | null;
9527
- readonly marketplace_offering_plugin_options?: {} | null;
10125
+ readonly marketplace_offering_plugin_options?: {
10126
+ [key: string]: unknown;
10127
+ } | null;
9528
10128
  readonly marketplace_category_uuid?: string | null;
9529
10129
  readonly marketplace_category_name?: string | null;
9530
10130
  readonly marketplace_resource_uuid?: string | null;
@@ -9619,12 +10219,17 @@ export type VmwareVirtualMachine = {
9619
10219
  readonly datastore_name?: string;
9620
10220
  readonly folder_name?: string;
9621
10221
  readonly ports?: Array<VmwareNestedPort>;
10222
+ /**
10223
+ * The power state of the guest operating system.
10224
+ */
9622
10225
  guest_power_state?: GuestPowerStateEnum;
9623
10226
  readonly tools_state?: string;
9624
10227
  readonly tools_installed?: boolean;
9625
10228
  readonly marketplace_offering_uuid?: string | null;
9626
10229
  readonly marketplace_offering_name?: string | null;
9627
- readonly marketplace_offering_plugin_options?: {} | null;
10230
+ readonly marketplace_offering_plugin_options?: {
10231
+ [key: string]: unknown;
10232
+ } | null;
9628
10233
  readonly marketplace_category_uuid?: string | null;
9629
10234
  readonly marketplace_category_name?: string | null;
9630
10235
  readonly marketplace_resource_uuid?: string | null;
@@ -10142,6 +10747,166 @@ export type AuthValimoResultResponses = {
10142
10747
  200: AuthResult;
10143
10748
  };
10144
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];
10145
10910
  export type AwsImagesListData = {
10146
10911
  body?: never;
10147
10912
  path?: never;
@@ -12078,7 +12843,9 @@ export type ConfigurationRetrieveData = {
12078
12843
  url: '/api/configuration/';
12079
12844
  };
12080
12845
  export type ConfigurationRetrieveResponses = {
12081
- 200: {};
12846
+ 200: {
12847
+ [key: string]: unknown;
12848
+ };
12082
12849
  };
12083
12850
  export type ConfigurationRetrieveResponse = ConfigurationRetrieveResponses[keyof ConfigurationRetrieveResponses];
12084
12851
  export type CustomerCreditsListData = {
@@ -12576,7 +13343,7 @@ export type CustomersUsersListData = {
12576
13343
  civil_number?: string;
12577
13344
  description?: string;
12578
13345
  email?: string;
12579
- 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'>;
12580
13347
  full_name?: string;
12581
13348
  is_active?: string;
12582
13349
  job_title?: string;
@@ -13200,7 +13967,9 @@ export type EventsScopeTypesRetrieveResponses = {
13200
13967
  };
13201
13968
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
13202
13969
  export type FeatureValuesData = {
13203
- body?: {};
13970
+ body?: {
13971
+ [key: string]: unknown;
13972
+ };
13204
13973
  path?: never;
13205
13974
  query?: never;
13206
13975
  url: '/api/feature-values/';
@@ -16065,7 +16834,7 @@ export type MarketplaceOfferingUsersListResponses = {
16065
16834
  };
16066
16835
  export type MarketplaceOfferingUsersListResponse = MarketplaceOfferingUsersListResponses[keyof MarketplaceOfferingUsersListResponses];
16067
16836
  export type MarketplaceOfferingUsersCreateData = {
16068
- body: OfferingUserRequest;
16837
+ body?: OfferingUserRequest;
16069
16838
  path?: never;
16070
16839
  query?: never;
16071
16840
  url: '/api/marketplace-offering-users/';
@@ -16116,7 +16885,7 @@ export type MarketplaceOfferingUsersPartialUpdateResponses = {
16116
16885
  };
16117
16886
  export type MarketplaceOfferingUsersPartialUpdateResponse = MarketplaceOfferingUsersPartialUpdateResponses[keyof MarketplaceOfferingUsersPartialUpdateResponses];
16118
16887
  export type MarketplaceOfferingUsersUpdateData = {
16119
- body: OfferingUserRequest;
16888
+ body?: OfferingUserRequest;
16120
16889
  path: {
16121
16890
  uuid: string;
16122
16891
  };
@@ -16920,6 +17689,10 @@ export type MarketplaceProviderOfferingsListData = {
16920
17689
  shared?: boolean;
16921
17690
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
16922
17691
  type?: Array<string>;
17692
+ /**
17693
+ * Comma-separated offering UUIDs
17694
+ */
17695
+ uuid_list?: string;
16923
17696
  };
16924
17697
  url: '/api/marketplace-provider-offerings/';
16925
17698
  };
@@ -17096,6 +17869,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
17096
17869
  start?: string;
17097
17870
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17098
17871
  type?: Array<string>;
17872
+ /**
17873
+ * Comma-separated offering UUIDs
17874
+ */
17875
+ uuid_list?: string;
17099
17876
  };
17100
17877
  url: '/api/marketplace-provider-offerings/{uuid}/component_stats/';
17101
17878
  };
@@ -17186,6 +17963,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
17186
17963
  start?: string;
17187
17964
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17188
17965
  type?: Array<string>;
17966
+ /**
17967
+ * Comma-separated offering UUIDs
17968
+ */
17969
+ uuid_list?: string;
17189
17970
  };
17190
17971
  url: '/api/marketplace-provider-offerings/{uuid}/costs/';
17191
17972
  };
@@ -17281,6 +18062,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
17281
18062
  shared?: boolean;
17282
18063
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17283
18064
  type?: Array<string>;
18065
+ /**
18066
+ * Comma-separated offering UUIDs
18067
+ */
18068
+ uuid_list?: string;
17284
18069
  };
17285
18070
  url: '/api/marketplace-provider-offerings/{uuid}/customers/';
17286
18071
  };
@@ -17687,7 +18472,9 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
17687
18472
  };
17688
18473
  export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
17689
18474
  export type MarketplaceProviderOfferingsUpdateAttributesData = {
17690
- body?: {};
18475
+ body?: {
18476
+ [key: string]: unknown;
18477
+ };
17691
18478
  path: {
17692
18479
  uuid: string;
17693
18480
  };
@@ -17940,6 +18727,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
17940
18727
  shared?: boolean;
17941
18728
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
17942
18729
  type?: Array<string>;
18730
+ /**
18731
+ * Comma-separated offering UUIDs
18732
+ */
18733
+ uuid_list?: string;
17943
18734
  };
17944
18735
  url: '/api/marketplace-provider-offerings/groups/';
17945
18736
  };
@@ -18401,6 +19192,10 @@ export type MarketplacePublicOfferingsListData = {
18401
19192
  shared?: boolean;
18402
19193
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
18403
19194
  type?: Array<string>;
19195
+ /**
19196
+ * Comma-separated offering UUIDs
19197
+ */
19198
+ uuid_list?: string;
18404
19199
  };
18405
19200
  url: '/api/marketplace-public-offerings/';
18406
19201
  };
@@ -19644,6 +20439,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
19644
20439
  shared?: boolean;
19645
20440
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
19646
20441
  type?: Array<string>;
20442
+ /**
20443
+ * Comma-separated offering UUIDs
20444
+ */
20445
+ uuid_list?: string;
19647
20446
  };
19648
20447
  url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
19649
20448
  };
@@ -19889,6 +20688,10 @@ export type MarketplaceServiceProvidersUsersListData = {
19889
20688
  */
19890
20689
  user_keyword?: string;
19891
20690
  username?: string;
20691
+ /**
20692
+ * Comma-separated usernames
20693
+ */
20694
+ username_list?: string;
19892
20695
  };
19893
20696
  url: '/api/marketplace-service-providers/{service_provider_uuid}/users/';
19894
20697
  };
@@ -21508,6 +22311,83 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
21508
22311
  */
21509
22312
  200: unknown;
21510
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];
21511
22391
  export type OpenstackMigrationsListData = {
21512
22392
  body?: never;
21513
22393
  path?: never;
@@ -22987,7 +23867,7 @@ export type OpenstackTenantsCreateSecurityGroupData = {
22987
23867
  url: '/api/openstack-tenants/{uuid}/create_security_group/';
22988
23868
  };
22989
23869
  export type OpenstackTenantsCreateSecurityGroupResponses = {
22990
- 200: OpenStackSecurityGroup;
23870
+ 201: OpenStackSecurityGroup;
22991
23871
  };
22992
23872
  export type OpenstackTenantsCreateSecurityGroupResponse = OpenstackTenantsCreateSecurityGroupResponses[keyof OpenstackTenantsCreateSecurityGroupResponses];
22993
23873
  export type OpenstackTenantsCreateServerGroupData = {
@@ -24096,6 +24976,20 @@ export type ProjectsStatsRetrieveResponses = {
24096
24976
  200: ComponentsUsageStats;
24097
24977
  };
24098
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
+ };
24099
24993
  export type ProjectsUpdateUserData = {
24100
24994
  body: UserRoleUpdateRequest;
24101
24995
  path: {
@@ -25867,7 +26761,7 @@ export type RancherClustersListData = {
25867
26761
  customer_uuid?: string;
25868
26762
  description?: string;
25869
26763
  external_ip?: string;
25870
- 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'>;
25871
26765
  name?: string;
25872
26766
  name_exact?: string;
25873
26767
  /**
@@ -25923,7 +26817,7 @@ export type RancherClustersRetrieveData = {
25923
26817
  uuid: string;
25924
26818
  };
25925
26819
  query?: {
25926
- 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'>;
25927
26821
  };
25928
26822
  url: '/api/rancher-clusters/{uuid}/';
25929
26823
  };
@@ -28897,6 +29791,10 @@ export type UsersListData = {
28897
29791
  */
28898
29792
  user_keyword?: string;
28899
29793
  username?: string;
29794
+ /**
29795
+ * Comma-separated usernames
29796
+ */
29797
+ username_list?: string;
28900
29798
  };
28901
29799
  url: '/api/users/';
28902
29800
  };