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

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;
@@ -1767,37 +1790,100 @@ export type ComponentUsageCreateRequest = {
1767
1790
  plan_period?: string;
1768
1791
  resource?: string;
1769
1792
  /**
1770
- * Date for usage reporting (staff only). If not provided, current date is used.
1793
+ * Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
1771
1794
  */
1772
1795
  date?: string;
1773
1796
  };
1774
1797
  export type ComponentUsageItemRequest = {
1798
+ /**
1799
+ * Type of the component
1800
+ */
1775
1801
  type: string;
1802
+ /**
1803
+ * Usage amount
1804
+ */
1776
1805
  amount: string;
1806
+ /**
1807
+ * Optional description of usage
1808
+ */
1777
1809
  description?: string;
1810
+ /**
1811
+ * Whether this usage is recurring
1812
+ */
1778
1813
  recurring?: boolean;
1779
1814
  };
1780
1815
  export type ComponentUsagesPerMonthStats = {
1816
+ /**
1817
+ * Total usage amount
1818
+ */
1781
1819
  usage: string;
1820
+ /**
1821
+ * UUID of the offering
1822
+ */
1782
1823
  offering_uuid: string;
1824
+ /**
1825
+ * Type of the component
1826
+ */
1783
1827
  component_type: string;
1828
+ /**
1829
+ * Country of the offering
1830
+ */
1784
1831
  readonly offering_country: string;
1832
+ /**
1833
+ * Name of the organization group
1834
+ */
1785
1835
  readonly organization_group_name: string;
1836
+ /**
1837
+ * UUID of the organization group
1838
+ */
1786
1839
  readonly organization_group_uuid: string;
1840
+ /**
1841
+ * Month of the billing period
1842
+ */
1787
1843
  month: number;
1844
+ /**
1845
+ * Year of the billing period
1846
+ */
1788
1847
  year: number;
1789
1848
  };
1790
1849
  export type ComponentUsagesPerProject = {
1850
+ /**
1851
+ * UUID of the project
1852
+ */
1791
1853
  project_uuid: string;
1854
+ /**
1855
+ * Type of the component
1856
+ */
1792
1857
  component_type: string;
1858
+ /**
1859
+ * Total usage for the component
1860
+ */
1793
1861
  readonly usage: number;
1794
1862
  };
1795
1863
  export type ComponentUsagesStats = {
1864
+ /**
1865
+ * Total usage amount
1866
+ */
1796
1867
  usage: string;
1868
+ /**
1869
+ * UUID of the offering
1870
+ */
1797
1871
  offering_uuid: string;
1872
+ /**
1873
+ * Type of the component
1874
+ */
1798
1875
  component_type: string;
1876
+ /**
1877
+ * Country of the offering
1878
+ */
1799
1879
  readonly offering_country: string;
1880
+ /**
1881
+ * Name of the organization group
1882
+ */
1800
1883
  readonly organization_group_name: string;
1884
+ /**
1885
+ * UUID of the organization group
1886
+ */
1801
1887
  readonly organization_group_uuid: string;
1802
1888
  };
