waldur-js-client 7.9.3-dev.2 → 7.9.3-dev.9

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.
@@ -830,9 +830,21 @@ export type BackendIdRequest = {
830
830
  backend_id?: string;
831
831
  };
832
832
  export type BackendMetadata = {
833
+ /**
834
+ * Backend resource state
835
+ */
833
836
  readonly state?: string;
837
+ /**
838
+ * Runtime state of the backend resource
839
+ */
834
840
  readonly runtime_state?: string;
841
+ /**
842
+ * Current action being performed
843
+ */
835
844
  readonly action?: string;
845
+ /**
846
+ * Name of the backend instance
847
+ */
836
848
  readonly instance_name?: string | null;
837
849
  };
838
850
  export type BackendResource = {
@@ -1110,6 +1122,9 @@ export type BookingResource = {
1110
1122
  readonly is_usage_based?: boolean;
1111
1123
  readonly is_limit_based?: boolean;
1112
1124
  name?: string;
1125
+ /**
1126
+ * URL-friendly identifier. Only editable by staff users.
1127
+ */
1113
1128
  slug?: string;
1114
1129
  readonly current_usages?: {
1115
1130
  [key: string]: number;
@@ -1146,6 +1161,8 @@ export type BookingResource = {
1146
1161
  readonly renewal_date?: {
1147
1162
  [key: string]: string;
1148
1163
  } | null;
1164
+ offering_state?: ResourceState;
1165
+ readonly offering_components?: Array<OfferingComponent>;
1149
1166
  readonly created_by?: string;
1150
1167
  /**
1151
1168
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -1183,6 +1200,11 @@ export type BroadcastMessageRequest = {
1183
1200
  send_at?: string | null;
1184
1201
  };
1185
1202
  export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
1203
+ export type BulkSilenceResponse = {
1204
+ status: string;
1205
+ count: number;
1206
+ duration_days?: number | null;
1207
+ };
1186
1208
  export type CallAttachDocumentsRequest = {
1187
1209
  documents: Array<Blob | File>;
1188
1210
  description?: string;
@@ -1509,6 +1531,7 @@ export type CategoryComponentsRequest = {
1509
1531
  measured_unit?: string;
1510
1532
  category: CategorySerializerForForNestedFieldsRequest;
1511
1533
  };
1534
+ export type CategoryEnum = 'view' | 'approve' | 'reject' | 'extend' | 'terminate' | 'backup' | 'migrate' | 'contact' | 'escalate' | 'configure' | 'repair' | 'monitor';
1512
1535
  export type CategoryGroup = {
1513
1536
  readonly url?: string;
1514
1537
  readonly uuid?: string;
@@ -1548,10 +1571,19 @@ export type CategorySerializerForForNestedFieldsRequest = {
1548
1571
  title: string;
1549
1572
  };
1550
1573
  export type CheckUniqueBackendIdRequest = {
1574
+ /**
1575
+ * Backend identifier to check
1576
+ */
1551
1577
  backend_id: string;
1578
+ /**
1579
+ * Check across all offerings
1580
+ */
1552
1581
  check_all_offerings?: boolean;
1553
1582
  };
1554
1583
  export type CheckUniqueBackendIdResponse = {
1584
+ /**
1585
+ * Whether the backend ID is unique
1586
+ */
1555
1587
  is_unique: boolean;
1556
1588
  };
1557
1589
  export type Checklist = {
@@ -1763,41 +1795,113 @@ export type ComponentUsage = {
1763
1795
  modified_by?: number | null;
1764
1796
  };
1765
1797
  export type ComponentUsageCreateRequest = {
1798
+ /**
1799
+ * List of component usage items to report
1800
+ */
1766
1801
  usages: Array<ComponentUsageItemRequest>;
1802
+ /**
1803
+ * UUID of the specific resource plan period for usage reporting
1804
+ */
1767
1805
  plan_period?: string;
1806
+ /**
1807
+ * UUID of the resource for usage reporting (required if plan_period not provided)
1808
+ */
1768
1809
  resource?: string;
1769
1810
  /**
1770
- * Date for usage reporting (staff only). If not provided, current date is used.
1811
+ * Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
1771
1812
  */
1772
1813
  date?: string;
1773
1814
  };
1774
1815
  export type ComponentUsageItemRequest = {
1816
+ /**
1817
+ * Type of the component
1818
+ */
1775
1819
  type: string;
1820
+ /**
1821
+ * Usage amount
1822
+ */
1776
1823
  amount: string;
1824
+ /**
1825
+ * Optional description of usage
1826
+ */
1777
1827
  description?: string;
1828
+ /**
1829
+ * Whether this usage is recurring
1830
+ */
1778
1831
  recurring?: boolean;
1779
1832
  };
1780
1833
  export type ComponentUsagesPerMonthStats = {
1834
+ /**
1835
+ * Total usage amount
1836
+ */
1781
1837
  usage: string;
1838
+ /**
1839
+ * UUID of the offering
1840
+ */
1782
1841
  offering_uuid: string;
1842
+ /**
1843
+ * Type of the component
1844
+ */
1783
1845
  component_type: string;
1846
+ /**
1847
+ * Country of the offering
1848
+ */
1784
1849
  readonly offering_country: string;
1850
+ /**
1851
+ * Name of the organization group
1852
+ */
1785
1853
  readonly organization_group_name: string;
1854
+ /**
1855
+ * UUID of the organization group
1856
+ */
1786
1857
  readonly organization_group_uuid: string;
1858
+ /**
1859
+ * Month of the billing period
1860
+ */
1787
1861
  month: number;
1862
+ /**
1863
+ * Year of the billing period
1864
+ */
1788
1865
  year: number;
1789
1866
  };
1790
1867
  export type ComponentUsagesPerProject = {
1868
+ /**
1869
+ * UUID of the project
1870
+ */
1791
1871
  project_uuid: string;
1872
+ /**
1873
+ * Type of the component
1874
+ */
1792
1875
  component_type: string;
1876
+ /**
1877
+ * Total usage for the component
1878
+ */
1793
1879
  readonly usage: number;
1794
1880
  };
1795
1881
  export type ComponentUsagesStats = {
1882
+ /**
1883
+ * Total usage amount
1884
+ */
1796
1885
  usage: string;
1886
+ /**
1887
+ * UUID of the offering
1888
+ */
1797
1889
  offering_uuid: string;
1890
+ /**
1891
+ * Type of the component
1892
+ */
1798
1893
  component_type: string;
1894
+ /**
1895
+ * Country of the offering
1896
+ */
1799
1897
  readonly offering_country: string;
1898
+ /**
1899
+ * Name of the organization group
1900
+ */
1800
1901
  readonly organization_group_name: string;
1902
+ /**
1903
+ * UUID of the organization group
1904
+ */
1801
1905
  readonly organization_group_uuid: string;
1802
1906
  };
1803
1907
  export type ComponentUserUsage = {
@@ -1834,7 +1938,7 @@ export type ComponentUserUsageCreateRequest = {
1834
1938
  username: string;
1835
1939
  user?: string;
1836
1940
  /**
1837
- * Date for usage reporting (staff only). If not provided, current date is used.
1941
+ * Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
1838
1942
  */
1839
1943
  date?: string;
1840
1944
  };
@@ -2209,47 +2313,135 @@ export type ConstanceSettingsRequest = {
2209
2313
  };
2210
2314
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
2211
2315
  export type CoreAuthToken = {
2316
+ /**
2317
+ * Authentication token for API access
2318
+ */
2212
2319
  readonly token: string;
2213
2320
  };
2214
2321
  export type CoreStates = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
2322
+ export type CorrectiveAction = {
2323
+ label: string;
2324
+ url: string;
2325
+ category: CategoryEnum;
2326
+ severity: SeverityEnum;
2327
+ method?: string;
2328
+ api_endpoint?: boolean;
2329
+ confirmation_required?: boolean;
2330
+ permissions_required?: Array<string>;
2331
+ metadata?: {
2332
+ [key: string]: unknown;
2333
+ };
2334
+ };
2215
2335
  export type CostsForPeriod = {
2216
2336
  readonly total_price: string;
2217
2337
  readonly start_date: string;
2218
2338
  readonly end_date: string;
2219
2339
  };
2220
2340
  export type CountProjectsOfServiceProviders = {
2341
+ /**
2342
+ * UUID of the service provider
2343
+ */
2221
2344
  readonly service_provider_uuid: string;
2345
+ /**
2346
+ * UUID of the customer
2347
+ */
2222
2348
  readonly customer_uuid: string;
2349
+ /**
2350
+ * Name of the customer
2351
+ */
2223
2352
  readonly customer_name: string;
2353
+ /**
2354
+ * UUID of the customer's organization group
2355
+ */
2224
2356
  readonly customer_organization_group_uuid: string;
2357
+ /**
2358
+ * Name of the customer's organization group
2359
+ */
2225
2360
  readonly customer_organization_group_name: string;
2361
+ /**
2362
+ * Count value
2363
+ */
2226
2364
  readonly count: number;
2227
2365
  };
2228
2366
  export type CountProjectsOfServiceProvidersGroupedByOecd = {
2367
+ /**
2368
+ * UUID of the service provider
2369
+ */
2229
2370
  readonly service_provider_uuid: string;
2371
+ /**
2372
+ * UUID of the customer
2373
+ */
2230
2374
  readonly customer_uuid: string;
2375
+ /**
2376
+ * Name of the customer
2377
+ */
2231
2378
  readonly customer_name: string;
2379
+ /**
2380
+ * UUID of the customer's organization group
2381
+ */
2232
2382
  readonly customer_organization_group_uuid: string;
2383
+ /**
2384
+ * Name of the customer's organization group
2385
+ */
2233
2386
  readonly customer_organization_group_name: string;
2387
+ /**
2388
+ * Count value
2389
+ */
2234
2390
  readonly count: number;
2235
2391
  readonly oecd_fos_2007_name: string;
2236
2392
  };
2237
2393
  export type CountStats = {
2394
+ /**
2395
+ * Name from the record
2396
+ */
2238
2397
  readonly name: string;
2398
+ /**
2399
+ * UUID from the record
2400
+ */
2239
2401
  readonly uuid: string;
2402
+ /**
2403
+ * Count value from the record
2404
+ */
2240
2405
  readonly count: number;
2241
2406
  };
2242
2407
  export type CountUniqueUsersConnectedWithActiveResourcesOfServiceProvider = {
2408
+ /**
2409
+ * UUID of the customer
2410
+ */
2243
2411
  readonly customer_uuid: string;
2412
+ /**
2413
+ * Name of the customer
2414
+ */
2244
2415
  readonly customer_name: string;
2416
+ /**
2417
+ * Number of unique users
2418
+ */
2245
2419
  readonly count_users: number;
2246
2420
  };
2247
2421
  export type CountUsersOfServiceProviders = {
2422
+ /**
2423
+ * UUID of the service provider
2424
+ */
2248
2425
  readonly service_provider_uuid: string;
2426
+ /**
2427
+ * UUID of the customer
2428
+ */
2249
2429
  readonly customer_uuid: string;
2430
+ /**
2431
+ * Name of the customer
2432
+ */
2250
2433
  readonly customer_name: string;
2434
+ /**
2435
+ * UUID of the customer's organization group
2436
+ */
2251
2437
  readonly customer_organization_group_uuid: string;
2438
+ /**
2439
+ * Name of the customer's organization group
2440
+ */
2252
2441
  readonly customer_organization_group_name: string;
2442
+ /**
2443
+ * Count value
2444
+ */
2253
2445
  readonly count: number;
2254
2446
  };
2255
2447
  export type Country = {
@@ -2292,6 +2484,9 @@ export type CourseAccountsBulkCreateRequest = {
2292
2484
  project: string;
2293
2485
  };
2294
2486
  export type CreateAttachmentsRequest = {
2487
+ /**
2488
+ * List of files to attach
2489
+ */
2295
2490
  attachments: Array<Blob | File>;
2296
2491
  };
2297
2492
  export type CreateCustomerCredit = {
@@ -2355,7 +2550,13 @@ export type Customer = {
2355
2550
  readonly url?: string;
2356
2551
  readonly uuid?: string;
2357
2552
  readonly created?: string;
2553
+ /**
2554
+ * Organization groups this customer belongs to
2555
+ */
2358
2556
  readonly organization_groups?: Array<OrganizationGroup>;
2557
+ /**
2558
+ * Display name of the organization (includes native name if available)
2559
+ */
2359
2560
  readonly display_name?: string;
2360
2561
  /**
2361
2562
  * Organization identifier in another application.
@@ -2370,23 +2571,38 @@ export type Customer = {
2370
2571
  * Start date of accounting
2371
2572
  */
2372
2573
  accounting_start_date?: string;
2574
+ /**
2575
+ * Number of projects in this organization
2576
+ */
2373
2577
  readonly projects_count?: number;
2578
+ /**
2579
+ * Number of users with access to this organization
2580
+ */
2374
2581
  readonly users_count?: number;
2375
2582
  /**
2376
2583
  * External ID of the sponsor covering the costs
2377
2584
  */
2378
2585
  sponsor_number?: number | null;
2586
+ /**
2587
+ * Human-readable country name
2588
+ */
2379
2589
  readonly country_name?: string;
2380
2590
  /**
2381
2591
  * Maximum number of service accounts allowed
2382
2592
  */
2383
2593
  max_service_accounts?: number | null;
2594
+ /**
2595
+ * Checklist to be used for project metadata validation in this organization
2596
+ */
2384
2597
  project_metadata_checklist?: string | null;
2385
2598
  /**
2386
2599
  * Number of extra days after project end date before resources are terminated
2387
2600
  */
2388
2601
  grace_period_days?: number | null;
2389
2602
  name?: string;
2603
+ /**
2604
+ * URL-friendly identifier. Only editable by staff users.
2605
+ */
2390
2606
  slug?: string;
2391
2607
  native_name?: string;
2392
2608
  abbreviation?: string;
@@ -2415,6 +2631,9 @@ export type Customer = {
2415
2631
  latitude?: number | null;
2416
2632
  longitude?: number | null;
2417
2633
  bank_account?: string;
2634
+ /**
2635
+ * Country code (ISO 3166-1 alpha-2)
2636
+ */
2418
2637
  country?: CountryEnum | BlankEnum;
2419
2638
  /**
2420
2639
  * Comma-separated list of notification email addresses
@@ -2538,23 +2757,65 @@ export type CustomerEstimatedCostPolicyRequest = {
2538
2757
  period?: PeriodEnum;
2539
2758
  };
2540
2759
  export type CustomerIndustryFlagStats = {
2760
+ /**
2761
+ * Name from the record
2762
+ */
2541
2763
  readonly name: string;
2764
+ /**
2765
+ * UUID from the record
2766
+ */
2542
2767
  readonly uuid: string;
2768
+ /**
2769
+ * Count value from the record
2770
+ */
2543
2771
  readonly count: number;
2772
+ /**
2773
+ * Customer abbreviation from the record
2774
+ */
2544
2775
  readonly abbreviation: string;
2776
+ /**
2777
+ * Industry classification flag
2778
+ */
2545
2779
  is_industry: string;
2546
2780
  };
2547
2781
  export type CustomerMemberCount = {
2782
+ /**
2783
+ * UUID of the customer
2784
+ */
2548
2785
  readonly uuid: string;
2786
+ /**
2787
+ * Name of the customer
2788
+ */
2549
2789
  readonly name: string;
2790
+ /**
2791
+ * Abbreviation of the customer
2792
+ */
2550
2793
  readonly abbreviation: string;
2794
+ /**
2795
+ * Number of members
2796
+ */
2551
2797
  readonly count: number;
2798
+ /**
2799
+ * Whether the customer has resources
2800
+ */
2552
2801
  readonly has_resources: boolean;
2553
2802
  };
2554
2803
  export type CustomerOecdCodeStats = {
2804
+ /**
2805
+ * Name from the record
2806
+ */
2555
2807
  readonly name: string;
2808
+ /**
2809
+ * UUID from the record
2810
+ */
2556
2811
  readonly uuid: string;
2812
+ /**
2813
+ * Count value from the record
2814
+ */
2557
2815
  readonly count: number;
2816
+ /**
2817
+ * Customer abbreviation from the record
2818
+ */
2558
2819
  readonly abbreviation: string;
2559
2820
  oecd: string;
2560
2821
  };
@@ -2596,12 +2857,18 @@ export type CustomerRequest = {
2596
2857
  * Maximum number of service accounts allowed
2597
2858
  */
2598
2859
  max_service_accounts?: number | null;
2860
+ /**
2861
+ * Checklist to be used for project metadata validation in this organization
2862
+ */
2599
2863
  project_metadata_checklist?: string | null;
2600
2864
  /**
2601
2865
  * Number of extra days after project end date before resources are terminated
2602
2866
  */
2603
2867
  grace_period_days?: number | null;
2604
2868
  name: string;
2869
+ /**
2870
+ * URL-friendly identifier. Only editable by staff users.
2871
+ */
2605
2872
  slug?: string;
2606
2873
  native_name?: string;
2607
2874
  abbreviation?: string;
@@ -2630,6 +2897,9 @@ export type CustomerRequest = {
2630
2897
  latitude?: number | null;
2631
2898
  longitude?: number | null;
2632
2899
  bank_account?: string;
2900
+ /**
2901
+ * Country code (ISO 3166-1 alpha-2)
2902
+ */
2633
2903
  country?: CountryEnum | BlankEnum;
2634
2904
  /**
2635
2905
  * Comma-separated list of notification email addresses
@@ -2930,9 +3200,15 @@ export type EmailLog = {
2930
3200
  emails: Array<string>;
2931
3201
  };
2932
3202
  export type EndpointUuid = {
3203
+ /**
3204
+ * UUID of the access endpoint
3205
+ */
2933
3206
  uuid: string;
2934
3207
  };
2935
3208
  export type EndpointUuidRequest = {
3209
+ /**
3210
+ * UUID of the access endpoint
3211
+ */
2936
3212
  uuid: string;
2937
3213
  };
2938
3214
  export type EthertypeEnum = 'IPv4' | 'IPv6';
@@ -2981,6 +3257,23 @@ export type EventSubscriptionRequest = {
2981
3257
  observable_objects?: unknown;
2982
3258
  };
2983
3259
  export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
3260
+ export type ExecuteActionErrorResponse = {
3261
+ error: string;
3262
+ };
3263
+ export type ExecuteActionRequest = {
3264
+ /**
3265
+ * Label of the corrective action to execute
3266
+ */
3267
+ action_label: string;
3268
+ };
3269
+ export type ExecuteActionResponse = {
3270
+ action: string;
3271
+ message?: string;
3272
+ redirect_url?: string;
3273
+ metadata?: {
3274
+ [key: string]: unknown;
3275
+ };
3276
+ };
2984
3277
  export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
2985
3278
  export type ExportComponentData = {
2986
3279
  type: string;
@@ -3202,8 +3495,17 @@ export type FinancialReportEmailRequest = {
3202
3495
  month: number;
3203
3496
  };
3204
3497
  export type Fingerprint = {
3498
+ /**
3499
+ * MD5 fingerprint of SSH key
3500
+ */
3205
3501
  readonly md5?: string;
3502
+ /**
3503
+ * SHA256 fingerprint of SSH key
3504
+ */
3206
3505
  readonly sha256?: string;
3506
+ /**
3507
+ * SHA512 fingerprint of SSH key
3508
+ */
3207
3509
  readonly sha512?: string;
3208
3510
  };
3209
3511
  export type FirecrestJob = {
@@ -3321,25 +3623,60 @@ export type GoogleCredentials = {
3321
3623
  readonly google_auth_url?: string;
3322
3624
  };
3323
3625
  export type GroupInvitation = {
3626
+ /**
3627
+ * UUID of the invitation scope (Customer or Project)
3628
+ */
3324
3629
  readonly scope_uuid: string;
3630
+ /**
3631
+ * Name of the invitation scope
3632
+ */
3325
3633
  readonly scope_name: string;
3326
3634
  /**
3327
- * Get the description field from the scope if it exists.
3328
- * Returns empty string if scope doesn't have a description field.
3635
+ * Description of the invitation scope
3329
3636
  */
3330
3637
  readonly scope_description: string;
3638
+ /**
3639
+ * Type of the invitation scope (e.g., 'customer', 'project')
3640
+ */
3331
3641
  readonly scope_type: string | null;
3642
+ /**
3643
+ * UUID of the customer organization
3644
+ */
3332
3645
  readonly customer_uuid: string;
3646
+ /**
3647
+ * Name of the customer organization
3648
+ */
3333
3649
  readonly customer_name: string;
3650
+ /**
3651
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
3652
+ */
3334
3653
  readonly role_name: string;
3654
+ /**
3655
+ * Description of the role being granted
3656
+ */
3335
3657
  readonly role_description: string;
3658
+ /**
3659
+ * Full name of the user who created this invitation
3660
+ */
3336
3661
  readonly created_by_full_name: string;
3662
+ /**
3663
+ * Username of the user who created this invitation
3664
+ */
3337
3665
  readonly created_by_username: string;
3666
+ /**
3667
+ * Profile image of the user who created this invitation
3668
+ */
3338
3669
  readonly created_by_image: string;
3339
3670
  readonly url: string;
3340
3671
  readonly uuid: string;
3672
+ /**
3673
+ * UUID of the role to grant to the invited user
3674
+ */
3341
3675
  role: string;
3342
3676
  readonly created: string;
3677
+ /**
3678
+ * Expiration date and time of the invitation
3679
+ */
3343
3680
  readonly expires: string;
3344
3681
  readonly is_active: boolean;
3345
3682
  /**
@@ -3354,13 +3691,25 @@ export type GroupInvitation = {
3354
3691
  * Template for project name. Supports {username}, {email}, {full_name} variables
3355
3692
  */
3356
3693
  project_name_template?: string | null;
3694
+ /**
3695
+ * UUID of the project role to grant if auto_create_project is enabled
3696
+ */
3357
3697
  project_role?: string | null;
3358
3698
  user_affiliations?: unknown;
3359
3699
  user_email_patterns?: unknown;
3700
+ /**
3701
+ * Image URL of the invitation scope (Customer or Project)
3702
+ */
3360
3703
  readonly scope_image: string | null;
3361
3704
  };
3362
3705
  export type GroupInvitationRequest = {
3706
+ /**
3707
+ * UUID of the role to grant to the invited user
3708
+ */
3363
3709
  role: string;
3710
+ /**
3711
+ * URL of the scope (Customer or Project) for this invitation
3712
+ */
3364
3713
  scope: string;
3365
3714
  /**
3366
3715
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -3374,6 +3723,9 @@ export type GroupInvitationRequest = {
3374
3723
  * Template for project name. Supports {username}, {email}, {full_name} variables
3375
3724
  */
3376
3725
  project_name_template?: string | null;
3726
+ /**
3727
+ * UUID of the project role to grant if auto_create_project is enabled
3728
+ */
3377
3729
  project_role?: string | null;
3378
3730
  user_affiliations?: unknown;
3379
3731
  user_email_patterns?: unknown;
@@ -3533,15 +3885,33 @@ export type ImageUploadResponse = {
3533
3885
  export type ImpactLevelDisplayEnum = 'No impact' | 'Degraded performance' | 'Partial outage' | 'Full outage';
3534
3886
  export type ImpactLevelEnum = 1 | 2 | 3 | 4;
3535
3887
  export type ImportResourceRequest = {
3888
+ /**
3889
+ * Backend identifier of the resource
3890
+ */
3536
3891
  backend_id: string;
3892
+ /**
3893
+ * Target project for the resource
3894
+ */
3537
3895
  project: string;
3538
3896
  plan?: string;
3539
3897
  additional_details?: unknown;
3540
3898
  };
3541
3899
  export type ImportableResource = {
3900
+ /**
3901
+ * Backend identifier of the resource
3902
+ */
3542
3903
  backend_id: string;
3904
+ /**
3905
+ * Name of the resource
3906
+ */
3543
3907
  name: string;
3908
+ /**
3909
+ * Type of the resource
3910
+ */
3544
3911
  type: string;
3912
+ /**
3913
+ * Description of the resource
3914
+ */
3545
3915
  description: string;
3546
3916
  };
3547
3917
  export type InstanceFlavorChangeRequest = {
@@ -3569,25 +3939,60 @@ export type IntegrationStatusDetails = {
3569
3939
  readonly url: string;
3570
3940
  };
3571
3941
  export type Invitation = {
3942
+ /**
3943
+ * UUID of the invitation scope (Customer or Project)
3944
+ */
3572
3945
  readonly scope_uuid: string;
3946
+ /**
3947
+ * Name of the invitation scope
3948
+ */
3573
3949
  readonly scope_name: string;
3574
3950
  /**
3575
- * Get the description field from the scope if it exists.
3576
- * Returns empty string if scope doesn't have a description field.
3951
+ * Description of the invitation scope
3577
3952
  */
3578
3953
  readonly scope_description: string;
3954
+ /**
3955
+ * Type of the invitation scope (e.g., 'customer', 'project')
3956
+ */
3579
3957
  readonly scope_type: string | null;
3958
+ /**
3959
+ * UUID of the customer organization
3960
+ */
3580
3961
  readonly customer_uuid: string;
3962
+ /**
3963
+ * Name of the customer organization
3964
+ */
3581
3965
  readonly customer_name: string;
3966
+ /**
3967
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
3968
+ */
3582
3969
  readonly role_name: string;
3970
+ /**
3971
+ * Description of the role being granted
3972
+ */
3583
3973
  readonly role_description: string;
3974
+ /**
3975
+ * Full name of the user who created this invitation
3976
+ */
3584
3977
  readonly created_by_full_name: string;
3978
+ /**
3979
+ * Username of the user who created this invitation
3980
+ */
3585
3981
  readonly created_by_username: string;
3982
+ /**
3983
+ * Profile image of the user who created this invitation
3984
+ */
3586
3985
  readonly created_by_image: string;
3587
3986
  readonly url: string;
3588
3987
  readonly uuid: string;
3988
+ /**
3989
+ * UUID of the role to grant to the invited user
3990
+ */
3589
3991
  role: string;
3590
3992
  readonly created: string;
3993
+ /**
3994
+ * Expiration date and time of the invitation
3995
+ */
3591
3996
  readonly expires: string;
3592
3997
  full_name?: string;
3593
3998
  native_name?: string;
@@ -3608,11 +4013,23 @@ export type Invitation = {
3608
4013
  execution_state: ExecutionStateEnum;
3609
4014
  };
3610
4015
  export type InvitationCheck = {
4016
+ /**
4017
+ * Email address to check for existing invitations
4018
+ */
3611
4019
  email: string;
4020
+ /**
4021
+ * Whether civil number verification is required
4022
+ */
3612
4023
  civil_number_required?: boolean;
3613
4024
  };
3614
4025
  export type InvitationRequest = {
4026
+ /**
4027
+ * UUID of the role to grant to the invited user
4028
+ */
3615
4029
  role: string;
4030
+ /**
4031
+ * URL of the scope (Customer or Project) for this invitation
4032
+ */
3616
4033
  scope: string;
3617
4034
  full_name?: string;
3618
4035
  native_name?: string;
@@ -3636,6 +4053,9 @@ export type InvitationUpdate = {
3636
4053
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
3637
4054
  */
3638
4055
  email: string;
4056
+ /**
4057
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
4058
+ */
3639
4059
  role?: string;
3640
4060
  };
3641
4061
  export type InvitationUpdateRequest = {
@@ -3643,6 +4063,9 @@ export type InvitationUpdateRequest = {
3643
4063
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
3644
4064
  */
3645
4065
  email: string;
4066
+ /**
4067
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
4068
+ */
3646
4069
  role?: string;
3647
4070
  };
3648
4071
  export type Invoice = {
@@ -3726,9 +4149,15 @@ export type InvoiceItem = {
3726
4149
  readonly credit?: boolean;
3727
4150
  };
3728
4151
  export type InvoiceItemCompensation = {
4152
+ /**
4153
+ * Name of the offering component for compensation
4154
+ */
3729
4155
  offering_component_name: string;
3730
4156
  };
3731
4157
  export type InvoiceItemCompensationRequest = {
4158
+ /**
4159
+ * Name of the offering component for compensation
4160
+ */
3732
4161
  offering_component_name: string;
3733
4162
  };
3734
4163
  export type InvoiceItemDetail = {
@@ -3760,18 +4189,57 @@ export type InvoiceItemDetail = {
3760
4189
  readonly offering_component_type: string | null;
3761
4190
  };
3762
4191
  export type InvoiceItemDetails = {
4192
+ /**
4193
+ * Name of the marketplace resource
4194
+ */
3763
4195
  resource_name?: string;
4196
+ /**
4197
+ * UUID of the marketplace resource
4198
+ */
3764
4199
  resource_uuid?: string;
4200
+ /**
4201
+ * Name of the pricing plan
4202
+ */
3765
4203
  plan_name?: string;
4204
+ /**
4205
+ * UUID of the pricing plan
4206
+ */
3766
4207
  plan_uuid?: string;
4208
+ /**
4209
+ * Type of the offering
4210
+ */
3767
4211
  offering_type?: string;
4212
+ /**
4213
+ * Name of the offering
4214
+ */
3768
4215
  offering_name?: string;
4216
+ /**
4217
+ * UUID of the offering
4218
+ */
3769
4219
  offering_uuid?: string;
4220
+ /**
4221
+ * Name of the service provider
4222
+ */
3770
4223
  service_provider_name?: string;
4224
+ /**
4225
+ * UUID of the service provider
4226
+ */
3771
4227
  service_provider_uuid?: string;
4228
+ /**
4229
+ * ID of the plan component
4230
+ */
3772
4231
  plan_component_id?: number;
4232
+ /**
4233
+ * Type of the offering component
4234
+ */
3773
4235
  offering_component_type?: string;
4236
+ /**
4237
+ * Name of the offering component
4238
+ */
3774
4239
  offering_component_name?: string;
4240
+ /**
4241
+ * List of resource limit periods for this invoice item
4242
+ */
3775
4243
  resource_limit_periods?: Array<ResourceLimitPeriod>;
3776
4244
  };
3777
4245
  export type InvoiceItemMigrateTo = {
@@ -3781,6 +4249,9 @@ export type InvoiceItemMigrateToRequest = {
3781
4249
  invoice: string;
3782
4250
  };
3783
4251
  export type InvoiceItemTotalPrice = {
4252
+ /**
4253
+ * Total price for the invoice item
4254
+ */
3784
4255
  total_price: string;
3785
4256
  };
3786
4257
  export type InvoiceItemUpdate = {
@@ -3911,18 +4382,33 @@ export type IssueStatusRequest = {
3911
4382
  export type IssueStatusTypeEnum = 0 | 1;
3912
4383
  export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
3913
4384
  export type JiraChangelog = {
4385
+ /**
4386
+ * List of changelog items
4387
+ */
3914
4388
  items: Array<unknown>;
3915
4389
  };
3916
4390
  export type JiraChangelogRequest = {
4391
+ /**
4392
+ * List of changelog items
4393
+ */
3917
4394
  items: Array<unknown>;
3918
4395
  };
3919
4396
  export type JiraComment = {
4397
+ /**
4398
+ * Jira comment ID
4399
+ */
3920
4400
  id: string;
3921
4401
  };
3922
4402
  export type JiraCommentRequest = {
4403
+ /**
4404
+ * Jira comment ID
4405
+ */
3923
4406
  id: string;
3924
4407
  };
3925
4408
  export type JiraIssue = {
4409
+ /**
4410
+ * Jira issue key
4411
+ */
3926
4412
  key: string;
3927
4413
  fields: JiraIssueFields;
3928
4414
  };
@@ -3939,19 +4425,78 @@ export type JiraIssueFieldsRequest = {
3939
4425
  };
3940
4426
  };
3941
4427
  export type JiraIssueProject = {
4428
+ /**
4429
+ * Jira field ID
4430
+ */
3942
4431
  id: string;
4432
+ /**
4433
+ * Jira field name
4434
+ */
3943
4435
  name: string;
4436
+ /**
4437
+ * Jira project key
4438
+ */
3944
4439
  key: string;
3945
4440
  };
3946
4441
  export type JiraIssueProjectRequest = {
4442
+ /**
4443
+ * Jira field ID
4444
+ */
3947
4445
  id: string;
4446
+ /**
4447
+ * Jira field name
4448
+ */
3948
4449
  name: string;
4450
+ /**
4451
+ * Jira project key
4452
+ */
3949
4453
  key: string;
3950
4454
  };
3951
4455
  export type JiraIssueRequest = {
4456
+ /**
4457
+ * Jira issue key
4458
+ */
3952
4459
  key: string;
3953
4460
  fields: JiraIssueFieldsRequest;
3954
4461
  };
4462
+ export type K8sDefaultConfiguration = {
4463
+ default_controller_vcpus?: number;
4464
+ default_controller_ram_gb?: number;
4465
+ default_controller_system_disk_gb?: number;
4466
+ default_controller_etcd_disk_gb?: number;
4467
+ default_lb_vcpus?: number;
4468
+ default_lb_ram_gb?: number;
4469
+ default_lb_system_disk_gb?: number;
4470
+ default_lb_logs_disk_gb?: number;
4471
+ minimal_worker_vcpus?: number;
4472
+ minimal_worker_ram_gb?: number;
4473
+ default_worker_data_disk_gb?: number;
4474
+ default_storage_data_disk_gb?: number;
4475
+ default_storage_san_disk_gb?: number;
4476
+ /**
4477
+ * Comma-separated list of Kubernetes versions (e.g., 1.32.0,1.33.0,1.34.0)
4478
+ */
4479
+ available_kubernetes_versions?: string;
4480
+ };
4481
+ export type K8sDefaultConfigurationRequest = {
4482
+ default_controller_vcpus?: number;
4483
+ default_controller_ram_gb?: number;
4484
+ default_controller_system_disk_gb?: number;
4485
+ default_controller_etcd_disk_gb?: number;
4486
+ default_lb_vcpus?: number;
4487
+ default_lb_ram_gb?: number;
4488
+ default_lb_system_disk_gb?: number;
4489
+ default_lb_logs_disk_gb?: number;
4490
+ minimal_worker_vcpus?: number;
4491
+ minimal_worker_ram_gb?: number;
4492
+ default_worker_data_disk_gb?: number;
4493
+ default_storage_data_disk_gb?: number;
4494
+ default_storage_san_disk_gb?: number;
4495
+ /**
4496
+ * Comma-separated list of Kubernetes versions (e.g., 1.32.0,1.33.0,1.34.0)
4497
+ */
4498
+ available_kubernetes_versions?: string;
4499
+ };
3955
4500
  export type KeycloakGroup = {
3956
4501
  readonly uuid: string;
3957
4502
  readonly url: string;
@@ -4056,6 +4601,9 @@ export type LinkToInvoiceRequest = {
4056
4601
  invoice: string;
4057
4602
  };
4058
4603
  export type Logout = {
4604
+ /**
4605
+ * URL to redirect to after logout
4606
+ */
4059
4607
  readonly logout_url: string;
4060
4608
  };
4061
4609
  export type MaintenanceActionResponse = {
@@ -4320,9 +4868,21 @@ export type MarketplaceCategoryRequest = {
4320
4868
  group?: string | null;
4321
4869
  };
4322
4870
  export type MarketplaceCustomerStats = {
4871
+ /**
4872
+ * Name from the record
4873
+ */
4323
4874
  readonly name: string;
4875
+ /**
4876
+ * UUID from the record
4877
+ */
4324
4878
  readonly uuid: string;
4879
+ /**
4880
+ * Count value from the record
4881
+ */
4325
4882
  readonly count: number;
4883
+ /**
4884
+ * Customer abbreviation from the record
4885
+ */
4326
4886
  readonly abbreviation: string;
4327
4887
  };
4328
4888
  export type MarketplaceProviderCustomer = {
@@ -4541,17 +5101,53 @@ export type MergedPluginOptions = {
4541
5101
  * List of UUID of OpenStack offerings where tenant can be created
4542
5102
  */
4543
5103
  openstack_offering_uuid_list?: Array<string>;
5104
+ /**
5105
+ * Flavor name for managed Rancher server instances
5106
+ */
4544
5107
  managed_rancher_server_flavor_name?: string;
5108
+ /**
5109
+ * System volume size in GB for managed Rancher server
5110
+ */
4545
5111
  managed_rancher_server_system_volume_size_gb?: number;
5112
+ /**
5113
+ * System volume type name for managed Rancher server
5114
+ */
4546
5115
  managed_rancher_server_system_volume_type_name?: string;
5116
+ /**
5117
+ * Data volume size in GB for managed Rancher server
5118
+ */
4547
5119
  managed_rancher_server_data_volume_size_gb?: number;
5120
+ /**
5121
+ * Data volume type name for managed Rancher server
5122
+ */
4548
5123
  managed_rancher_server_data_volume_type_name?: string;
5124
+ /**
5125
+ * System volume size in GB for managed Rancher worker nodes
5126
+ */
4549
5127
  managed_rancher_worker_system_volume_size_gb?: number;
5128
+ /**
5129
+ * System volume type name for managed Rancher worker nodes
5130
+ */
4550
5131
  managed_rancher_worker_system_volume_type_name?: string;
5132
+ /**
5133
+ * Flavor name for managed Rancher load balancer
5134
+ */
4551
5135
  managed_rancher_load_balancer_flavor_name?: string;
5136
+ /**
5137
+ * System volume size in GB for managed Rancher load balancer
5138
+ */
4552
5139
  managed_rancher_load_balancer_system_volume_size_gb?: number;
5140
+ /**
5141
+ * System volume type name for managed Rancher load balancer
5142
+ */
4553
5143
  managed_rancher_load_balancer_system_volume_type_name?: string;
5144
+ /**
5145
+ * Data volume size in GB for managed Rancher load balancer
5146
+ */
4554
5147
  managed_rancher_load_balancer_data_volume_size_gb?: number;
5148
+ /**
5149
+ * Data volume type name for managed Rancher load balancer
5150
+ */
4555
5151
  managed_rancher_load_balancer_data_volume_type_name?: string;
4556
5152
  /**
4557
5153
  * Max number of vCPUs for tenants
@@ -4739,17 +5335,53 @@ export type MergedPluginOptionsRequest = {
4739
5335
  * List of UUID of OpenStack offerings where tenant can be created
4740
5336
  */
4741
5337
  openstack_offering_uuid_list?: Array<string>;
5338
+ /**
5339
+ * Flavor name for managed Rancher server instances
5340
+ */
4742
5341
  managed_rancher_server_flavor_name?: string;
5342
+ /**
5343
+ * System volume size in GB for managed Rancher server
5344
+ */
4743
5345
  managed_rancher_server_system_volume_size_gb?: number;
5346
+ /**
5347
+ * System volume type name for managed Rancher server
5348
+ */
4744
5349
  managed_rancher_server_system_volume_type_name?: string;
5350
+ /**
5351
+ * Data volume size in GB for managed Rancher server
5352
+ */
4745
5353
  managed_rancher_server_data_volume_size_gb?: number;
5354
+ /**
5355
+ * Data volume type name for managed Rancher server
5356
+ */
4746
5357
  managed_rancher_server_data_volume_type_name?: string;
5358
+ /**
5359
+ * System volume size in GB for managed Rancher worker nodes
5360
+ */
4747
5361
  managed_rancher_worker_system_volume_size_gb?: number;
5362
+ /**
5363
+ * System volume type name for managed Rancher worker nodes
5364
+ */
4748
5365
  managed_rancher_worker_system_volume_type_name?: string;
5366
+ /**
5367
+ * Flavor name for managed Rancher load balancer
5368
+ */
4749
5369
  managed_rancher_load_balancer_flavor_name?: string;
5370
+ /**
5371
+ * System volume size in GB for managed Rancher load balancer
5372
+ */
4750
5373
  managed_rancher_load_balancer_system_volume_size_gb?: number;
5374
+ /**
5375
+ * System volume type name for managed Rancher load balancer
5376
+ */
4751
5377
  managed_rancher_load_balancer_system_volume_type_name?: string;
5378
+ /**
5379
+ * Data volume size in GB for managed Rancher load balancer
5380
+ */
4752
5381
  managed_rancher_load_balancer_data_volume_size_gb?: number;
5382
+ /**
5383
+ * Data volume type name for managed Rancher load balancer
5384
+ */
4753
5385
  managed_rancher_load_balancer_data_volume_type_name?: string;
4754
5386
  /**
4755
5387
  * Max number of vCPUs for tenants
@@ -4793,6 +5425,9 @@ export type MergedSecretOptions = {
4793
5425
  * OpenStack IPv4 external IP mapping
4794
5426
  */
4795
5427
  ipv4_external_ip_mapping?: Array<IpMapping>;
5428
+ /**
5429
+ * TLS certificate for OpenStack API connection verification
5430
+ */
4796
5431
  openstack_api_tls_certificate?: string;
4797
5432
  /**
4798
5433
  * Default value for new subnets DNS name servers. Should be defined as list.
@@ -4854,7 +5489,13 @@ export type MergedSecretOptions = {
4854
5489
  * Rancher secret key
4855
5490
  */
4856
5491
  password?: string;
5492
+ /**
5493
+ * Cloud-init template for Rancher cluster node initialization
5494
+ */
4857
5495
  cloud_init_template?: string;
5496
+ /**
5497
+ * Cloud-init template for managed Rancher load balancer initialization
5498
+ */
4858
5499
  managed_rancher_load_balancer_cloud_init_template?: string;
4859
5500
  /**
4860
5501
  * Host of the Vault server
@@ -4946,6 +5587,9 @@ export type MergedSecretOptionsRequest = {
4946
5587
  * OpenStack IPv4 external IP mapping
4947
5588
  */
4948
5589
  ipv4_external_ip_mapping?: Array<IpMappingRequest>;
5590
+ /**
5591
+ * TLS certificate for OpenStack API connection verification
5592
+ */
4949
5593
  openstack_api_tls_certificate?: string;
4950
5594
  /**
4951
5595
  * Default value for new subnets DNS name servers. Should be defined as list.
@@ -5007,7 +5651,13 @@ export type MergedSecretOptionsRequest = {
5007
5651
  * Rancher secret key
5008
5652
  */
5009
5653
  password?: string;
5654
+ /**
5655
+ * Cloud-init template for Rancher cluster node initialization
5656
+ */
5010
5657
  cloud_init_template?: string;
5658
+ /**
5659
+ * Cloud-init template for managed Rancher load balancer initialization
5660
+ */
5011
5661
  managed_rancher_load_balancer_cloud_init_template?: string;
5012
5662
  /**
5013
5663
  * Host of the Vault server
@@ -5137,7 +5787,13 @@ export type MigrationDetailsRequest = {
5137
5787
  };
5138
5788
  export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
5139
5789
  export type MoveOfferingRequest = {
5790
+ /**
5791
+ * Target customer URL with service provider profile where the offering should be moved
5792
+ */
5140
5793
  customer: string;
5794
+ /**
5795
+ * Whether to preserve existing permissions when moving the offering
5796
+ */
5141
5797
  preserve_permissions: boolean;
5142
5798
  };
5143
5799
  export type MoveProjectRequest = {
@@ -5145,10 +5801,19 @@ export type MoveProjectRequest = {
5145
5801
  preserve_permissions: boolean;
5146
5802
  };
5147
5803
  export type MoveResourceRequest = {
5804
+ /**
5805
+ * Target project URL where the resource should be moved
5806
+ */
5148
5807
  project: ProjectHyperlinkRequest;
5149
5808
  };
5150
5809
  export type NameUuid = {
5810
+ /**
5811
+ * Name of the entity
5812
+ */
5151
5813
  readonly name: string;
5814
+ /**
5815
+ * UUID of the entity
5816
+ */
5152
5817
  readonly uuid: string;
5153
5818
  };
5154
5819
  export type NestedAgentProcessor = {
@@ -5283,16 +5948,31 @@ export type NestedCustomerUsagePolicyComponentRequest = {
5283
5948
  export type NestedEndpoint = {
5284
5949
  readonly uuid?: string;
5285
5950
  name?: string;
5951
+ /**
5952
+ * URL of the access endpoint
5953
+ */
5286
5954
  url?: string;
5287
5955
  };
5288
5956
  export type NestedEndpointRequest = {
5289
5957
  name: string;
5958
+ /**
5959
+ * URL of the access endpoint
5960
+ */
5290
5961
  url: string;
5291
5962
  };
5292
5963
  export type NestedFeedback = {
5964
+ /**
5965
+ * Customer satisfaction rating (1-5 stars)
5966
+ */
5293
5967
  readonly evaluation: number;
5968
+ /**
5969
+ * Numeric value of the rating
5970
+ */
5294
5971
  readonly evaluation_number: number;
5295
5972
  comment?: string;
5973
+ /**
5974
+ * Current state of the feedback
5975
+ */
5296
5976
  readonly state: string;
5297
5977
  };
5298
5978
  export type NestedFeedbackRequest = {
@@ -5883,7 +6563,13 @@ export type NotificationTemplateUpdateSerializersRequest = {
5883
6563
  export type NullEnum = unknown;
5884
6564
  export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
5885
6565
  export type ObtainAuthTokenRequest = {
6566
+ /**
6567
+ * Username for authentication
6568
+ */
5886
6569
  username: string;
6570
+ /**
6571
+ * Password for authentication
6572
+ */
5887
6573
  password: string;
5888
6574
  };
5889
6575
  export type OecdFos2007CodeEnum = '1.1' | '1.2' | '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '2.1' | '2.2' | '2.3' | '2.4' | '2.5' | '2.6' | '2.7' | '2.8' | '2.9' | '2.10' | '2.11' | '2.12' | '3.1' | '3.2' | '3.3' | '3.4' | '3.5' | '4.1' | '4.2' | '4.3' | '4.4' | '4.5' | '5.1' | '5.2' | '5.3' | '5.4' | '5.5' | '5.6' | '5.7' | '5.8' | '5.9' | '6.1' | '6.2' | '6.3' | '6.4' | '6.5';
@@ -5892,6 +6578,9 @@ export type Offering = {
5892
6578
  readonly uuid?: string;
5893
6579
  readonly created?: string;
5894
6580
  name?: string;
6581
+ /**
6582
+ * URL-friendly identifier. Only editable by staff users.
6583
+ */
5895
6584
  slug?: string;
5896
6585
  description?: string;
5897
6586
  full_description?: string;
@@ -5940,7 +6629,7 @@ export type Offering = {
5940
6629
  readonly scope?: string;
5941
6630
  readonly scope_uuid?: string | null;
5942
6631
  readonly scope_name?: string | null;
5943
- scope_state?: CoreStates | null;
6632
+ scope_state?: CoreStates | NullEnum | null;
5944
6633
  readonly scope_error_message?: string | null;
5945
6634
  readonly files?: Array<NestedOfferingFile>;
5946
6635
  readonly quotas?: Array<Quota>;
@@ -5952,6 +6641,9 @@ export type Offering = {
5952
6641
  readonly citation_count?: number;
5953
6642
  latitude?: number | null;
5954
6643
  longitude?: number | null;
6644
+ /**
6645
+ * Country code (ISO 3166-1 alpha-2)
6646
+ */
5955
6647
  country?: CountryEnum | BlankEnum;
5956
6648
  backend_id?: string;
5957
6649
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -6015,8 +6707,17 @@ export type OfferingComponent = {
6015
6707
  max_prepaid_duration?: number | null;
6016
6708
  };
6017
6709
  export type OfferingComponentLimitRequest = {
6710
+ /**
6711
+ * Minimum allowed value
6712
+ */
6018
6713
  min: number;
6714
+ /**
6715
+ * Maximum allowed value
6716
+ */
6019
6717
  max: number;
6718
+ /**
6719
+ * Maximum available limit across all resources
6720
+ */
6020
6721
  max_available_limit: number;
6021
6722
  };
6022
6723
  export type OfferingComponentRequest = {
@@ -6062,15 +6763,30 @@ export type OfferingComponentStat = {
6062
6763
  readonly name: string;
6063
6764
  };
6064
6765
  export type OfferingCost = {
6766
+ /**
6767
+ * UUID of the offering
6768
+ */
6065
6769
  offering_uuid: string;
6770
+ /**
6771
+ * Total cost for the offering
6772
+ */
6066
6773
  cost: number;
6067
6774
  };
6068
6775
  export type OfferingCountryStats = {
6776
+ /**
6777
+ * Country code of the offering
6778
+ */
6069
6779
  country: string;
6780
+ /**
6781
+ * Number of offerings in this country
6782
+ */
6070
6783
  count: number;
6071
6784
  };
6072
6785
  export type OfferingCreateRequest = {
6073
6786
  name: string;
6787
+ /**
6788
+ * URL-friendly identifier. Only editable by staff users.
6789
+ */
6074
6790
  slug?: string;
6075
6791
  description?: string;
6076
6792
  full_description?: string;
@@ -6102,6 +6818,9 @@ export type OfferingCreateRequest = {
6102
6818
  datacite_doi?: string;
6103
6819
  latitude?: number | null;
6104
6820
  longitude?: number | null;
6821
+ /**
6822
+ * Country code (ISO 3166-1 alpha-2)
6823
+ */
6105
6824
  country?: CountryEnum | BlankEnum;
6106
6825
  backend_id?: string;
6107
6826
  image?: (Blob | File) | null;
@@ -6231,7 +6950,13 @@ export type OfferingExportParametersRequest = {
6231
6950
  include_resource_options?: boolean;
6232
6951
  };
6233
6952
  export type OfferingExportResponse = {
6953
+ /**
6954
+ * UUID of the exported offering
6955
+ */
6234
6956
  offering_uuid: string;
6957
+ /**
6958
+ * Name of the exported offering
6959
+ */
6235
6960
  offering_name: string;
6236
6961
  /**
6237
6962
  * Complete export data containing the offering structure
@@ -6241,6 +6966,9 @@ export type OfferingExportResponse = {
6241
6966
  * List of exported component types
6242
6967
  */
6243
6968
  exported_components: Array<string>;
6969
+ /**
6970
+ * Timestamp when the export was completed
6971
+ */
6244
6972
  export_timestamp: string;
6245
6973
  };
6246
6974
  export type OfferingFile = {
@@ -6264,7 +6992,7 @@ export type OfferingGroups = {
6264
6992
  export type OfferingImageRequest = {
6265
6993
  image: Blob | File;
6266
6994
  };
6267
- export type OfferingImportParametersRequest = {
6995
+ export type OfferingImportParameters = {
6268
6996
  /**
6269
6997
  * Target customer for imported offering. If not provided, uses current user's customer
6270
6998
  */
@@ -6317,27 +7045,68 @@ export type OfferingImportParametersRequest = {
6317
7045
  * Overwrite existing offering if one with the same name exists
6318
7046
  */
6319
7047
  overwrite_existing?: boolean;
6320
- /**
6321
- * Preserve offering state from export, otherwise set to 'Draft'
6322
- */
6323
- preserve_state?: boolean;
6324
7048
  /**
6325
7049
  * The exported offering data to import
6326
7050
  */
6327
- offering_data: OfferingExportDataRequest;
7051
+ offering_data: OfferingExportData;
6328
7052
  };
6329
- export type OfferingImportResponse = {
6330
- imported_offering_uuid: string;
6331
- imported_offering_name: string;
7053
+ export type OfferingImportParametersRequest = {
7054
+ /**
7055
+ * Target customer for imported offering. If not provided, uses current user's customer
7056
+ */
7057
+ customer?: string | null;
7058
+ /**
7059
+ * Target category name for imported offering. If not provided, uses category from export data
7060
+ */
7061
+ category?: string | null;
6332
7062
  /**
6333
- * List of imported component types
7063
+ * Target project for imported offering (optional)
7064
+ */
7065
+ project?: string | null;
7066
+ /**
7067
+ * Import offering components
7068
+ */
7069
+ import_components?: boolean;
7070
+ /**
7071
+ * Import offering plans
7072
+ */
7073
+ import_plans?: boolean;
7074
+ /**
7075
+ * Import offering screenshots
6334
7076
  */
6335
- imported_components: Array<string>;
7077
+ import_screenshots?: boolean;
6336
7078
  /**
6337
- * List of warnings encountered during import
7079
+ * Import offering files
6338
7080
  */
6339
- warnings?: Array<string>;
6340
- import_timestamp: string;
7081
+ import_files?: boolean;
7082
+ /**
7083
+ * Import offering access endpoints
7084
+ */
7085
+ import_endpoints?: boolean;
7086
+ /**
7087
+ * Import organization groups associations (may fail if groups don't exist)
7088
+ */
7089
+ import_organization_groups?: boolean;
7090
+ /**
7091
+ * Import terms of service configurations
7092
+ */
7093
+ import_terms_of_service?: boolean;
7094
+ /**
7095
+ * Import plugin options
7096
+ */
7097
+ import_plugin_options?: boolean;
7098
+ /**
7099
+ * Import secret options (WARNING: will overwrite existing secrets)
7100
+ */
7101
+ import_secret_options?: boolean;
7102
+ /**
7103
+ * Overwrite existing offering if one with the same name exists
7104
+ */
7105
+ overwrite_existing?: boolean;
7106
+ /**
7107
+ * The exported offering data to import
7108
+ */
7109
+ offering_data: OfferingExportDataRequest;
6341
7110
  };
6342
7111
  export type OfferingIntegrationUpdateRequest = {
6343
7112
  secret_options?: MergedSecretOptionsRequest;
@@ -6375,6 +7144,9 @@ export type OfferingOverviewUpdateRequest = {
6375
7144
  access_url?: string;
6376
7145
  getting_started?: string;
6377
7146
  integration_guide?: string;
7147
+ /**
7148
+ * URL-friendly identifier. Only editable by staff users.
7149
+ */
6378
7150
  slug?: string;
6379
7151
  };
6380
7152
  export type OfferingPartition = {
@@ -6579,7 +7351,13 @@ export type OfferingPermission = {
6579
7351
  readonly user_email: string;
6580
7352
  };
6581
7353
  export type OfferingReference = {
7354
+ /**
7355
+ * Name of the offering
7356
+ */
6582
7357
  readonly offering_name: string;
7358
+ /**
7359
+ * UUID of the offering
7360
+ */
6583
7361
  readonly offering_uuid: string;
6584
7362
  };
6585
7363
  export type OfferingReferral = {
@@ -6634,16 +7412,43 @@ export type OfferingSoftwareCatalogRequest = {
6634
7412
  };
6635
7413
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
6636
7414
  export type OfferingStats = {
7415
+ /**
7416
+ * Number of resources for the offering
7417
+ */
6637
7418
  count: number;
7419
+ /**
7420
+ * Name of the offering
7421
+ */
6638
7422
  name: string;
7423
+ /**
7424
+ * UUID of the offering
7425
+ */
6639
7426
  uuid: string;
7427
+ /**
7428
+ * Country of the offering
7429
+ */
6640
7430
  country: string;
6641
7431
  };
6642
7432
  export type OfferingStatsCounter = {
7433
+ /**
7434
+ * UUID of the category
7435
+ */
6643
7436
  category_uuid: string;
7437
+ /**
7438
+ * Title of the category
7439
+ */
6644
7440
  category_title: string;
7441
+ /**
7442
+ * Name of the service provider
7443
+ */
6645
7444
  service_provider_name: string;
7445
+ /**
7446
+ * UUID of the service provider
7447
+ */
6646
7448
  service_provider_uuid: string;
7449
+ /**
7450
+ * Number of offerings
7451
+ */
6647
7452
  count: number;
6648
7453
  };
6649
7454
  export type OfferingTermsOfService = {
@@ -6824,10 +7629,19 @@ export type OfferingUserServiceProviderComment = {
6824
7629
  };
6825
7630
  export type OfferingUserState = 'Requested' | 'Creating' | 'Pending account linking' | 'Pending additional validation' | 'OK' | 'Requested deletion' | 'Deleting' | 'Deleted' | 'Error creating' | 'Error deleting';
6826
7631
  export type OfferingUserStateTransitionRequest = {
7632
+ /**
7633
+ * Comment explaining the state transition
7634
+ */
6827
7635
  comment?: string;
7636
+ /**
7637
+ * URL reference related to the state transition comment
7638
+ */
6828
7639
  comment_url?: string;
6829
7640
  };
6830
7641
  export type OfferingUserUpdateRestrictionRequest = {
7642
+ /**
7643
+ * Whether the offering user should be restricted from accessing resources
7644
+ */
6831
7645
  is_restricted: boolean;
6832
7646
  };
6833
7647
  export type OnboardingCompanyValidationRequestRequest = {
@@ -8561,21 +9375,10 @@ export type OpenStackTenantQuotaRequest = {
8561
9375
  export type OpenStackTenantRequest = {
8562
9376
  name: string;
8563
9377
  description?: string;
8564
- service_settings: string;
8565
- project: string;
8566
9378
  /**
8567
9379
  * Optional availability group. Will be used for all instances provisioned in this tenant
8568
9380
  */
8569
9381
  availability_zone?: string;
8570
- /**
8571
- * Username of the tenant user
8572
- */
8573
- user_username?: string;
8574
- /**
8575
- * Password of the tenant user
8576
- */
8577
- user_password?: string;
8578
- subnet_cidr?: string;
8579
9382
  /**
8580
9383
  * Volume type name to use when creating volumes.
8581
9384
  */
@@ -8724,6 +9527,7 @@ export type OptionField = {
8724
9527
  max?: number;
8725
9528
  cascade_config?: CascadeConfig;
8726
9529
  component_multiplier_config?: ComponentMultiplierConfig;
9530
+ default_configs?: K8sDefaultConfiguration;
8727
9531
  };
8728
9532
  export type OptionFieldRequest = {
8729
9533
  type: OptionFieldTypeEnum;
@@ -8736,8 +9540,9 @@ export type OptionFieldRequest = {
8736
9540
  max?: number;
8737
9541
  cascade_config?: CascadeConfigRequest;
8738
9542
  component_multiplier_config?: ComponentMultiplierConfigRequest;
9543
+ default_configs?: K8sDefaultConfigurationRequest;
8739
9544
  };
8740
- export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier';
9545
+ export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config';
8741
9546
  export type OrderAttachment = {
8742
9547
  attachment?: string | null;
8743
9548
  };
@@ -8765,6 +9570,9 @@ export type OrderCreateRequest = {
8765
9570
  * Enables delayed processing of resource provisioning order.
8766
9571
  */
8767
9572
  start_date?: string | null;
9573
+ /**
9574
+ * URL-friendly identifier. Only editable by staff users.
9575
+ */
8768
9576
  slug?: string;
8769
9577
  project: string;
8770
9578
  };
@@ -8882,15 +9690,27 @@ export type OrderSetStateErredRequest = {
8882
9690
  };
8883
9691
  export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
8884
9692
  export type OrderUuid = {
9693
+ /**
9694
+ * UUID of the created or updated order
9695
+ */
8885
9696
  readonly order_uuid: string;
8886
9697
  };
8887
9698
  export type OrganizationGroup = {
8888
9699
  readonly uuid?: string;
8889
9700
  readonly url?: string;
8890
9701
  name?: string;
9702
+ /**
9703
+ * UUID of the parent organization group
9704
+ */
8891
9705
  readonly parent_uuid?: string;
9706
+ /**
9707
+ * Name of the parent organization group
9708
+ */
8892
9709
  readonly parent_name?: string;
8893
9710
  parent?: string | null;
9711
+ /**
9712
+ * Number of customers in this organization group
9713
+ */
8894
9714
  readonly customers_count?: number;
8895
9715
  };
8896
9716
  export type OrganizationGroupRequest = {
@@ -9094,12 +9914,18 @@ export type PatchedCustomerRequest = {
9094
9914
  * Maximum number of service accounts allowed
9095
9915
  */
9096
9916
  max_service_accounts?: number | null;
9917
+ /**
9918
+ * Checklist to be used for project metadata validation in this organization
9919
+ */
9097
9920
  project_metadata_checklist?: string | null;
9098
9921
  /**
9099
9922
  * Number of extra days after project end date before resources are terminated
9100
9923
  */
9101
9924
  grace_period_days?: number | null;
9102
9925
  name?: string;
9926
+ /**
9927
+ * URL-friendly identifier. Only editable by staff users.
9928
+ */
9103
9929
  slug?: string;
9104
9930
  native_name?: string;
9105
9931
  abbreviation?: string;
@@ -9128,6 +9954,9 @@ export type PatchedCustomerRequest = {
9128
9954
  latitude?: number | null;
9129
9955
  longitude?: number | null;
9130
9956
  bank_account?: string;
9957
+ /**
9958
+ * Country code (ISO 3166-1 alpha-2)
9959
+ */
9131
9960
  country?: CountryEnum | BlankEnum;
9132
9961
  /**
9133
9962
  * Comma-separated list of notification email addresses
@@ -9216,6 +10045,9 @@ export type PatchedInvitationUpdateRequest = {
9216
10045
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
9217
10046
  */
9218
10047
  email?: string;
10048
+ /**
10049
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
10050
+ */
9219
10051
  role?: string;
9220
10052
  };
9221
10053
  export type PatchedInvoiceItemUpdateRequest = {
@@ -9716,18 +10548,30 @@ export type PatchedProjectInfoRequest = {
9716
10548
  };
9717
10549
  export type PatchedProjectRequest = {
9718
10550
  name?: string;
10551
+ /**
10552
+ * URL-friendly identifier. Only editable by staff users.
10553
+ */
9719
10554
  slug?: string;
9720
10555
  /**
9721
10556
  * Organization
9722
10557
  */
9723
10558
  customer?: string;
10559
+ /**
10560
+ * Project description (HTML content will be sanitized)
10561
+ */
9724
10562
  description?: string;
9725
10563
  /**
9726
10564
  * Project type
9727
10565
  */
9728
10566
  type?: string | null;
9729
10567
  backend_id?: string;
10568
+ /**
10569
+ * Project start date. Cannot be edited after the start date has arrived.
10570
+ */
9730
10571
  start_date?: string | null;
10572
+ /**
10573
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
10574
+ */
9731
10575
  end_date?: string | null;
9732
10576
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
9733
10577
  is_industry?: boolean;
@@ -9736,6 +10580,9 @@ export type PatchedProjectRequest = {
9736
10580
  * Project type
9737
10581
  */
9738
10582
  kind?: KindEnum;
10583
+ /**
10584
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
10585
+ */
9739
10586
  staff_notes?: string;
9740
10587
  /**
9741
10588
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -9803,6 +10650,9 @@ export type PatchedProposalReviewRequest = {
9803
10650
  comment_team?: string | null;
9804
10651
  };
9805
10652
  export type PatchedProtectedCallRequest = {
10653
+ /**
10654
+ * URL-friendly identifier. Only editable by staff users.
10655
+ */
9806
10656
  slug?: string;
9807
10657
  name?: string;
9808
10658
  description?: string;
@@ -10284,6 +11134,9 @@ export type PatchedUserRequest = {
10284
11134
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
10285
11135
  */
10286
11136
  username?: string;
11137
+ /**
11138
+ * URL-friendly identifier. Only editable by staff users.
11139
+ */
10287
11140
  slug?: string;
10288
11141
  native_name?: string;
10289
11142
  job_title?: string;
@@ -10501,10 +11354,25 @@ export type PlanComponent = {
10501
11354
  discount_rate?: number | null;
10502
11355
  };
10503
11356
  export type PlanUsageResponse = {
11357
+ /**
11358
+ * UUID of the plan
11359
+ */
10504
11360
  readonly plan_uuid: string;
11361
+ /**
11362
+ * Name of the plan
11363
+ */
10505
11364
  readonly plan_name: string;
11365
+ /**
11366
+ * Usage limit
11367
+ */
10506
11368
  readonly limit: number;
11369
+ /**
11370
+ * Current usage count
11371
+ */
10507
11372
  readonly usage: number;
11373
+ /**
11374
+ * Remaining usage
11375
+ */
10508
11376
  readonly remaining: number;
10509
11377
  readonly offering_uuid: string;
10510
11378
  readonly offering_name: string;
@@ -10512,9 +11380,21 @@ export type PlanUsageResponse = {
10512
11380
  readonly customer_provider_name: string;
10513
11381
  };
10514
11382
  export type PluginComponent = {
11383
+ /**
11384
+ * Type identifier of the component
11385
+ */
10515
11386
  type: string;
11387
+ /**
11388
+ * Display name of the component
11389
+ */
10516
11390
  name: string;
11391
+ /**
11392
+ * Unit of measurement for the component
11393
+ */
10517
11394
  measured_unit: string;
11395
+ /**
11396
+ * Billing type for the component
11397
+ */
10518
11398
  billing_type: BillingTypeEnum;
10519
11399
  };
10520
11400
  export type PluginOfferingType = {
@@ -10540,6 +11420,9 @@ export type Project = {
10540
11420
  readonly url?: string;
10541
11421
  readonly uuid?: string;
10542
11422
  name?: string;
11423
+ /**
11424
+ * URL-friendly identifier. Only editable by staff users.
11425
+ */
10543
11426
  slug?: string;
10544
11427
  /**
10545
11428
  * Organization
@@ -10550,6 +11433,9 @@ export type Project = {
10550
11433
  readonly customer_slug?: string;
10551
11434
  readonly customer_native_name?: string;
10552
11435
  readonly customer_abbreviation?: string;
11436
+ /**
11437
+ * Project description (HTML content will be sanitized)
11438
+ */
10553
11439
  description?: string;
10554
11440
  readonly customer_display_billing_info_in_projects?: boolean;
10555
11441
  readonly created?: string;
@@ -10560,13 +11446,25 @@ export type Project = {
10560
11446
  readonly type_name?: string | null;
10561
11447
  readonly type_uuid?: string | null;
10562
11448
  backend_id?: string;
11449
+ /**
11450
+ * Project start date. Cannot be edited after the start date has arrived.
11451
+ */
10563
11452
  start_date?: string | null;
11453
+ /**
11454
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
11455
+ */
10564
11456
  end_date?: string | null;
10565
11457
  readonly end_date_requested_by?: string | null;
10566
11458
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
11459
+ /**
11460
+ * Human-readable label for the OECD FOS 2007 classification code
11461
+ */
10567
11462
  readonly oecd_fos_2007_label?: string;
10568
11463
  is_industry?: boolean;
10569
11464
  image?: string | null;
11465
+ /**
11466
+ * Number of active resources in this project
11467
+ */
10570
11468
  readonly resources_count?: number;
10571
11469
  /**
10572
11470
  * Maximum number of service accounts allowed
@@ -10577,7 +11475,13 @@ export type Project = {
10577
11475
  */
10578
11476
  kind?: KindEnum;
10579
11477
  readonly is_removed?: boolean;
11478
+ /**
11479
+ * Metadata about project termination (read-only)
11480
+ */
10580
11481
  readonly termination_metadata?: unknown;
11482
+ /**
11483
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
11484
+ */
10581
11485
  staff_notes?: string;
10582
11486
  /**
10583
11487
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -10796,18 +11700,30 @@ export type ProjectRecoveryRequest = {
10796
11700
  };
10797
11701
  export type ProjectRequest = {
10798
11702
  name: string;
11703
+ /**
11704
+ * URL-friendly identifier. Only editable by staff users.
11705
+ */
10799
11706
  slug?: string;
10800
11707
  /**
10801
11708
  * Organization
10802
11709
  */
10803
11710
  customer: string;
11711
+ /**
11712
+ * Project description (HTML content will be sanitized)
11713
+ */
10804
11714
  description?: string;
10805
11715
  /**
10806
11716
  * Project type
10807
11717
  */
10808
11718
  type?: string | null;
10809
11719
  backend_id?: string;
11720
+ /**
11721
+ * Project start date. Cannot be edited after the start date has arrived.
11722
+ */
10810
11723
  start_date?: string | null;
11724
+ /**
11725
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
11726
+ */
10811
11727
  end_date?: string | null;
10812
11728
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
10813
11729
  is_industry?: boolean;
@@ -10816,6 +11732,9 @@ export type ProjectRequest = {
10816
11732
  * Project type
10817
11733
  */
10818
11734
  kind?: KindEnum;
11735
+ /**
11736
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
11737
+ */
10819
11738
  staff_notes?: string;
10820
11739
  /**
10821
11740
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -10953,6 +11872,9 @@ export type ProjectUser = {
10953
11872
  offering_user_state: OfferingUserState | NullEnum | null;
10954
11873
  };
10955
11874
  export type ProjectsLimitsGroupedByIndustryFlag = {
11875
+ /**
11876
+ * Nested dictionary of resource limits by category and component type
11877
+ */
10956
11878
  limits: {
10957
11879
  [key: string]: {
10958
11880
  [key: string]: string;
@@ -10960,6 +11882,9 @@ export type ProjectsLimitsGroupedByIndustryFlag = {
10960
11882
  };
10961
11883
  };
10962
11884
  export type ProjectsLimitsGroupedByOecd = {
11885
+ /**
11886
+ * Nested dictionary of resource limits by category and component type
11887
+ */
10963
11888
  limits: {
10964
11889
  [key: string]: {
10965
11890
  [key: string]: string;
@@ -10967,6 +11892,9 @@ export type ProjectsLimitsGroupedByOecd = {
10967
11892
  };
10968
11893
  };
10969
11894
  export type ProjectsUsagesGroupedByIndustryFlag = {
11895
+ /**
11896
+ * Nested dictionary of usage values by category and component type
11897
+ */
10970
11898
  usages: {
10971
11899
  [key: string]: {
10972
11900
  [key: string]: string;
@@ -10974,6 +11902,9 @@ export type ProjectsUsagesGroupedByIndustryFlag = {
10974
11902
  };
10975
11903
  };
10976
11904
  export type ProjectsUsagesGroupedByOecd = {
11905
+ /**
11906
+ * Nested dictionary of usage values by category and component type
11907
+ */
10977
11908
  usages: {
10978
11909
  [key: string]: {
10979
11910
  [key: string]: string;
@@ -11142,6 +12073,9 @@ export type ProtectedCall = {
11142
12073
  readonly created?: string;
11143
12074
  readonly start_date?: string;
11144
12075
  readonly end_date?: string;
12076
+ /**
12077
+ * URL-friendly identifier. Only editable by staff users.
12078
+ */
11145
12079
  slug?: string;
11146
12080
  name?: string;
11147
12081
  description?: string;
@@ -11174,6 +12108,9 @@ export type ProtectedCall = {
11174
12108
  readonly compliance_checklist_name?: string;
11175
12109
  };
11176
12110
  export type ProtectedCallRequest = {
12111
+ /**
12112
+ * URL-friendly identifier. Only editable by staff users.
12113
+ */
11177
12114
  slug?: string;
11178
12115
  name: string;
11179
12116
  description?: string;
@@ -11248,6 +12185,9 @@ export type ProviderOffering = {
11248
12185
  readonly uuid?: string;
11249
12186
  readonly customer_uuid?: string;
11250
12187
  name?: string;
12188
+ /**
12189
+ * URL-friendly identifier. Only editable by staff users.
12190
+ */
11251
12191
  slug?: string;
11252
12192
  readonly category_title?: string;
11253
12193
  type?: string;
@@ -11268,9 +12208,21 @@ export type ProviderOffering = {
11268
12208
  thumbnail?: string | null;
11269
12209
  };
11270
12210
  export type ProviderOfferingCosts = {
12211
+ /**
12212
+ * Billing period (YYYY-MM)
12213
+ */
11271
12214
  readonly period: string;
12215
+ /**
12216
+ * Price amount excluding tax
12217
+ */
11272
12218
  readonly price: number;
12219
+ /**
12220
+ * Tax amount
12221
+ */
11273
12222
  readonly tax: number;
12223
+ /**
12224
+ * Total amount including tax
12225
+ */
11274
12226
  readonly total: number;
11275
12227
  };
11276
12228
  export type ProviderOfferingCustomer = {
@@ -11289,6 +12241,9 @@ export type ProviderOfferingDetails = {
11289
12241
  readonly uuid?: string;
11290
12242
  readonly created?: string;
11291
12243
  name?: string;
12244
+ /**
12245
+ * URL-friendly identifier. Only editable by staff users.
12246
+ */
11292
12247
  slug?: string;
11293
12248
  description?: string;
11294
12249
  full_description?: string;
@@ -11341,7 +12296,7 @@ export type ProviderOfferingDetails = {
11341
12296
  readonly scope?: string;
11342
12297
  readonly scope_uuid?: string | null;
11343
12298
  readonly scope_name?: string | null;
11344
- scope_state?: CoreStates | null;
12299
+ scope_state?: CoreStates | NullEnum | null;
11345
12300
  readonly scope_error_message?: string | null;
11346
12301
  readonly files?: Array<NestedOfferingFile>;
11347
12302
  readonly quotas?: Array<Quota>;
@@ -11353,6 +12308,9 @@ export type ProviderOfferingDetails = {
11353
12308
  readonly citation_count?: number;
11354
12309
  latitude?: number | null;
11355
12310
  longitude?: number | null;
12311
+ /**
12312
+ * Country code (ISO 3166-1 alpha-2)
12313
+ */
11356
12314
  country?: CountryEnum | BlankEnum;
11357
12315
  backend_id?: string;
11358
12316
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -11380,6 +12338,9 @@ export type ProviderOfferingDetails = {
11380
12338
  };
11381
12339
  export type ProviderOfferingDetailsRequest = {
11382
12340
  name: string;
12341
+ /**
12342
+ * URL-friendly identifier. Only editable by staff users.
12343
+ */
11383
12344
  slug?: string;
11384
12345
  description?: string;
11385
12346
  full_description?: string;
@@ -11409,6 +12370,9 @@ export type ProviderOfferingDetailsRequest = {
11409
12370
  datacite_doi?: string;
11410
12371
  latitude?: number | null;
11411
12372
  longitude?: number | null;
12373
+ /**
12374
+ * Country code (ISO 3166-1 alpha-2)
12375
+ */
11412
12376
  country?: CountryEnum | BlankEnum;
11413
12377
  backend_id?: string;
11414
12378
  image?: (Blob | File) | null;
@@ -11530,6 +12494,9 @@ export type PublicCall = {
11530
12494
  readonly created?: string;
11531
12495
  readonly start_date?: string;
11532
12496
  readonly end_date?: string;
12497
+ /**
12498
+ * URL-friendly identifier. Only editable by staff users.
12499
+ */
11533
12500
  slug?: string;
11534
12501
  name?: string;
11535
12502
  description?: string;
@@ -11597,6 +12564,9 @@ export type PublicOfferingDetails = {
11597
12564
  readonly uuid?: string;
11598
12565
  readonly created?: string;
11599
12566
  name?: string;
12567
+ /**
12568
+ * URL-friendly identifier. Only editable by staff users.
12569
+ */
11600
12570
  slug?: string;
11601
12571
  description?: string;
11602
12572
  full_description?: string;
@@ -11645,7 +12615,7 @@ export type PublicOfferingDetails = {
11645
12615
  readonly scope?: string;
11646
12616
  readonly scope_uuid?: string | null;
11647
12617
  readonly scope_name?: string | null;
11648
- scope_state?: CoreStates | null;
12618
+ scope_state?: CoreStates | NullEnum | null;
11649
12619
  readonly scope_error_message?: string | null;
11650
12620
  readonly files?: Array<NestedOfferingFile>;
11651
12621
  readonly quotas?: Array<Quota>;
@@ -11657,6 +12627,9 @@ export type PublicOfferingDetails = {
11657
12627
  readonly citation_count?: number;
11658
12628
  latitude?: number | null;
11659
12629
  longitude?: number | null;
12630
+ /**
12631
+ * Country code (ISO 3166-1 alpha-2)
12632
+ */
11660
12633
  country?: CountryEnum | BlankEnum;
11661
12634
  backend_id?: string;
11662
12635
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -11688,6 +12661,9 @@ export type PullMarketplaceScriptResourceRequest = {
11688
12661
  };
11689
12662
  export type QosStrategyEnum = 'threshold' | 'progressive';
11690
12663
  export type QueryRequest = {
12664
+ /**
12665
+ * Search query string
12666
+ */
11691
12667
  query: string;
11692
12668
  };
11693
12669
  export type Question = {
@@ -12053,6 +13029,9 @@ export type QuotaRequest = {
12053
13029
  limit: number;
12054
13030
  };
12055
13031
  export type QuotasUpdateRequest = {
13032
+ /**
13033
+ * Dictionary of quotas to update
13034
+ */
12056
13035
  quotas: {
12057
13036
  [key: string]: number;
12058
13037
  };
@@ -13061,20 +14040,38 @@ export type RemoteSynchronisationRequest = {
13061
14040
  remotelocalcategory_set: Array<NestedRemoteLocalCategoryRequest>;
13062
14041
  };
13063
14042
  export type RemoveOfferingComponentRequest = {
14043
+ /**
14044
+ * UUID of the component to remove
14045
+ */
13064
14046
  uuid: string;
13065
14047
  };
13066
14048
  export type RemovePartitionRequest = {
13067
14049
  partition_uuid: string;
13068
14050
  };
13069
14051
  export type RemoveSoftwareCatalogRequest = {
14052
+ /**
14053
+ * UUID of the offering catalog to remove
14054
+ */
13070
14055
  offering_catalog_uuid: string;
13071
14056
  };
13072
14057
  export type ReportSection = {
14058
+ /**
14059
+ * Section header text
14060
+ */
13073
14061
  header?: string;
14062
+ /**
14063
+ * Section body content
14064
+ */
13074
14065
  body?: string;
13075
14066
  };
13076
14067
  export type ReportSectionRequest = {
14068
+ /**
14069
+ * Section header text
14070
+ */
13077
14071
  header: string;
14072
+ /**
14073
+ * Section body content
14074
+ */
13078
14075
  body: string;
13079
14076
  };
13080
14077
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
@@ -13198,6 +14195,9 @@ export type Resource = {
13198
14195
  readonly is_usage_based?: boolean;
13199
14196
  readonly is_limit_based?: boolean;
13200
14197
  name?: string;
14198
+ /**
14199
+ * URL-friendly identifier. Only editable by staff users.
14200
+ */
13201
14201
  slug?: string;
13202
14202
  readonly current_usages?: {
13203
14203
  [key: string]: number;
@@ -13234,6 +14234,8 @@ export type Resource = {
13234
14234
  readonly renewal_date?: {
13235
14235
  [key: string]: string;
13236
14236
  } | null;
14237
+ offering_state?: ResourceState;
14238
+ readonly offering_components?: Array<OfferingComponent>;
13237
14239
  };
13238
14240
  export type ResourceBackendIdRequest = {
13239
14241
  backend_id?: string;
@@ -13251,10 +14253,25 @@ export type ResourceEndDateByProviderRequest = {
13251
14253
  end_date?: string | null;
13252
14254
  };
13253
14255
  export type ResourceLimitPeriod = {
14256
+ /**
14257
+ * Start date of the resource limit period
14258
+ */
13254
14259
  start?: string;
14260
+ /**
14261
+ * End date of the resource limit period
14262
+ */
13255
14263
  end?: string;
14264
+ /**
14265
+ * Quantity of resources consumed during this period
14266
+ */
13256
14267
  quantity?: number;
14268
+ /**
14269
+ * Number of billing periods
14270
+ */
13257
14271
  billing_periods?: number;
14272
+ /**
14273
+ * Total amount for this period
14274
+ */
13258
14275
  total?: string;
13259
14276
  };
13260
14277
  export type ResourceOffering = {
@@ -13282,7 +14299,13 @@ export type ResourceReallocateLimitsRequest = {
13282
14299
  targets: Array<ResourceReallocateTargetRequest>;
13283
14300
  };
13284
14301
  export type ResourceReallocateLimitsResponse = {
14302
+ /**
14303
+ * UUID of the source order for limit reallocation
14304
+ */
13285
14305
  readonly source_order_uuid: string;
14306
+ /**
14307
+ * List of UUIDs for target orders receiving the reallocated limits
14308
+ */
13286
14309
  readonly target_order_uuids: Array<string>;
13287
14310
  };
13288
14311
  export type ResourceReallocateTargetRequest = {
@@ -13318,6 +14341,9 @@ export type ResourceRequest = {
13318
14341
  offering: string;
13319
14342
  plan?: string;
13320
14343
  name: string;
14344
+ /**
14345
+ * URL-friendly identifier. Only editable by staff users.
14346
+ */
13321
14347
  slug?: string;
13322
14348
  /**
13323
14349
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
@@ -13327,12 +14353,18 @@ export type ResourceRequest = {
13327
14353
  paused?: boolean;
13328
14354
  };
13329
14355
  export type ResourceResponseStatus = {
14356
+ /**
14357
+ * Status of the resource response
14358
+ */
13330
14359
  readonly status: string;
13331
14360
  };
13332
14361
  export type ResourceRestrictMemberAccessRequest = {
13333
14362
  restrict_member_access?: boolean;
13334
14363
  };
13335
14364
  export type ResourceSetLimitsRequest = {
14365
+ /**
14366
+ * Dictionary mapping component types to their new limit values
14367
+ */
13336
14368
  limits: unknown;
13337
14369
  };
13338
14370
  export type ResourceSetStateErredRequest = {
@@ -13353,6 +14385,7 @@ export type ResourceSwitchPlanRequest = {
13353
14385
  export type ResourceTerminateRequest = {
13354
14386
  /**
13355
14387
  * Termination attributes
14388
+ * Optional attributes/parameters to pass to the termination operation
13356
14389
  */
13357
14390
  attributes?: unknown;
13358
14391
  };
@@ -13400,14 +14433,35 @@ export type ResourceUserRequest = {
13400
14433
  user: string;
13401
14434
  };
13402
14435
  export type ResourcesLimits = {
14436
+ /**
14437
+ * UUID of the offering
14438
+ */
13403
14439
  readonly offering_uuid: string;
14440
+ /**
14441
+ * Name of the limit
14442
+ */
13404
14443
  readonly name: string;
14444
+ /**
14445
+ * Limit value
14446
+ */
13405
14447
  readonly value: number;
14448
+ /**
14449
+ * Country of the offering
14450
+ */
13406
14451
  readonly offering_country: string;
14452
+ /**
14453
+ * Name of the organization group
14454
+ */
13407
14455
  readonly organization_group_name: string;
14456
+ /**
14457
+ * UUID of the organization group
14458
+ */
13408
14459
  readonly organization_group_uuid: string;
13409
14460
  };
13410
14461
  export type ReviewCommentRequest = {
14462
+ /**
14463
+ * Optional comment for review
14464
+ */
13411
14465
  comment?: string;
13412
14466
  };
13413
14467
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
@@ -13835,7 +14889,13 @@ export type RuleRequest = {
13835
14889
  };
13836
14890
  };
13837
14891
  export type RuntimeStates = {
14892
+ /**
14893
+ * Value of the runtime state
14894
+ */
13838
14895
  readonly value: string;
14896
+ /**
14897
+ * Human-readable label for the runtime state
14898
+ */
13839
14899
  readonly label: string;
13840
14900
  };
13841
14901
  export type Saml2Login = {
@@ -13920,6 +14980,9 @@ export type ServiceProvider = {
13920
14980
  readonly offering_count?: number;
13921
14981
  };
13922
14982
  export type ServiceProviderApiSecretCode = {
14983
+ /**
14984
+ * API secret code for authenticating service provider requests
14985
+ */
13923
14986
  readonly api_secret_code: string;
13924
14987
  };
13925
14988
  export type ServiceProviderChecklistSummary = {
@@ -13960,24 +15023,69 @@ export type ServiceProviderRequest = {
13960
15023
  image?: (Blob | File) | null;
13961
15024
  };
13962
15025
  export type ServiceProviderRevenues = {
15026
+ /**
15027
+ * Total revenue amount
15028
+ */
13963
15029
  readonly total: number;
15030
+ /**
15031
+ * Invoice year
15032
+ */
13964
15033
  readonly year: number;
15034
+ /**
15035
+ * Invoice month
15036
+ */
13965
15037
  readonly month: number;
13966
15038
  };
13967
15039
  export type ServiceProviderSignatureRequest = {
15040
+ /**
15041
+ * Service provider customer UUID
15042
+ */
13968
15043
  customer: string;
15044
+ /**
15045
+ * JWT-encoded data signed with the service provider's API secret code
15046
+ */
13969
15047
  data: string;
15048
+ /**
15049
+ * If true, validates the signature without executing the operation
15050
+ */
13970
15051
  dry_run?: boolean;
13971
15052
  };
13972
15053
  export type ServiceProviderStatistics = {
15054
+ /**
15055
+ * Number of active campaigns
15056
+ */
13973
15057
  readonly active_campaigns: number;
15058
+ /**
15059
+ * Number of current customers
15060
+ */
13974
15061
  readonly current_customers: number;
15062
+ /**
15063
+ * Change in number of customers
15064
+ */
13975
15065
  readonly customers_number_change: number;
15066
+ /**
15067
+ * Number of active resources
15068
+ */
13976
15069
  readonly active_resources: number;
15070
+ /**
15071
+ * Change in number of resources
15072
+ */
13977
15073
  readonly resources_number_change: number;
15074
+ /**
15075
+ * Number of active and paused offerings
15076
+ */
13978
15077
  readonly active_and_paused_offerings: number;
15078
+ /**
15079
+ * Number of unresolved support tickets
15080
+ */
13979
15081
  readonly unresolved_tickets: number;
15082
+ /**
15083
+ * Number of pending orders
15084
+ */
13980
15085
  readonly pending_orders: number;
15086
+ /**
15087
+ * Number of resources in error state
15088
+ */
13981
15089
  readonly erred_resources: number;
13982
15090
  };
13983
15091
  export type ServiceSettings = {
@@ -14012,7 +15120,13 @@ export type SetMtuRequest = {
14012
15120
  mtu: number;
14013
15121
  };
14014
15122
  export type SetOfferingsUsernameRequest = {
15123
+ /**
15124
+ * UUID of the user
15125
+ */
14015
15126
  user_uuid: string;
15127
+ /**
15128
+ * Username for offering access
15129
+ */
14016
15130
  username: string;
14017
15131
  };
14018
15132
  export type SettingsMetadataResponse = {
@@ -14023,6 +15137,17 @@ export type SettingsMetadataResponse = {
14023
15137
  [key: string]: unknown;
14024
15138
  }>;
14025
15139
  };
15140
+ export type SeverityEnum = 'safe' | 'low' | 'medium' | 'high' | 'critical';
15141
+ export type SilenceActionRequest = {
15142
+ /**
15143
+ * Duration in days to silence the action. If not provided, silences permanently.
15144
+ */
15145
+ duration_days?: number;
15146
+ };
15147
+ export type SilenceActionResponse = {
15148
+ status: string;
15149
+ duration_days?: number | null;
15150
+ };
14026
15151
  export type SlurmAllocation = {
14027
15152
  readonly url?: string;
14028
15153
  readonly uuid?: string;
@@ -14278,6 +15403,9 @@ export type SoftwareCatalogRequest = {
14278
15403
  update_errors?: string;
14279
15404
  };
14280
15405
  export type SoftwareCatalogUuid = {
15406
+ /**
15407
+ * UUID of the software catalog
15408
+ */
14281
15409
  uuid: string;
14282
15410
  };
14283
15411
  export type SoftwarePackage = {
@@ -14434,7 +15562,13 @@ export type SubmitRequestResponse = {
14434
15562
  scope_uuid: string;
14435
15563
  };
14436
15564
  export type SubresourceOffering = {
15565
+ /**
15566
+ * UUID of the offering
15567
+ */
14437
15568
  readonly uuid: string;
15569
+ /**
15570
+ * Type of the offering
15571
+ */
14438
15572
  readonly type: string;
14439
15573
  };
14440
15574
  export type SupportStats = {
@@ -14455,9 +15589,21 @@ export type SupportedCountriesResponse = {
14455
15589
  };
14456
15590
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
14457
15591
  export type TableSize = {
15592
+ /**
15593
+ * Name of the database table
15594
+ */
14458
15595
  readonly table_name: string;
15596
+ /**
15597
+ * Total size of the table in bytes
15598
+ */
14459
15599
  readonly total_size: number;
15600
+ /**
15601
+ * Size of the actual data in bytes
15602
+ */
14460
15603
  readonly data_size: number;
15604
+ /**
15605
+ * Size of external data (e.g., TOAST) in bytes
15606
+ */
14461
15607
  readonly external_size: number;
14462
15608
  };
14463
15609
  export type Template = {
@@ -14502,27 +15648,68 @@ export type TenantSecurityGroupUpdateRequest = {
14502
15648
  rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
14503
15649
  };
14504
15650
  export type TimeSeriesToSData = {
15651
+ /**
15652
+ * Date of the data point
15653
+ */
14505
15654
  readonly date: string;
15655
+ /**
15656
+ * Count for the date
15657
+ */
14506
15658
  readonly count: number;
14507
15659
  };
14508
15660
  export type ToSConsentDashboard = {
15661
+ /**
15662
+ * Number of active users
15663
+ */
14509
15664
  readonly active_users_count: number;
15665
+ /**
15666
+ * Total number of users
15667
+ */
14510
15668
  readonly total_users_count: number;
15669
+ /**
15670
+ * Percentage of active users
15671
+ */
14511
15672
  readonly active_users_percentage: number;
15673
+ /**
15674
+ * Number of accepted consents
15675
+ */
14512
15676
  readonly accepted_consents_count: number;
15677
+ /**
15678
+ * Number of revoked consents
15679
+ */
14513
15680
  readonly revoked_consents_count: number;
15681
+ /**
15682
+ * Total number of consents
15683
+ */
14514
15684
  readonly total_consents_count: number;
14515
15685
  readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
14516
15686
  readonly tos_version_adoption: Array<VersionAdoption>;
14517
15687
  readonly active_users_over_time: Array<TimeSeriesToSData>;
14518
15688
  };
14519
15689
  export type TokenRequest = {
15690
+ /**
15691
+ * Authentication token for invitation acceptance
15692
+ */
14520
15693
  token: string;
14521
15694
  };
14522
15695
  export type TotalCustomerCost = {
14523
15696
  readonly total: number;
14524
15697
  readonly price: number;
14525
15698
  };
15699
+ export type UnsilenceActionResponse = {
15700
+ status: string;
15701
+ };
15702
+ export type UpdateActionsRequest = {
15703
+ /**
15704
+ * Optional provider action type to update. If not provided, updates all providers.
15705
+ */
15706
+ provider_action_type?: string | null;
15707
+ };
15708
+ export type UpdateActionsResponse = {
15709
+ status: string;
15710
+ message: string;
15711
+ provider_action_type?: string | null;
15712
+ };
14526
15713
  export type UpdateOfferingComponentRequest = {
14527
15714
  uuid: string;
14528
15715
  billing_type: BillingTypeEnum;
@@ -14556,6 +15743,7 @@ export type UpdateOfferingComponentRequest = {
14556
15743
  min_prepaid_duration?: number | null;
14557
15744
  max_prepaid_duration?: number | null;
14558
15745
  };
15746
+ export type UrgencyEnum = 'low' | 'medium' | 'high';
14559
15747
  export type User = {
14560
15748
  readonly url?: string;
14561
15749
  readonly uuid?: string;
@@ -14563,6 +15751,9 @@ export type User = {
14563
15751
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
14564
15752
  */
14565
15753
  username?: string;
15754
+ /**
15755
+ * URL-friendly identifier. Only editable by staff users.
15756
+ */
14566
15757
  slug?: string;
14567
15758
  readonly full_name?: string;
14568
15759
  native_name?: string;
@@ -14629,6 +15820,57 @@ export type User = {
14629
15820
  readonly has_active_session?: boolean;
14630
15821
  readonly ip_address?: string | null;
14631
15822
  };
15823
+ export type UserAction = {
15824
+ readonly uuid: string;
15825
+ /**
15826
+ * Type of action, e.g. 'pending_order', 'expiring_resource'
15827
+ */
15828
+ action_type: string;
15829
+ title: string;
15830
+ description: string;
15831
+ urgency: UrgencyEnum;
15832
+ due_date?: string | null;
15833
+ action_url?: string;
15834
+ metadata?: string;
15835
+ is_silenced?: boolean;
15836
+ silenced_until?: string | null;
15837
+ readonly is_temporarily_silenced: boolean;
15838
+ readonly is_effectively_silenced: boolean;
15839
+ readonly created: string;
15840
+ readonly modified: string;
15841
+ readonly related_object_name: string;
15842
+ readonly related_object_type: string;
15843
+ readonly corrective_actions: Array<CorrectiveAction>;
15844
+ readonly days_until_due: number | null;
15845
+ };
15846
+ export type UserActionExecution = {
15847
+ readonly id: number;
15848
+ corrective_action_label: string;
15849
+ readonly executed_at: string;
15850
+ success?: boolean;
15851
+ error_message?: string;
15852
+ execution_metadata?: string;
15853
+ };
15854
+ export type UserActionProvider = {
15855
+ readonly id: number;
15856
+ app_name: string;
15857
+ provider_class: string;
15858
+ action_type: string;
15859
+ is_enabled?: boolean;
15860
+ schedule?: string;
15861
+ readonly last_execution: string | null;
15862
+ readonly last_execution_status: string;
15863
+ };
15864
+ export type UserActionSummary = {
15865
+ total: number;
15866
+ by_urgency: {
15867
+ [key: string]: unknown;
15868
+ };
15869
+ by_type: {
15870
+ [key: string]: unknown;
15871
+ };
15872
+ overdue: number;
15873
+ };
14632
15874
  export type UserAgreement = {
14633
15875
  readonly url: string;
14634
15876
  readonly uuid: string;
@@ -14754,6 +15996,9 @@ export type UserRequest = {
14754
15996
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
14755
15997
  */
14756
15998
  username: string;
15999
+ /**
16000
+ * URL-friendly identifier. Only editable by staff users.
16001
+ */
14757
16002
  slug?: string;
14758
16003
  native_name?: string;
14759
16004
  job_title?: string;
@@ -14846,25 +16091,60 @@ export type Version = {
14846
16091
  latest_version?: string;
14847
16092
  };
14848
16093
  export type VersionAdoption = {
16094
+ /**
16095
+ * Version identifier
16096
+ */
14849
16097
  readonly version: string;
16098
+ /**
16099
+ * Number of users on this version
16100
+ */
14850
16101
  readonly users_count: number;
14851
16102
  };
14852
16103
  export type VisibilityEnum = 'private' | 'public';
14853
16104
  export type VisibleInvitationDetails = {
16105
+ /**
16106
+ * UUID of the invitation scope (Customer or Project)
16107
+ */
14854
16108
  readonly scope_uuid: string;
16109
+ /**
16110
+ * Name of the invitation scope
16111
+ */
14855
16112
  readonly scope_name: string;
14856
16113
  /**
14857
- * Get the description field from the scope if it exists.
14858
- * Returns empty string if scope doesn't have a description field.
16114
+ * Description of the invitation scope
14859
16115
  */
14860
16116
  readonly scope_description: string;
16117
+ /**
16118
+ * Type of the invitation scope (e.g., 'customer', 'project')
16119
+ */
14861
16120
  readonly scope_type: string | null;
16121
+ /**
16122
+ * UUID of the customer organization
16123
+ */
14862
16124
  readonly customer_uuid: string;
16125
+ /**
16126
+ * Name of the customer organization
16127
+ */
14863
16128
  readonly customer_name: string;
16129
+ /**
16130
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
16131
+ */
14864
16132
  readonly role_name: string;
16133
+ /**
16134
+ * Description of the role being granted
16135
+ */
14865
16136
  readonly role_description: string;
16137
+ /**
16138
+ * Full name of the user who created this invitation
16139
+ */
14866
16140
  readonly created_by_full_name: string;
16141
+ /**
16142
+ * Username of the user who created this invitation
16143
+ */
14867
16144
  readonly created_by_username: string;
16145
+ /**
16146
+ * Profile image of the user who created this invitation
16147
+ */
14868
16148
  readonly created_by_image: string;
14869
16149
  /**
14870
16150
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
@@ -14872,6 +16152,9 @@ export type VisibleInvitationDetails = {
14872
16152
  email: string;
14873
16153
  readonly error_message: string;
14874
16154
  execution_state: ExecutionStateEnum;
16155
+ /**
16156
+ * Current state of the invitation (e.g., 'pending', 'accepted', 'rejected')
16157
+ */
14875
16158
  state: InvitationState;
14876
16159
  };
14877
16160
  export type VmwareCluster = {
@@ -15452,12 +16735,18 @@ export type CustomerRequestForm = {
15452
16735
  * Maximum number of service accounts allowed
15453
16736
  */
15454
16737
  max_service_accounts?: number | null;
16738
+ /**
16739
+ * Checklist to be used for project metadata validation in this organization
16740
+ */
15455
16741
  project_metadata_checklist?: string | null;
15456
16742
  /**
15457
16743
  * Number of extra days after project end date before resources are terminated
15458
16744
  */
15459
16745
  grace_period_days?: number | null;
15460
16746
  name: string;
16747
+ /**
16748
+ * URL-friendly identifier. Only editable by staff users.
16749
+ */
15461
16750
  slug?: string;
15462
16751
  native_name?: string;
15463
16752
  abbreviation?: string;
@@ -15486,6 +16775,9 @@ export type CustomerRequestForm = {
15486
16775
  latitude?: number | null;
15487
16776
  longitude?: number | null;
15488
16777
  bank_account?: string;
16778
+ /**
16779
+ * Country code (ISO 3166-1 alpha-2)
16780
+ */
15489
16781
  country?: CountryEnum | BlankEnum;
15490
16782
  /**
15491
16783
  * Comma-separated list of notification email addresses
@@ -15514,12 +16806,18 @@ export type CustomerRequestMultipart = {
15514
16806
  * Maximum number of service accounts allowed
15515
16807
  */
15516
16808
  max_service_accounts?: number | null;
16809
+ /**
16810
+ * Checklist to be used for project metadata validation in this organization
16811
+ */
15517
16812
  project_metadata_checklist?: string | null;
15518
16813
  /**
15519
16814
  * Number of extra days after project end date before resources are terminated
15520
16815
  */
15521
16816
  grace_period_days?: number | null;
15522
16817
  name: string;
16818
+ /**
16819
+ * URL-friendly identifier. Only editable by staff users.
16820
+ */
15523
16821
  slug?: string;
15524
16822
  native_name?: string;
15525
16823
  abbreviation?: string;
@@ -15548,6 +16846,9 @@ export type CustomerRequestMultipart = {
15548
16846
  latitude?: number | null;
15549
16847
  longitude?: number | null;
15550
16848
  bank_account?: string;
16849
+ /**
16850
+ * Country code (ISO 3166-1 alpha-2)
16851
+ */
15551
16852
  country?: CountryEnum | BlankEnum;
15552
16853
  /**
15553
16854
  * Comma-separated list of notification email addresses
@@ -15576,12 +16877,18 @@ export type PatchedCustomerRequestForm = {
15576
16877
  * Maximum number of service accounts allowed
15577
16878
  */
15578
16879
  max_service_accounts?: number | null;
16880
+ /**
16881
+ * Checklist to be used for project metadata validation in this organization
16882
+ */
15579
16883
  project_metadata_checklist?: string | null;
15580
16884
  /**
15581
16885
  * Number of extra days after project end date before resources are terminated
15582
16886
  */
15583
16887
  grace_period_days?: number | null;
15584
16888
  name?: string;
16889
+ /**
16890
+ * URL-friendly identifier. Only editable by staff users.
16891
+ */
15585
16892
  slug?: string;
15586
16893
  native_name?: string;
15587
16894
  abbreviation?: string;
@@ -15610,6 +16917,9 @@ export type PatchedCustomerRequestForm = {
15610
16917
  latitude?: number | null;
15611
16918
  longitude?: number | null;
15612
16919
  bank_account?: string;
16920
+ /**
16921
+ * Country code (ISO 3166-1 alpha-2)
16922
+ */
15613
16923
  country?: CountryEnum | BlankEnum;
15614
16924
  /**
15615
16925
  * Comma-separated list of notification email addresses
@@ -15638,12 +16948,18 @@ export type PatchedCustomerRequestMultipart = {
15638
16948
  * Maximum number of service accounts allowed
15639
16949
  */
15640
16950
  max_service_accounts?: number | null;
16951
+ /**
16952
+ * Checklist to be used for project metadata validation in this organization
16953
+ */
15641
16954
  project_metadata_checklist?: string | null;
15642
16955
  /**
15643
16956
  * Number of extra days after project end date before resources are terminated
15644
16957
  */
15645
16958
  grace_period_days?: number | null;
15646
16959
  name?: string;
16960
+ /**
16961
+ * URL-friendly identifier. Only editable by staff users.
16962
+ */
15647
16963
  slug?: string;
15648
16964
  native_name?: string;
15649
16965
  abbreviation?: string;
@@ -15672,6 +16988,9 @@ export type PatchedCustomerRequestMultipart = {
15672
16988
  latitude?: number | null;
15673
16989
  longitude?: number | null;
15674
16990
  bank_account?: string;
16991
+ /**
16992
+ * Country code (ISO 3166-1 alpha-2)
16993
+ */
15675
16994
  country?: CountryEnum | BlankEnum;
15676
16995
  /**
15677
16996
  * Comma-separated list of notification email addresses
@@ -15820,6 +17139,9 @@ export type OrderAttachmentRequestMultipart = {
15820
17139
  };
15821
17140
  export type OfferingCreateRequestForm = {
15822
17141
  name: string;
17142
+ /**
17143
+ * URL-friendly identifier. Only editable by staff users.
17144
+ */
15823
17145
  slug?: string;
15824
17146
  description?: string;
15825
17147
  full_description?: string;
@@ -15851,6 +17173,9 @@ export type OfferingCreateRequestForm = {
15851
17173
  datacite_doi?: string;
15852
17174
  latitude?: number | null;
15853
17175
  longitude?: number | null;
17176
+ /**
17177
+ * Country code (ISO 3166-1 alpha-2)
17178
+ */
15854
17179
  country?: CountryEnum | BlankEnum;
15855
17180
  backend_id?: string;
15856
17181
  image?: (Blob | File) | null;
@@ -15862,6 +17187,9 @@ export type OfferingCreateRequestForm = {
15862
17187
  };
15863
17188
  export type OfferingCreateRequestMultipart = {
15864
17189
  name: string;
17190
+ /**
17191
+ * URL-friendly identifier. Only editable by staff users.
17192
+ */
15865
17193
  slug?: string;
15866
17194
  description?: string;
15867
17195
  full_description?: string;
@@ -15893,6 +17221,9 @@ export type OfferingCreateRequestMultipart = {
15893
17221
  datacite_doi?: string;
15894
17222
  latitude?: number | null;
15895
17223
  longitude?: number | null;
17224
+ /**
17225
+ * Country code (ISO 3166-1 alpha-2)
17226
+ */
15896
17227
  country?: CountryEnum | BlankEnum;
15897
17228
  backend_id?: string;
15898
17229
  image?: (Blob | File) | null;
@@ -16002,18 +17333,30 @@ export type OnboardingJustificationDocumentationRequestMultipart = {
16002
17333
  };
16003
17334
  export type ProjectRequestForm = {
16004
17335
  name: string;
17336
+ /**
17337
+ * URL-friendly identifier. Only editable by staff users.
17338
+ */
16005
17339
  slug?: string;
16006
17340
  /**
16007
17341
  * Organization
16008
17342
  */
16009
17343
  customer: string;
17344
+ /**
17345
+ * Project description (HTML content will be sanitized)
17346
+ */
16010
17347
  description?: string;
16011
17348
  /**
16012
17349
  * Project type
16013
17350
  */
16014
17351
  type?: string | null;
16015
17352
  backend_id?: string;
17353
+ /**
17354
+ * Project start date. Cannot be edited after the start date has arrived.
17355
+ */
16016
17356
  start_date?: string | null;
17357
+ /**
17358
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17359
+ */
16017
17360
  end_date?: string | null;
16018
17361
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16019
17362
  is_industry?: boolean;
@@ -16022,6 +17365,9 @@ export type ProjectRequestForm = {
16022
17365
  * Project type
16023
17366
  */
16024
17367
  kind?: KindEnum;
17368
+ /**
17369
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17370
+ */
16025
17371
  staff_notes?: string;
16026
17372
  /**
16027
17373
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16030,18 +17376,30 @@ export type ProjectRequestForm = {
16030
17376
  };
16031
17377
  export type ProjectRequestMultipart = {
16032
17378
  name: string;
17379
+ /**
17380
+ * URL-friendly identifier. Only editable by staff users.
17381
+ */
16033
17382
  slug?: string;
16034
17383
  /**
16035
17384
  * Organization
16036
17385
  */
16037
17386
  customer: string;
17387
+ /**
17388
+ * Project description (HTML content will be sanitized)
17389
+ */
16038
17390
  description?: string;
16039
17391
  /**
16040
17392
  * Project type
16041
17393
  */
16042
17394
  type?: string | null;
16043
17395
  backend_id?: string;
17396
+ /**
17397
+ * Project start date. Cannot be edited after the start date has arrived.
17398
+ */
16044
17399
  start_date?: string | null;
17400
+ /**
17401
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17402
+ */
16045
17403
  end_date?: string | null;
16046
17404
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16047
17405
  is_industry?: boolean;
@@ -16050,6 +17408,9 @@ export type ProjectRequestMultipart = {
16050
17408
  * Project type
16051
17409
  */
16052
17410
  kind?: KindEnum;
17411
+ /**
17412
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17413
+ */
16053
17414
  staff_notes?: string;
16054
17415
  /**
16055
17416
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16058,18 +17419,30 @@ export type ProjectRequestMultipart = {
16058
17419
  };
16059
17420
  export type PatchedProjectRequestForm = {
16060
17421
  name?: string;
17422
+ /**
17423
+ * URL-friendly identifier. Only editable by staff users.
17424
+ */
16061
17425
  slug?: string;
16062
17426
  /**
16063
17427
  * Organization
16064
17428
  */
16065
17429
  customer?: string;
17430
+ /**
17431
+ * Project description (HTML content will be sanitized)
17432
+ */
16066
17433
  description?: string;
16067
17434
  /**
16068
17435
  * Project type
16069
17436
  */
16070
17437
  type?: string | null;
16071
17438
  backend_id?: string;
17439
+ /**
17440
+ * Project start date. Cannot be edited after the start date has arrived.
17441
+ */
16072
17442
  start_date?: string | null;
17443
+ /**
17444
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17445
+ */
16073
17446
  end_date?: string | null;
16074
17447
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16075
17448
  is_industry?: boolean;
@@ -16078,6 +17451,9 @@ export type PatchedProjectRequestForm = {
16078
17451
  * Project type
16079
17452
  */
16080
17453
  kind?: KindEnum;
17454
+ /**
17455
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17456
+ */
16081
17457
  staff_notes?: string;
16082
17458
  /**
16083
17459
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16086,18 +17462,30 @@ export type PatchedProjectRequestForm = {
16086
17462
  };
16087
17463
  export type PatchedProjectRequestMultipart = {
16088
17464
  name?: string;
17465
+ /**
17466
+ * URL-friendly identifier. Only editable by staff users.
17467
+ */
16089
17468
  slug?: string;
16090
17469
  /**
16091
17470
  * Organization
16092
17471
  */
16093
17472
  customer?: string;
17473
+ /**
17474
+ * Project description (HTML content will be sanitized)
17475
+ */
16094
17476
  description?: string;
16095
17477
  /**
16096
17478
  * Project type
16097
17479
  */
16098
17480
  type?: string | null;
16099
17481
  backend_id?: string;
17482
+ /**
17483
+ * Project start date. Cannot be edited after the start date has arrived.
17484
+ */
16100
17485
  start_date?: string | null;
17486
+ /**
17487
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17488
+ */
16101
17489
  end_date?: string | null;
16102
17490
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16103
17491
  is_industry?: boolean;
@@ -16106,6 +17494,9 @@ export type PatchedProjectRequestMultipart = {
16106
17494
  * Project type
16107
17495
  */
16108
17496
  kind?: KindEnum;
17497
+ /**
17498
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17499
+ */
16109
17500
  staff_notes?: string;
16110
17501
  /**
16111
17502
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16525,6 +17916,9 @@ export type UserRequestForm = {
16525
17916
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16526
17917
  */
16527
17918
  username: string;
17919
+ /**
17920
+ * URL-friendly identifier. Only editable by staff users.
17921
+ */
16528
17922
  slug?: string;
16529
17923
  native_name?: string;
16530
17924
  job_title?: string;
@@ -16570,6 +17964,9 @@ export type UserRequestMultipart = {
16570
17964
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16571
17965
  */
16572
17966
  username: string;
17967
+ /**
17968
+ * URL-friendly identifier. Only editable by staff users.
17969
+ */
16573
17970
  slug?: string;
16574
17971
  native_name?: string;
16575
17972
  job_title?: string;
@@ -16615,6 +18012,9 @@ export type PatchedUserRequestForm = {
16615
18012
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16616
18013
  */
16617
18014
  username?: string;
18015
+ /**
18016
+ * URL-friendly identifier. Only editable by staff users.
18017
+ */
16618
18018
  slug?: string;
16619
18019
  native_name?: string;
16620
18020
  job_title?: string;
@@ -16659,6 +18059,9 @@ export type PatchedUserRequestMultipart = {
16659
18059
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16660
18060
  */
16661
18061
  username?: string;
18062
+ /**
18063
+ * URL-friendly identifier. Only editable by staff users.
18064
+ */
16662
18065
  slug?: string;
16663
18066
  native_name?: string;
16664
18067
  job_title?: string;
@@ -20056,7 +21459,7 @@ export type BookingResourcesListData = {
20056
21459
  * Exclude transitional resources with early pending orders
20057
21460
  */
20058
21461
  exclude_pending_transitional?: boolean;
20059
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21462
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
20060
21463
  /**
20061
21464
  * Has termination date
20062
21465
  */
@@ -20372,7 +21775,7 @@ export type BookingResourcesRetrieveData = {
20372
21775
  uuid: string;
20373
21776
  };
20374
21777
  query?: {
20375
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21778
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
20376
21779
  };
20377
21780
  url: '/api/booking-resources/{uuid}/';
20378
21781
  };
@@ -26326,7 +27729,7 @@ export type ManagedRancherClusterResourcesListData = {
26326
27729
  body?: never;
26327
27730
  path?: never;
26328
27731
  query?: {
26329
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27732
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
26330
27733
  /**
26331
27734
  * A page number within the paginated result set.
26332
27735
  */
@@ -26369,7 +27772,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
26369
27772
  uuid: string;
26370
27773
  };
26371
27774
  query?: {
26372
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27775
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
26373
27776
  };
26374
27777
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
26375
27778
  };
@@ -33359,7 +34762,7 @@ export type MarketplaceProviderOfferingsImportOfferingData = {
33359
34762
  url: '/api/marketplace-provider-offerings/import_offering/';
33360
34763
  };
33361
34764
  export type MarketplaceProviderOfferingsImportOfferingResponses = {
33362
- 200: OfferingImportResponse;
34765
+ 200: OfferingImportParameters;
33363
34766
  };
33364
34767
  export type MarketplaceProviderOfferingsImportOfferingResponse = MarketplaceProviderOfferingsImportOfferingResponses[keyof MarketplaceProviderOfferingsImportOfferingResponses];
33365
34768
  export type MarketplaceProviderResourcesListData = {
@@ -33398,7 +34801,7 @@ export type MarketplaceProviderResourcesListData = {
33398
34801
  * Exclude transitional resources with early pending orders
33399
34802
  */
33400
34803
  exclude_pending_transitional?: boolean;
33401
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34804
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
33402
34805
  /**
33403
34806
  * Has termination date
33404
34807
  */
@@ -33713,7 +35116,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
33713
35116
  uuid: string;
33714
35117
  };
33715
35118
  query?: {
33716
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
35119
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
33717
35120
  };
33718
35121
  url: '/api/marketplace-provider-resources/{uuid}/';
33719
35122
  };
@@ -34779,7 +36182,7 @@ export type MarketplaceResourcesListData = {
34779
36182
  * Exclude transitional resources with early pending orders
34780
36183
  */
34781
36184
  exclude_pending_transitional?: boolean;
34782
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
36185
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34783
36186
  /**
34784
36187
  * Has termination date
34785
36188
  */
@@ -35094,7 +36497,7 @@ export type MarketplaceResourcesRetrieveData = {
35094
36497
  uuid: string;
35095
36498
  };
35096
36499
  query?: {
35097
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
36500
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
35098
36501
  };
35099
36502
  url: '/api/marketplace-resources/{uuid}/';
35100
36503
  };
@@ -46503,31 +47906,6 @@ export type OpenstackTenantsCountResponses = {
46503
47906
  */
46504
47907
  200: unknown;
46505
47908
  };
46506
- export type OpenstackTenantsCreateData = {
46507
- body: OpenStackTenantRequest;
46508
- path?: never;
46509
- query?: never;
46510
- url: '/api/openstack-tenants/';
46511
- };
46512
- export type OpenstackTenantsCreateResponses = {
46513
- 201: OpenStackTenant;
46514
- };
46515
- export type OpenstackTenantsCreateResponse = OpenstackTenantsCreateResponses[keyof OpenstackTenantsCreateResponses];
46516
- export type OpenstackTenantsDestroyData = {
46517
- body?: never;
46518
- path: {
46519
- uuid: string;
46520
- };
46521
- query?: never;
46522
- url: '/api/openstack-tenants/{uuid}/';
46523
- };
46524
- export type OpenstackTenantsDestroyResponses = {
46525
- /**
46526
- * No response body
46527
- */
46528
- 204: void;
46529
- };
46530
- export type OpenstackTenantsDestroyResponse = OpenstackTenantsDestroyResponses[keyof OpenstackTenantsDestroyResponses];
46531
47909
  export type OpenstackTenantsRetrieveData = {
46532
47910
  body?: never;
46533
47911
  path: {
@@ -49093,7 +50471,7 @@ export type PromotionsCampaignsResourcesListData = {
49093
50471
  uuid: string;
49094
50472
  };
49095
50473
  query?: {
49096
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
50474
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
49097
50475
  /**
49098
50476
  * A page number within the paginated result set.
49099
50477
  */
@@ -55707,6 +57085,295 @@ export type SyncIssuesResponses = {
55707
57085
  */
55708
57086
  202: unknown;
55709
57087
  };
57088
+ export type UserActionExecutionsListData = {
57089
+ body?: never;
57090
+ path?: never;
57091
+ query?: {
57092
+ /**
57093
+ * Which field to use when ordering the results.
57094
+ */
57095
+ o?: string;
57096
+ /**
57097
+ * A page number within the paginated result set.
57098
+ */
57099
+ page?: number;
57100
+ /**
57101
+ * Number of results to return per page.
57102
+ */
57103
+ page_size?: number;
57104
+ };
57105
+ url: '/api/user-action-executions/';
57106
+ };
57107
+ export type UserActionExecutionsListResponses = {
57108
+ 200: Array<UserActionExecution>;
57109
+ };
57110
+ export type UserActionExecutionsListResponse = UserActionExecutionsListResponses[keyof UserActionExecutionsListResponses];
57111
+ export type UserActionExecutionsCountData = {
57112
+ body?: never;
57113
+ path?: never;
57114
+ query?: {
57115
+ /**
57116
+ * Which field to use when ordering the results.
57117
+ */
57118
+ o?: string;
57119
+ /**
57120
+ * A page number within the paginated result set.
57121
+ */
57122
+ page?: number;
57123
+ /**
57124
+ * Number of results to return per page.
57125
+ */
57126
+ page_size?: number;
57127
+ };
57128
+ url: '/api/user-action-executions/';
57129
+ };
57130
+ export type UserActionExecutionsCountResponses = {
57131
+ /**
57132
+ * No response body
57133
+ */
57134
+ 200: unknown;
57135
+ };
57136
+ export type UserActionExecutionsRetrieveData = {
57137
+ body?: never;
57138
+ path: {
57139
+ /**
57140
+ * A unique integer value identifying this user action execution.
57141
+ */
57142
+ id: number;
57143
+ };
57144
+ query?: never;
57145
+ url: '/api/user-action-executions/{id}/';
57146
+ };
57147
+ export type UserActionExecutionsRetrieveResponses = {
57148
+ 200: UserActionExecution;
57149
+ };
57150
+ export type UserActionExecutionsRetrieveResponse = UserActionExecutionsRetrieveResponses[keyof UserActionExecutionsRetrieveResponses];
57151
+ export type UserActionProvidersListData = {
57152
+ body?: never;
57153
+ path?: never;
57154
+ query?: {
57155
+ /**
57156
+ * A page number within the paginated result set.
57157
+ */
57158
+ page?: number;
57159
+ /**
57160
+ * Number of results to return per page.
57161
+ */
57162
+ page_size?: number;
57163
+ };
57164
+ url: '/api/user-action-providers/';
57165
+ };
57166
+ export type UserActionProvidersListResponses = {
57167
+ 200: Array<UserActionProvider>;
57168
+ };
57169
+ export type UserActionProvidersListResponse = UserActionProvidersListResponses[keyof UserActionProvidersListResponses];
57170
+ export type UserActionProvidersCountData = {
57171
+ body?: never;
57172
+ path?: never;
57173
+ query?: {
57174
+ /**
57175
+ * A page number within the paginated result set.
57176
+ */
57177
+ page?: number;
57178
+ /**
57179
+ * Number of results to return per page.
57180
+ */
57181
+ page_size?: number;
57182
+ };
57183
+ url: '/api/user-action-providers/';
57184
+ };
57185
+ export type UserActionProvidersCountResponses = {
57186
+ /**
57187
+ * No response body
57188
+ */
57189
+ 200: unknown;
57190
+ };
57191
+ export type UserActionProvidersRetrieveData = {
57192
+ body?: never;
57193
+ path: {
57194
+ /**
57195
+ * A unique integer value identifying this user action provider.
57196
+ */
57197
+ id: number;
57198
+ };
57199
+ query?: never;
57200
+ url: '/api/user-action-providers/{id}/';
57201
+ };
57202
+ export type UserActionProvidersRetrieveResponses = {
57203
+ 200: UserActionProvider;
57204
+ };
57205
+ export type UserActionProvidersRetrieveResponse = UserActionProvidersRetrieveResponses[keyof UserActionProvidersRetrieveResponses];
57206
+ export type UserActionsListData = {
57207
+ body?: never;
57208
+ path?: never;
57209
+ query?: {
57210
+ action_type?: string;
57211
+ created_after?: string;
57212
+ created_before?: string;
57213
+ due_within_days?: number;
57214
+ include_silenced?: boolean;
57215
+ is_silenced?: boolean;
57216
+ /**
57217
+ * Which field to use when ordering the results.
57218
+ */
57219
+ o?: string;
57220
+ overdue?: boolean;
57221
+ /**
57222
+ * A page number within the paginated result set.
57223
+ */
57224
+ page?: number;
57225
+ /**
57226
+ * Number of results to return per page.
57227
+ */
57228
+ page_size?: number;
57229
+ urgency?: 'high' | 'low' | 'medium';
57230
+ };
57231
+ url: '/api/user-actions/';
57232
+ };
57233
+ export type UserActionsListResponses = {
57234
+ 200: Array<UserAction>;
57235
+ };
57236
+ export type UserActionsListResponse = UserActionsListResponses[keyof UserActionsListResponses];
57237
+ export type UserActionsCountData = {
57238
+ body?: never;
57239
+ path?: never;
57240
+ query?: {
57241
+ action_type?: string;
57242
+ created_after?: string;
57243
+ created_before?: string;
57244
+ due_within_days?: number;
57245
+ include_silenced?: boolean;
57246
+ is_silenced?: boolean;
57247
+ /**
57248
+ * Which field to use when ordering the results.
57249
+ */
57250
+ o?: string;
57251
+ overdue?: boolean;
57252
+ /**
57253
+ * A page number within the paginated result set.
57254
+ */
57255
+ page?: number;
57256
+ /**
57257
+ * Number of results to return per page.
57258
+ */
57259
+ page_size?: number;
57260
+ urgency?: 'high' | 'low' | 'medium';
57261
+ };
57262
+ url: '/api/user-actions/';
57263
+ };
57264
+ export type UserActionsCountResponses = {
57265
+ /**
57266
+ * No response body
57267
+ */
57268
+ 200: unknown;
57269
+ };
57270
+ export type UserActionsRetrieveData = {
57271
+ body?: never;
57272
+ path: {
57273
+ /**
57274
+ * A unique integer value identifying this user action.
57275
+ */
57276
+ id: number;
57277
+ };
57278
+ query?: never;
57279
+ url: '/api/user-actions/{id}/';
57280
+ };
57281
+ export type UserActionsRetrieveResponses = {
57282
+ 200: UserAction;
57283
+ };
57284
+ export type UserActionsRetrieveResponse = UserActionsRetrieveResponses[keyof UserActionsRetrieveResponses];
57285
+ export type UserActionsExecuteActionData = {
57286
+ body: ExecuteActionRequest;
57287
+ path: {
57288
+ /**
57289
+ * A unique integer value identifying this user action.
57290
+ */
57291
+ id: number;
57292
+ };
57293
+ query?: never;
57294
+ url: '/api/user-actions/{id}/execute_action/';
57295
+ };
57296
+ export type UserActionsExecuteActionErrors = {
57297
+ 404: ExecuteActionErrorResponse;
57298
+ 500: ExecuteActionErrorResponse;
57299
+ };
57300
+ export type UserActionsExecuteActionError = UserActionsExecuteActionErrors[keyof UserActionsExecuteActionErrors];
57301
+ export type UserActionsExecuteActionResponses = {
57302
+ 200: ExecuteActionResponse;
57303
+ };
57304
+ export type UserActionsExecuteActionResponse = UserActionsExecuteActionResponses[keyof UserActionsExecuteActionResponses];
57305
+ export type UserActionsSilenceData = {
57306
+ body?: SilenceActionRequest;
57307
+ path: {
57308
+ /**
57309
+ * A unique integer value identifying this user action.
57310
+ */
57311
+ id: number;
57312
+ };
57313
+ query?: never;
57314
+ url: '/api/user-actions/{id}/silence/';
57315
+ };
57316
+ export type UserActionsSilenceResponses = {
57317
+ 200: SilenceActionResponse;
57318
+ };
57319
+ export type UserActionsSilenceResponse = UserActionsSilenceResponses[keyof UserActionsSilenceResponses];
57320
+ export type UserActionsUnsilenceData = {
57321
+ body?: never;
57322
+ path: {
57323
+ /**
57324
+ * A unique integer value identifying this user action.
57325
+ */
57326
+ id: number;
57327
+ };
57328
+ query?: never;
57329
+ url: '/api/user-actions/{id}/unsilence/';
57330
+ };
57331
+ export type UserActionsUnsilenceResponses = {
57332
+ 200: UnsilenceActionResponse;
57333
+ };
57334
+ export type UserActionsUnsilenceResponse = UserActionsUnsilenceResponses[keyof UserActionsUnsilenceResponses];
57335
+ export type UserActionsBulkSilenceData = {
57336
+ body?: SilenceActionRequest;
57337
+ path?: never;
57338
+ query?: never;
57339
+ url: '/api/user-actions/bulk_silence/';
57340
+ };
57341
+ export type UserActionsBulkSilenceResponses = {
57342
+ 200: BulkSilenceResponse;
57343
+ };
57344
+ export type UserActionsBulkSilenceResponse = UserActionsBulkSilenceResponses[keyof UserActionsBulkSilenceResponses];
57345
+ export type UserActionsSummaryRetrieveData = {
57346
+ body?: never;
57347
+ path?: never;
57348
+ query?: never;
57349
+ url: '/api/user-actions/summary/';
57350
+ };
57351
+ export type UserActionsSummaryRetrieveResponses = {
57352
+ 200: UserActionSummary;
57353
+ };
57354
+ export type UserActionsSummaryRetrieveResponse = UserActionsSummaryRetrieveResponses[keyof UserActionsSummaryRetrieveResponses];
57355
+ export type UserActionsSummaryCountData = {
57356
+ body?: never;
57357
+ path?: never;
57358
+ query?: never;
57359
+ url: '/api/user-actions/summary/';
57360
+ };
57361
+ export type UserActionsSummaryCountResponses = {
57362
+ /**
57363
+ * No response body
57364
+ */
57365
+ 200: unknown;
57366
+ };
57367
+ export type UserActionsUpdateActionsData = {
57368
+ body?: UpdateActionsRequest;
57369
+ path?: never;
57370
+ query?: never;
57371
+ url: '/api/user-actions/update_actions/';
57372
+ };
57373
+ export type UserActionsUpdateActionsResponses = {
57374
+ 202: UpdateActionsResponse;
57375
+ };
57376
+ export type UserActionsUpdateActionsResponse = UserActionsUpdateActionsResponses[keyof UserActionsUpdateActionsResponses];
55710
57377
  export type UserAgreementsListData = {
55711
57378
  body?: never;
55712
57379
  path?: never;