waldur-js-client 7.9.3-dev.1 → 7.9.3-dev.10

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 = {
@@ -6317,17 +7045,19 @@ 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
7051
  offering_data: OfferingExportDataRequest;
6328
7052
  };
6329
7053
  export type OfferingImportResponse = {
7054
+ /**
7055
+ * UUID of the imported offering
7056
+ */
6330
7057
  imported_offering_uuid: string;
7058
+ /**
7059
+ * Name of the imported offering
7060
+ */
6331
7061
  imported_offering_name: string;
6332
7062
  /**
6333
7063
  * List of imported component types
@@ -6337,6 +7067,9 @@ export type OfferingImportResponse = {
6337
7067
  * List of warnings encountered during import
6338
7068
  */
6339
7069
  warnings?: Array<string>;
7070
+ /**
7071
+ * Timestamp when the import was completed
7072
+ */
6340
7073
  import_timestamp: string;
6341
7074
  };
6342
7075
  export type OfferingIntegrationUpdateRequest = {
@@ -6375,6 +7108,9 @@ export type OfferingOverviewUpdateRequest = {
6375
7108
  access_url?: string;
6376
7109
  getting_started?: string;
6377
7110
  integration_guide?: string;
7111
+ /**
7112
+ * URL-friendly identifier. Only editable by staff users.
7113
+ */
6378
7114
  slug?: string;
6379
7115
  };
6380
7116
  export type OfferingPartition = {
@@ -6579,7 +7315,13 @@ export type OfferingPermission = {
6579
7315
  readonly user_email: string;
6580
7316
  };
6581
7317
  export type OfferingReference = {
7318
+ /**
7319
+ * Name of the offering
7320
+ */
6582
7321
  readonly offering_name: string;
7322
+ /**
7323
+ * UUID of the offering
7324
+ */
6583
7325
  readonly offering_uuid: string;
6584
7326
  };
6585
7327
  export type OfferingReferral = {
@@ -6634,16 +7376,43 @@ export type OfferingSoftwareCatalogRequest = {
6634
7376
  };
6635
7377
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
6636
7378
  export type OfferingStats = {
7379
+ /**
7380
+ * Number of resources for the offering
7381
+ */
6637
7382
  count: number;
7383
+ /**
7384
+ * Name of the offering
7385
+ */
6638
7386
  name: string;
7387
+ /**
7388
+ * UUID of the offering
7389
+ */
6639
7390
  uuid: string;
7391
+ /**
7392
+ * Country of the offering
7393
+ */
6640
7394
  country: string;
6641
7395
  };
6642
7396
  export type OfferingStatsCounter = {
7397
+ /**
7398
+ * UUID of the category
7399
+ */
6643
7400
  category_uuid: string;
7401
+ /**
7402
+ * Title of the category
7403
+ */
6644
7404
  category_title: string;
7405
+ /**
7406
+ * Name of the service provider
7407
+ */
6645
7408
  service_provider_name: string;
7409
+ /**
7410
+ * UUID of the service provider
7411
+ */
6646
7412
  service_provider_uuid: string;
7413
+ /**
7414
+ * Number of offerings
7415
+ */
6647
7416
  count: number;
6648
7417
  };
6649
7418
  export type OfferingTermsOfService = {
@@ -6824,10 +7593,19 @@ export type OfferingUserServiceProviderComment = {
6824
7593
  };
6825
7594
  export type OfferingUserState = 'Requested' | 'Creating' | 'Pending account linking' | 'Pending additional validation' | 'OK' | 'Requested deletion' | 'Deleting' | 'Deleted' | 'Error creating' | 'Error deleting';
6826
7595
  export type OfferingUserStateTransitionRequest = {
7596
+ /**
7597
+ * Comment explaining the state transition
7598
+ */
6827
7599
  comment?: string;
7600
+ /**
7601
+ * URL reference related to the state transition comment
7602
+ */
6828
7603
  comment_url?: string;
6829
7604
  };
6830
7605
  export type OfferingUserUpdateRestrictionRequest = {
7606
+ /**
7607
+ * Whether the offering user should be restricted from accessing resources
7608
+ */
6831
7609
  is_restricted: boolean;
6832
7610
  };
6833
7611
  export type OnboardingCompanyValidationRequestRequest = {
@@ -7055,6 +7833,14 @@ export type OnboardingVerification = {
7055
7833
  readonly user_submitted_customer_data: {
7056
7834
  [key: string]: unknown;
7057
7835
  };
7836
+ /**
7837
+ * Boolean indicating if a customer can be created from this verification
7838
+ */
7839
+ readonly can_customer_be_created: boolean;
7840
+ /**
7841
+ * Reason why customer cannot be created (null if can be created)
7842
+ */
7843
+ readonly customer_creation_error_message: string | null;
7058
7844
  readonly created: string;
7059
7845
  readonly modified: string;
7060
7846
  };
@@ -8553,21 +9339,10 @@ export type OpenStackTenantQuotaRequest = {
8553
9339
  export type OpenStackTenantRequest = {
8554
9340
  name: string;
8555
9341
  description?: string;
8556
- service_settings: string;
8557
- project: string;
8558
9342
  /**
8559
9343
  * Optional availability group. Will be used for all instances provisioned in this tenant
8560
9344
  */
8561
9345
  availability_zone?: string;
8562
- /**
8563
- * Username of the tenant user
8564
- */
8565
- user_username?: string;
8566
- /**
8567
- * Password of the tenant user
8568
- */
8569
- user_password?: string;
8570
- subnet_cidr?: string;
8571
9346
  /**
8572
9347
  * Volume type name to use when creating volumes.
8573
9348
  */
@@ -8716,6 +9491,7 @@ export type OptionField = {
8716
9491
  max?: number;
8717
9492
  cascade_config?: CascadeConfig;
8718
9493
  component_multiplier_config?: ComponentMultiplierConfig;
9494
+ default_configs?: K8sDefaultConfiguration;
8719
9495
  };
8720
9496
  export type OptionFieldRequest = {
8721
9497
  type: OptionFieldTypeEnum;
@@ -8728,8 +9504,9 @@ export type OptionFieldRequest = {
8728
9504
  max?: number;
8729
9505
  cascade_config?: CascadeConfigRequest;
8730
9506
  component_multiplier_config?: ComponentMultiplierConfigRequest;
9507
+ default_configs?: K8sDefaultConfigurationRequest;
8731
9508
  };
8732
- 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';
9509
+ 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';
8733
9510
  export type OrderAttachment = {
8734
9511
  attachment?: string | null;
8735
9512
  };
@@ -8757,6 +9534,9 @@ export type OrderCreateRequest = {
8757
9534
  * Enables delayed processing of resource provisioning order.
8758
9535
  */
8759
9536
  start_date?: string | null;
9537
+ /**
9538
+ * URL-friendly identifier. Only editable by staff users.
9539
+ */
8760
9540
  slug?: string;
8761
9541
  project: string;
8762
9542
  };
@@ -8874,15 +9654,27 @@ export type OrderSetStateErredRequest = {
8874
9654
  };
8875
9655
  export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
8876
9656
  export type OrderUuid = {
9657
+ /**
9658
+ * UUID of the created or updated order
9659
+ */
8877
9660
  readonly order_uuid: string;
8878
9661
  };
8879
9662
  export type OrganizationGroup = {
8880
9663
  readonly uuid?: string;
8881
9664
  readonly url?: string;
8882
9665
  name?: string;
9666
+ /**
9667
+ * UUID of the parent organization group
9668
+ */
8883
9669
  readonly parent_uuid?: string;
9670
+ /**
9671
+ * Name of the parent organization group
9672
+ */
8884
9673
  readonly parent_name?: string;
8885
9674
  parent?: string | null;
9675
+ /**
9676
+ * Number of customers in this organization group
9677
+ */
8886
9678
  readonly customers_count?: number;
8887
9679
  };
8888
9680
  export type OrganizationGroupRequest = {
@@ -9086,12 +9878,18 @@ export type PatchedCustomerRequest = {
9086
9878
  * Maximum number of service accounts allowed
9087
9879
  */
9088
9880
  max_service_accounts?: number | null;
9881
+ /**
9882
+ * Checklist to be used for project metadata validation in this organization
9883
+ */
9089
9884
  project_metadata_checklist?: string | null;
9090
9885
  /**
9091
9886
  * Number of extra days after project end date before resources are terminated
9092
9887
  */
9093
9888
  grace_period_days?: number | null;
9094
9889
  name?: string;
9890
+ /**
9891
+ * URL-friendly identifier. Only editable by staff users.
9892
+ */
9095
9893
  slug?: string;
9096
9894
  native_name?: string;
9097
9895
  abbreviation?: string;
@@ -9120,6 +9918,9 @@ export type PatchedCustomerRequest = {
9120
9918
  latitude?: number | null;
9121
9919
  longitude?: number | null;
9122
9920
  bank_account?: string;
9921
+ /**
9922
+ * Country code (ISO 3166-1 alpha-2)
9923
+ */
9123
9924
  country?: CountryEnum | BlankEnum;
9124
9925
  /**
9125
9926
  * Comma-separated list of notification email addresses
@@ -9208,6 +10009,9 @@ export type PatchedInvitationUpdateRequest = {
9208
10009
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
9209
10010
  */
9210
10011
  email?: string;
10012
+ /**
10013
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
10014
+ */
9211
10015
  role?: string;
9212
10016
  };
9213
10017
  export type PatchedInvoiceItemUpdateRequest = {
@@ -9708,18 +10512,30 @@ export type PatchedProjectInfoRequest = {
9708
10512
  };
9709
10513
  export type PatchedProjectRequest = {
9710
10514
  name?: string;
10515
+ /**
10516
+ * URL-friendly identifier. Only editable by staff users.
10517
+ */
9711
10518
  slug?: string;
9712
10519
  /**
9713
10520
  * Organization
9714
10521
  */
9715
10522
  customer?: string;
10523
+ /**
10524
+ * Project description (HTML content will be sanitized)
10525
+ */
9716
10526
  description?: string;
9717
10527
  /**
9718
10528
  * Project type
9719
10529
  */
9720
10530
  type?: string | null;
9721
10531
  backend_id?: string;
10532
+ /**
10533
+ * Project start date. Cannot be edited after the start date has arrived.
10534
+ */
9722
10535
  start_date?: string | null;
10536
+ /**
10537
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
10538
+ */
9723
10539
  end_date?: string | null;
9724
10540
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
9725
10541
  is_industry?: boolean;
@@ -9728,6 +10544,9 @@ export type PatchedProjectRequest = {
9728
10544
  * Project type
9729
10545
  */
9730
10546
  kind?: KindEnum;
10547
+ /**
10548
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
10549
+ */
9731
10550
  staff_notes?: string;
9732
10551
  /**
9733
10552
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -9795,6 +10614,9 @@ export type PatchedProposalReviewRequest = {
9795
10614
  comment_team?: string | null;
9796
10615
  };
9797
10616
  export type PatchedProtectedCallRequest = {
10617
+ /**
10618
+ * URL-friendly identifier. Only editable by staff users.
10619
+ */
9798
10620
  slug?: string;
9799
10621
  name?: string;
9800
10622
  description?: string;
@@ -10276,6 +11098,9 @@ export type PatchedUserRequest = {
10276
11098
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
10277
11099
  */
10278
11100
  username?: string;
11101
+ /**
11102
+ * URL-friendly identifier. Only editable by staff users.
11103
+ */
10279
11104
  slug?: string;
10280
11105
  native_name?: string;
10281
11106
  job_title?: string;
@@ -10493,10 +11318,25 @@ export type PlanComponent = {
10493
11318
  discount_rate?: number | null;
10494
11319
  };
10495
11320
  export type PlanUsageResponse = {
11321
+ /**
11322
+ * UUID of the plan
11323
+ */
10496
11324
  readonly plan_uuid: string;
11325
+ /**
11326
+ * Name of the plan
11327
+ */
10497
11328
  readonly plan_name: string;
11329
+ /**
11330
+ * Usage limit
11331
+ */
10498
11332
  readonly limit: number;
11333
+ /**
11334
+ * Current usage count
11335
+ */
10499
11336
  readonly usage: number;
11337
+ /**
11338
+ * Remaining usage
11339
+ */
10500
11340
  readonly remaining: number;
10501
11341
  readonly offering_uuid: string;
10502
11342
  readonly offering_name: string;
@@ -10504,9 +11344,21 @@ export type PlanUsageResponse = {
10504
11344
  readonly customer_provider_name: string;
10505
11345
  };
10506
11346
  export type PluginComponent = {
11347
+ /**
11348
+ * Type identifier of the component
11349
+ */
10507
11350
  type: string;
11351
+ /**
11352
+ * Display name of the component
11353
+ */
10508
11354
  name: string;
11355
+ /**
11356
+ * Unit of measurement for the component
11357
+ */
10509
11358
  measured_unit: string;
11359
+ /**
11360
+ * Billing type for the component
11361
+ */
10510
11362
  billing_type: BillingTypeEnum;
10511
11363
  };
10512
11364
  export type PluginOfferingType = {
@@ -10532,6 +11384,9 @@ export type Project = {
10532
11384
  readonly url?: string;
10533
11385
  readonly uuid?: string;
10534
11386
  name?: string;
11387
+ /**
11388
+ * URL-friendly identifier. Only editable by staff users.
11389
+ */
10535
11390
  slug?: string;
10536
11391
  /**
10537
11392
  * Organization
@@ -10542,6 +11397,9 @@ export type Project = {
10542
11397
  readonly customer_slug?: string;
10543
11398
  readonly customer_native_name?: string;
10544
11399
  readonly customer_abbreviation?: string;
11400
+ /**
11401
+ * Project description (HTML content will be sanitized)
11402
+ */
10545
11403
  description?: string;
10546
11404
  readonly customer_display_billing_info_in_projects?: boolean;
10547
11405
  readonly created?: string;
@@ -10552,13 +11410,25 @@ export type Project = {
10552
11410
  readonly type_name?: string | null;
10553
11411
  readonly type_uuid?: string | null;
10554
11412
  backend_id?: string;
11413
+ /**
11414
+ * Project start date. Cannot be edited after the start date has arrived.
11415
+ */
10555
11416
  start_date?: string | null;
11417
+ /**
11418
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
11419
+ */
10556
11420
  end_date?: string | null;
10557
11421
  readonly end_date_requested_by?: string | null;
10558
11422
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
11423
+ /**
11424
+ * Human-readable label for the OECD FOS 2007 classification code
11425
+ */
10559
11426
  readonly oecd_fos_2007_label?: string;
10560
11427
  is_industry?: boolean;
10561
11428
  image?: string | null;
11429
+ /**
11430
+ * Number of active resources in this project
11431
+ */
10562
11432
  readonly resources_count?: number;
10563
11433
  /**
10564
11434
  * Maximum number of service accounts allowed
@@ -10569,7 +11439,13 @@ export type Project = {
10569
11439
  */
10570
11440
  kind?: KindEnum;
10571
11441
  readonly is_removed?: boolean;
11442
+ /**
11443
+ * Metadata about project termination (read-only)
11444
+ */
10572
11445
  readonly termination_metadata?: unknown;
11446
+ /**
11447
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
11448
+ */
10573
11449
  staff_notes?: string;
10574
11450
  /**
10575
11451
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -10788,18 +11664,30 @@ export type ProjectRecoveryRequest = {
10788
11664
  };
10789
11665
  export type ProjectRequest = {
10790
11666
  name: string;
11667
+ /**
11668
+ * URL-friendly identifier. Only editable by staff users.
11669
+ */
10791
11670
  slug?: string;
10792
11671
  /**
10793
11672
  * Organization
10794
11673
  */
10795
11674
  customer: string;
11675
+ /**
11676
+ * Project description (HTML content will be sanitized)
11677
+ */
10796
11678
  description?: string;
10797
11679
  /**
10798
11680
  * Project type
10799
11681
  */
10800
11682
  type?: string | null;
10801
11683
  backend_id?: string;
11684
+ /**
11685
+ * Project start date. Cannot be edited after the start date has arrived.
11686
+ */
10802
11687
  start_date?: string | null;
11688
+ /**
11689
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
11690
+ */
10803
11691
  end_date?: string | null;
10804
11692
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
10805
11693
  is_industry?: boolean;
@@ -10808,6 +11696,9 @@ export type ProjectRequest = {
10808
11696
  * Project type
10809
11697
  */
10810
11698
  kind?: KindEnum;
11699
+ /**
11700
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
11701
+ */
10811
11702
  staff_notes?: string;
10812
11703
  /**
10813
11704
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -10945,6 +11836,9 @@ export type ProjectUser = {
10945
11836
  offering_user_state: OfferingUserState | NullEnum | null;
10946
11837
  };
10947
11838
  export type ProjectsLimitsGroupedByIndustryFlag = {
11839
+ /**
11840
+ * Nested dictionary of resource limits by category and component type
11841
+ */
10948
11842
  limits: {
10949
11843
  [key: string]: {
10950
11844
  [key: string]: string;
@@ -10952,6 +11846,9 @@ export type ProjectsLimitsGroupedByIndustryFlag = {
10952
11846
  };
10953
11847
  };
10954
11848
  export type ProjectsLimitsGroupedByOecd = {
11849
+ /**
11850
+ * Nested dictionary of resource limits by category and component type
11851
+ */
10955
11852
  limits: {
10956
11853
  [key: string]: {
10957
11854
  [key: string]: string;
@@ -10959,6 +11856,9 @@ export type ProjectsLimitsGroupedByOecd = {
10959
11856
  };
10960
11857
  };
10961
11858
  export type ProjectsUsagesGroupedByIndustryFlag = {
11859
+ /**
11860
+ * Nested dictionary of usage values by category and component type
11861
+ */
10962
11862
  usages: {
10963
11863
  [key: string]: {
10964
11864
  [key: string]: string;
@@ -10966,6 +11866,9 @@ export type ProjectsUsagesGroupedByIndustryFlag = {
10966
11866
  };
10967
11867
  };
10968
11868
  export type ProjectsUsagesGroupedByOecd = {
11869
+ /**
11870
+ * Nested dictionary of usage values by category and component type
11871
+ */
10969
11872
  usages: {
10970
11873
  [key: string]: {
10971
11874
  [key: string]: string;
@@ -11134,6 +12037,9 @@ export type ProtectedCall = {
11134
12037
  readonly created?: string;
11135
12038
  readonly start_date?: string;
11136
12039
  readonly end_date?: string;
12040
+ /**
12041
+ * URL-friendly identifier. Only editable by staff users.
12042
+ */
11137
12043
  slug?: string;
11138
12044
  name?: string;
11139
12045
  description?: string;
@@ -11166,6 +12072,9 @@ export type ProtectedCall = {
11166
12072
  readonly compliance_checklist_name?: string;
11167
12073
  };
11168
12074
  export type ProtectedCallRequest = {
12075
+ /**
12076
+ * URL-friendly identifier. Only editable by staff users.
12077
+ */
11169
12078
  slug?: string;
11170
12079
  name: string;
11171
12080
  description?: string;
@@ -11240,6 +12149,9 @@ export type ProviderOffering = {
11240
12149
  readonly uuid?: string;
11241
12150
  readonly customer_uuid?: string;
11242
12151
  name?: string;
12152
+ /**
12153
+ * URL-friendly identifier. Only editable by staff users.
12154
+ */
11243
12155
  slug?: string;
11244
12156
  readonly category_title?: string;
11245
12157
  type?: string;
@@ -11260,9 +12172,21 @@ export type ProviderOffering = {
11260
12172
  thumbnail?: string | null;
11261
12173
  };
11262
12174
  export type ProviderOfferingCosts = {
12175
+ /**
12176
+ * Billing period (YYYY-MM)
12177
+ */
11263
12178
  readonly period: string;
12179
+ /**
12180
+ * Price amount excluding tax
12181
+ */
11264
12182
  readonly price: number;
12183
+ /**
12184
+ * Tax amount
12185
+ */
11265
12186
  readonly tax: number;
12187
+ /**
12188
+ * Total amount including tax
12189
+ */
11266
12190
  readonly total: number;
11267
12191
  };
11268
12192
  export type ProviderOfferingCustomer = {
@@ -11281,6 +12205,9 @@ export type ProviderOfferingDetails = {
11281
12205
  readonly uuid?: string;
11282
12206
  readonly created?: string;
11283
12207
  name?: string;
12208
+ /**
12209
+ * URL-friendly identifier. Only editable by staff users.
12210
+ */
11284
12211
  slug?: string;
11285
12212
  description?: string;
11286
12213
  full_description?: string;
@@ -11333,7 +12260,7 @@ export type ProviderOfferingDetails = {
11333
12260
  readonly scope?: string;
11334
12261
  readonly scope_uuid?: string | null;
11335
12262
  readonly scope_name?: string | null;
11336
- scope_state?: CoreStates | null;
12263
+ scope_state?: CoreStates | NullEnum | null;
11337
12264
  readonly scope_error_message?: string | null;
11338
12265
  readonly files?: Array<NestedOfferingFile>;
11339
12266
  readonly quotas?: Array<Quota>;
@@ -11345,6 +12272,9 @@ export type ProviderOfferingDetails = {
11345
12272
  readonly citation_count?: number;
11346
12273
  latitude?: number | null;
11347
12274
  longitude?: number | null;
12275
+ /**
12276
+ * Country code (ISO 3166-1 alpha-2)
12277
+ */
11348
12278
  country?: CountryEnum | BlankEnum;
11349
12279
  backend_id?: string;
11350
12280
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -11372,6 +12302,9 @@ export type ProviderOfferingDetails = {
11372
12302
  };
11373
12303
  export type ProviderOfferingDetailsRequest = {
11374
12304
  name: string;
12305
+ /**
12306
+ * URL-friendly identifier. Only editable by staff users.
12307
+ */
11375
12308
  slug?: string;
11376
12309
  description?: string;
11377
12310
  full_description?: string;
@@ -11401,6 +12334,9 @@ export type ProviderOfferingDetailsRequest = {
11401
12334
  datacite_doi?: string;
11402
12335
  latitude?: number | null;
11403
12336
  longitude?: number | null;
12337
+ /**
12338
+ * Country code (ISO 3166-1 alpha-2)
12339
+ */
11404
12340
  country?: CountryEnum | BlankEnum;
11405
12341
  backend_id?: string;
11406
12342
  image?: (Blob | File) | null;
@@ -11522,6 +12458,9 @@ export type PublicCall = {
11522
12458
  readonly created?: string;
11523
12459
  readonly start_date?: string;
11524
12460
  readonly end_date?: string;
12461
+ /**
12462
+ * URL-friendly identifier. Only editable by staff users.
12463
+ */
11525
12464
  slug?: string;
11526
12465
  name?: string;
11527
12466
  description?: string;
@@ -11589,6 +12528,9 @@ export type PublicOfferingDetails = {
11589
12528
  readonly uuid?: string;
11590
12529
  readonly created?: string;
11591
12530
  name?: string;
12531
+ /**
12532
+ * URL-friendly identifier. Only editable by staff users.
12533
+ */
11592
12534
  slug?: string;
11593
12535
  description?: string;
11594
12536
  full_description?: string;
@@ -11637,7 +12579,7 @@ export type PublicOfferingDetails = {
11637
12579
  readonly scope?: string;
11638
12580
  readonly scope_uuid?: string | null;
11639
12581
  readonly scope_name?: string | null;
11640
- scope_state?: CoreStates | null;
12582
+ scope_state?: CoreStates | NullEnum | null;
11641
12583
  readonly scope_error_message?: string | null;
11642
12584
  readonly files?: Array<NestedOfferingFile>;
11643
12585
  readonly quotas?: Array<Quota>;
@@ -11649,6 +12591,9 @@ export type PublicOfferingDetails = {
11649
12591
  readonly citation_count?: number;
11650
12592
  latitude?: number | null;
11651
12593
  longitude?: number | null;
12594
+ /**
12595
+ * Country code (ISO 3166-1 alpha-2)
12596
+ */
11652
12597
  country?: CountryEnum | BlankEnum;
11653
12598
  backend_id?: string;
11654
12599
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -11680,6 +12625,9 @@ export type PullMarketplaceScriptResourceRequest = {
11680
12625
  };
11681
12626
  export type QosStrategyEnum = 'threshold' | 'progressive';
11682
12627
  export type QueryRequest = {
12628
+ /**
12629
+ * Search query string
12630
+ */
11683
12631
  query: string;
11684
12632
  };
11685
12633
  export type Question = {
@@ -12045,6 +12993,9 @@ export type QuotaRequest = {
12045
12993
  limit: number;
12046
12994
  };
12047
12995
  export type QuotasUpdateRequest = {
12996
+ /**
12997
+ * Dictionary of quotas to update
12998
+ */
12048
12999
  quotas: {
12049
13000
  [key: string]: number;
12050
13001
  };
@@ -13053,20 +14004,38 @@ export type RemoteSynchronisationRequest = {
13053
14004
  remotelocalcategory_set: Array<NestedRemoteLocalCategoryRequest>;
13054
14005
  };
13055
14006
  export type RemoveOfferingComponentRequest = {
14007
+ /**
14008
+ * UUID of the component to remove
14009
+ */
13056
14010
  uuid: string;
13057
14011
  };
13058
14012
  export type RemovePartitionRequest = {
13059
14013
  partition_uuid: string;
13060
14014
  };
13061
14015
  export type RemoveSoftwareCatalogRequest = {
14016
+ /**
14017
+ * UUID of the offering catalog to remove
14018
+ */
13062
14019
  offering_catalog_uuid: string;
13063
14020
  };
13064
14021
  export type ReportSection = {
14022
+ /**
14023
+ * Section header text
14024
+ */
13065
14025
  header?: string;
14026
+ /**
14027
+ * Section body content
14028
+ */
13066
14029
  body?: string;
13067
14030
  };
13068
14031
  export type ReportSectionRequest = {
14032
+ /**
14033
+ * Section header text
14034
+ */
13069
14035
  header: string;
14036
+ /**
14037
+ * Section body content
14038
+ */
13070
14039
  body: string;
13071
14040
  };
13072
14041
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
@@ -13190,6 +14159,9 @@ export type Resource = {
13190
14159
  readonly is_usage_based?: boolean;
13191
14160
  readonly is_limit_based?: boolean;
13192
14161
  name?: string;
14162
+ /**
14163
+ * URL-friendly identifier. Only editable by staff users.
14164
+ */
13193
14165
  slug?: string;
13194
14166
  readonly current_usages?: {
13195
14167
  [key: string]: number;
@@ -13226,6 +14198,8 @@ export type Resource = {
13226
14198
  readonly renewal_date?: {
13227
14199
  [key: string]: string;
13228
14200
  } | null;
14201
+ offering_state?: ResourceState;
14202
+ readonly offering_components?: Array<OfferingComponent>;
13229
14203
  };
13230
14204
  export type ResourceBackendIdRequest = {
13231
14205
  backend_id?: string;
@@ -13243,10 +14217,25 @@ export type ResourceEndDateByProviderRequest = {
13243
14217
  end_date?: string | null;
13244
14218
  };
13245
14219
  export type ResourceLimitPeriod = {
14220
+ /**
14221
+ * Start date of the resource limit period
14222
+ */
13246
14223
  start?: string;
14224
+ /**
14225
+ * End date of the resource limit period
14226
+ */
13247
14227
  end?: string;
14228
+ /**
14229
+ * Quantity of resources consumed during this period
14230
+ */
13248
14231
  quantity?: number;
14232
+ /**
14233
+ * Number of billing periods
14234
+ */
13249
14235
  billing_periods?: number;
14236
+ /**
14237
+ * Total amount for this period
14238
+ */
13250
14239
  total?: string;
13251
14240
  };
13252
14241
  export type ResourceOffering = {
@@ -13274,7 +14263,13 @@ export type ResourceReallocateLimitsRequest = {
13274
14263
  targets: Array<ResourceReallocateTargetRequest>;
13275
14264
  };
13276
14265
  export type ResourceReallocateLimitsResponse = {
14266
+ /**
14267
+ * UUID of the source order for limit reallocation
14268
+ */
13277
14269
  readonly source_order_uuid: string;
14270
+ /**
14271
+ * List of UUIDs for target orders receiving the reallocated limits
14272
+ */
13278
14273
  readonly target_order_uuids: Array<string>;
13279
14274
  };
13280
14275
  export type ResourceReallocateTargetRequest = {
@@ -13310,6 +14305,9 @@ export type ResourceRequest = {
13310
14305
  offering: string;
13311
14306
  plan?: string;
13312
14307
  name: string;
14308
+ /**
14309
+ * URL-friendly identifier. Only editable by staff users.
14310
+ */
13313
14311
  slug?: string;
13314
14312
  /**
13315
14313
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
@@ -13319,12 +14317,18 @@ export type ResourceRequest = {
13319
14317
  paused?: boolean;
13320
14318
  };
13321
14319
  export type ResourceResponseStatus = {
14320
+ /**
14321
+ * Status of the resource response
14322
+ */
13322
14323
  readonly status: string;
13323
14324
  };
13324
14325
  export type ResourceRestrictMemberAccessRequest = {
13325
14326
  restrict_member_access?: boolean;
13326
14327
  };
13327
14328
  export type ResourceSetLimitsRequest = {
14329
+ /**
14330
+ * Dictionary mapping component types to their new limit values
14331
+ */
13328
14332
  limits: unknown;
13329
14333
  };
13330
14334
  export type ResourceSetStateErredRequest = {
@@ -13345,6 +14349,7 @@ export type ResourceSwitchPlanRequest = {
13345
14349
  export type ResourceTerminateRequest = {
13346
14350
  /**
13347
14351
  * Termination attributes
14352
+ * Optional attributes/parameters to pass to the termination operation
13348
14353
  */
13349
14354
  attributes?: unknown;
13350
14355
  };
@@ -13392,14 +14397,35 @@ export type ResourceUserRequest = {
13392
14397
  user: string;
13393
14398
  };
13394
14399
  export type ResourcesLimits = {
14400
+ /**
14401
+ * UUID of the offering
14402
+ */
13395
14403
  readonly offering_uuid: string;
14404
+ /**
14405
+ * Name of the limit
14406
+ */
13396
14407
  readonly name: string;
14408
+ /**
14409
+ * Limit value
14410
+ */
13397
14411
  readonly value: number;
14412
+ /**
14413
+ * Country of the offering
14414
+ */
13398
14415
  readonly offering_country: string;
14416
+ /**
14417
+ * Name of the organization group
14418
+ */
13399
14419
  readonly organization_group_name: string;
14420
+ /**
14421
+ * UUID of the organization group
14422
+ */
13400
14423
  readonly organization_group_uuid: string;
13401
14424
  };
13402
14425
  export type ReviewCommentRequest = {
14426
+ /**
14427
+ * Optional comment for review
14428
+ */
13403
14429
  comment?: string;
13404
14430
  };
13405
14431
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
@@ -13827,7 +14853,13 @@ export type RuleRequest = {
13827
14853
  };
13828
14854
  };
13829
14855
  export type RuntimeStates = {
14856
+ /**
14857
+ * Value of the runtime state
14858
+ */
13830
14859
  readonly value: string;
14860
+ /**
14861
+ * Human-readable label for the runtime state
14862
+ */
13831
14863
  readonly label: string;
13832
14864
  };
13833
14865
  export type Saml2Login = {
@@ -13912,6 +14944,9 @@ export type ServiceProvider = {
13912
14944
  readonly offering_count?: number;
13913
14945
  };
13914
14946
  export type ServiceProviderApiSecretCode = {
14947
+ /**
14948
+ * API secret code for authenticating service provider requests
14949
+ */
13915
14950
  readonly api_secret_code: string;
13916
14951
  };
13917
14952
  export type ServiceProviderChecklistSummary = {
@@ -13952,24 +14987,69 @@ export type ServiceProviderRequest = {
13952
14987
  image?: (Blob | File) | null;
13953
14988
  };
13954
14989
  export type ServiceProviderRevenues = {
14990
+ /**
14991
+ * Total revenue amount
14992
+ */
13955
14993
  readonly total: number;
14994
+ /**
14995
+ * Invoice year
14996
+ */
13956
14997
  readonly year: number;
14998
+ /**
14999
+ * Invoice month
15000
+ */
13957
15001
  readonly month: number;
13958
15002
  };
13959
15003
  export type ServiceProviderSignatureRequest = {
15004
+ /**
15005
+ * Service provider customer UUID
15006
+ */
13960
15007
  customer: string;
15008
+ /**
15009
+ * JWT-encoded data signed with the service provider's API secret code
15010
+ */
13961
15011
  data: string;
15012
+ /**
15013
+ * If true, validates the signature without executing the operation
15014
+ */
13962
15015
  dry_run?: boolean;
13963
15016
  };
13964
15017
  export type ServiceProviderStatistics = {
15018
+ /**
15019
+ * Number of active campaigns
15020
+ */
13965
15021
  readonly active_campaigns: number;
15022
+ /**
15023
+ * Number of current customers
15024
+ */
13966
15025
  readonly current_customers: number;
15026
+ /**
15027
+ * Change in number of customers
15028
+ */
13967
15029
  readonly customers_number_change: number;
15030
+ /**
15031
+ * Number of active resources
15032
+ */
13968
15033
  readonly active_resources: number;
15034
+ /**
15035
+ * Change in number of resources
15036
+ */
13969
15037
  readonly resources_number_change: number;
15038
+ /**
15039
+ * Number of active and paused offerings
15040
+ */
13970
15041
  readonly active_and_paused_offerings: number;
15042
+ /**
15043
+ * Number of unresolved support tickets
15044
+ */
13971
15045
  readonly unresolved_tickets: number;
15046
+ /**
15047
+ * Number of pending orders
15048
+ */
13972
15049
  readonly pending_orders: number;
15050
+ /**
15051
+ * Number of resources in error state
15052
+ */
13973
15053
  readonly erred_resources: number;
13974
15054
  };
13975
15055
  export type ServiceSettings = {
@@ -14004,7 +15084,13 @@ export type SetMtuRequest = {
14004
15084
  mtu: number;
14005
15085
  };
14006
15086
  export type SetOfferingsUsernameRequest = {
15087
+ /**
15088
+ * UUID of the user
15089
+ */
14007
15090
  user_uuid: string;
15091
+ /**
15092
+ * Username for offering access
15093
+ */
14008
15094
  username: string;
14009
15095
  };
14010
15096
  export type SettingsMetadataResponse = {
@@ -14015,6 +15101,17 @@ export type SettingsMetadataResponse = {
14015
15101
  [key: string]: unknown;
14016
15102
  }>;
14017
15103
  };
15104
+ export type SeverityEnum = 'safe' | 'low' | 'medium' | 'high' | 'critical';
15105
+ export type SilenceActionRequest = {
15106
+ /**
15107
+ * Duration in days to silence the action. If not provided, silences permanently.
15108
+ */
15109
+ duration_days?: number;
15110
+ };
15111
+ export type SilenceActionResponse = {
15112
+ status: string;
15113
+ duration_days?: number | null;
15114
+ };
14018
15115
  export type SlurmAllocation = {
14019
15116
  readonly url?: string;
14020
15117
  readonly uuid?: string;
@@ -14270,6 +15367,9 @@ export type SoftwareCatalogRequest = {
14270
15367
  update_errors?: string;
14271
15368
  };
14272
15369
  export type SoftwareCatalogUuid = {
15370
+ /**
15371
+ * UUID of the software catalog
15372
+ */
14273
15373
  uuid: string;
14274
15374
  };
14275
15375
  export type SoftwarePackage = {
@@ -14426,7 +15526,13 @@ export type SubmitRequestResponse = {
14426
15526
  scope_uuid: string;
14427
15527
  };
14428
15528
  export type SubresourceOffering = {
15529
+ /**
15530
+ * UUID of the offering
15531
+ */
14429
15532
  readonly uuid: string;
15533
+ /**
15534
+ * Type of the offering
15535
+ */
14430
15536
  readonly type: string;
14431
15537
  };
14432
15538
  export type SupportStats = {
@@ -14447,9 +15553,21 @@ export type SupportedCountriesResponse = {
14447
15553
  };
14448
15554
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
14449
15555
  export type TableSize = {
15556
+ /**
15557
+ * Name of the database table
15558
+ */
14450
15559
  readonly table_name: string;
15560
+ /**
15561
+ * Total size of the table in bytes
15562
+ */
14451
15563
  readonly total_size: number;
15564
+ /**
15565
+ * Size of the actual data in bytes
15566
+ */
14452
15567
  readonly data_size: number;
15568
+ /**
15569
+ * Size of external data (e.g., TOAST) in bytes
15570
+ */
14453
15571
  readonly external_size: number;
14454
15572
  };
14455
15573
  export type Template = {
@@ -14494,27 +15612,68 @@ export type TenantSecurityGroupUpdateRequest = {
14494
15612
  rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
14495
15613
  };
14496
15614
  export type TimeSeriesToSData = {
15615
+ /**
15616
+ * Date of the data point
15617
+ */
14497
15618
  readonly date: string;
15619
+ /**
15620
+ * Count for the date
15621
+ */
14498
15622
  readonly count: number;
14499
15623
  };
14500
15624
  export type ToSConsentDashboard = {
15625
+ /**
15626
+ * Number of active users
15627
+ */
14501
15628
  readonly active_users_count: number;
15629
+ /**
15630
+ * Total number of users
15631
+ */
14502
15632
  readonly total_users_count: number;
15633
+ /**
15634
+ * Percentage of active users
15635
+ */
14503
15636
  readonly active_users_percentage: number;
15637
+ /**
15638
+ * Number of accepted consents
15639
+ */
14504
15640
  readonly accepted_consents_count: number;
15641
+ /**
15642
+ * Number of revoked consents
15643
+ */
14505
15644
  readonly revoked_consents_count: number;
15645
+ /**
15646
+ * Total number of consents
15647
+ */
14506
15648
  readonly total_consents_count: number;
14507
15649
  readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
14508
15650
  readonly tos_version_adoption: Array<VersionAdoption>;
14509
15651
  readonly active_users_over_time: Array<TimeSeriesToSData>;
14510
15652
  };
14511
15653
  export type TokenRequest = {
15654
+ /**
15655
+ * Authentication token for invitation acceptance
15656
+ */
14512
15657
  token: string;
14513
15658
  };
14514
15659
  export type TotalCustomerCost = {
14515
15660
  readonly total: number;
14516
15661
  readonly price: number;
14517
15662
  };
15663
+ export type UnsilenceActionResponse = {
15664
+ status: string;
15665
+ };
15666
+ export type UpdateActionsRequest = {
15667
+ /**
15668
+ * Optional provider action type to update. If not provided, updates all providers.
15669
+ */
15670
+ provider_action_type?: string | null;
15671
+ };
15672
+ export type UpdateActionsResponse = {
15673
+ status: string;
15674
+ message: string;
15675
+ provider_action_type?: string | null;
15676
+ };
14518
15677
  export type UpdateOfferingComponentRequest = {
14519
15678
  uuid: string;
14520
15679
  billing_type: BillingTypeEnum;
@@ -14548,6 +15707,7 @@ export type UpdateOfferingComponentRequest = {
14548
15707
  min_prepaid_duration?: number | null;
14549
15708
  max_prepaid_duration?: number | null;
14550
15709
  };
15710
+ export type UrgencyEnum = 'low' | 'medium' | 'high';
14551
15711
  export type User = {
14552
15712
  readonly url?: string;
14553
15713
  readonly uuid?: string;
@@ -14555,6 +15715,9 @@ export type User = {
14555
15715
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
14556
15716
  */
14557
15717
  username?: string;
15718
+ /**
15719
+ * URL-friendly identifier. Only editable by staff users.
15720
+ */
14558
15721
  slug?: string;
14559
15722
  readonly full_name?: string;
14560
15723
  native_name?: string;
@@ -14621,6 +15784,57 @@ export type User = {
14621
15784
  readonly has_active_session?: boolean;
14622
15785
  readonly ip_address?: string | null;
14623
15786
  };
15787
+ export type UserAction = {
15788
+ readonly uuid: string;
15789
+ /**
15790
+ * Type of action, e.g. 'pending_order', 'expiring_resource'
15791
+ */
15792
+ action_type: string;
15793
+ title: string;
15794
+ description: string;
15795
+ urgency: UrgencyEnum;
15796
+ due_date?: string | null;
15797
+ action_url?: string;
15798
+ metadata?: string;
15799
+ is_silenced?: boolean;
15800
+ silenced_until?: string | null;
15801
+ readonly is_temporarily_silenced: boolean;
15802
+ readonly is_effectively_silenced: boolean;
15803
+ readonly created: string;
15804
+ readonly modified: string;
15805
+ readonly related_object_name: string;
15806
+ readonly related_object_type: string;
15807
+ readonly corrective_actions: Array<CorrectiveAction>;
15808
+ readonly days_until_due: number | null;
15809
+ };
15810
+ export type UserActionExecution = {
15811
+ readonly id: number;
15812
+ corrective_action_label: string;
15813
+ readonly executed_at: string;
15814
+ success?: boolean;
15815
+ error_message?: string;
15816
+ execution_metadata?: string;
15817
+ };
15818
+ export type UserActionProvider = {
15819
+ readonly id: number;
15820
+ app_name: string;
15821
+ provider_class: string;
15822
+ action_type: string;
15823
+ is_enabled?: boolean;
15824
+ schedule?: string;
15825
+ readonly last_execution: string | null;
15826
+ readonly last_execution_status: string;
15827
+ };
15828
+ export type UserActionSummary = {
15829
+ total: number;
15830
+ by_urgency: {
15831
+ [key: string]: unknown;
15832
+ };
15833
+ by_type: {
15834
+ [key: string]: unknown;
15835
+ };
15836
+ overdue: number;
15837
+ };
14624
15838
  export type UserAgreement = {
14625
15839
  readonly url: string;
14626
15840
  readonly uuid: string;
@@ -14746,6 +15960,9 @@ export type UserRequest = {
14746
15960
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
14747
15961
  */
14748
15962
  username: string;
15963
+ /**
15964
+ * URL-friendly identifier. Only editable by staff users.
15965
+ */
14749
15966
  slug?: string;
14750
15967
  native_name?: string;
14751
15968
  job_title?: string;
@@ -14838,25 +16055,60 @@ export type Version = {
14838
16055
  latest_version?: string;
14839
16056
  };
14840
16057
  export type VersionAdoption = {
16058
+ /**
16059
+ * Version identifier
16060
+ */
14841
16061
  readonly version: string;
16062
+ /**
16063
+ * Number of users on this version
16064
+ */
14842
16065
  readonly users_count: number;
14843
16066
  };
14844
16067
  export type VisibilityEnum = 'private' | 'public';
14845
16068
  export type VisibleInvitationDetails = {
16069
+ /**
16070
+ * UUID of the invitation scope (Customer or Project)
16071
+ */
14846
16072
  readonly scope_uuid: string;
16073
+ /**
16074
+ * Name of the invitation scope
16075
+ */
14847
16076
  readonly scope_name: string;
14848
16077
  /**
14849
- * Get the description field from the scope if it exists.
14850
- * Returns empty string if scope doesn't have a description field.
16078
+ * Description of the invitation scope
14851
16079
  */
14852
16080
  readonly scope_description: string;
16081
+ /**
16082
+ * Type of the invitation scope (e.g., 'customer', 'project')
16083
+ */
14853
16084
  readonly scope_type: string | null;
16085
+ /**
16086
+ * UUID of the customer organization
16087
+ */
14854
16088
  readonly customer_uuid: string;
16089
+ /**
16090
+ * Name of the customer organization
16091
+ */
14855
16092
  readonly customer_name: string;
16093
+ /**
16094
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
16095
+ */
14856
16096
  readonly role_name: string;
16097
+ /**
16098
+ * Description of the role being granted
16099
+ */
14857
16100
  readonly role_description: string;
16101
+ /**
16102
+ * Full name of the user who created this invitation
16103
+ */
14858
16104
  readonly created_by_full_name: string;
16105
+ /**
16106
+ * Username of the user who created this invitation
16107
+ */
14859
16108
  readonly created_by_username: string;
16109
+ /**
16110
+ * Profile image of the user who created this invitation
16111
+ */
14860
16112
  readonly created_by_image: string;
14861
16113
  /**
14862
16114
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
@@ -14864,6 +16116,9 @@ export type VisibleInvitationDetails = {
14864
16116
  email: string;
14865
16117
  readonly error_message: string;
14866
16118
  execution_state: ExecutionStateEnum;
16119
+ /**
16120
+ * Current state of the invitation (e.g., 'pending', 'accepted', 'rejected')
16121
+ */
14867
16122
  state: InvitationState;
14868
16123
  };
14869
16124
  export type VmwareCluster = {
@@ -15444,12 +16699,18 @@ export type CustomerRequestForm = {
15444
16699
  * Maximum number of service accounts allowed
15445
16700
  */
15446
16701
  max_service_accounts?: number | null;
16702
+ /**
16703
+ * Checklist to be used for project metadata validation in this organization
16704
+ */
15447
16705
  project_metadata_checklist?: string | null;
15448
16706
  /**
15449
16707
  * Number of extra days after project end date before resources are terminated
15450
16708
  */
15451
16709
  grace_period_days?: number | null;
15452
16710
  name: string;
16711
+ /**
16712
+ * URL-friendly identifier. Only editable by staff users.
16713
+ */
15453
16714
  slug?: string;
15454
16715
  native_name?: string;
15455
16716
  abbreviation?: string;
@@ -15478,6 +16739,9 @@ export type CustomerRequestForm = {
15478
16739
  latitude?: number | null;
15479
16740
  longitude?: number | null;
15480
16741
  bank_account?: string;
16742
+ /**
16743
+ * Country code (ISO 3166-1 alpha-2)
16744
+ */
15481
16745
  country?: CountryEnum | BlankEnum;
15482
16746
  /**
15483
16747
  * Comma-separated list of notification email addresses
@@ -15506,12 +16770,18 @@ export type CustomerRequestMultipart = {
15506
16770
  * Maximum number of service accounts allowed
15507
16771
  */
15508
16772
  max_service_accounts?: number | null;
16773
+ /**
16774
+ * Checklist to be used for project metadata validation in this organization
16775
+ */
15509
16776
  project_metadata_checklist?: string | null;
15510
16777
  /**
15511
16778
  * Number of extra days after project end date before resources are terminated
15512
16779
  */
15513
16780
  grace_period_days?: number | null;
15514
16781
  name: string;
16782
+ /**
16783
+ * URL-friendly identifier. Only editable by staff users.
16784
+ */
15515
16785
  slug?: string;
15516
16786
  native_name?: string;
15517
16787
  abbreviation?: string;
@@ -15540,6 +16810,9 @@ export type CustomerRequestMultipart = {
15540
16810
  latitude?: number | null;
15541
16811
  longitude?: number | null;
15542
16812
  bank_account?: string;
16813
+ /**
16814
+ * Country code (ISO 3166-1 alpha-2)
16815
+ */
15543
16816
  country?: CountryEnum | BlankEnum;
15544
16817
  /**
15545
16818
  * Comma-separated list of notification email addresses
@@ -15568,12 +16841,18 @@ export type PatchedCustomerRequestForm = {
15568
16841
  * Maximum number of service accounts allowed
15569
16842
  */
15570
16843
  max_service_accounts?: number | null;
16844
+ /**
16845
+ * Checklist to be used for project metadata validation in this organization
16846
+ */
15571
16847
  project_metadata_checklist?: string | null;
15572
16848
  /**
15573
16849
  * Number of extra days after project end date before resources are terminated
15574
16850
  */
15575
16851
  grace_period_days?: number | null;
15576
16852
  name?: string;
16853
+ /**
16854
+ * URL-friendly identifier. Only editable by staff users.
16855
+ */
15577
16856
  slug?: string;
15578
16857
  native_name?: string;
15579
16858
  abbreviation?: string;
@@ -15602,6 +16881,9 @@ export type PatchedCustomerRequestForm = {
15602
16881
  latitude?: number | null;
15603
16882
  longitude?: number | null;
15604
16883
  bank_account?: string;
16884
+ /**
16885
+ * Country code (ISO 3166-1 alpha-2)
16886
+ */
15605
16887
  country?: CountryEnum | BlankEnum;
15606
16888
  /**
15607
16889
  * Comma-separated list of notification email addresses
@@ -15630,12 +16912,18 @@ export type PatchedCustomerRequestMultipart = {
15630
16912
  * Maximum number of service accounts allowed
15631
16913
  */
15632
16914
  max_service_accounts?: number | null;
16915
+ /**
16916
+ * Checklist to be used for project metadata validation in this organization
16917
+ */
15633
16918
  project_metadata_checklist?: string | null;
15634
16919
  /**
15635
16920
  * Number of extra days after project end date before resources are terminated
15636
16921
  */
15637
16922
  grace_period_days?: number | null;
15638
16923
  name?: string;
16924
+ /**
16925
+ * URL-friendly identifier. Only editable by staff users.
16926
+ */
15639
16927
  slug?: string;
15640
16928
  native_name?: string;
15641
16929
  abbreviation?: string;
@@ -15664,6 +16952,9 @@ export type PatchedCustomerRequestMultipart = {
15664
16952
  latitude?: number | null;
15665
16953
  longitude?: number | null;
15666
16954
  bank_account?: string;
16955
+ /**
16956
+ * Country code (ISO 3166-1 alpha-2)
16957
+ */
15667
16958
  country?: CountryEnum | BlankEnum;
15668
16959
  /**
15669
16960
  * Comma-separated list of notification email addresses
@@ -15812,6 +17103,9 @@ export type OrderAttachmentRequestMultipart = {
15812
17103
  };
15813
17104
  export type OfferingCreateRequestForm = {
15814
17105
  name: string;
17106
+ /**
17107
+ * URL-friendly identifier. Only editable by staff users.
17108
+ */
15815
17109
  slug?: string;
15816
17110
  description?: string;
15817
17111
  full_description?: string;
@@ -15843,6 +17137,9 @@ export type OfferingCreateRequestForm = {
15843
17137
  datacite_doi?: string;
15844
17138
  latitude?: number | null;
15845
17139
  longitude?: number | null;
17140
+ /**
17141
+ * Country code (ISO 3166-1 alpha-2)
17142
+ */
15846
17143
  country?: CountryEnum | BlankEnum;
15847
17144
  backend_id?: string;
15848
17145
  image?: (Blob | File) | null;
@@ -15854,6 +17151,9 @@ export type OfferingCreateRequestForm = {
15854
17151
  };
15855
17152
  export type OfferingCreateRequestMultipart = {
15856
17153
  name: string;
17154
+ /**
17155
+ * URL-friendly identifier. Only editable by staff users.
17156
+ */
15857
17157
  slug?: string;
15858
17158
  description?: string;
15859
17159
  full_description?: string;
@@ -15885,6 +17185,9 @@ export type OfferingCreateRequestMultipart = {
15885
17185
  datacite_doi?: string;
15886
17186
  latitude?: number | null;
15887
17187
  longitude?: number | null;
17188
+ /**
17189
+ * Country code (ISO 3166-1 alpha-2)
17190
+ */
15888
17191
  country?: CountryEnum | BlankEnum;
15889
17192
  backend_id?: string;
15890
17193
  image?: (Blob | File) | null;
@@ -15994,18 +17297,30 @@ export type OnboardingJustificationDocumentationRequestMultipart = {
15994
17297
  };
15995
17298
  export type ProjectRequestForm = {
15996
17299
  name: string;
17300
+ /**
17301
+ * URL-friendly identifier. Only editable by staff users.
17302
+ */
15997
17303
  slug?: string;
15998
17304
  /**
15999
17305
  * Organization
16000
17306
  */
16001
17307
  customer: string;
17308
+ /**
17309
+ * Project description (HTML content will be sanitized)
17310
+ */
16002
17311
  description?: string;
16003
17312
  /**
16004
17313
  * Project type
16005
17314
  */
16006
17315
  type?: string | null;
16007
17316
  backend_id?: string;
17317
+ /**
17318
+ * Project start date. Cannot be edited after the start date has arrived.
17319
+ */
16008
17320
  start_date?: string | null;
17321
+ /**
17322
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17323
+ */
16009
17324
  end_date?: string | null;
16010
17325
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16011
17326
  is_industry?: boolean;
@@ -16014,6 +17329,9 @@ export type ProjectRequestForm = {
16014
17329
  * Project type
16015
17330
  */
16016
17331
  kind?: KindEnum;
17332
+ /**
17333
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17334
+ */
16017
17335
  staff_notes?: string;
16018
17336
  /**
16019
17337
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16022,18 +17340,30 @@ export type ProjectRequestForm = {
16022
17340
  };
16023
17341
  export type ProjectRequestMultipart = {
16024
17342
  name: string;
17343
+ /**
17344
+ * URL-friendly identifier. Only editable by staff users.
17345
+ */
16025
17346
  slug?: string;
16026
17347
  /**
16027
17348
  * Organization
16028
17349
  */
16029
17350
  customer: string;
17351
+ /**
17352
+ * Project description (HTML content will be sanitized)
17353
+ */
16030
17354
  description?: string;
16031
17355
  /**
16032
17356
  * Project type
16033
17357
  */
16034
17358
  type?: string | null;
16035
17359
  backend_id?: string;
17360
+ /**
17361
+ * Project start date. Cannot be edited after the start date has arrived.
17362
+ */
16036
17363
  start_date?: string | null;
17364
+ /**
17365
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17366
+ */
16037
17367
  end_date?: string | null;
16038
17368
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16039
17369
  is_industry?: boolean;
@@ -16042,6 +17372,9 @@ export type ProjectRequestMultipart = {
16042
17372
  * Project type
16043
17373
  */
16044
17374
  kind?: KindEnum;
17375
+ /**
17376
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17377
+ */
16045
17378
  staff_notes?: string;
16046
17379
  /**
16047
17380
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16050,18 +17383,30 @@ export type ProjectRequestMultipart = {
16050
17383
  };
16051
17384
  export type PatchedProjectRequestForm = {
16052
17385
  name?: string;
17386
+ /**
17387
+ * URL-friendly identifier. Only editable by staff users.
17388
+ */
16053
17389
  slug?: string;
16054
17390
  /**
16055
17391
  * Organization
16056
17392
  */
16057
17393
  customer?: string;
17394
+ /**
17395
+ * Project description (HTML content will be sanitized)
17396
+ */
16058
17397
  description?: string;
16059
17398
  /**
16060
17399
  * Project type
16061
17400
  */
16062
17401
  type?: string | null;
16063
17402
  backend_id?: string;
17403
+ /**
17404
+ * Project start date. Cannot be edited after the start date has arrived.
17405
+ */
16064
17406
  start_date?: string | null;
17407
+ /**
17408
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17409
+ */
16065
17410
  end_date?: string | null;
16066
17411
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16067
17412
  is_industry?: boolean;
@@ -16070,6 +17415,9 @@ export type PatchedProjectRequestForm = {
16070
17415
  * Project type
16071
17416
  */
16072
17417
  kind?: KindEnum;
17418
+ /**
17419
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17420
+ */
16073
17421
  staff_notes?: string;
16074
17422
  /**
16075
17423
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16078,18 +17426,30 @@ export type PatchedProjectRequestForm = {
16078
17426
  };
16079
17427
  export type PatchedProjectRequestMultipart = {
16080
17428
  name?: string;
17429
+ /**
17430
+ * URL-friendly identifier. Only editable by staff users.
17431
+ */
16081
17432
  slug?: string;
16082
17433
  /**
16083
17434
  * Organization
16084
17435
  */
16085
17436
  customer?: string;
17437
+ /**
17438
+ * Project description (HTML content will be sanitized)
17439
+ */
16086
17440
  description?: string;
16087
17441
  /**
16088
17442
  * Project type
16089
17443
  */
16090
17444
  type?: string | null;
16091
17445
  backend_id?: string;
17446
+ /**
17447
+ * Project start date. Cannot be edited after the start date has arrived.
17448
+ */
16092
17449
  start_date?: string | null;
17450
+ /**
17451
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17452
+ */
16093
17453
  end_date?: string | null;
16094
17454
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16095
17455
  is_industry?: boolean;
@@ -16098,6 +17458,9 @@ export type PatchedProjectRequestMultipart = {
16098
17458
  * Project type
16099
17459
  */
16100
17460
  kind?: KindEnum;
17461
+ /**
17462
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17463
+ */
16101
17464
  staff_notes?: string;
16102
17465
  /**
16103
17466
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16517,6 +17880,9 @@ export type UserRequestForm = {
16517
17880
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16518
17881
  */
16519
17882
  username: string;
17883
+ /**
17884
+ * URL-friendly identifier. Only editable by staff users.
17885
+ */
16520
17886
  slug?: string;
16521
17887
  native_name?: string;
16522
17888
  job_title?: string;
@@ -16562,6 +17928,9 @@ export type UserRequestMultipart = {
16562
17928
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16563
17929
  */
16564
17930
  username: string;
17931
+ /**
17932
+ * URL-friendly identifier. Only editable by staff users.
17933
+ */
16565
17934
  slug?: string;
16566
17935
  native_name?: string;
16567
17936
  job_title?: string;
@@ -16607,6 +17976,9 @@ export type PatchedUserRequestForm = {
16607
17976
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16608
17977
  */
16609
17978
  username?: string;
17979
+ /**
17980
+ * URL-friendly identifier. Only editable by staff users.
17981
+ */
16610
17982
  slug?: string;
16611
17983
  native_name?: string;
16612
17984
  job_title?: string;
@@ -16651,6 +18023,9 @@ export type PatchedUserRequestMultipart = {
16651
18023
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16652
18024
  */
16653
18025
  username?: string;
18026
+ /**
18027
+ * URL-friendly identifier. Only editable by staff users.
18028
+ */
16654
18029
  slug?: string;
16655
18030
  native_name?: string;
16656
18031
  job_title?: string;
@@ -20048,7 +21423,7 @@ export type BookingResourcesListData = {
20048
21423
  * Exclude transitional resources with early pending orders
20049
21424
  */
20050
21425
  exclude_pending_transitional?: boolean;
20051
- 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'>;
21426
+ 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'>;
20052
21427
  /**
20053
21428
  * Has termination date
20054
21429
  */
@@ -20364,7 +21739,7 @@ export type BookingResourcesRetrieveData = {
20364
21739
  uuid: string;
20365
21740
  };
20366
21741
  query?: {
20367
- 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'>;
21742
+ 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'>;
20368
21743
  };
20369
21744
  url: '/api/booking-resources/{uuid}/';
20370
21745
  };
@@ -26318,7 +27693,7 @@ export type ManagedRancherClusterResourcesListData = {
26318
27693
  body?: never;
26319
27694
  path?: never;
26320
27695
  query?: {
26321
- 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'>;
27696
+ 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'>;
26322
27697
  /**
26323
27698
  * A page number within the paginated result set.
26324
27699
  */
@@ -26361,7 +27736,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
26361
27736
  uuid: string;
26362
27737
  };
26363
27738
  query?: {
26364
- 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'>;
27739
+ 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'>;
26365
27740
  };
26366
27741
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
26367
27742
  };
@@ -33390,7 +34765,7 @@ export type MarketplaceProviderResourcesListData = {
33390
34765
  * Exclude transitional resources with early pending orders
33391
34766
  */
33392
34767
  exclude_pending_transitional?: boolean;
33393
- 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'>;
34768
+ 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'>;
33394
34769
  /**
33395
34770
  * Has termination date
33396
34771
  */
@@ -33705,7 +35080,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
33705
35080
  uuid: string;
33706
35081
  };
33707
35082
  query?: {
33708
- 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'>;
35083
+ 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'>;
33709
35084
  };
33710
35085
  url: '/api/marketplace-provider-resources/{uuid}/';
33711
35086
  };
@@ -34771,7 +36146,7 @@ export type MarketplaceResourcesListData = {
34771
36146
  * Exclude transitional resources with early pending orders
34772
36147
  */
34773
36148
  exclude_pending_transitional?: boolean;
34774
- 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'>;
36149
+ 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'>;
34775
36150
  /**
34776
36151
  * Has termination date
34777
36152
  */
@@ -35086,7 +36461,7 @@ export type MarketplaceResourcesRetrieveData = {
35086
36461
  uuid: string;
35087
36462
  };
35088
36463
  query?: {
35089
- 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'>;
36464
+ 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'>;
35090
36465
  };
35091
36466
  url: '/api/marketplace-resources/{uuid}/';
35092
36467
  };
@@ -46495,31 +47870,6 @@ export type OpenstackTenantsCountResponses = {
46495
47870
  */
46496
47871
  200: unknown;
46497
47872
  };
46498
- export type OpenstackTenantsCreateData = {
46499
- body: OpenStackTenantRequest;
46500
- path?: never;
46501
- query?: never;
46502
- url: '/api/openstack-tenants/';
46503
- };
46504
- export type OpenstackTenantsCreateResponses = {
46505
- 201: OpenStackTenant;
46506
- };
46507
- export type OpenstackTenantsCreateResponse = OpenstackTenantsCreateResponses[keyof OpenstackTenantsCreateResponses];
46508
- export type OpenstackTenantsDestroyData = {
46509
- body?: never;
46510
- path: {
46511
- uuid: string;
46512
- };
46513
- query?: never;
46514
- url: '/api/openstack-tenants/{uuid}/';
46515
- };
46516
- export type OpenstackTenantsDestroyResponses = {
46517
- /**
46518
- * No response body
46519
- */
46520
- 204: void;
46521
- };
46522
- export type OpenstackTenantsDestroyResponse = OpenstackTenantsDestroyResponses[keyof OpenstackTenantsDestroyResponses];
46523
47873
  export type OpenstackTenantsRetrieveData = {
46524
47874
  body?: never;
46525
47875
  path: {
@@ -49085,7 +50435,7 @@ export type PromotionsCampaignsResourcesListData = {
49085
50435
  uuid: string;
49086
50436
  };
49087
50437
  query?: {
49088
- 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'>;
50438
+ 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'>;
49089
50439
  /**
49090
50440
  * A page number within the paginated result set.
49091
50441
  */
@@ -55699,6 +57049,295 @@ export type SyncIssuesResponses = {
55699
57049
  */
55700
57050
  202: unknown;
55701
57051
  };
57052
+ export type UserActionExecutionsListData = {
57053
+ body?: never;
57054
+ path?: never;
57055
+ query?: {
57056
+ /**
57057
+ * Which field to use when ordering the results.
57058
+ */
57059
+ o?: string;
57060
+ /**
57061
+ * A page number within the paginated result set.
57062
+ */
57063
+ page?: number;
57064
+ /**
57065
+ * Number of results to return per page.
57066
+ */
57067
+ page_size?: number;
57068
+ };
57069
+ url: '/api/user-action-executions/';
57070
+ };
57071
+ export type UserActionExecutionsListResponses = {
57072
+ 200: Array<UserActionExecution>;
57073
+ };
57074
+ export type UserActionExecutionsListResponse = UserActionExecutionsListResponses[keyof UserActionExecutionsListResponses];
57075
+ export type UserActionExecutionsCountData = {
57076
+ body?: never;
57077
+ path?: never;
57078
+ query?: {
57079
+ /**
57080
+ * Which field to use when ordering the results.
57081
+ */
57082
+ o?: string;
57083
+ /**
57084
+ * A page number within the paginated result set.
57085
+ */
57086
+ page?: number;
57087
+ /**
57088
+ * Number of results to return per page.
57089
+ */
57090
+ page_size?: number;
57091
+ };
57092
+ url: '/api/user-action-executions/';
57093
+ };
57094
+ export type UserActionExecutionsCountResponses = {
57095
+ /**
57096
+ * No response body
57097
+ */
57098
+ 200: unknown;
57099
+ };
57100
+ export type UserActionExecutionsRetrieveData = {
57101
+ body?: never;
57102
+ path: {
57103
+ /**
57104
+ * A unique integer value identifying this user action execution.
57105
+ */
57106
+ id: number;
57107
+ };
57108
+ query?: never;
57109
+ url: '/api/user-action-executions/{id}/';
57110
+ };
57111
+ export type UserActionExecutionsRetrieveResponses = {
57112
+ 200: UserActionExecution;
57113
+ };
57114
+ export type UserActionExecutionsRetrieveResponse = UserActionExecutionsRetrieveResponses[keyof UserActionExecutionsRetrieveResponses];
57115
+ export type UserActionProvidersListData = {
57116
+ body?: never;
57117
+ path?: never;
57118
+ query?: {
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-providers/';
57129
+ };
57130
+ export type UserActionProvidersListResponses = {
57131
+ 200: Array<UserActionProvider>;
57132
+ };
57133
+ export type UserActionProvidersListResponse = UserActionProvidersListResponses[keyof UserActionProvidersListResponses];
57134
+ export type UserActionProvidersCountData = {
57135
+ body?: never;
57136
+ path?: never;
57137
+ query?: {
57138
+ /**
57139
+ * A page number within the paginated result set.
57140
+ */
57141
+ page?: number;
57142
+ /**
57143
+ * Number of results to return per page.
57144
+ */
57145
+ page_size?: number;
57146
+ };
57147
+ url: '/api/user-action-providers/';
57148
+ };
57149
+ export type UserActionProvidersCountResponses = {
57150
+ /**
57151
+ * No response body
57152
+ */
57153
+ 200: unknown;
57154
+ };
57155
+ export type UserActionProvidersRetrieveData = {
57156
+ body?: never;
57157
+ path: {
57158
+ /**
57159
+ * A unique integer value identifying this user action provider.
57160
+ */
57161
+ id: number;
57162
+ };
57163
+ query?: never;
57164
+ url: '/api/user-action-providers/{id}/';
57165
+ };
57166
+ export type UserActionProvidersRetrieveResponses = {
57167
+ 200: UserActionProvider;
57168
+ };
57169
+ export type UserActionProvidersRetrieveResponse = UserActionProvidersRetrieveResponses[keyof UserActionProvidersRetrieveResponses];
57170
+ export type UserActionsListData = {
57171
+ body?: never;
57172
+ path?: never;
57173
+ query?: {
57174
+ action_type?: string;
57175
+ created_after?: string;
57176
+ created_before?: string;
57177
+ due_within_days?: number;
57178
+ include_silenced?: boolean;
57179
+ is_silenced?: boolean;
57180
+ /**
57181
+ * Which field to use when ordering the results.
57182
+ */
57183
+ o?: string;
57184
+ overdue?: boolean;
57185
+ /**
57186
+ * A page number within the paginated result set.
57187
+ */
57188
+ page?: number;
57189
+ /**
57190
+ * Number of results to return per page.
57191
+ */
57192
+ page_size?: number;
57193
+ urgency?: 'high' | 'low' | 'medium';
57194
+ };
57195
+ url: '/api/user-actions/';
57196
+ };
57197
+ export type UserActionsListResponses = {
57198
+ 200: Array<UserAction>;
57199
+ };
57200
+ export type UserActionsListResponse = UserActionsListResponses[keyof UserActionsListResponses];
57201
+ export type UserActionsCountData = {
57202
+ body?: never;
57203
+ path?: never;
57204
+ query?: {
57205
+ action_type?: string;
57206
+ created_after?: string;
57207
+ created_before?: string;
57208
+ due_within_days?: number;
57209
+ include_silenced?: boolean;
57210
+ is_silenced?: boolean;
57211
+ /**
57212
+ * Which field to use when ordering the results.
57213
+ */
57214
+ o?: string;
57215
+ overdue?: boolean;
57216
+ /**
57217
+ * A page number within the paginated result set.
57218
+ */
57219
+ page?: number;
57220
+ /**
57221
+ * Number of results to return per page.
57222
+ */
57223
+ page_size?: number;
57224
+ urgency?: 'high' | 'low' | 'medium';
57225
+ };
57226
+ url: '/api/user-actions/';
57227
+ };
57228
+ export type UserActionsCountResponses = {
57229
+ /**
57230
+ * No response body
57231
+ */
57232
+ 200: unknown;
57233
+ };
57234
+ export type UserActionsRetrieveData = {
57235
+ body?: never;
57236
+ path: {
57237
+ /**
57238
+ * A unique integer value identifying this user action.
57239
+ */
57240
+ id: number;
57241
+ };
57242
+ query?: never;
57243
+ url: '/api/user-actions/{id}/';
57244
+ };
57245
+ export type UserActionsRetrieveResponses = {
57246
+ 200: UserAction;
57247
+ };
57248
+ export type UserActionsRetrieveResponse = UserActionsRetrieveResponses[keyof UserActionsRetrieveResponses];
57249
+ export type UserActionsExecuteActionData = {
57250
+ body: ExecuteActionRequest;
57251
+ path: {
57252
+ /**
57253
+ * A unique integer value identifying this user action.
57254
+ */
57255
+ id: number;
57256
+ };
57257
+ query?: never;
57258
+ url: '/api/user-actions/{id}/execute_action/';
57259
+ };
57260
+ export type UserActionsExecuteActionErrors = {
57261
+ 404: ExecuteActionErrorResponse;
57262
+ 500: ExecuteActionErrorResponse;
57263
+ };
57264
+ export type UserActionsExecuteActionError = UserActionsExecuteActionErrors[keyof UserActionsExecuteActionErrors];
57265
+ export type UserActionsExecuteActionResponses = {
57266
+ 200: ExecuteActionResponse;
57267
+ };
57268
+ export type UserActionsExecuteActionResponse = UserActionsExecuteActionResponses[keyof UserActionsExecuteActionResponses];
57269
+ export type UserActionsSilenceData = {
57270
+ body?: SilenceActionRequest;
57271
+ path: {
57272
+ /**
57273
+ * A unique integer value identifying this user action.
57274
+ */
57275
+ id: number;
57276
+ };
57277
+ query?: never;
57278
+ url: '/api/user-actions/{id}/silence/';
57279
+ };
57280
+ export type UserActionsSilenceResponses = {
57281
+ 200: SilenceActionResponse;
57282
+ };
57283
+ export type UserActionsSilenceResponse = UserActionsSilenceResponses[keyof UserActionsSilenceResponses];
57284
+ export type UserActionsUnsilenceData = {
57285
+ body?: never;
57286
+ path: {
57287
+ /**
57288
+ * A unique integer value identifying this user action.
57289
+ */
57290
+ id: number;
57291
+ };
57292
+ query?: never;
57293
+ url: '/api/user-actions/{id}/unsilence/';
57294
+ };
57295
+ export type UserActionsUnsilenceResponses = {
57296
+ 200: UnsilenceActionResponse;
57297
+ };
57298
+ export type UserActionsUnsilenceResponse = UserActionsUnsilenceResponses[keyof UserActionsUnsilenceResponses];
57299
+ export type UserActionsBulkSilenceData = {
57300
+ body?: SilenceActionRequest;
57301
+ path?: never;
57302
+ query?: never;
57303
+ url: '/api/user-actions/bulk_silence/';
57304
+ };
57305
+ export type UserActionsBulkSilenceResponses = {
57306
+ 200: BulkSilenceResponse;
57307
+ };
57308
+ export type UserActionsBulkSilenceResponse = UserActionsBulkSilenceResponses[keyof UserActionsBulkSilenceResponses];
57309
+ export type UserActionsSummaryRetrieveData = {
57310
+ body?: never;
57311
+ path?: never;
57312
+ query?: never;
57313
+ url: '/api/user-actions/summary/';
57314
+ };
57315
+ export type UserActionsSummaryRetrieveResponses = {
57316
+ 200: UserActionSummary;
57317
+ };
57318
+ export type UserActionsSummaryRetrieveResponse = UserActionsSummaryRetrieveResponses[keyof UserActionsSummaryRetrieveResponses];
57319
+ export type UserActionsSummaryCountData = {
57320
+ body?: never;
57321
+ path?: never;
57322
+ query?: never;
57323
+ url: '/api/user-actions/summary/';
57324
+ };
57325
+ export type UserActionsSummaryCountResponses = {
57326
+ /**
57327
+ * No response body
57328
+ */
57329
+ 200: unknown;
57330
+ };
57331
+ export type UserActionsUpdateActionsData = {
57332
+ body?: UpdateActionsRequest;
57333
+ path?: never;
57334
+ query?: never;
57335
+ url: '/api/user-actions/update_actions/';
57336
+ };
57337
+ export type UserActionsUpdateActionsResponses = {
57338
+ 202: UpdateActionsResponse;
57339
+ };
57340
+ export type UserActionsUpdateActionsResponse = UserActionsUpdateActionsResponses[keyof UserActionsUpdateActionsResponses];
55702
57341
  export type UserAgreementsListData = {
55703
57342
  body?: never;
55704
57343
  path?: never;