1803
1889
  export type ComponentUserUsage = {
@@ -1834,7 +1920,7 @@ export type ComponentUserUsageCreateRequest = {
1834
1920
  username: string;
1835
1921
  user?: string;
1836
1922
  /**
1837
- * Date for usage reporting (staff only). If not provided, current date is used.
1923
+ * Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
1838
1924
  */
1839
1925
  date?: string;
1840
1926
  };
@@ -2209,28 +2295,80 @@ export type ConstanceSettingsRequest = {
2209
2295
  };
2210
2296
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
2211
2297
  export type CoreAuthToken = {
2298
+ /**
2299
+ * Authentication token for API access
2300
+ */
2212
2301
  readonly token: string;
2213
2302
  };
2214
2303
  export type CoreStates = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
2304
+ export type CorrectiveAction = {
2305
+ label: string;
2306
+ url: string;
2307
+ category: CategoryEnum;
2308
+ severity: SeverityEnum;
2309
+ method?: string;
2310
+ api_endpoint?: boolean;
2311
+ confirmation_required?: boolean;
2312
+ permissions_required?: Array<string>;
2313
+ metadata?: {
2314
+ [key: string]: unknown;
2315
+ };
2316
+ };
2215
2317
  export type CostsForPeriod = {
2216
2318
  readonly total_price: string;
2217
2319
  readonly start_date: string;
2218
2320
  readonly end_date: string;
2219
2321
  };
2220
2322
  export type CountProjectsOfServiceProviders = {
2323
+ /**
2324
+ * UUID of the service provider
2325
+ */
2221
2326
  readonly service_provider_uuid: string;
2327
+ /**
2328
+ * UUID of the customer
2329
+ */
2222
2330
  readonly customer_uuid: string;
2331
+ /**
2332
+ * Name of the customer
2333
+ */
2223
2334
  readonly customer_name: string;
2335
+ /**
2336
+ * UUID of the customer's organization group
2337
+ */
2224
2338
  readonly customer_organization_group_uuid: string;
2339
+ /**
2340
+ * Name of the customer's organization group
2341
+ */
2225
2342
  readonly customer_organization_group_name: string;
2343
+ /**
2344
+ * Count value
2345
+ */
2226
2346
  readonly count: number;
2227
2347
  };
2228
2348
  export type CountProjectsOfServiceProvidersGroupedByOecd = {
2349
+ /**
2350
+ * UUID of the service provider
2351
+ */
2229
2352
  readonly service_provider_uuid: string;
2353
+ /**
2354
+ * UUID of the customer
2355
+ */
2230
2356
  readonly customer_uuid: string;
2357
+ /**
2358
+ * Name of the customer
2359
+ */
2231
2360
  readonly customer_name: string;
2361
+ /**
2362
+ * UUID of the customer's organization group
2363
+ */
2232
2364
  readonly customer_organization_group_uuid: string;
2365
+ /**
2366
+ * Name of the customer's organization group
2367
+ */
2233
2368
  readonly customer_organization_group_name: string;
2369
+ /**
2370
+ * Count value
2371
+ */
2234
2372
  readonly count: number;
2235
2373
  readonly oecd_fos_2007_name: string;
2236
2374
  };
@@ -2240,16 +2378,43 @@ export type CountStats = {
2240
2378
  readonly count: number;
2241
2379
  };
2242
2380
  export type CountUniqueUsersConnectedWithActiveResourcesOfServiceProvider = {
2381
+ /**
2382
+ * UUID of the customer
2383
+ */
2243
2384
  readonly customer_uuid: string;
2385
+ /**
2386
+ * Name of the customer
2387
+ */
2244
2388
  readonly customer_name: string;
2389
+ /**
2390
+ * Number of unique users
2391
+ */
2245
2392
  readonly count_users: number;
2246
2393
  };
2247
2394
  export type CountUsersOfServiceProviders = {
2395
+ /**
2396
+ * UUID of the service provider
2397
+ */
2248
2398
  readonly service_provider_uuid: string;
2399
+ /**
2400
+ * UUID of the customer
2401
+ */
2249
2402
  readonly customer_uuid: string;
2403
+ /**
2404
+ * Name of the customer
2405
+ */
2250
2406
  readonly customer_name: string;
2407
+ /**
2408
+ * UUID of the customer's organization group
2409
+ */
2251
2410
  readonly customer_organization_group_uuid: string;
2411
+ /**
2412
+ * Name of the customer's organization group
2413
+ */
2252
2414
  readonly customer_organization_group_name: string;
2415
+ /**
2416
+ * Count value
2417
+ */
2253
2418
  readonly count: number;
2254
2419
  };
2255
2420
  export type Country = {
@@ -2292,6 +2457,9 @@ export type CourseAccountsBulkCreateRequest = {
2292
2457
  project: string;
2293
2458
  };
2294
2459
  export type CreateAttachmentsRequest = {
2460
+ /**
2461
+ * List of files to attach
2462
+ */
2295
2463
  attachments: Array<Blob | File>;
2296
2464
  };
2297
2465
  export type CreateCustomerCredit = {
@@ -2355,7 +2523,13 @@ export type Customer = {
2355
2523
  readonly url?: string;
2356
2524
  readonly uuid?: string;
2357
2525
  readonly created?: string;
2526
+ /**
2527
+ * Organization groups this customer belongs to
2528
+ */
2358
2529
  readonly organization_groups?: Array<OrganizationGroup>;
2530
+ /**
2531
+ * Display name of the organization (includes native name if available)
2532
+ */
2359
2533
  readonly display_name?: string;
2360
2534
  /**
2361
2535
  * Organization identifier in another application.
@@ -2370,23 +2544,38 @@ export type Customer = {
2370
2544
  * Start date of accounting
2371
2545
  */
2372
2546
  accounting_start_date?: string;
2547
+ /**
2548
+ * Number of projects in this organization
2549
+ */
2373
2550
  readonly projects_count?: number;
2551
+ /**
2552
+ * Number of users with access to this organization
2553
+ */
2374
2554
  readonly users_count?: number;
2375
2555
  /**
2376
2556
  * External ID of the sponsor covering the costs
2377
2557
  */
2378
2558
  sponsor_number?: number | null;
2559
+ /**
2560
+ * Human-readable country name
2561
+ */
2379
2562
  readonly country_name?: string;
2380
2563
  /**
2381
2564
  * Maximum number of service accounts allowed
2382
2565
  */
2383
2566
  max_service_accounts?: number | null;
2567
+ /**
2568
+ * Checklist to be used for project metadata validation in this organization
2569
+ */
2384
2570
  project_metadata_checklist?: string | null;
2385
2571
  /**
2386
2572
  * Number of extra days after project end date before resources are terminated
2387
2573
  */
2388
2574
  grace_period_days?: number | null;
2389
2575
  name?: string;
2576
+ /**
2577
+ * URL-friendly identifier. Only editable by staff users.
2578
+ */
2390
2579
  slug?: string;
2391
2580
  native_name?: string;
2392
2581
  abbreviation?: string;
@@ -2415,6 +2604,9 @@ export type Customer = {
2415
2604
  latitude?: number | null;
2416
2605
  longitude?: number | null;
2417
2606
  bank_account?: string;
2607
+ /**
2608
+ * Country code (ISO 3166-1 alpha-2)
2609
+ */
2418
2610
  country?: CountryEnum | BlankEnum;
2419
2611
  /**
2420
2612
  * Comma-separated list of notification email addresses
@@ -2545,10 +2737,25 @@ export type CustomerIndustryFlagStats = {
2545
2737
  is_industry: string;
2546
2738
  };
2547
2739
  export type CustomerMemberCount = {
2740
+ /**
2741
+ * UUID of the customer
2742
+ */
2548
2743
  readonly uuid: string;
2744
+ /**
2745
+ * Name of the customer
2746
+ */
2549
2747
  readonly name: string;
2748
+ /**
2749
+ * Abbreviation of the customer
2750
+ */
2550
2751
  readonly abbreviation: string;
2752
+ /**
2753
+ * Number of members
2754
+ */
2551
2755
  readonly count: number;
2756
+ /**
2757
+ * Whether the customer has resources
2758
+ */
2552
2759
  readonly has_resources: boolean;
2553
2760
  };
2554
2761
  export type CustomerOecdCodeStats = {
@@ -2596,12 +2803,18 @@ export type CustomerRequest = {
2596
2803
  * Maximum number of service accounts allowed
2597
2804
  */
2598
2805
  max_service_accounts?: number | null;
2806
+ /**
2807
+ * Checklist to be used for project metadata validation in this organization
2808
+ */
2599
2809
  project_metadata_checklist?: string | null;
2600
2810
  /**
2601
2811
  * Number of extra days after project end date before resources are terminated
2602
2812
  */
2603
2813
  grace_period_days?: number | null;
2604
2814
  name: string;
2815
+ /**
2816
+ * URL-friendly identifier. Only editable by staff users.
2817
+ */
2605
2818
  slug?: string;
2606
2819
  native_name?: string;
2607
2820
  abbreviation?: string;
@@ -2630,6 +2843,9 @@ export type CustomerRequest = {
2630
2843
  latitude?: number | null;
2631
2844
  longitude?: number | null;
2632
2845
  bank_account?: string;
2846
+ /**
2847
+ * Country code (ISO 3166-1 alpha-2)
2848
+ */
2633
2849
  country?: CountryEnum | BlankEnum;
2634
2850
  /**
2635
2851
  * Comma-separated list of notification email addresses
@@ -2930,9 +3146,15 @@ export type EmailLog = {
2930
3146
  emails: Array<string>;
2931
3147
  };
2932
3148
  export type EndpointUuid = {
3149
+ /**
3150
+ * UUID of the access endpoint
3151
+ */
2933
3152
  uuid: string;
2934
3153
  };
2935
3154
  export type EndpointUuidRequest = {
3155
+ /**
3156
+ * UUID of the access endpoint
3157
+ */
2936
3158
  uuid: string;
2937
3159
  };
2938
3160
  export type EthertypeEnum = 'IPv4' | 'IPv6';
@@ -2981,6 +3203,23 @@ export type EventSubscriptionRequest = {
2981
3203
  observable_objects?: unknown;
2982
3204
  };
2983
3205
  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';
3206
+ export type ExecuteActionErrorResponse = {
3207
+ error: string;
3208
+ };
3209
+ export type ExecuteActionRequest = {
3210
+ /**
3211
+ * Label of the corrective action to execute
3212
+ */
3213
+ action_label: string;
3214
+ };
3215
+ export type ExecuteActionResponse = {
3216
+ action: string;
3217
+ message?: string;
3218
+ redirect_url?: string;
3219
+ metadata?: {
3220
+ [key: string]: unknown;
3221
+ };
3222
+ };
2984
3223
  export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
2985
3224
  export type ExportComponentData = {
2986
3225
  type: string;
@@ -3202,8 +3441,17 @@ export type FinancialReportEmailRequest = {
3202
3441
  month: number;
3203
3442
  };
3204
3443
  export type Fingerprint = {
3444
+ /**
3445
+ * MD5 fingerprint of SSH key
3446
+ */
3205
3447
  readonly md5?: string;
3448
+ /**
3449
+ * SHA256 fingerprint of SSH key
3450
+ */
3206
3451
  readonly sha256?: string;
3452
+ /**
3453
+ * SHA512 fingerprint of SSH key
3454
+ */
3207
3455
  readonly sha512?: string;
3208
3456
  };
3209
3457
  export type FirecrestJob = {
@@ -3321,25 +3569,60 @@ export type GoogleCredentials = {
3321
3569
  readonly google_auth_url?: string;
3322
3570
  };
3323
3571
  export type GroupInvitation = {
3572
+ /**
3573
+ * UUID of the invitation scope (Customer or Project)
3574
+ */
3324
3575
  readonly scope_uuid: string;
3576
+ /**
3577
+ * Name of the invitation scope
3578
+ */
3325
3579
  readonly scope_name: string;
3326
3580
  /**
3327
- * Get the description field from the scope if it exists.
3328
- * Returns empty string if scope doesn't have a description field.
3581
+ * Description of the invitation scope
3329
3582
  */
3330
3583
  readonly scope_description: string;
3584
+ /**
3585
+ * Type of the invitation scope (e.g., 'customer', 'project')
3586
+ */
3331
3587
  readonly scope_type: string | null;
3588
+ /**
3589
+ * UUID of the customer organization
3590
+ */
3332
3591
  readonly customer_uuid: string;
3592
+ /**
3593
+ * Name of the customer organization
3594
+ */
3333
3595
  readonly customer_name: string;
3596
+ /**
3597
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
3598
+ */
3334
3599
  readonly role_name: string;
3600
+ /**
3601
+ * Description of the role being granted
3602
+ */
3335
3603
  readonly role_description: string;
3604
+ /**
3605
+ * Full name of the user who created this invitation
3606
+ */
3336
3607
  readonly created_by_full_name: string;
3608
+ /**
3609
+ * Username of the user who created this invitation
3610
+ */
3337
3611
  readonly created_by_username: string;
3612
+ /**
3613
+ * Profile image of the user who created this invitation
3614
+ */
3338
3615
  readonly created_by_image: string;
3339
3616
  readonly url: string;
3340
3617
  readonly uuid: string;
3618
+ /**
3619
+ * UUID of the role to grant to the invited user
3620
+ */
3341
3621
  role: string;
3342
3622
  readonly created: string;
3623
+ /**
3624
+ * Expiration date and time of the invitation
3625
+ */
3343
3626
  readonly expires: string;
3344
3627
  readonly is_active: boolean;
3345
3628
  /**
@@ -3354,13 +3637,25 @@ export type GroupInvitation = {
3354
3637
  * Template for project name. Supports {username}, {email}, {full_name} variables
3355
3638
  */
3356
3639
  project_name_template?: string | null;
3640
+ /**
3641
+ * UUID of the project role to grant if auto_create_project is enabled
3642
+ */
3357
3643
  project_role?: string | null;
3358
3644
  user_affiliations?: unknown;
3359
3645
  user_email_patterns?: unknown;
3646
+ /**
3647
+ * Image URL of the invitation scope (Customer or Project)
3648
+ */
3360
3649
  readonly scope_image: string | null;
3361
3650
  };
3362
3651
  export type GroupInvitationRequest = {
3652
+ /**
3653
+ * UUID of the role to grant to the invited user
3654
+ */
3363
3655
  role: string;
3656
+ /**
3657
+ * URL of the scope (Customer or Project) for this invitation
3658
+ */
3364
3659
  scope: string;
3365
3660
  /**
3366
3661
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -3374,6 +3669,9 @@ export type GroupInvitationRequest = {
3374
3669
  * Template for project name. Supports {username}, {email}, {full_name} variables
3375
3670
  */
3376
3671
  project_name_template?: string | null;
3672
+ /**
3673
+ * UUID of the project role to grant if auto_create_project is enabled
3674
+ */
3377
3675
  project_role?: string | null;
3378
3676
  user_affiliations?: unknown;
3379
3677
  user_email_patterns?: unknown;
@@ -3539,9 +3837,21 @@ export type ImportResourceRequest = {
3539
3837
  additional_details?: unknown;
3540
3838
  };
3541
3839
  export type ImportableResource = {
3840
+ /**
3841
+ * Backend identifier of the resource
3842
+ */
3542
3843
  backend_id: string;
3844
+ /**
3845
+ * Name of the resource
3846
+ */
3543
3847
  name: string;
3848
+ /**
3849
+ * Type of the resource
3850
+ */
3544
3851
  type: string;
3852
+ /**
3853
+ * Description of the resource
3854
+ */
3545
3855
  description: string;
3546
3856
  };
3547
3857
  export type InstanceFlavorChangeRequest = {
@@ -3569,25 +3879,60 @@ export type IntegrationStatusDetails = {
3569
3879
  readonly url: string;
3570
3880
  };
3571
3881
  export type Invitation = {
3882
+ /**
3883
+ * UUID of the invitation scope (Customer or Project)
3884
+ */
3572
3885
  readonly scope_uuid: string;
3886
+ /**
3887
+ * Name of the invitation scope
3888
+ */
3573
3889
  readonly scope_name: string;
3574
3890
  /**
3575
- * Get the description field from the scope if it exists.
3576
- * Returns empty string if scope doesn't have a description field.
3891
+ * Description of the invitation scope
3577
3892
  */
3578
3893
  readonly scope_description: string;
3894
+ /**
3895
+ * Type of the invitation scope (e.g., 'customer', 'project')
3896
+ */
3579
3897
  readonly scope_type: string | null;
3898
+ /**
3899
+ * UUID of the customer organization
3900
+ */
3580
3901
  readonly customer_uuid: string;
3902
+ /**
3903
+ * Name of the customer organization
3904
+ */
3581
3905
  readonly customer_name: string;
3906
+ /**
3907
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
3908
+ */
3582
3909
  readonly role_name: string;
3910
+ /**
3911
+ * Description of the role being granted
3912
+ */
3583
3913
  readonly role_description: string;
3914
+ /**
3915
+ * Full name of the user who created this invitation
3916
+ */
3584
3917
  readonly created_by_full_name: string;
3918
+ /**
3919
+ * Username of the user who created this invitation
3920
+ */
3585
3921
  readonly created_by_username: string;
3922
+ /**
3923
+ * Profile image of the user who created this invitation
3924
+ */
3586
3925
  readonly created_by_image: string;
3587
3926
  readonly url: string;
3588
3927
  readonly uuid: string;
3928
+ /**
3929
+ * UUID of the role to grant to the invited user
3930
+ */
3589
3931
  role: string;
3590
3932
  readonly created: string;
3933
+ /**
3934
+ * Expiration date and time of the invitation
3935
+ */
3591
3936
  readonly expires: string;
3592
3937
  full_name?: string;
3593
3938
  native_name?: string;
@@ -3608,11 +3953,23 @@ export type Invitation = {
3608
3953
  execution_state: ExecutionStateEnum;
3609
3954
  };
3610
3955
  export type InvitationCheck = {
3956
+ /**
3957
+ * Email address to check for existing invitations
3958
+ */
3611
3959
  email: string;
3960
+ /**
3961
+ * Whether civil number verification is required
3962
+ */
3612
3963
  civil_number_required?: boolean;
3613
3964
  };
3614
3965
  export type InvitationRequest = {
3966
+ /**
3967
+ * UUID of the role to grant to the invited user
3968
+ */
3615
3969
  role: string;
3970
+ /**
3971
+ * URL of the scope (Customer or Project) for this invitation
3972
+ */
3616
3973
  scope: string;
3617
3974
  full_name?: string;
3618
3975
  native_name?: string;
@@ -3636,6 +3993,9 @@ export type InvitationUpdate = {
3636
3993
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
3637
3994
  */
3638
3995
  email: string;
3996
+ /**
3997
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
3998
+ */
3639
3999
  role?: string;
3640
4000
  };
3641
4001
  export type InvitationUpdateRequest = {
@@ -3643,6 +4003,9 @@ export type InvitationUpdateRequest = {
3643
4003
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
3644
4004
  */
3645
4005
  email: string;
4006
+ /**
4007
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
4008
+ */
3646
4009
  role?: string;
3647
4010
  };
3648
4011
  export type Invoice = {
@@ -3726,9 +4089,15 @@ export type InvoiceItem = {
3726
4089
  readonly credit?: boolean;
3727
4090
  };
3728
4091
  export type InvoiceItemCompensation = {
4092
+ /**
4093
+ * Name of the offering component for compensation
4094
+ */
3729
4095
  offering_component_name: string;
3730
4096
  };
3731
4097
  export type InvoiceItemCompensationRequest = {
4098
+ /**
4099
+ * Name of the offering component for compensation
4100
+ */
3732
4101
  offering_component_name: string;
3733
4102
  };
3734
4103
  export type InvoiceItemDetail = {
@@ -3760,18 +4129,57 @@ export type InvoiceItemDetail = {
3760
4129
  readonly offering_component_type: string | null;
3761
4130
  };
3762
4131
  export type InvoiceItemDetails = {
4132
+ /**
4133
+ * Name of the marketplace resource
4134
+ */
3763
4135
  resource_name?: string;
4136
+ /**
4137
+ * UUID of the marketplace resource
4138
+ */
3764
4139
  resource_uuid?: string;
4140
+ /**
4141
+ * Name of the pricing plan
4142
+ */
3765
4143
  plan_name?: string;
4144
+ /**
4145
+ * UUID of the pricing plan
4146
+ */
3766
4147
  plan_uuid?: string;
4148
+ /**
4149
+ * Type of the offering
4150
+ */
3767
4151
  offering_type?: string;
4152
+ /**
4153
+ * Name of the offering
4154
+ */
3768
4155
  offering_name?: string;
4156
+ /**
4157
+ * UUID of the offering
4158
+ */
3769
4159
  offering_uuid?: string;
4160
+ /**
4161
+ * Name of the service provider
4162
+ */
3770
4163
  service_provider_name?: string;
4164
+ /**
4165
+ * UUID of the service provider
4166
+ */
3771
4167
  service_provider_uuid?: string;
4168
+ /**
4169
+ * ID of the plan component
4170
+ */
3772
4171
  plan_component_id?: number;
4172
+ /**
4173
+ * Type of the offering component
4174
+ */
3773
4175
  offering_component_type?: string;
4176
+ /**
4177
+ * Name of the offering component
4178
+ */
3774
4179
  offering_component_name?: string;
4180
+ /**
4181
+ * List of resource limit periods for this invoice item
4182
+ */
3775
4183
  resource_limit_periods?: Array<ResourceLimitPeriod>;
3776
4184
  };
3777
4185
  export type InvoiceItemMigrateTo = {
@@ -3781,6 +4189,9 @@ export type InvoiceItemMigrateToRequest = {
3781
4189
  invoice: string;
3782
4190
  };
3783
4191
  export type InvoiceItemTotalPrice = {
4192
+ /**
4193
+ * Total price for the invoice item
4194
+ */
3784
4195
  total_price: string;
3785
4196
  };
3786
4197
  export type InvoiceItemUpdate = {
@@ -3911,18 +4322,33 @@ export type IssueStatusRequest = {
3911
4322
  export type IssueStatusTypeEnum = 0 | 1;
3912
4323
  export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
3913
4324
  export type JiraChangelog = {
4325
+ /**
4326
+ * List of changelog items
4327
+ */
3914
4328
  items: Array<unknown>;
3915
4329
  };
3916
4330
  export type JiraChangelogRequest = {
4331
+ /**
4332
+ * List of changelog items
4333
+ */
3917
4334
  items: Array<unknown>;
3918
4335
  };
3919
4336
  export type JiraComment = {
4337
+ /**
4338
+ * Jira comment ID
4339
+ */
3920
4340
  id: string;
3921
4341
  };
3922
4342
  export type JiraCommentRequest = {
4343
+ /**
4344
+ * Jira comment ID
4345
+ */
3923
4346
  id: string;
3924
4347
  };
3925
4348
  export type JiraIssue = {
4349
+ /**
4350
+ * Jira issue key
4351
+ */
3926
4352
  key: string;
3927
4353
  fields: JiraIssueFields;
3928
4354
  };
@@ -3939,19 +4365,78 @@ export type JiraIssueFieldsRequest = {
3939
4365
  };
3940
4366
  };
3941
4367
  export type JiraIssueProject = {
4368
+ /**
4369
+ * Jira field ID
4370
+ */
3942
4371
  id: string;
4372
+ /**
4373
+ * Jira field name
4374
+ */
3943
4375
  name: string;
4376
+ /**
4377
+ * Jira project key
4378
+ */
3944
4379
  key: string;
3945
4380
  };
3946
4381
  export type JiraIssueProjectRequest = {
4382
+ /**
4383
+ * Jira field ID
4384
+ */
3947
4385
  id: string;
4386
+ /**
4387
+ * Jira field name
4388
+ */
3948
4389
  name: string;
4390
+ /**
4391
+ * Jira project key
4392
+ */
3949
4393
  key: string;
3950
4394
  };
3951
4395
  export type JiraIssueRequest = {
4396
+ /**
4397
+ * Jira issue key
4398
+ */
3952
4399
  key: string;
3953
4400
  fields: JiraIssueFieldsRequest;
3954
4401
  };
4402
+ export type K8sDefaultConfiguration = {
4403
+ default_controller_vcpus?: number;
4404
+ default_controller_ram_gb?: number;
4405
+ default_controller_system_disk_gb?: number;
4406
+ default_controller_etcd_disk_gb?: number;
4407
+ default_lb_vcpus?: number;
4408
+ default_lb_ram_gb?: number;
4409
+ default_lb_system_disk_gb?: number;
4410
+ default_lb_logs_disk_gb?: number;
4411
+ minimal_worker_vcpus?: number;
4412
+ minimal_worker_ram_gb?: number;
4413
+ default_worker_data_disk_gb?: number;
4414
+ default_storage_data_disk_gb?: number;
4415
+ default_storage_san_disk_gb?: number;
4416
+ /**
4417
+ * Comma-separated list of Kubernetes versions (e.g., 1.32.0,1.33.0,1.34.0)
4418
+ */
4419
+ available_kubernetes_versions?: string;
4420
+ };
4421
+ export type K8sDefaultConfigurationRequest = {
4422
+ default_controller_vcpus?: number;
4423
+ default_controller_ram_gb?: number;
4424
+ default_controller_system_disk_gb?: number;
4425
+ default_controller_etcd_disk_gb?: number;
4426
+ default_lb_vcpus?: number;
4427
+ default_lb_ram_gb?: number;
4428
+ default_lb_system_disk_gb?: number;
4429
+ default_lb_logs_disk_gb?: number;
4430
+ minimal_worker_vcpus?: number;
4431
+ minimal_worker_ram_gb?: number;
4432
+ default_worker_data_disk_gb?: number;
4433
+ default_storage_data_disk_gb?: number;
4434
+ default_storage_san_disk_gb?: number;
4435
+ /**
4436
+ * Comma-separated list of Kubernetes versions (e.g., 1.32.0,1.33.0,1.34.0)
4437
+ */
4438
+ available_kubernetes_versions?: string;
4439
+ };
3955
4440
  export type KeycloakGroup = {
3956
4441
  readonly uuid: string;
3957
4442
  readonly url: string;
@@ -4056,6 +4541,9 @@ export type LinkToInvoiceRequest = {
4056
4541
  invoice: string;
4057
4542
  };
4058
4543
  export type Logout = {
4544
+ /**
4545
+ * URL to redirect to after logout
4546
+ */
4059
4547
  readonly logout_url: string;
4060
4548
  };
4061
4549
  export type MaintenanceActionResponse = {
@@ -5148,7 +5636,13 @@ export type MoveResourceRequest = {
5148
5636
  project: ProjectHyperlinkRequest;
5149
5637
  };
5150
5638
  export type NameUuid = {
5639
+ /**
5640
+ * Name of the entity
5641
+ */
5151
5642
  readonly name: string;
5643
+ /**
5644
+ * UUID of the entity
5645
+ */
5152
5646
  readonly uuid: string;
5153
5647
  };
5154
5648
  export type NestedAgentProcessor = {
@@ -5283,16 +5777,31 @@ export type NestedCustomerUsagePolicyComponentRequest = {
5283
5777
  export type NestedEndpoint = {
5284
5778
  readonly uuid?: string;
5285
5779
  name?: string;
5780
+ /**
5781
+ * URL of the access endpoint
5782
+ */
5286
5783
  url?: string;
5287
5784
  };
5288
5785
  export type NestedEndpointRequest = {
5289
5786
  name: string;
5787
+ /**
5788
+ * URL of the access endpoint
5789
+ */
5290
5790
  url: string;
5291
5791
  };
5292
5792
  export type NestedFeedback = {
5793
+ /**
5794
+ * Customer satisfaction rating (1-5 stars)
5795
+ */
5293
5796
  readonly evaluation: number;
5797
+ /**
5798
+ * Numeric value of the rating
5799
+ */
5294
5800
  readonly evaluation_number: number;
5295
5801
  comment?: string;
5802
+ /**
5803
+ * Current state of the feedback
5804
+ */
5296
5805
  readonly state: string;
5297
5806
  };
5298
5807
  export type NestedFeedbackRequest = {
@@ -5883,7 +6392,13 @@ export type NotificationTemplateUpdateSerializersRequest = {
5883
6392
  export type NullEnum = unknown;
5884
6393
  export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
5885
6394
  export type ObtainAuthTokenRequest = {
6395
+ /**
6396
+ * Username for authentication
6397
+ */
5886
6398
  username: string;
6399
+ /**
6400
+ * Password for authentication
6401
+ */
5887
6402
  password: string;
5888
6403
  };
5889
6404
  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 +6407,9 @@ export type Offering = {
5892
6407
  readonly uuid?: string;
5893
6408
  readonly created?: string;
5894
6409
  name?: string;
6410
+ /**
6411
+ * URL-friendly identifier. Only editable by staff users.
6412
+ */
5895
6413
  slug?: string;
5896
6414
  description?: string;
5897
6415
  full_description?: string;
@@ -5940,7 +6458,7 @@ export type Offering = {
5940
6458
  readonly scope?: string;
5941
6459
  readonly scope_uuid?: string | null;
5942
6460
  readonly scope_name?: string | null;
5943
- scope_state?: CoreStates | null;
6461
+ scope_state?: CoreStates | NullEnum | null;
5944
6462
  readonly scope_error_message?: string | null;
5945
6463
  readonly files?: Array<NestedOfferingFile>;
5946
6464
  readonly quotas?: Array<Quota>;
@@ -5952,6 +6470,9 @@ export type Offering = {
5952
6470
  readonly citation_count?: number;
5953
6471
  latitude?: number | null;
5954
6472
  longitude?: number | null;
6473
+ /**
6474
+ * Country code (ISO 3166-1 alpha-2)
6475
+ */
5955
6476
  country?: CountryEnum | BlankEnum;
5956
6477
  backend_id?: string;
5957
6478
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -6015,8 +6536,17 @@ export type OfferingComponent = {
6015
6536
  max_prepaid_duration?: number | null;
6016
6537
  };
6017
6538
  export type OfferingComponentLimitRequest = {
6539
+ /**
6540
+ * Minimum allowed value
6541
+ */
6018
6542
  min: number;
6543
+ /**
6544
+ * Maximum allowed value
6545
+ */
6019
6546
  max: number;
6547
+ /**
6548
+ * Maximum available limit across all resources
6549
+ */
6020
6550
  max_available_limit: number;
6021
6551
  };
6022
6552
  export type OfferingComponentRequest = {
@@ -6062,15 +6592,30 @@ export type OfferingComponentStat = {
6062
6592
  readonly name: string;
6063
6593
  };
6064
6594
  export type OfferingCost = {
6595
+ /**
6596
+ * UUID of the offering
6597
+ */
6065
6598
  offering_uuid: string;
6599
+ /**
6600
+ * Total cost for the offering
6601
+ */
6066
6602
  cost: number;
6067
6603
  };
6068
6604
  export type OfferingCountryStats = {
6605
+ /**
6606
+ * Country code of the offering
6607
+ */
6069
6608
  country: string;
6609
+ /**
6610
+ * Number of offerings in this country
6611
+ */
6070
6612
  count: number;
6071
6613
  };
6072
6614
  export type OfferingCreateRequest = {
6073
6615
  name: string;
6616
+ /**
6617
+ * URL-friendly identifier. Only editable by staff users.
6618
+ */
6074
6619
  slug?: string;
6075
6620
  description?: string;
6076
6621
  full_description?: string;
@@ -6102,6 +6647,9 @@ export type OfferingCreateRequest = {
6102
6647
  datacite_doi?: string;
6103
6648
  latitude?: number | null;
6104
6649
  longitude?: number | null;
6650
+ /**
6651
+ * Country code (ISO 3166-1 alpha-2)
6652
+ */
6105
6653
  country?: CountryEnum | BlankEnum;
6106
6654
  backend_id?: string;
6107
6655
  image?: (Blob | File) | null;
@@ -6231,7 +6779,13 @@ export type OfferingExportParametersRequest = {
6231
6779
  include_resource_options?: boolean;
6232
6780
  };
6233
6781
  export type OfferingExportResponse = {
6782
+ /**
6783
+ * UUID of the exported offering
6784
+ */
6234
6785
  offering_uuid: string;
6786
+ /**
6787
+ * Name of the exported offering
6788
+ */
6235
6789
  offering_name: string;
6236
6790
  /**
6237
6791
  * Complete export data containing the offering structure
@@ -6241,6 +6795,9 @@ export type OfferingExportResponse = {
6241
6795
  * List of exported component types
6242
6796
  */
6243
6797
  exported_components: Array<string>;
6798
+ /**
6799
+ * Timestamp when the export was completed
6800
+ */
6244
6801
  export_timestamp: string;
6245
6802
  };
6246
6803
  export type OfferingFile = {
@@ -6264,7 +6821,7 @@ export type OfferingGroups = {
6264
6821
  export type OfferingImageRequest = {
6265
6822
  image: Blob | File;
6266
6823
  };
6267
- export type OfferingImportParametersRequest = {
6824
+ export type OfferingImportParameters = {
6268
6825
  /**
6269
6826
  * Target customer for imported offering. If not provided, uses current user's customer
6270
6827
  */
@@ -6317,27 +6874,68 @@ export type OfferingImportParametersRequest = {
6317
6874
  * Overwrite existing offering if one with the same name exists
6318
6875
  */
6319
6876
  overwrite_existing?: boolean;
6320
- /**
6321
- * Preserve offering state from export, otherwise set to 'Draft'
6322
- */
6323
- preserve_state?: boolean;
6324
6877
  /**
6325
6878
  * The exported offering data to import
6326
6879
  */
6327
- offering_data: OfferingExportDataRequest;
6880
+ offering_data: OfferingExportData;
6328
6881
  };
6329
- export type OfferingImportResponse = {
6330
- imported_offering_uuid: string;
6331
- imported_offering_name: string;
6882
+ export type OfferingImportParametersRequest = {
6883
+ /**
6884
+ * Target customer for imported offering. If not provided, uses current user's customer
6885
+ */
6886
+ customer?: string | null;
6887
+ /**
6888
+ * Target category name for imported offering. If not provided, uses category from export data
6889
+ */
6890
+ category?: string | null;
6891
+ /**
6892
+ * Target project for imported offering (optional)
6893
+ */
6894
+ project?: string | null;
6895
+ /**
6896
+ * Import offering components
6897
+ */
6898
+ import_components?: boolean;
6899
+ /**
6900
+ * Import offering plans
6901
+ */
6902
+ import_plans?: boolean;
6903
+ /**
6904
+ * Import offering screenshots
6905
+ */
6906
+ import_screenshots?: boolean;
6907
+ /**
6908
+ * Import offering files
6909
+ */
6910
+ import_files?: boolean;
6911
+ /**
6912
+ * Import offering access endpoints
6913
+ */
6914
+ import_endpoints?: boolean;
6915
+ /**
6916
+ * Import organization groups associations (may fail if groups don't exist)
6917
+ */
6918
+ import_organization_groups?: boolean;
6919
+ /**
6920
+ * Import terms of service configurations
6921
+ */
6922
+ import_terms_of_service?: boolean;
6923
+ /**
6924
+ * Import plugin options
6925
+ */
6926
+ import_plugin_options?: boolean;
6332
6927
  /**
6333
- * List of imported component types
6928
+ * Import secret options (WARNING: will overwrite existing secrets)
6334
6929
  */
6335
- imported_components: Array<string>;
6930
+ import_secret_options?: boolean;
6336
6931
  /**
6337
- * List of warnings encountered during import
6932
+ * Overwrite existing offering if one with the same name exists
6338
6933
  */
6339
- warnings?: Array<string>;
6340
- import_timestamp: string;
6934
+ overwrite_existing?: boolean;
6935
+ /**
6936
+ * The exported offering data to import
6937
+ */
6938
+ offering_data: OfferingExportDataRequest;
6341
6939
  };
6342
6940
  export type OfferingIntegrationUpdateRequest = {
6343
6941
  secret_options?: MergedSecretOptionsRequest;
@@ -6375,6 +6973,9 @@ export type OfferingOverviewUpdateRequest = {
6375
6973
  access_url?: string;
6376
6974
  getting_started?: string;
6377
6975
  integration_guide?: string;
6976
+ /**
6977
+ * URL-friendly identifier. Only editable by staff users.
6978
+ */
6378
6979
  slug?: string;
6379
6980
  };
6380
6981
  export type OfferingPartition = {
@@ -6579,7 +7180,13 @@ export type OfferingPermission = {
6579
7180
  readonly user_email: string;
6580
7181
  };
6581
7182
  export type OfferingReference = {
7183
+ /**
7184
+ * Name of the offering
7185
+ */
6582
7186
  readonly offering_name: string;
7187
+ /**
7188
+ * UUID of the offering
7189
+ */
6583
7190
  readonly offering_uuid: string;
6584
7191
  };
6585
7192
  export type OfferingReferral = {
@@ -6634,16 +7241,43 @@ export type OfferingSoftwareCatalogRequest = {
6634
7241
  };
6635
7242
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
6636
7243
  export type OfferingStats = {
7244
+ /**
7245
+ * Number of resources for the offering
7246
+ */
6637
7247
  count: number;
7248
+ /**
7249
+ * Name of the offering
7250
+ */
6638
7251
  name: string;
7252
+ /**
7253
+ * UUID of the offering
7254
+ */
6639
7255
  uuid: string;
7256
+ /**
7257
+ * Country of the offering
7258
+ */
6640
7259
  country: string;
6641
7260
  };
6642
7261
  export type OfferingStatsCounter = {
7262
+ /**
7263
+ * UUID of the category
7264
+ */
6643
7265
  category_uuid: string;
7266
+ /**
7267
+ * Title of the category
7268
+ */
6644
7269
  category_title: string;
7270
+ /**
7271
+ * Name of the service provider
7272
+ */
6645
7273
  service_provider_name: string;
7274
+ /**
7275
+ * UUID of the service provider
7276
+ */
6646
7277
  service_provider_uuid: string;
7278
+ /**
7279
+ * Number of offerings
7280
+ */
6647
7281
  count: number;
6648
7282
  };
6649
7283
  export type OfferingTermsOfService = {
@@ -8561,21 +9195,10 @@ export type OpenStackTenantQuotaRequest = {
8561
9195
  export type OpenStackTenantRequest = {
8562
9196
  name: string;
8563
9197
  description?: string;
8564
- service_settings: string;
8565
- project: string;
8566
9198
  /**
8567
9199
  * Optional availability group. Will be used for all instances provisioned in this tenant
8568
9200
  */
8569
9201
  availability_zone?: string;
8570
- /**
8571
- * Username of the tenant user
8572
- */
8573
- user_username?: string;
8574
- /**
8575
- * Password of the tenant user
8576
- */
8577
- user_password?: string;
8578
- subnet_cidr?: string;
8579
9202
  /**
8580
9203
  * Volume type name to use when creating volumes.
8581
9204
  */
@@ -8724,6 +9347,7 @@ export type OptionField = {
8724
9347
  max?: number;
8725
9348
  cascade_config?: CascadeConfig;
8726
9349
  component_multiplier_config?: ComponentMultiplierConfig;
9350
+ default_configs?: K8sDefaultConfiguration;
8727
9351
  };
8728
9352
  export type OptionFieldRequest = {
8729
9353
  type: OptionFieldTypeEnum;
@@ -8736,8 +9360,9 @@ export type OptionFieldRequest = {
8736
9360
  max?: number;
8737
9361
  cascade_config?: CascadeConfigRequest;
8738
9362
  component_multiplier_config?: ComponentMultiplierConfigRequest;
9363
+ default_configs?: K8sDefaultConfigurationRequest;
8739
9364
  };
8740
- export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier';
9365
+ export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config';
8741
9366
  export type OrderAttachment = {
8742
9367
  attachment?: string | null;
8743
9368
  };
@@ -8765,6 +9390,9 @@ export type OrderCreateRequest = {
8765
9390
  * Enables delayed processing of resource provisioning order.
8766
9391
  */
8767
9392
  start_date?: string | null;
9393
+ /**
9394
+ * URL-friendly identifier. Only editable by staff users.
9395
+ */
8768
9396
  slug?: string;
8769
9397
  project: string;
8770
9398
  };
@@ -8882,15 +9510,27 @@ export type OrderSetStateErredRequest = {
8882
9510
  };
8883
9511
  export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
8884
9512
  export type OrderUuid = {
9513
+ /**
9514
+ * UUID of the created or updated order
9515
+ */
8885
9516
  readonly order_uuid: string;
8886
9517
  };
8887
9518
  export type OrganizationGroup = {
8888
9519
  readonly uuid?: string;
8889
9520
  readonly url?: string;
8890
9521
  name?: string;
9522
+ /**
9523
+ * UUID of the parent organization group
9524
+ */
8891
9525
  readonly parent_uuid?: string;
9526
+ /**
9527
+ * Name of the parent organization group
9528
+ */
8892
9529
  readonly parent_name?: string;
8893
9530
  parent?: string | null;
9531
+ /**
9532
+ * Number of customers in this organization group
9533
+ */
8894
9534
  readonly customers_count?: number;
8895
9535
  };
8896
9536
  export type OrganizationGroupRequest = {
@@ -9094,12 +9734,18 @@ export type PatchedCustomerRequest = {
9094
9734
  * Maximum number of service accounts allowed
9095
9735
  */
9096
9736
  max_service_accounts?: number | null;
9737
+ /**
9738
+ * Checklist to be used for project metadata validation in this organization
9739
+ */
9097
9740
  project_metadata_checklist?: string | null;
9098
9741
  /**
9099
9742
  * Number of extra days after project end date before resources are terminated
9100
9743
  */
9101
9744
  grace_period_days?: number | null;
9102
9745
  name?: string;
9746
+ /**
9747
+ * URL-friendly identifier. Only editable by staff users.
9748
+ */
9103
9749
  slug?: string;
9104
9750
  native_name?: string;
9105
9751
  abbreviation?: string;
@@ -9128,6 +9774,9 @@ export type PatchedCustomerRequest = {
9128
9774
  latitude?: number | null;
9129
9775
  longitude?: number | null;
9130
9776
  bank_account?: string;
9777
+ /**
9778
+ * Country code (ISO 3166-1 alpha-2)
9779
+ */
9131
9780
  country?: CountryEnum | BlankEnum;
9132
9781
  /**
9133
9782
  * Comma-separated list of notification email addresses
@@ -9216,6 +9865,9 @@ export type PatchedInvitationUpdateRequest = {
9216
9865
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
9217
9866
  */
9218
9867
  email?: string;
9868
+ /**
9869
+ * UUID of the new role to assign. Must be compatible with the invitation scope.
9870
+ */
9219
9871
  role?: string;
9220
9872
  };
9221
9873
  export type PatchedInvoiceItemUpdateRequest = {
@@ -9716,18 +10368,30 @@ export type PatchedProjectInfoRequest = {
9716
10368
  };
9717
10369
  export type PatchedProjectRequest = {
9718
10370
  name?: string;
10371
+ /**
10372
+ * URL-friendly identifier. Only editable by staff users.
10373
+ */
9719
10374
  slug?: string;
9720
10375
  /**
9721
10376
  * Organization
9722
10377
  */
9723
10378
  customer?: string;
10379
+ /**
10380
+ * Project description (HTML content will be sanitized)
10381
+ */
9724
10382
  description?: string;
9725
10383
  /**
9726
10384
  * Project type
9727
10385
  */
9728
10386
  type?: string | null;
9729
10387
  backend_id?: string;
10388
+ /**
10389
+ * Project start date. Cannot be edited after the start date has arrived.
10390
+ */
9730
10391
  start_date?: string | null;
10392
+ /**
10393
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
10394
+ */
9731
10395
  end_date?: string | null;
9732
10396
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
9733
10397
  is_industry?: boolean;
@@ -9736,6 +10400,9 @@ export type PatchedProjectRequest = {
9736
10400
  * Project type
9737
10401
  */
9738
10402
  kind?: KindEnum;
10403
+ /**
10404
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
10405
+ */
9739
10406
  staff_notes?: string;
9740
10407
  /**
9741
10408
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -9803,6 +10470,9 @@ export type PatchedProposalReviewRequest = {
9803
10470
  comment_team?: string | null;
9804
10471
  };
9805
10472
  export type PatchedProtectedCallRequest = {
10473
+ /**
10474
+ * URL-friendly identifier. Only editable by staff users.
10475
+ */
9806
10476
  slug?: string;
9807
10477
  name?: string;
9808
10478
  description?: string;
@@ -10284,6 +10954,9 @@ export type PatchedUserRequest = {
10284
10954
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
10285
10955
  */
10286
10956
  username?: string;
10957
+ /**
10958
+ * URL-friendly identifier. Only editable by staff users.
10959
+ */
10287
10960
  slug?: string;
10288
10961
  native_name?: string;
10289
10962
  job_title?: string;
@@ -10512,9 +11185,21 @@ export type PlanUsageResponse = {
10512
11185
  readonly customer_provider_name: string;
10513
11186
  };
10514
11187
  export type PluginComponent = {
11188
+ /**
11189
+ * Type identifier of the component
11190
+ */
10515
11191
  type: string;
11192
+ /**
11193
+ * Display name of the component
11194
+ */
10516
11195
  name: string;
11196
+ /**
11197
+ * Unit of measurement for the component
11198
+ */
10517
11199
  measured_unit: string;
11200
+ /**
11201
+ * Billing type for the component
11202
+ */
10518
11203
  billing_type: BillingTypeEnum;
10519
11204
  };
10520
11205
  export type PluginOfferingType = {
@@ -10540,6 +11225,9 @@ export type Project = {
10540
11225
  readonly url?: string;
10541
11226
  readonly uuid?: string;
10542
11227
  name?: string;
11228
+ /**
11229
+ * URL-friendly identifier. Only editable by staff users.
11230
+ */
10543
11231
  slug?: string;
10544
11232
  /**
10545
11233
  * Organization
@@ -10550,6 +11238,9 @@ export type Project = {
10550
11238
  readonly customer_slug?: string;
10551
11239
  readonly customer_native_name?: string;
10552
11240
  readonly customer_abbreviation?: string;
11241
+ /**
11242
+ * Project description (HTML content will be sanitized)
11243
+ */
10553
11244
  description?: string;
10554
11245
  readonly customer_display_billing_info_in_projects?: boolean;
10555
11246
  readonly created?: string;
@@ -10560,13 +11251,25 @@ export type Project = {
10560
11251
  readonly type_name?: string | null;
10561
11252
  readonly type_uuid?: string | null;
10562
11253
  backend_id?: string;
11254
+ /**
11255
+ * Project start date. Cannot be edited after the start date has arrived.
11256
+ */
10563
11257
  start_date?: string | null;
11258
+ /**
11259
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
11260
+ */
10564
11261
  end_date?: string | null;
10565
11262
  readonly end_date_requested_by?: string | null;
10566
11263
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
11264
+ /**
11265
+ * Human-readable label for the OECD FOS 2007 classification code
11266
+ */
10567
11267
  readonly oecd_fos_2007_label?: string;
10568
11268
  is_industry?: boolean;
10569
11269
  image?: string | null;
11270
+ /**
11271
+ * Number of active resources in this project
11272
+ */
10570
11273
  readonly resources_count?: number;
10571
11274
  /**
10572
11275
  * Maximum number of service accounts allowed
@@ -10577,7 +11280,13 @@ export type Project = {
10577
11280
  */
10578
11281
  kind?: KindEnum;
10579
11282
  readonly is_removed?: boolean;
11283
+ /**
11284
+ * Metadata about project termination (read-only)
11285
+ */
10580
11286
  readonly termination_metadata?: unknown;
11287
+ /**
11288
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
11289
+ */
10581
11290
  staff_notes?: string;
10582
11291
  /**
10583
11292
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -10796,18 +11505,30 @@ export type ProjectRecoveryRequest = {
10796
11505
  };
10797
11506
  export type ProjectRequest = {
10798
11507
  name: string;
11508
+ /**
11509
+ * URL-friendly identifier. Only editable by staff users.
11510
+ */
10799
11511
  slug?: string;
10800
11512
  /**
10801
11513
  * Organization
10802
11514
  */
10803
11515
  customer: string;
11516
+ /**
11517
+ * Project description (HTML content will be sanitized)
11518
+ */
10804
11519
  description?: string;
10805
11520
  /**
10806
11521
  * Project type
10807
11522
  */
10808
11523
  type?: string | null;
10809
11524
  backend_id?: string;
11525
+ /**
11526
+ * Project start date. Cannot be edited after the start date has arrived.
11527
+ */
10810
11528
  start_date?: string | null;
11529
+ /**
11530
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
11531
+ */
10811
11532
  end_date?: string | null;
10812
11533
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
10813
11534
  is_industry?: boolean;
@@ -10816,6 +11537,9 @@ export type ProjectRequest = {
10816
11537
  * Project type
10817
11538
  */
10818
11539
  kind?: KindEnum;
11540
+ /**
11541
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
11542
+ */
10819
11543
  staff_notes?: string;
10820
11544
  /**
10821
11545
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -11142,6 +11866,9 @@ export type ProtectedCall = {
11142
11866
  readonly created?: string;
11143
11867
  readonly start_date?: string;
11144
11868
  readonly end_date?: string;
11869
+ /**
11870
+ * URL-friendly identifier. Only editable by staff users.
11871
+ */
11145
11872
  slug?: string;
11146
11873
  name?: string;
11147
11874
  description?: string;
@@ -11174,6 +11901,9 @@ export type ProtectedCall = {
11174
11901
  readonly compliance_checklist_name?: string;
11175
11902
  };
11176
11903
  export type ProtectedCallRequest = {
11904
+ /**
11905
+ * URL-friendly identifier. Only editable by staff users.
11906
+ */
11177
11907
  slug?: string;
11178
11908
  name: string;
11179
11909
  description?: string;
@@ -11248,6 +11978,9 @@ export type ProviderOffering = {
11248
11978
  readonly uuid?: string;
11249
11979
  readonly customer_uuid?: string;
11250
11980
  name?: string;
11981
+ /**
11982
+ * URL-friendly identifier. Only editable by staff users.
11983
+ */
11251
11984
  slug?: string;
11252
11985
  readonly category_title?: string;
11253
11986
  type?: string;
@@ -11268,9 +12001,21 @@ export type ProviderOffering = {
11268
12001
  thumbnail?: string | null;
11269
12002
  };
11270
12003
  export type ProviderOfferingCosts = {
12004
+ /**
12005
+ * Billing period (YYYY-MM)
12006
+ */
11271
12007
  readonly period: string;
12008
+ /**
12009
+ * Price amount excluding tax
12010
+ */
11272
12011
  readonly price: number;
12012
+ /**
12013
+ * Tax amount
12014
+ */
11273
12015
  readonly tax: number;
12016
+ /**
12017
+ * Total amount including tax
12018
+ */
11274
12019
  readonly total: number;
11275
12020
  };
11276
12021
  export type ProviderOfferingCustomer = {
@@ -11289,6 +12034,9 @@ export type ProviderOfferingDetails = {
11289
12034
  readonly uuid?: string;
11290
12035
  readonly created?: string;
11291
12036
  name?: string;
12037
+ /**
12038
+ * URL-friendly identifier. Only editable by staff users.
12039
+ */
11292
12040
  slug?: string;
11293
12041
  description?: string;
11294
12042
  full_description?: string;
@@ -11341,7 +12089,7 @@ export type ProviderOfferingDetails = {
11341
12089
  readonly scope?: string;
11342
12090
  readonly scope_uuid?: string | null;
11343
12091
  readonly scope_name?: string | null;
11344
- scope_state?: CoreStates | null;
12092
+ scope_state?: CoreStates | NullEnum | null;
11345
12093
  readonly scope_error_message?: string | null;
11346
12094
  readonly files?: Array<NestedOfferingFile>;
11347
12095
  readonly quotas?: Array<Quota>;
@@ -11353,6 +12101,9 @@ export type ProviderOfferingDetails = {
11353
12101
  readonly citation_count?: number;
11354
12102
  latitude?: number | null;
11355
12103
  longitude?: number | null;
12104
+ /**
12105
+ * Country code (ISO 3166-1 alpha-2)
12106
+ */
11356
12107
  country?: CountryEnum | BlankEnum;
11357
12108
  backend_id?: string;
11358
12109
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -11380,6 +12131,9 @@ export type ProviderOfferingDetails = {
11380
12131
  };
11381
12132
  export type ProviderOfferingDetailsRequest = {
11382
12133
  name: string;
12134
+ /**
12135
+ * URL-friendly identifier. Only editable by staff users.
12136
+ */
11383
12137
  slug?: string;
11384
12138
  description?: string;
11385
12139
  full_description?: string;
@@ -11409,6 +12163,9 @@ export type ProviderOfferingDetailsRequest = {
11409
12163
  datacite_doi?: string;
11410
12164
  latitude?: number | null;
11411
12165
  longitude?: number | null;
12166
+ /**
12167
+ * Country code (ISO 3166-1 alpha-2)
12168
+ */
11412
12169
  country?: CountryEnum | BlankEnum;
11413
12170
  backend_id?: string;
11414
12171
  image?: (Blob | File) | null;
@@ -11530,6 +12287,9 @@ export type PublicCall = {
11530
12287
  readonly created?: string;
11531
12288
  readonly start_date?: string;
11532
12289
  readonly end_date?: string;
12290
+ /**
12291
+ * URL-friendly identifier. Only editable by staff users.
12292
+ */
11533
12293
  slug?: string;
11534
12294
  name?: string;
11535
12295
  description?: string;
@@ -11597,6 +12357,9 @@ export type PublicOfferingDetails = {
11597
12357
  readonly uuid?: string;
11598
12358
  readonly created?: string;
11599
12359
  name?: string;
12360
+ /**
12361
+ * URL-friendly identifier. Only editable by staff users.
12362
+ */
11600
12363
  slug?: string;
11601
12364
  description?: string;
11602
12365
  full_description?: string;
@@ -11645,7 +12408,7 @@ export type PublicOfferingDetails = {
11645
12408
  readonly scope?: string;
11646
12409
  readonly scope_uuid?: string | null;
11647
12410
  readonly scope_name?: string | null;
11648
- scope_state?: CoreStates | null;
12411
+ scope_state?: CoreStates | NullEnum | null;
11649
12412
  readonly scope_error_message?: string | null;
11650
12413
  readonly files?: Array<NestedOfferingFile>;
11651
12414
  readonly quotas?: Array<Quota>;
@@ -11657,6 +12420,9 @@ export type PublicOfferingDetails = {
11657
12420
  readonly citation_count?: number;
11658
12421
  latitude?: number | null;
11659
12422
  longitude?: number | null;
12423
+ /**
12424
+ * Country code (ISO 3166-1 alpha-2)
12425
+ */
11660
12426
  country?: CountryEnum | BlankEnum;
11661
12427
  backend_id?: string;
11662
12428
  readonly organization_groups?: Array<OrganizationGroup>;
@@ -11688,6 +12454,9 @@ export type PullMarketplaceScriptResourceRequest = {
11688
12454
  };
11689
12455
  export type QosStrategyEnum = 'threshold' | 'progressive';
11690
12456
  export type QueryRequest = {
12457
+ /**
12458
+ * Search query string
12459
+ */
11691
12460
  query: string;
11692
12461
  };
11693
12462
  export type Question = {
@@ -13061,20 +13830,38 @@ export type RemoteSynchronisationRequest = {
13061
13830
  remotelocalcategory_set: Array<NestedRemoteLocalCategoryRequest>;
13062
13831
  };
13063
13832
  export type RemoveOfferingComponentRequest = {
13833
+ /**
13834
+ * UUID of the component to remove
13835
+ */
13064
13836
  uuid: string;
13065
13837
  };
13066
13838
  export type RemovePartitionRequest = {
13067
13839
  partition_uuid: string;
13068
13840
  };
13069
13841
  export type RemoveSoftwareCatalogRequest = {
13842
+ /**
13843
+ * UUID of the offering catalog to remove
13844
+ */
13070
13845
  offering_catalog_uuid: string;
13071
13846
  };
13072
13847
  export type ReportSection = {
13848
+ /**
13849
+ * Section header text
13850
+ */
13073
13851
  header?: string;
13852
+ /**
13853
+ * Section body content
13854
+ */
13074
13855
  body?: string;
13075
13856
  };
13076
13857
  export type ReportSectionRequest = {
13858
+ /**
13859
+ * Section header text
13860
+ */
13077
13861
  header: string;
13862
+ /**
13863
+ * Section body content
13864
+ */
13078
13865
  body: string;
13079
13866
  };
13080
13867
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
@@ -13198,6 +13985,9 @@ export type Resource = {
13198
13985
  readonly is_usage_based?: boolean;
13199
13986
  readonly is_limit_based?: boolean;
13200
13987
  name?: string;
13988
+ /**
13989
+ * URL-friendly identifier. Only editable by staff users.
13990
+ */
13201
13991
  slug?: string;
13202
13992
  readonly current_usages?: {
13203
13993
  [key: string]: number;
@@ -13234,6 +14024,8 @@ export type Resource = {
13234
14024
  readonly renewal_date?: {
13235
14025
  [key: string]: string;
13236
14026
  } | null;
14027
+ offering_state?: ResourceState;
14028
+ readonly offering_components?: Array<OfferingComponent>;
13237
14029
  };
13238
14030
  export type ResourceBackendIdRequest = {
13239
14031
  backend_id?: string;
@@ -13251,10 +14043,25 @@ export type ResourceEndDateByProviderRequest = {
13251
14043
  end_date?: string | null;
13252
14044
  };
13253
14045
  export type ResourceLimitPeriod = {
14046
+ /**
14047
+ * Start date of the resource limit period
14048
+ */
13254
14049
  start?: string;
14050
+ /**
14051
+ * End date of the resource limit period
14052
+ */
13255
14053
  end?: string;
14054
+ /**
14055
+ * Quantity of resources consumed during this period
14056
+ */
13256
14057
  quantity?: number;
14058
+ /**
14059
+ * Number of billing periods
14060
+ */
13257
14061
  billing_periods?: number;
14062
+ /**
14063
+ * Total amount for this period
14064
+ */
13258
14065
  total?: string;
13259
14066
  };
13260
14067
  export type ResourceOffering = {
@@ -13282,7 +14089,13 @@ export type ResourceReallocateLimitsRequest = {
13282
14089
  targets: Array<ResourceReallocateTargetRequest>;
13283
14090
  };
13284
14091
  export type ResourceReallocateLimitsResponse = {
14092
+ /**
14093
+ * UUID of the source order for limit reallocation
14094
+ */
13285
14095
  readonly source_order_uuid: string;
14096
+ /**
14097
+ * List of UUIDs for target orders receiving the reallocated limits
14098
+ */
13286
14099
  readonly target_order_uuids: Array<string>;
13287
14100
  };
13288
14101
  export type ResourceReallocateTargetRequest = {
@@ -13318,6 +14131,9 @@ export type ResourceRequest = {
13318
14131
  offering: string;
13319
14132
  plan?: string;
13320
14133
  name: string;
14134
+ /**
14135
+ * URL-friendly identifier. Only editable by staff users.
14136
+ */
13321
14137
  slug?: string;
13322
14138
  /**
13323
14139
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
@@ -13408,6 +14224,9 @@ export type ResourcesLimits = {
13408
14224
  readonly organization_group_uuid: string;
13409
14225
  };
13410
14226
  export type ReviewCommentRequest = {
14227
+ /**
14228
+ * Optional comment for review
14229
+ */
13411
14230
  comment?: string;
13412
14231
  };
13413
14232
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
@@ -13835,7 +14654,13 @@ export type RuleRequest = {
13835
14654
  };
13836
14655
  };
13837
14656
  export type RuntimeStates = {
14657
+ /**
14658
+ * Value of the runtime state
14659
+ */
13838
14660
  readonly value: string;
14661
+ /**
14662
+ * Human-readable label for the runtime state
14663
+ */
13839
14664
  readonly label: string;
13840
14665
  };
13841
14666
  export type Saml2Login = {
@@ -13920,6 +14745,9 @@ export type ServiceProvider = {
13920
14745
  readonly offering_count?: number;
13921
14746
  };
13922
14747
  export type ServiceProviderApiSecretCode = {
14748
+ /**
14749
+ * API secret code for authenticating service provider requests
14750
+ */
13923
14751
  readonly api_secret_code: string;
13924
14752
  };
13925
14753
  export type ServiceProviderChecklistSummary = {
@@ -13960,8 +14788,17 @@ export type ServiceProviderRequest = {
13960
14788
  image?: (Blob | File) | null;
13961
14789
  };
13962
14790
  export type ServiceProviderRevenues = {
14791
+ /**
14792
+ * Total revenue amount
14793
+ */
13963
14794
  readonly total: number;
14795
+ /**
14796
+ * Invoice year
14797
+ */
13964
14798
  readonly year: number;
14799
+ /**
14800
+ * Invoice month
14801
+ */
13965
14802
  readonly month: number;
13966
14803
  };
13967
14804
  export type ServiceProviderSignatureRequest = {
@@ -13970,14 +14807,41 @@ export type ServiceProviderSignatureRequest = {
13970
14807
  dry_run?: boolean;
13971
14808
  };
13972
14809
  export type ServiceProviderStatistics = {
14810
+ /**
14811
+ * Number of active campaigns
14812
+ */
13973
14813
  readonly active_campaigns: number;
14814
+ /**
14815
+ * Number of current customers
14816
+ */
13974
14817
  readonly current_customers: number;
14818
+ /**
14819
+ * Change in number of customers
14820
+ */
13975
14821
  readonly customers_number_change: number;
14822
+ /**
14823
+ * Number of active resources
14824
+ */
13976
14825
  readonly active_resources: number;
14826
+ /**
14827
+ * Change in number of resources
14828
+ */
13977
14829
  readonly resources_number_change: number;
14830
+ /**
14831
+ * Number of active and paused offerings
14832
+ */
13978
14833
  readonly active_and_paused_offerings: number;
14834
+ /**
14835
+ * Number of unresolved support tickets
14836
+ */
13979
14837
  readonly unresolved_tickets: number;
14838
+ /**
14839
+ * Number of pending orders
14840
+ */
13980
14841
  readonly pending_orders: number;
14842
+ /**
14843
+ * Number of resources in error state
14844
+ */
13981
14845
  readonly erred_resources: number;
13982
14846
  };
13983
14847
  export type ServiceSettings = {
@@ -14012,7 +14876,13 @@ export type SetMtuRequest = {
14012
14876
  mtu: number;
14013
14877
  };
14014
14878
  export type SetOfferingsUsernameRequest = {
14879
+ /**
14880
+ * UUID of the user
14881
+ */
14015
14882
  user_uuid: string;
14883
+ /**
14884
+ * Username for offering access
14885
+ */
14016
14886
  username: string;
14017
14887
  };
14018
14888
  export type SettingsMetadataResponse = {
@@ -14023,6 +14893,17 @@ export type SettingsMetadataResponse = {
14023
14893
  [key: string]: unknown;
14024
14894
  }>;
14025
14895
  };
14896
+ export type SeverityEnum = 'safe' | 'low' | 'medium' | 'high' | 'critical';
14897
+ export type SilenceActionRequest = {
14898
+ /**
14899
+ * Duration in days to silence the action. If not provided, silences permanently.
14900
+ */
14901
+ duration_days?: number;
14902
+ };
14903
+ export type SilenceActionResponse = {
14904
+ status: string;
14905
+ duration_days?: number | null;
14906
+ };
14026
14907
  export type SlurmAllocation = {
14027
14908
  readonly url?: string;
14028
14909
  readonly uuid?: string;
@@ -14278,6 +15159,9 @@ export type SoftwareCatalogRequest = {
14278
15159
  update_errors?: string;
14279
15160
  };
14280
15161
  export type SoftwareCatalogUuid = {
15162
+ /**
15163
+ * UUID of the software catalog
15164
+ */
14281
15165
  uuid: string;
14282
15166
  };
14283
15167
  export type SoftwarePackage = {
@@ -14455,9 +15339,21 @@ export type SupportedCountriesResponse = {
14455
15339
  };
14456
15340
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
14457
15341
  export type TableSize = {
15342
+ /**
15343
+ * Name of the database table
15344
+ */
14458
15345
  readonly table_name: string;
15346
+ /**
15347
+ * Total size of the table in bytes
15348
+ */
14459
15349
  readonly total_size: number;
15350
+ /**
15351
+ * Size of the actual data in bytes
15352
+ */
14460
15353
  readonly data_size: number;
15354
+ /**
15355
+ * Size of external data (e.g., TOAST) in bytes
15356
+ */
14461
15357
  readonly external_size: number;
14462
15358
  };
14463
15359
  export type Template = {
@@ -14502,7 +15398,13 @@ export type TenantSecurityGroupUpdateRequest = {
14502
15398
  rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
14503
15399
  };
14504
15400
  export type TimeSeriesToSData = {
15401
+ /**
15402
+ * Date of the data point
15403
+ */
14505
15404
  readonly date: string;
15405
+ /**
15406
+ * Count for the date
15407
+ */
14506
15408
  readonly count: number;
14507
15409
  };
14508
15410
  export type ToSConsentDashboard = {
@@ -14517,12 +15419,29 @@ export type ToSConsentDashboard = {
14517
15419
  readonly active_users_over_time: Array<TimeSeriesToSData>;
14518
15420
  };
14519
15421
  export type TokenRequest = {
15422
+ /**
15423
+ * Authentication token for invitation acceptance
15424
+ */
14520
15425
  token: string;
14521
15426
  };
14522
15427
  export type TotalCustomerCost = {
14523
15428
  readonly total: number;
14524
15429
  readonly price: number;
14525
15430
  };
15431
+ export type UnsilenceActionResponse = {
15432
+ status: string;
15433
+ };
15434
+ export type UpdateActionsRequest = {
15435
+ /**
15436
+ * Optional provider action type to update. If not provided, updates all providers.
15437
+ */
15438
+ provider_action_type?: string | null;
15439
+ };
15440
+ export type UpdateActionsResponse = {
15441
+ status: string;
15442
+ message: string;
15443
+ provider_action_type?: string | null;
15444
+ };
14526
15445
  export type UpdateOfferingComponentRequest = {
14527
15446
  uuid: string;
14528
15447
  billing_type: BillingTypeEnum;
@@ -14556,6 +15475,7 @@ export type UpdateOfferingComponentRequest = {
14556
15475
  min_prepaid_duration?: number | null;
14557
15476
  max_prepaid_duration?: number | null;
14558
15477
  };
15478
+ export type UrgencyEnum = 'low' | 'medium' | 'high';
14559
15479
  export type User = {
14560
15480
  readonly url?: string;
14561
15481
  readonly uuid?: string;
@@ -14563,6 +15483,9 @@ export type User = {
14563
15483
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
14564
15484
  */
14565
15485
  username?: string;
15486
+ /**
15487
+ * URL-friendly identifier. Only editable by staff users.
15488
+ */
14566
15489
  slug?: string;
14567
15490
  readonly full_name?: string;
14568
15491
  native_name?: string;
@@ -14629,6 +15552,57 @@ export type User = {
14629
15552
  readonly has_active_session?: boolean;
14630
15553
  readonly ip_address?: string | null;
14631
15554
  };
15555
+ export type UserAction = {
15556
+ readonly uuid: string;
15557
+ /**
15558
+ * Type of action, e.g. 'pending_order', 'expiring_resource'
15559
+ */
15560
+ action_type: string;
15561
+ title: string;
15562
+ description: string;
15563
+ urgency: UrgencyEnum;
15564
+ due_date?: string | null;
15565
+ action_url?: string;
15566
+ metadata?: string;
15567
+ is_silenced?: boolean;
15568
+ silenced_until?: string | null;
15569
+ readonly is_temporarily_silenced: boolean;
15570
+ readonly is_effectively_silenced: boolean;
15571
+ readonly created: string;
15572
+ readonly modified: string;
15573
+ readonly related_object_name: string;
15574
+ readonly related_object_type: string;
15575
+ readonly corrective_actions: Array<CorrectiveAction>;
15576
+ readonly days_until_due: number | null;
15577
+ };
15578
+ export type UserActionExecution = {
15579
+ readonly id: number;
15580
+ corrective_action_label: string;
15581
+ readonly executed_at: string;
15582
+ success?: boolean;
15583
+ error_message?: string;
15584
+ execution_metadata?: string;
15585
+ };
15586
+ export type UserActionProvider = {
15587
+ readonly id: number;
15588
+ app_name: string;
15589
+ provider_class: string;
15590
+ action_type: string;
15591
+ is_enabled?: boolean;
15592
+ schedule?: string;
15593
+ readonly last_execution: string | null;
15594
+ readonly last_execution_status: string;
15595
+ };
15596
+ export type UserActionSummary = {
15597
+ total: number;
15598
+ by_urgency: {
15599
+ [key: string]: unknown;
15600
+ };
15601
+ by_type: {
15602
+ [key: string]: unknown;
15603
+ };
15604
+ overdue: number;
15605
+ };
14632
15606
  export type UserAgreement = {
14633
15607
  readonly url: string;
14634
15608
  readonly uuid: string;
@@ -14754,6 +15728,9 @@ export type UserRequest = {
14754
15728
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
14755
15729
  */
14756
15730
  username: string;
15731
+ /**
15732
+ * URL-friendly identifier. Only editable by staff users.
15733
+ */
14757
15734
  slug?: string;
14758
15735
  native_name?: string;
14759
15736
  job_title?: string;
@@ -14851,20 +15828,49 @@ export type VersionAdoption = {
14851
15828
  };
14852
15829
  export type VisibilityEnum = 'private' | 'public';
14853
15830
  export type VisibleInvitationDetails = {
15831
+ /**
15832
+ * UUID of the invitation scope (Customer or Project)
15833
+ */
14854
15834
  readonly scope_uuid: string;
15835
+ /**
15836
+ * Name of the invitation scope
15837
+ */
14855
15838
  readonly scope_name: string;
14856
15839
  /**
14857
- * Get the description field from the scope if it exists.
14858
- * Returns empty string if scope doesn't have a description field.
15840
+ * Description of the invitation scope
14859
15841
  */
14860
15842
  readonly scope_description: string;
15843
+ /**
15844
+ * Type of the invitation scope (e.g., 'customer', 'project')
15845
+ */
14861
15846
  readonly scope_type: string | null;
15847
+ /**
15848
+ * UUID of the customer organization
15849
+ */
14862
15850
  readonly customer_uuid: string;
15851
+ /**
15852
+ * Name of the customer organization
15853
+ */
14863
15854
  readonly customer_name: string;
15855
+ /**
15856
+ * Name of the role being granted (e.g., 'PROJECT.ADMIN')
15857
+ */
14864
15858
  readonly role_name: string;
15859
+ /**
15860
+ * Description of the role being granted
15861
+ */
14865
15862
  readonly role_description: string;
15863
+ /**
15864
+ * Full name of the user who created this invitation
15865
+ */
14866
15866
  readonly created_by_full_name: string;
15867
+ /**
15868
+ * Username of the user who created this invitation
15869
+ */
14867
15870
  readonly created_by_username: string;
15871
+ /**
15872
+ * Profile image of the user who created this invitation
15873
+ */
14868
15874
  readonly created_by_image: string;
14869
15875
  /**
14870
15876
  * Invitation link will be sent to this email. Note that user can accept invitation with different email.
@@ -14872,6 +15878,9 @@ export type VisibleInvitationDetails = {
14872
15878
  email: string;
14873
15879
  readonly error_message: string;
14874
15880
  execution_state: ExecutionStateEnum;
15881
+ /**
15882
+ * Current state of the invitation (e.g., 'pending', 'accepted', 'rejected')
15883
+ */
14875
15884
  state: InvitationState;
14876
15885
  };
14877
15886
  export type VmwareCluster = {
@@ -15452,12 +16461,18 @@ export type CustomerRequestForm = {
15452
16461
  * Maximum number of service accounts allowed
15453
16462
  */
15454
16463
  max_service_accounts?: number | null;
16464
+ /**
16465
+ * Checklist to be used for project metadata validation in this organization
16466
+ */
15455
16467
  project_metadata_checklist?: string | null;
15456
16468
  /**
15457
16469
  * Number of extra days after project end date before resources are terminated
15458
16470
  */
15459
16471
  grace_period_days?: number | null;
15460
16472
  name: string;
16473
+ /**
16474
+ * URL-friendly identifier. Only editable by staff users.
16475
+ */
15461
16476
  slug?: string;
15462
16477
  native_name?: string;
15463
16478
  abbreviation?: string;
@@ -15486,6 +16501,9 @@ export type CustomerRequestForm = {
15486
16501
  latitude?: number | null;
15487
16502
  longitude?: number | null;
15488
16503
  bank_account?: string;
16504
+ /**
16505
+ * Country code (ISO 3166-1 alpha-2)
16506
+ */
15489
16507
  country?: CountryEnum | BlankEnum;
15490
16508
  /**
15491
16509
  * Comma-separated list of notification email addresses
@@ -15514,12 +16532,18 @@ export type CustomerRequestMultipart = {
15514
16532
  * Maximum number of service accounts allowed
15515
16533
  */
15516
16534
  max_service_accounts?: number | null;
16535
+ /**
16536
+ * Checklist to be used for project metadata validation in this organization
16537
+ */
15517
16538
  project_metadata_checklist?: string | null;
15518
16539
  /**
15519
16540
  * Number of extra days after project end date before resources are terminated
15520
16541
  */
15521
16542
  grace_period_days?: number | null;
15522
16543
  name: string;
16544
+ /**
16545
+ * URL-friendly identifier. Only editable by staff users.
16546
+ */
15523
16547
  slug?: string;
15524
16548
  native_name?: string;
15525
16549
  abbreviation?: string;
@@ -15548,6 +16572,9 @@ export type CustomerRequestMultipart = {
15548
16572
  latitude?: number | null;
15549
16573
  longitude?: number | null;
15550
16574
  bank_account?: string;
16575
+ /**
16576
+ * Country code (ISO 3166-1 alpha-2)
16577
+ */
15551
16578
  country?: CountryEnum | BlankEnum;
15552
16579
  /**
15553
16580
  * Comma-separated list of notification email addresses
@@ -15576,12 +16603,18 @@ export type PatchedCustomerRequestForm = {
15576
16603
  * Maximum number of service accounts allowed
15577
16604
  */
15578
16605
  max_service_accounts?: number | null;
16606
+ /**
16607
+ * Checklist to be used for project metadata validation in this organization
16608
+ */
15579
16609
  project_metadata_checklist?: string | null;
15580
16610
  /**
15581
16611
  * Number of extra days after project end date before resources are terminated
15582
16612
  */
15583
16613
  grace_period_days?: number | null;
15584
16614
  name?: string;
16615
+ /**
16616
+ * URL-friendly identifier. Only editable by staff users.
16617
+ */
15585
16618
  slug?: string;
15586
16619
  native_name?: string;
15587
16620
  abbreviation?: string;
@@ -15610,6 +16643,9 @@ export type PatchedCustomerRequestForm = {
15610
16643
  latitude?: number | null;
15611
16644
  longitude?: number | null;
15612
16645
  bank_account?: string;
16646
+ /**
16647
+ * Country code (ISO 3166-1 alpha-2)
16648
+ */
15613
16649
  country?: CountryEnum | BlankEnum;
15614
16650
  /**
15615
16651
  * Comma-separated list of notification email addresses
@@ -15638,12 +16674,18 @@ export type PatchedCustomerRequestMultipart = {
15638
16674
  * Maximum number of service accounts allowed
15639
16675
  */
15640
16676
  max_service_accounts?: number | null;
16677
+ /**
16678
+ * Checklist to be used for project metadata validation in this organization
16679
+ */
15641
16680
  project_metadata_checklist?: string | null;
15642
16681
  /**
15643
16682
  * Number of extra days after project end date before resources are terminated
15644
16683
  */
15645
16684
  grace_period_days?: number | null;
15646
16685
  name?: string;
16686
+ /**
16687
+ * URL-friendly identifier. Only editable by staff users.
16688
+ */
15647
16689
  slug?: string;
15648
16690
  native_name?: string;
15649
16691
  abbreviation?: string;
@@ -15672,6 +16714,9 @@ export type PatchedCustomerRequestMultipart = {
15672
16714
  latitude?: number | null;
15673
16715
  longitude?: number | null;
15674
16716
  bank_account?: string;
16717
+ /**
16718
+ * Country code (ISO 3166-1 alpha-2)
16719
+ */
15675
16720
  country?: CountryEnum | BlankEnum;
15676
16721
  /**
15677
16722
  * Comma-separated list of notification email addresses
@@ -15820,6 +16865,9 @@ export type OrderAttachmentRequestMultipart = {
15820
16865
  };
15821
16866
  export type OfferingCreateRequestForm = {
15822
16867
  name: string;
16868
+ /**
16869
+ * URL-friendly identifier. Only editable by staff users.
16870
+ */
15823
16871
  slug?: string;
15824
16872
  description?: string;
15825
16873
  full_description?: string;
@@ -15851,6 +16899,9 @@ export type OfferingCreateRequestForm = {
15851
16899
  datacite_doi?: string;
15852
16900
  latitude?: number | null;
15853
16901
  longitude?: number | null;
16902
+ /**
16903
+ * Country code (ISO 3166-1 alpha-2)
16904
+ */
15854
16905
  country?: CountryEnum | BlankEnum;
15855
16906
  backend_id?: string;
15856
16907
  image?: (Blob | File) | null;
@@ -15862,6 +16913,9 @@ export type OfferingCreateRequestForm = {
15862
16913
  };
15863
16914
  export type OfferingCreateRequestMultipart = {
15864
16915
  name: string;
16916
+ /**
16917
+ * URL-friendly identifier. Only editable by staff users.
16918
+ */
15865
16919
  slug?: string;
15866
16920
  description?: string;
15867
16921
  full_description?: string;
@@ -15893,6 +16947,9 @@ export type OfferingCreateRequestMultipart = {
15893
16947
  datacite_doi?: string;
15894
16948
  latitude?: number | null;
15895
16949
  longitude?: number | null;
16950
+ /**
16951
+ * Country code (ISO 3166-1 alpha-2)
16952
+ */
15896
16953
  country?: CountryEnum | BlankEnum;
15897
16954
  backend_id?: string;
15898
16955
  image?: (Blob | File) | null;
@@ -16002,18 +17059,30 @@ export type OnboardingJustificationDocumentationRequestMultipart = {
16002
17059
  };
16003
17060
  export type ProjectRequestForm = {
16004
17061
  name: string;
17062
+ /**
17063
+ * URL-friendly identifier. Only editable by staff users.
17064
+ */
16005
17065
  slug?: string;
16006
17066
  /**
16007
17067
  * Organization
16008
17068
  */
16009
17069
  customer: string;
17070
+ /**
17071
+ * Project description (HTML content will be sanitized)
17072
+ */
16010
17073
  description?: string;
16011
17074
  /**
16012
17075
  * Project type
16013
17076
  */
16014
17077
  type?: string | null;
16015
17078
  backend_id?: string;
17079
+ /**
17080
+ * Project start date. Cannot be edited after the start date has arrived.
17081
+ */
16016
17082
  start_date?: string | null;
17083
+ /**
17084
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17085
+ */
16017
17086
  end_date?: string | null;
16018
17087
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16019
17088
  is_industry?: boolean;
@@ -16022,6 +17091,9 @@ export type ProjectRequestForm = {
16022
17091
  * Project type
16023
17092
  */
16024
17093
  kind?: KindEnum;
17094
+ /**
17095
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17096
+ */
16025
17097
  staff_notes?: string;
16026
17098
  /**
16027
17099
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16030,18 +17102,30 @@ export type ProjectRequestForm = {
16030
17102
  };
16031
17103
  export type ProjectRequestMultipart = {
16032
17104
  name: string;
17105
+ /**
17106
+ * URL-friendly identifier. Only editable by staff users.
17107
+ */
16033
17108
  slug?: string;
16034
17109
  /**
16035
17110
  * Organization
16036
17111
  */
16037
17112
  customer: string;
17113
+ /**
17114
+ * Project description (HTML content will be sanitized)
17115
+ */
16038
17116
  description?: string;
16039
17117
  /**
16040
17118
  * Project type
16041
17119
  */
16042
17120
  type?: string | null;
16043
17121
  backend_id?: string;
17122
+ /**
17123
+ * Project start date. Cannot be edited after the start date has arrived.
17124
+ */
16044
17125
  start_date?: string | null;
17126
+ /**
17127
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17128
+ */
16045
17129
  end_date?: string | null;
16046
17130
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16047
17131
  is_industry?: boolean;
@@ -16050,6 +17134,9 @@ export type ProjectRequestMultipart = {
16050
17134
  * Project type
16051
17135
  */
16052
17136
  kind?: KindEnum;
17137
+ /**
17138
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17139
+ */
16053
17140
  staff_notes?: string;
16054
17141
  /**
16055
17142
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16058,18 +17145,30 @@ export type ProjectRequestMultipart = {
16058
17145
  };
16059
17146
  export type PatchedProjectRequestForm = {
16060
17147
  name?: string;
17148
+ /**
17149
+ * URL-friendly identifier. Only editable by staff users.
17150
+ */
16061
17151
  slug?: string;
16062
17152
  /**
16063
17153
  * Organization
16064
17154
  */
16065
17155
  customer?: string;
17156
+ /**
17157
+ * Project description (HTML content will be sanitized)
17158
+ */
16066
17159
  description?: string;
16067
17160
  /**
16068
17161
  * Project type
16069
17162
  */
16070
17163
  type?: string | null;
16071
17164
  backend_id?: string;
17165
+ /**
17166
+ * Project start date. Cannot be edited after the start date has arrived.
17167
+ */
16072
17168
  start_date?: string | null;
17169
+ /**
17170
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17171
+ */
16073
17172
  end_date?: string | null;
16074
17173
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16075
17174
  is_industry?: boolean;
@@ -16078,6 +17177,9 @@ export type PatchedProjectRequestForm = {
16078
17177
  * Project type
16079
17178
  */
16080
17179
  kind?: KindEnum;
17180
+ /**
17181
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17182
+ */
16081
17183
  staff_notes?: string;
16082
17184
  /**
16083
17185
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16086,18 +17188,30 @@ export type PatchedProjectRequestForm = {
16086
17188
  };
16087
17189
  export type PatchedProjectRequestMultipart = {
16088
17190
  name?: string;
17191
+ /**
17192
+ * URL-friendly identifier. Only editable by staff users.
17193
+ */
16089
17194
  slug?: string;
16090
17195
  /**
16091
17196
  * Organization
16092
17197
  */
16093
17198
  customer?: string;
17199
+ /**
17200
+ * Project description (HTML content will be sanitized)
17201
+ */
16094
17202
  description?: string;
16095
17203
  /**
16096
17204
  * Project type
16097
17205
  */
16098
17206
  type?: string | null;
16099
17207
  backend_id?: string;
17208
+ /**
17209
+ * Project start date. Cannot be edited after the start date has arrived.
17210
+ */
16100
17211
  start_date?: string | null;
17212
+ /**
17213
+ * Project end date. Setting this field requires DELETE_PROJECT permission.
17214
+ */
16101
17215
  end_date?: string | null;
16102
17216
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
16103
17217
  is_industry?: boolean;
@@ -16106,6 +17220,9 @@ export type PatchedProjectRequestMultipart = {
16106
17220
  * Project type
16107
17221
  */
16108
17222
  kind?: KindEnum;
17223
+ /**
17224
+ * Internal notes visible only to staff and support users (HTML content will be sanitized)
17225
+ */
16109
17226
  staff_notes?: string;
16110
17227
  /**
16111
17228
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
@@ -16525,6 +17642,9 @@ export type UserRequestForm = {
16525
17642
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16526
17643
  */
16527
17644
  username: string;
17645
+ /**
17646
+ * URL-friendly identifier. Only editable by staff users.
17647
+ */
16528
17648
  slug?: string;
16529
17649
  native_name?: string;
16530
17650
  job_title?: string;
@@ -16570,6 +17690,9 @@ export type UserRequestMultipart = {
16570
17690
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16571
17691
  */
16572
17692
  username: string;
17693
+ /**
17694
+ * URL-friendly identifier. Only editable by staff users.
17695
+ */
16573
17696
  slug?: string;
16574
17697
  native_name?: string;
16575
17698
  job_title?: string;
@@ -16615,6 +17738,9 @@ export type PatchedUserRequestForm = {
16615
17738
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16616
17739
  */
16617
17740
  username?: string;
17741
+ /**
17742
+ * URL-friendly identifier. Only editable by staff users.
17743
+ */
16618
17744
  slug?: string;
16619
17745
  native_name?: string;
16620
17746
  job_title?: string;
@@ -16659,6 +17785,9 @@ export type PatchedUserRequestMultipart = {
16659
17785
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
16660
17786
  */
16661
17787
  username?: string;
17788
+ /**
17789
+ * URL-friendly identifier. Only editable by staff users.
17790
+ */
16662
17791
  slug?: string;
16663
17792
  native_name?: string;
16664
17793
  job_title?: string;
@@ -20056,7 +21185,7 @@ export type BookingResourcesListData = {
20056
21185
  * Exclude transitional resources with early pending orders
20057
21186
  */
20058
21187
  exclude_pending_transitional?: boolean;
20059
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21188
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
20060
21189
  /**
20061
21190
  * Has termination date
20062
21191
  */
@@ -20372,7 +21501,7 @@ export type BookingResourcesRetrieveData = {
20372
21501
  uuid: string;
20373
21502
  };
20374
21503
  query?: {
20375
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21504
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
20376
21505
  };
20377
21506
  url: '/api/booking-resources/{uuid}/';
20378
21507
  };
@@ -26326,7 +27455,7 @@ export type ManagedRancherClusterResourcesListData = {
26326
27455
  body?: never;
26327
27456
  path?: never;
26328
27457
  query?: {
26329
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27458
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
26330
27459
  /**
26331
27460
  * A page number within the paginated result set.
26332
27461
  */
@@ -26369,7 +27498,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
26369
27498
  uuid: string;
26370
27499
  };
26371
27500
  query?: {
26372
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27501
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
26373
27502
  };
26374
27503
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
26375
27504
  };
@@ -33359,7 +34488,7 @@ export type MarketplaceProviderOfferingsImportOfferingData = {
33359
34488
  url: '/api/marketplace-provider-offerings/import_offering/';
33360
34489
  };
33361
34490
  export type MarketplaceProviderOfferingsImportOfferingResponses = {
33362
- 200: OfferingImportResponse;
34491
+ 200: OfferingImportParameters;
33363
34492
  };
33364
34493
  export type MarketplaceProviderOfferingsImportOfferingResponse = MarketplaceProviderOfferingsImportOfferingResponses[keyof MarketplaceProviderOfferingsImportOfferingResponses];
33365
34494
  export type MarketplaceProviderResourcesListData = {
@@ -33398,7 +34527,7 @@ export type MarketplaceProviderResourcesListData = {
33398
34527
  * Exclude transitional resources with early pending orders
33399
34528
  */
33400
34529
  exclude_pending_transitional?: boolean;
33401
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34530
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
33402
34531
  /**
33403
34532
  * Has termination date
33404
34533
  */
@@ -33713,7 +34842,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
33713
34842
  uuid: string;
33714
34843
  };
33715
34844
  query?: {
33716
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34845
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
33717
34846
  };
33718
34847
  url: '/api/marketplace-provider-resources/{uuid}/';
33719
34848
  };
@@ -34779,7 +35908,7 @@ export type MarketplaceResourcesListData = {
34779
35908
  * Exclude transitional resources with early pending orders
34780
35909
  */
34781
35910
  exclude_pending_transitional?: boolean;
34782
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
35911
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34783
35912
  /**
34784
35913
  * Has termination date
34785
35914
  */
@@ -35094,7 +36223,7 @@ export type MarketplaceResourcesRetrieveData = {
35094
36223
  uuid: string;
35095
36224
  };
35096
36225
  query?: {
35097
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
36226
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
35098
36227
  };
35099
36228
  url: '/api/marketplace-resources/{uuid}/';
35100
36229
  };
@@ -46503,31 +47632,6 @@ export type OpenstackTenantsCountResponses = {
46503
47632
  */
46504
47633
  200: unknown;
46505
47634
  };
46506
- export type OpenstackTenantsCreateData = {
46507
- body: OpenStackTenantRequest;
46508
- path?: never;
46509
- query?: never;
46510
- url: '/api/openstack-tenants/';
46511
- };
46512
- export type OpenstackTenantsCreateResponses = {
46513
- 201: OpenStackTenant;
46514
- };
46515
- export type OpenstackTenantsCreateResponse = OpenstackTenantsCreateResponses[keyof OpenstackTenantsCreateResponses];
46516
- export type OpenstackTenantsDestroyData = {
46517
- body?: never;
46518
- path: {
46519
- uuid: string;
46520
- };
46521
- query?: never;
46522
- url: '/api/openstack-tenants/{uuid}/';
46523
- };
46524
- export type OpenstackTenantsDestroyResponses = {
46525
- /**
46526
- * No response body
46527
- */
46528
- 204: void;
46529
- };
46530
- export type OpenstackTenantsDestroyResponse = OpenstackTenantsDestroyResponses[keyof OpenstackTenantsDestroyResponses];
46531
47635
  export type OpenstackTenantsRetrieveData = {
46532
47636
  body?: never;
46533
47637
  path: {
@@ -49093,7 +50197,7 @@ export type PromotionsCampaignsResourcesListData = {
49093
50197
  uuid: string;
49094
50198
  };
49095
50199
  query?: {
49096
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
50200
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
49097
50201
  /**
49098
50202
  * A page number within the paginated result set.
49099
50203
  */
@@ -55707,6 +56811,295 @@ export type SyncIssuesResponses = {
55707
56811
  */
55708
56812
  202: unknown;
55709
56813
  };
56814
+ export type UserActionExecutionsListData = {
56815
+ body?: never;
56816
+ path?: never;
56817
+ query?: {
56818
+ /**
56819
+ * Which field to use when ordering the results.
56820
+ */
56821
+ o?: string;
56822
+ /**
56823
+ * A page number within the paginated result set.
56824
+ */
56825
+ page?: number;
56826
+ /**
56827
+ * Number of results to return per page.
56828
+ */
56829
+ page_size?: number;
56830
+ };
56831
+ url: '/api/user-action-executions/';
56832
+ };
56833
+ export type UserActionExecutionsListResponses = {
56834
+ 200: Array<UserActionExecution>;
56835
+ };
56836
+ export type UserActionExecutionsListResponse = UserActionExecutionsListResponses[keyof UserActionExecutionsListResponses];
56837
+ export type UserActionExecutionsCountData = {
56838
+ body?: never;
56839
+ path?: never;
56840
+ query?: {
56841
+ /**
56842
+ * Which field to use when ordering the results.
56843
+ */
56844
+ o?: string;
56845
+ /**
56846
+ * A page number within the paginated result set.
56847
+ */
56848
+ page?: number;
56849
+ /**
56850
+ * Number of results to return per page.
56851
+ */
56852
+ page_size?: number;
56853
+ };
56854
+ url: '/api/user-action-executions/';
56855
+ };
56856
+ export type UserActionExecutionsCountResponses = {
56857
+ /**
56858
+ * No response body
56859
+ */
56860
+ 200: unknown;
56861
+ };
56862
+ export type UserActionExecutionsRetrieveData = {
56863
+ body?: never;
56864
+ path: {
56865
+ /**
56866
+ * A unique integer value identifying this user action execution.
56867
+ */
56868
+ id: number;
56869
+ };
56870
+ query?: never;
56871
+ url: '/api/user-action-executions/{id}/';
56872
+ };
56873
+ export type UserActionExecutionsRetrieveResponses = {
56874
+ 200: UserActionExecution;
56875
+ };
56876
+ export type UserActionExecutionsRetrieveResponse = UserActionExecutionsRetrieveResponses[keyof UserActionExecutionsRetrieveResponses];
56877
+ export type UserActionProvidersListData = {
56878
+ body?: never;
56879
+ path?: never;
56880
+ query?: {
56881
+ /**
56882
+ * A page number within the paginated result set.
56883
+ */
56884
+ page?: number;
56885
+ /**
56886
+ * Number of results to return per page.
56887
+ */
56888
+ page_size?: number;
56889
+ };
56890
+ url: '/api/user-action-providers/';
56891
+ };
56892
+ export type UserActionProvidersListResponses = {
56893
+ 200: Array<UserActionProvider>;
56894
+ };
56895
+ export type UserActionProvidersListResponse = UserActionProvidersListResponses[keyof UserActionProvidersListResponses];
56896
+ export type UserActionProvidersCountData = {
56897
+ body?: never;
56898
+ path?: never;
56899
+ query?: {
56900
+ /**
56901
+ * A page number within the paginated result set.
56902
+ */
56903
+ page?: number;
56904
+ /**
56905
+ * Number of results to return per page.
56906
+ */
56907
+ page_size?: number;
56908
+ };
56909
+ url: '/api/user-action-providers/';
56910
+ };
56911
+ export type UserActionProvidersCountResponses = {
56912
+ /**
56913
+ * No response body
56914
+ */
56915
+ 200: unknown;
56916
+ };
56917
+ export type UserActionProvidersRetrieveData = {
56918
+ body?: never;
56919
+ path: {
56920
+ /**
56921
+ * A unique integer value identifying this user action provider.
56922
+ */
56923
+ id: number;
56924
+ };
56925
+ query?: never;
56926
+ url: '/api/user-action-providers/{id}/';
56927
+ };
56928
+ export type UserActionProvidersRetrieveResponses = {
56929
+ 200: UserActionProvider;
56930
+ };
56931
+ export type UserActionProvidersRetrieveResponse = UserActionProvidersRetrieveResponses[keyof UserActionProvidersRetrieveResponses];
56932
+ export type UserActionsListData = {
56933
+ body?: never;
56934
+ path?: never;
56935
+ query?: {
56936
+ action_type?: string;
56937
+ created_after?: string;
56938
+ created_before?: string;
56939
+ due_within_days?: number;
56940
+ include_silenced?: boolean;
56941
+ is_silenced?: boolean;
56942
+ /**
56943
+ * Which field to use when ordering the results.
56944
+ */
56945
+ o?: string;
56946
+ overdue?: boolean;
56947
+ /**
56948
+ * A page number within the paginated result set.
56949
+ */
56950
+ page?: number;
56951
+ /**
56952
+ * Number of results to return per page.
56953
+ */
56954
+ page_size?: number;
56955
+ urgency?: 'high' | 'low' | 'medium';
56956
+ };
56957
+ url: '/api/user-actions/';
56958
+ };
56959
+ export type UserActionsListResponses = {
56960
+ 200: Array<UserAction>;
56961
+ };
56962
+ export type UserActionsListResponse = UserActionsListResponses[keyof UserActionsListResponses];
56963
+ export type UserActionsCountData = {
56964
+ body?: never;
56965
+ path?: never;
56966
+ query?: {
56967
+ action_type?: string;
56968
+ created_after?: string;
56969
+ created_before?: string;
56970
+ due_within_days?: number;
56971
+ include_silenced?: boolean;
56972
+ is_silenced?: boolean;
56973
+ /**
56974
+ * Which field to use when ordering the results.
56975
+ */
56976
+ o?: string;
56977
+ overdue?: boolean;
56978
+ /**
56979
+ * A page number within the paginated result set.
56980
+ */
56981
+ page?: number;
56982
+ /**
56983
+ * Number of results to return per page.
56984
+ */
56985
+ page_size?: number;
56986
+ urgency?: 'high' | 'low' | 'medium';
56987
+ };
56988
+ url: '/api/user-actions/';
56989
+ };
56990
+ export type UserActionsCountResponses = {
56991
+ /**
56992
+ * No response body
56993
+ */
56994
+ 200: unknown;
56995
+ };
56996
+ export type UserActionsRetrieveData = {
56997
+ body?: never;
56998
+ path: {
56999
+ /**
57000
+ * A unique integer value identifying this user action.
57001
+ */
57002
+ id: number;
57003
+ };
57004
+ query?: never;
57005
+ url: '/api/user-actions/{id}/';
57006
+ };
57007
+ export type UserActionsRetrieveResponses = {
57008
+ 200: UserAction;
57009
+ };
57010
+ export type UserActionsRetrieveResponse = UserActionsRetrieveResponses[keyof UserActionsRetrieveResponses];
57011
+ export type UserActionsExecuteActionData = {
57012
+ body: ExecuteActionRequest;
57013
+ path: {
57014
+ /**
57015
+ * A unique integer value identifying this user action.
57016
+ */
57017
+ id: number;
57018
+ };
57019
+ query?: never;
57020
+ url: '/api/user-actions/{id}/execute_action/';
57021
+ };
57022
+ export type UserActionsExecuteActionErrors = {
57023
+ 404: ExecuteActionErrorResponse;
57024
+ 500: ExecuteActionErrorResponse;
57025
+ };
57026
+ export type UserActionsExecuteActionError = UserActionsExecuteActionErrors[keyof UserActionsExecuteActionErrors];
57027
+ export type UserActionsExecuteActionResponses = {
57028
+ 200: ExecuteActionResponse;
57029
+ };
57030
+ export type UserActionsExecuteActionResponse = UserActionsExecuteActionResponses[keyof UserActionsExecuteActionResponses];
57031
+ export type UserActionsSilenceData = {
57032
+ body?: SilenceActionRequest;
57033
+ path: {
57034
+ /**
57035
+ * A unique integer value identifying this user action.
57036
+ */
57037
+ id: number;
57038
+ };
57039
+ query?: never;
57040
+ url: '/api/user-actions/{id}/silence/';
57041
+ };
57042
+ export type UserActionsSilenceResponses = {
57043
+ 200: SilenceActionResponse;
57044
+ };
57045
+ export type UserActionsSilenceResponse = UserActionsSilenceResponses[keyof UserActionsSilenceResponses];
57046
+ export type UserActionsUnsilenceData = {
57047
+ body?: never;
57048
+ path: {
57049
+ /**
57050
+ * A unique integer value identifying this user action.
57051
+ */
57052
+ id: number;
57053
+ };
57054
+ query?: never;
57055
+ url: '/api/user-actions/{id}/unsilence/';
57056
+ };
57057
+ export type UserActionsUnsilenceResponses = {
57058
+ 200: UnsilenceActionResponse;
57059
+ };
57060
+ export type UserActionsUnsilenceResponse = UserActionsUnsilenceResponses[keyof UserActionsUnsilenceResponses];
57061
+ export type UserActionsBulkSilenceData = {
57062
+ body?: SilenceActionRequest;
57063
+ path?: never;
57064
+ query?: never;
57065
+ url: '/api/user-actions/bulk_silence/';
57066
+ };
57067
+ export type UserActionsBulkSilenceResponses = {
57068
+ 200: BulkSilenceResponse;
57069
+ };
57070
+ export type UserActionsBulkSilenceResponse = UserActionsBulkSilenceResponses[keyof UserActionsBulkSilenceResponses];
57071
+ export type UserActionsSummaryRetrieveData = {
57072
+ body?: never;
57073
+ path?: never;
57074
+ query?: never;
57075
+ url: '/api/user-actions/summary/';
57076
+ };
57077
+ export type UserActionsSummaryRetrieveResponses = {
57078
+ 200: UserActionSummary;
57079
+ };
57080
+ export type UserActionsSummaryRetrieveResponse = UserActionsSummaryRetrieveResponses[keyof UserActionsSummaryRetrieveResponses];
57081
+ export type UserActionsSummaryCountData = {
57082
+ body?: never;
57083
+ path?: never;
57084
+ query?: never;
57085
+ url: '/api/user-actions/summary/';
57086
+ };
57087
+ export type UserActionsSummaryCountResponses = {
57088
+ /**
57089
+ * No response body
57090
+ */
57091
+ 200: unknown;
57092
+ };
57093
+ export type UserActionsUpdateActionsData = {
57094
+ body?: UpdateActionsRequest;
57095
+ path?: never;
57096
+ query?: never;
57097
+ url: '/api/user-actions/update_actions/';
57098
+ };
57099
+ export type UserActionsUpdateActionsResponses = {
57100
+ 202: UpdateActionsResponse;
57101
+ };
57102
+ export type UserActionsUpdateActionsResponse = UserActionsUpdateActionsResponses[keyof UserActionsUpdateActionsResponses];
55710
57103
  export type UserAgreementsListData = {
55711
57104
  body?: never;
55712
57105
  path?: never;