waldur-js-client 8.0.6-dev.9 → 8.0.7-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,7 @@ export type AccessorUser = {
17
17
  full_name: string;
18
18
  };
19
19
  export type AccountNameGenerationPolicyEnum = 'project_slug';
20
+ export type ActionTakenEnum = 'allow' | 'flag' | 'warn' | 'redact' | 'block';
20
21
  export type ActiveQueriesStats = {
21
22
  /**
22
23
  * Number of currently active queries
@@ -470,6 +471,7 @@ export type Allocation = {
470
471
  readonly is_active?: boolean;
471
472
  readonly marketplace_offering_uuid?: string | null;
472
473
  readonly marketplace_offering_name?: string | null;
474
+ readonly marketplace_offering_type?: string | null;
473
475
  readonly marketplace_offering_plugin_options?: {
474
476
  [key: string]: unknown;
475
477
  } | null;
@@ -1581,6 +1583,7 @@ export type AwsInstance = {
1581
1583
  readonly image_name?: string;
1582
1584
  readonly marketplace_offering_uuid?: string | null;
1583
1585
  readonly marketplace_offering_name?: string | null;
1586
+ readonly marketplace_offering_type?: string | null;
1584
1587
  readonly marketplace_offering_plugin_options?: {
1585
1588
  [key: string]: unknown;
1586
1589
  } | null;
@@ -1672,6 +1675,7 @@ export type AwsVolume = {
1672
1675
  readonly runtime_state?: string;
1673
1676
  readonly marketplace_offering_uuid?: string | null;
1674
1677
  readonly marketplace_offering_name?: string | null;
1678
+ readonly marketplace_offering_type?: string | null;
1675
1679
  readonly marketplace_offering_plugin_options?: {
1676
1680
  [key: string]: unknown;
1677
1681
  } | null;
@@ -1754,6 +1758,7 @@ export type AzurePublicIp = {
1754
1758
  resource_group?: string;
1755
1759
  readonly marketplace_offering_uuid?: string | null;
1756
1760
  readonly marketplace_offering_name?: string | null;
1761
+ readonly marketplace_offering_type?: string | null;
1757
1762
  readonly marketplace_offering_plugin_options?: {
1758
1763
  [key: string]: unknown;
1759
1764
  } | null;
@@ -1802,6 +1807,7 @@ export type AzureResourceGroup = {
1802
1807
  location?: string;
1803
1808
  readonly marketplace_offering_uuid?: string | null;
1804
1809
  readonly marketplace_offering_name?: string | null;
1810
+ readonly marketplace_offering_type?: string | null;
1805
1811
  readonly marketplace_offering_plugin_options?: {
1806
1812
  [key: string]: unknown;
1807
1813
  } | null;
@@ -1859,6 +1865,7 @@ export type AzureSqlDatabase = {
1859
1865
  readonly server_marketplace_uuid?: string;
1860
1866
  readonly marketplace_offering_uuid?: string | null;
1861
1867
  readonly marketplace_offering_name?: string | null;
1868
+ readonly marketplace_offering_type?: string | null;
1862
1869
  readonly marketplace_offering_plugin_options?: {
1863
1870
  [key: string]: unknown;
1864
1871
  } | null;
@@ -1922,6 +1929,7 @@ export type AzureSqlServer = {
1922
1929
  readonly location_name?: string;
1923
1930
  readonly marketplace_offering_uuid?: string | null;
1924
1931
  readonly marketplace_offering_name?: string | null;
1932
+ readonly marketplace_offering_type?: string | null;
1925
1933
  readonly marketplace_offering_plugin_options?: {
1926
1934
  [key: string]: unknown;
1927
1935
  } | null;
@@ -2010,6 +2018,7 @@ export type AzureVirtualMachine = {
2010
2018
  readonly size_name?: string;
2011
2019
  readonly marketplace_offering_uuid?: string | null;
2012
2020
  readonly marketplace_offering_name?: string | null;
2021
+ readonly marketplace_offering_type?: string | null;
2013
2022
  readonly marketplace_offering_plugin_options?: {
2014
2023
  [key: string]: unknown;
2015
2024
  } | null;
@@ -3385,7 +3394,7 @@ export type ChatRequestRequest = {
3385
3394
  };
3386
3395
  export type ChatResponse = {
3387
3396
  /**
3388
- * Component Alias (e.g. 'markdown', 'code', 'table').
3397
+ * Component key (e.g. 'markdown', 'code', 'table', 'vm_order').
3389
3398
  */
3390
3399
  k?: string;
3391
3400
  /**
@@ -3413,11 +3422,71 @@ export type ChatResponse = {
3413
3422
  */
3414
3423
  n?: number;
3415
3424
  /**
3416
- * System metadata.
3425
+ * System metadata (thread_uuid, message UUIDs).
3417
3426
  */
3418
3427
  m?: {
3419
3428
  [key: string]: unknown;
3420
3429
  };
3430
+ /**
3431
+ * PII detection warning message.
3432
+ */
3433
+ w?: string;
3434
+ /**
3435
+ * vm_order status: 'form' | 'project_form' | 'preview' | 'success' | 'error'.
3436
+ */
3437
+ status?: string;
3438
+ /**
3439
+ * VM name.
3440
+ */
3441
+ name?: string;
3442
+ /**
3443
+ * Flavor display string (e.g. 'm1.small (2 vCPU, 4GB RAM)').
3444
+ */
3445
+ flavor?: string;
3446
+ /**
3447
+ * Image name.
3448
+ */
3449
+ image?: string;
3450
+ /**
3451
+ * Intro text or form instructions.
3452
+ */
3453
+ content?: string;
3454
+ /**
3455
+ * Project name.
3456
+ */
3457
+ project?: string;
3458
+ /**
3459
+ * Organization/customer name.
3460
+ */
3461
+ organization?: string;
3462
+ /**
3463
+ * Project UUID.
3464
+ */
3465
+ project_uuid?: string;
3466
+ /**
3467
+ * Order UUID (present on success).
3468
+ */
3469
+ order_id?: string;
3470
+ /**
3471
+ * Success message (present on success).
3472
+ */
3473
+ message?: string;
3474
+ /**
3475
+ * Error detail (present on error).
3476
+ */
3477
+ error?: string;
3478
+ /**
3479
+ * Available flavor options [{name, cores, ram}]. Present when status='form'.
3480
+ */
3481
+ flavors?: Array<unknown>;
3482
+ /**
3483
+ * Available image options [{name, min_disk, min_ram}]. Present when status='form'.
3484
+ */
3485
+ images?: Array<unknown>;
3486
+ /**
3487
+ * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3488
+ */
3489
+ projects?: Array<unknown>;
3421
3490
  };
3422
3491
  export type ChatSession = {
3423
3492
  readonly uuid?: string;
@@ -4201,6 +4270,7 @@ export type ConstanceSettings = {
4201
4270
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4202
4271
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4203
4272
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4273
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4204
4274
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4205
4275
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4206
4276
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4445,6 +4515,7 @@ export type ConstanceSettingsRequest = {
4445
4515
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4446
4516
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4447
4517
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4518
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4448
4519
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4449
4520
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4450
4521
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4693,7 +4764,7 @@ export type CourseAccount = {
4693
4764
  readonly username: string;
4694
4765
  readonly customer_uuid: string;
4695
4766
  readonly customer_name: string;
4696
- state: ServiceAccountState;
4767
+ state: CourseAccountStateEnum;
4697
4768
  email?: string;
4698
4769
  description?: string;
4699
4770
  readonly error_message: string;
@@ -4708,6 +4779,7 @@ export type CourseAccountRequest = {
4708
4779
  email?: string;
4709
4780
  description?: string;
4710
4781
  };
4782
+ export type CourseAccountStateEnum = 'OK' | 'Closed' | 'Erred' | 'Pending';
4711
4783
  export type CourseAccountsBulkCreateRequest = {
4712
4784
  course_accounts: Array<CourseAccountCreateNestedRequest>;
4713
4785
  project: string;
@@ -4757,6 +4829,100 @@ export type CreateFeedbackRequest = {
4757
4829
  evaluation: number;
4758
4830
  token: string;
4759
4831
  };
4832
+ export type CreateHealthMonitor = {
4833
+ readonly url: string;
4834
+ readonly uuid: string;
4835
+ /**
4836
+ * Pool this health monitor belongs to
4837
+ */
4838
+ pool: string;
4839
+ name?: string;
4840
+ type: LoadBalancerProtocolEnum;
4841
+ /**
4842
+ * Interval between health checks in seconds
4843
+ */
4844
+ delay: number;
4845
+ /**
4846
+ * Time in seconds to timeout a health check
4847
+ */
4848
+ timeout: number;
4849
+ /**
4850
+ * Number of retries before marking member as down
4851
+ */
4852
+ max_retries: number;
4853
+ readonly project: string;
4854
+ readonly service_settings: string;
4855
+ };
4856
+ export type CreateHealthMonitorRequest = {
4857
+ /**
4858
+ * Pool this health monitor belongs to
4859
+ */
4860
+ pool: string;
4861
+ name?: string;
4862
+ type: LoadBalancerProtocolEnum;
4863
+ /**
4864
+ * Interval between health checks in seconds
4865
+ */
4866
+ delay: number;
4867
+ /**
4868
+ * Time in seconds to timeout a health check
4869
+ */
4870
+ timeout: number;
4871
+ /**
4872
+ * Number of retries before marking member as down
4873
+ */
4874
+ max_retries: number;
4875
+ };
4876
+ export type CreateListener = {
4877
+ readonly url: string;
4878
+ readonly uuid: string;
4879
+ /**
4880
+ * Load balancer this listener belongs to
4881
+ */
4882
+ load_balancer: string;
4883
+ name: string;
4884
+ protocol: LoadBalancerProtocolEnum;
4885
+ /**
4886
+ * Port on which the listener listens
4887
+ */
4888
+ protocol_port: number;
4889
+ default_pool?: string | null;
4890
+ readonly project: string;
4891
+ readonly service_settings: string;
4892
+ };
4893
+ export type CreateListenerRequest = {
4894
+ /**
4895
+ * Load balancer this listener belongs to
4896
+ */
4897
+ load_balancer: string;
4898
+ name: string;
4899
+ protocol: LoadBalancerProtocolEnum;
4900
+ /**
4901
+ * Port on which the listener listens
4902
+ */
4903
+ protocol_port: number;
4904
+ default_pool?: string | null;
4905
+ };
4906
+ export type CreateLoadBalancer = {
4907
+ readonly url: string;
4908
+ readonly uuid: string;
4909
+ /**
4910
+ * OpenStack tenant this load balancer belongs to
4911
+ */
4912
+ tenant: string;
4913
+ name: string;
4914
+ vip_subnet_id: string;
4915
+ readonly project: string;
4916
+ readonly service_settings: string;
4917
+ };
4918
+ export type CreateLoadBalancerRequest = {
4919
+ /**
4920
+ * OpenStack tenant this load balancer belongs to
4921
+ */
4922
+ tenant: string;
4923
+ name: string;
4924
+ vip_subnet_id: string;
4925
+ };
4760
4926
  export type CreateManualAssignmentRequest = {
4761
4927
  /**
4762
4928
  * UUID of the reviewer pool entry to assign proposals to
@@ -4781,6 +4947,66 @@ export type CreateManualAssignmentResponse = {
4781
4947
  [key: string]: unknown;
4782
4948
  }>;
4783
4949
  };
4950
+ export type CreatePool = {
4951
+ readonly url: string;
4952
+ readonly uuid: string;
4953
+ /**
4954
+ * Load balancer this pool belongs to
4955
+ */
4956
+ load_balancer: string;
4957
+ name: string;
4958
+ protocol: LoadBalancerProtocolEnum;
4959
+ lb_algorithm?: LbAlgorithmEnum;
4960
+ readonly project: string;
4961
+ readonly service_settings: string;
4962
+ };
4963
+ export type CreatePoolMember = {
4964
+ readonly url: string;
4965
+ readonly uuid: string;
4966
+ /**
4967
+ * Pool this member belongs to
4968
+ */
4969
+ pool: string;
4970
+ name?: string;
4971
+ /**
4972
+ * An IPv4 or IPv6 address.
4973
+ */
4974
+ address: string;
4975
+ /**
4976
+ * Port on the backend server
4977
+ */
4978
+ protocol_port: number;
4979
+ subnet_id: string;
4980
+ weight?: number;
4981
+ readonly project: string;
4982
+ readonly service_settings: string;
4983
+ };
4984
+ export type CreatePoolMemberRequest = {
4985
+ /**
4986
+ * Pool this member belongs to
4987
+ */
4988
+ pool: string;
4989
+ name?: string;
4990
+ /**
4991
+ * An IPv4 or IPv6 address.
4992
+ */
4993
+ address: string;
4994
+ /**
4995
+ * Port on the backend server
4996
+ */
4997
+ protocol_port: number;
4998
+ subnet_id: string;
4999
+ weight?: number;
5000
+ };
5001
+ export type CreatePoolRequest = {
5002
+ /**
5003
+ * Load balancer this pool belongs to
5004
+ */
5005
+ load_balancer: string;
5006
+ name: string;
5007
+ protocol: LoadBalancerProtocolEnum;
5008
+ lb_algorithm?: LbAlgorithmEnum;
5009
+ };
4784
5010
  export type CreateRouter = {
4785
5011
  readonly url: string;
4786
5012
  readonly uuid: string;
@@ -5610,6 +5836,7 @@ export type DigitalOceanDroplet = {
5610
5836
  readonly region_name?: string;
5611
5837
  readonly marketplace_offering_uuid?: string | null;
5612
5838
  readonly marketplace_offering_name?: string | null;
5839
+ readonly marketplace_offering_type?: string | null;
5613
5840
  readonly marketplace_offering_plugin_options?: {
5614
5841
  [key: string]: unknown;
5615
5842
  } | null;
@@ -6083,7 +6310,7 @@ export type EventMetadataResponse = {
6083
6310
  * Map of event group keys to lists of event type enums from EventType
6084
6311
  */
6085
6312
  event_groups: {
6086
- [key: string]: Array<'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' | 'slurm_policy_evaluation' | '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_data_accessed' | '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_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6313
+ [key: string]: Array<'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' | 'slurm_policy_evaluation' | '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_data_accessed' | '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_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6087
6314
  };
6088
6315
  };
6089
6316
  export type EventStats = {
@@ -6162,7 +6389,7 @@ export type EventSubscriptionRequest = {
6162
6389
  */
6163
6390
  observable_objects?: unknown;
6164
6391
  };
6165
- 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' | 'slurm_policy_evaluation' | '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_data_accessed' | '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_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6392
+ 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' | 'slurm_policy_evaluation' | '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_data_accessed' | '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_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6166
6393
  export type ExecuteActionErrorResponse = {
6167
6394
  error: string;
6168
6395
  };
@@ -6764,6 +6991,10 @@ export type GoogleCredentials = {
6764
6991
  image?: string | null;
6765
6992
  readonly organization_groups?: Array<OrganizationGroup>;
6766
6993
  readonly offering_count?: number;
6994
+ /**
6995
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
6996
+ */
6997
+ allowed_domains?: unknown;
6767
6998
  readonly calendar_token?: string;
6768
6999
  readonly calendar_refresh_token?: string;
6769
7000
  readonly google_auth_url?: string;
@@ -8100,6 +8331,7 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8100
8331
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8101
8332
  export type KindEnum = 'default' | 'course' | 'public';
8102
8333
  export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
8334
+ export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8103
8335
  export type LexisLink = {
8104
8336
  readonly url: string;
8105
8337
  readonly uuid: string;
@@ -8164,6 +8396,13 @@ export type LinkToInvoice = {
8164
8396
  export type LinkToInvoiceRequest = {
8165
8397
  invoice: string;
8166
8398
  };
8399
+ export type LoadBalancerAttachFloatingIpRequest = {
8400
+ floating_ip: string;
8401
+ };
8402
+ export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8403
+ export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8404
+ security_groups: Array<string>;
8405
+ };
8167
8406
  export type LockStats = {
8168
8407
  /**
8169
8408
  * Total number of locks currently held
@@ -8706,6 +8945,10 @@ export type MergedPluginOptions = {
8706
8945
  * Service provider can create offering user
8707
8946
  */
8708
8947
  service_provider_can_create_offering_user?: boolean;
8948
+ /**
8949
+ * If set to True, offering users will be automatically marked for deletion by the cleanup task when users lose project access. If False (default), deletion must be triggered manually by the service provider.
8950
+ */
8951
+ offering_user_auto_deletion?: boolean;
8709
8952
  /**
8710
8953
  * Maximum resource termination offset in days
8711
8954
  */
@@ -9000,6 +9243,10 @@ export type MergedPluginOptionsRequest = {
9000
9243
  * Service provider can create offering user
9001
9244
  */
9002
9245
  service_provider_can_create_offering_user?: boolean;
9246
+ /**
9247
+ * If set to True, offering users will be automatically marked for deletion by the cleanup task when users lose project access. If False (default), deletion must be triggered manually by the service provider.
9248
+ */
9249
+ offering_user_auto_deletion?: boolean;
9003
9250
  /**
9004
9251
  * Maximum resource termination offset in days
9005
9252
  */
@@ -9614,9 +9861,10 @@ export type Message = {
9614
9861
  readonly replaces: string;
9615
9862
  readonly created: string;
9616
9863
  readonly is_flagged: boolean;
9617
- readonly injection_score: number;
9618
- injection_severity: InjectionSeverityEnum;
9864
+ severity: InjectionSeverityEnum;
9619
9865
  readonly injection_categories: unknown;
9866
+ readonly pii_categories: unknown;
9867
+ action_taken: ActionTakenEnum;
9620
9868
  };
9621
9869
  export type MessageResponse = {
9622
9870
  message: string;
@@ -9950,12 +10198,28 @@ export type NestedOfferingFileRequest = {
9950
10198
  name: string;
9951
10199
  file: Blob | File;
9952
10200
  };
10201
+ export type NestedParentSoftware = {
10202
+ readonly uuid: string;
10203
+ name: string;
10204
+ readonly url: string;
10205
+ };
10206
+ export type NestedParentSoftwareRequest = {
10207
+ name: string;
10208
+ };
9953
10209
  export type NestedPartition = {
9954
10210
  readonly uuid?: string;
9955
10211
  /**
9956
10212
  * Name of the SLURM partition
9957
10213
  */
9958
10214
  partition_name?: string;
10215
+ /**
10216
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10217
+ */
10218
+ cpu_arch?: string;
10219
+ /**
10220
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10221
+ */
10222
+ gpu_arch?: string;
9959
10223
  /**
9960
10224
  * Default task binding policy (SLURM cpu_bind)
9961
10225
  */
@@ -10038,6 +10302,14 @@ export type NestedPartitionRequest = {
10038
10302
  * Name of the SLURM partition
10039
10303
  */
10040
10304
  partition_name: string;
10305
+ /**
10306
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10307
+ */
10308
+ cpu_arch?: string;
10309
+ /**
10310
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10311
+ */
10312
+ gpu_arch?: string;
10041
10313
  /**
10042
10314
  * Default task binding policy (SLURM cpu_bind)
10043
10315
  */
@@ -10313,7 +10585,7 @@ export type NestedSecurityGroupRule = {
10313
10585
  /**
10314
10586
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10315
10587
  */
10316
- protocol?: ProtocolEnum | BlankEnum;
10588
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10317
10589
  /**
10318
10590
  * Starting port number in the range (1-65535)
10319
10591
  */
@@ -10343,7 +10615,7 @@ export type NestedSecurityGroupRuleRequest = {
10343
10615
  /**
10344
10616
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10345
10617
  */
10346
- protocol?: ProtocolEnum | BlankEnum;
10618
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10347
10619
  /**
10348
10620
  * Starting port number in the range (1-65535)
10349
10621
  */
@@ -10404,6 +10676,10 @@ export type NestedSoftwareTarget = {
10404
10676
  * Target-specific metadata (build options, system requirements, etc.)
10405
10677
  */
10406
10678
  metadata?: unknown;
10679
+ /**
10680
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10681
+ */
10682
+ gpu_architectures?: unknown;
10407
10683
  };
10408
10684
  export type NestedSoftwareTargetRequest = {
10409
10685
  /**
@@ -10426,6 +10702,10 @@ export type NestedSoftwareTargetRequest = {
10426
10702
  * Target-specific metadata (build options, system requirements, etc.)
10427
10703
  */
10428
10704
  metadata?: unknown;
10705
+ /**
10706
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10707
+ */
10708
+ gpu_architectures?: unknown;
10429
10709
  };
10430
10710
  export type NestedSoftwareVersion = {
10431
10711
  readonly uuid: string;
@@ -11198,6 +11478,14 @@ export type OfferingPartition = {
11198
11478
  * Name of the SLURM partition
11199
11479
  */
11200
11480
  partition_name: string;
11481
+ /**
11482
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11483
+ */
11484
+ cpu_arch?: string;
11485
+ /**
11486
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11487
+ */
11488
+ gpu_arch?: string;
11201
11489
  /**
11202
11490
  * Default task binding policy (SLURM cpu_bind)
11203
11491
  */
@@ -11281,6 +11569,14 @@ export type OfferingPartitionRequest = {
11281
11569
  * Name of the SLURM partition
11282
11570
  */
11283
11571
  partition_name: string;
11572
+ /**
11573
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11574
+ */
11575
+ cpu_arch?: string;
11576
+ /**
11577
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11578
+ */
11579
+ gpu_arch?: string;
11284
11580
  /**
11285
11581
  * Default task binding policy (SLURM cpu_bind)
11286
11582
  */
@@ -12150,6 +12446,7 @@ export type OpenStackBackup = {
12150
12446
  readonly tenant_uuid?: string;
12151
12447
  readonly marketplace_offering_uuid?: string | null;
12152
12448
  readonly marketplace_offering_name?: string | null;
12449
+ readonly marketplace_offering_type?: string | null;
12153
12450
  readonly marketplace_offering_plugin_options?: {
12154
12451
  [key: string]: unknown;
12155
12452
  } | null;
@@ -12363,6 +12660,7 @@ export type OpenStackFloatingIp = {
12363
12660
  readonly instance_url?: string | null;
12364
12661
  readonly marketplace_offering_uuid?: string | null;
12365
12662
  readonly marketplace_offering_name?: string | null;
12663
+ readonly marketplace_offering_type?: string | null;
12366
12664
  readonly marketplace_offering_plugin_options?: {
12367
12665
  [key: string]: unknown;
12368
12666
  } | null;
@@ -12389,6 +12687,62 @@ export type OpenStackFloatingIpRequest = {
12389
12687
  */
12390
12688
  router?: string | null;
12391
12689
  };
12690
+ export type OpenStackHealthMonitor = {
12691
+ readonly url?: string;
12692
+ readonly uuid?: string;
12693
+ name?: string;
12694
+ description?: string;
12695
+ readonly service_name?: string;
12696
+ service_settings?: string;
12697
+ readonly service_settings_uuid?: string;
12698
+ readonly service_settings_state?: string;
12699
+ readonly service_settings_error_message?: string;
12700
+ project?: string;
12701
+ readonly project_name?: string;
12702
+ readonly project_uuid?: string;
12703
+ readonly customer?: string;
12704
+ readonly customer_uuid?: string;
12705
+ readonly customer_name?: string;
12706
+ readonly customer_native_name?: string;
12707
+ readonly customer_abbreviation?: string;
12708
+ error_message?: string;
12709
+ error_traceback?: string;
12710
+ readonly resource_type?: string;
12711
+ state?: CoreStates;
12712
+ readonly created?: string;
12713
+ readonly modified?: string;
12714
+ /**
12715
+ * Health monitor ID in Octavia
12716
+ */
12717
+ backend_id?: string | null;
12718
+ readonly access_url?: string | null;
12719
+ /**
12720
+ * Pool this health monitor belongs to
12721
+ */
12722
+ pool?: string;
12723
+ readonly pool_name?: string;
12724
+ readonly pool_uuid?: string;
12725
+ readonly load_balancer_uuid?: string;
12726
+ readonly type?: string;
12727
+ readonly delay?: number;
12728
+ readonly timeout?: number;
12729
+ readonly max_retries?: number;
12730
+ readonly provisioning_status?: string;
12731
+ readonly operating_status?: string;
12732
+ readonly marketplace_offering_uuid?: string | null;
12733
+ readonly marketplace_offering_name?: string | null;
12734
+ readonly marketplace_offering_type?: string | null;
12735
+ readonly marketplace_offering_plugin_options?: {
12736
+ [key: string]: unknown;
12737
+ } | null;
12738
+ readonly marketplace_category_uuid?: string | null;
12739
+ readonly marketplace_category_name?: string | null;
12740
+ readonly marketplace_resource_uuid?: string | null;
12741
+ readonly marketplace_plan_uuid?: string | null;
12742
+ readonly marketplace_resource_state?: string | null;
12743
+ readonly is_usage_based?: boolean | null;
12744
+ readonly is_limit_based?: boolean | null;
12745
+ };
12392
12746
  export type OpenStackImage = {
12393
12747
  readonly url: string;
12394
12748
  readonly uuid: string;
@@ -12519,6 +12873,7 @@ export type OpenStackInstance = {
12519
12873
  rancher_cluster?: RancherClusterReference | null;
12520
12874
  readonly marketplace_offering_uuid?: string | null;
12521
12875
  readonly marketplace_offering_name?: string | null;
12876
+ readonly marketplace_offering_type?: string | null;
12522
12877
  readonly marketplace_offering_plugin_options?: {
12523
12878
  [key: string]: unknown;
12524
12879
  } | null;
@@ -12530,6 +12885,40 @@ export type OpenStackInstance = {
12530
12885
  readonly is_usage_based?: boolean | null;
12531
12886
  readonly is_limit_based?: boolean | null;
12532
12887
  };
12888
+ export type OpenStackInstanceAggregate = {
12889
+ /**
12890
+ * Group key value
12891
+ */
12892
+ group_key: string;
12893
+ /**
12894
+ * Human-readable group label
12895
+ */
12896
+ group_label: string;
12897
+ /**
12898
+ * Number of instances
12899
+ */
12900
+ instance_count: number;
12901
+ /**
12902
+ * Total vCPUs
12903
+ */
12904
+ total_cores: number;
12905
+ /**
12906
+ * Total RAM in MiB
12907
+ */
12908
+ total_ram_mb: number;
12909
+ /**
12910
+ * Total disk in MiB
12911
+ */
12912
+ total_disk_mb: number;
12913
+ /**
12914
+ * Total attached volume size in MiB
12915
+ */
12916
+ total_volume_size_mb: number;
12917
+ /**
12918
+ * Total number of floating IPs
12919
+ */
12920
+ total_floating_ips: number;
12921
+ };
12533
12922
  export type OpenStackInstanceAllowedAddressPairsUpdateRequest = {
12534
12923
  /**
12535
12924
  * The subnet to update allowed address pairs for.
@@ -12556,6 +12945,124 @@ export type OpenStackInstanceFloatingIpsUpdateRequest = {
12556
12945
  export type OpenStackInstancePortsUpdateRequest = {
12557
12946
  ports: Array<OpenStackCreatePortRequest>;
12558
12947
  };
12948
+ export type OpenStackInstanceReport = {
12949
+ /**
12950
+ * Instance UUID
12951
+ */
12952
+ uuid: string;
12953
+ /**
12954
+ * Instance name
12955
+ */
12956
+ name: string;
12957
+ /**
12958
+ * Creation timestamp
12959
+ */
12960
+ created: string;
12961
+ /**
12962
+ * Number of vCPUs
12963
+ */
12964
+ cores: number;
12965
+ /**
12966
+ * RAM in MiB
12967
+ */
12968
+ ram: number;
12969
+ /**
12970
+ * Root disk in MiB
12971
+ */
12972
+ disk: number;
12973
+ /**
12974
+ * Flavor name
12975
+ */
12976
+ flavor_name: string;
12977
+ /**
12978
+ * Flavor disk in MiB
12979
+ */
12980
+ flavor_disk: number;
12981
+ /**
12982
+ * Image name
12983
+ */
12984
+ image_name: string;
12985
+ /**
12986
+ * Hypervisor hostname
12987
+ */
12988
+ hypervisor_hostname: string;
12989
+ /**
12990
+ * Runtime state (e.g. ACTIVE, SHUTOFF)
12991
+ */
12992
+ runtime_state: string;
12993
+ /**
12994
+ * Provisioning state
12995
+ */
12996
+ state: string;
12997
+ /**
12998
+ * Availability zone name
12999
+ */
13000
+ availability_zone_name: string | null;
13001
+ /**
13002
+ * Last start time of the VM
13003
+ */
13004
+ start_time: string | null;
13005
+ /**
13006
+ * Cluster UUID
13007
+ */
13008
+ service_settings_uuid: string;
13009
+ /**
13010
+ * Cluster name
13011
+ */
13012
+ service_settings_name: string;
13013
+ /**
13014
+ * Tenant UUID
13015
+ */
13016
+ tenant_uuid: string;
13017
+ /**
13018
+ * Tenant name
13019
+ */
13020
+ tenant_name: string;
13021
+ /**
13022
+ * Project UUID
13023
+ */
13024
+ project_uuid: string;
13025
+ /**
13026
+ * Project name
13027
+ */
13028
+ project_name: string;
13029
+ /**
13030
+ * Customer UUID
13031
+ */
13032
+ customer_uuid: string;
13033
+ /**
13034
+ * Customer name
13035
+ */
13036
+ customer_name: string;
13037
+ /**
13038
+ * Customer abbreviation
13039
+ */
13040
+ customer_abbreviation: string;
13041
+ /**
13042
+ * Number of attached volumes
13043
+ */
13044
+ volume_count: number;
13045
+ /**
13046
+ * Total attached volume size in MiB
13047
+ */
13048
+ total_volume_size_mb: number;
13049
+ /**
13050
+ * Number of floating IPs
13051
+ */
13052
+ floating_ip_count: number;
13053
+ /**
13054
+ * Number of ports
13055
+ */
13056
+ port_count: number;
13057
+ /**
13058
+ * List of internal IP addresses
13059
+ */
13060
+ internal_ips: Array<string>;
13061
+ /**
13062
+ * List of external IP addresses
13063
+ */
13064
+ external_ips: Array<string>;
13065
+ };
12559
13066
  export type OpenStackInstanceRequest = {
12560
13067
  name: string;
12561
13068
  description?: string;
@@ -12566,6 +13073,145 @@ export type OpenStackInstanceSecurityGroupsUpdateRequest = {
12566
13073
  */
12567
13074
  security_groups: Array<string>;
12568
13075
  };
13076
+ export type OpenStackListener = {
13077
+ readonly url?: string;
13078
+ readonly uuid?: string;
13079
+ name?: string;
13080
+ description?: string;
13081
+ readonly service_name?: string;
13082
+ service_settings?: string;
13083
+ readonly service_settings_uuid?: string;
13084
+ readonly service_settings_state?: string;
13085
+ readonly service_settings_error_message?: string;
13086
+ project?: string;
13087
+ readonly project_name?: string;
13088
+ readonly project_uuid?: string;
13089
+ readonly customer?: string;
13090
+ readonly customer_uuid?: string;
13091
+ readonly customer_name?: string;
13092
+ readonly customer_native_name?: string;
13093
+ readonly customer_abbreviation?: string;
13094
+ error_message?: string;
13095
+ error_traceback?: string;
13096
+ readonly resource_type?: string;
13097
+ state?: CoreStates;
13098
+ readonly created?: string;
13099
+ readonly modified?: string;
13100
+ /**
13101
+ * Listener ID in Octavia
13102
+ */
13103
+ backend_id?: string | null;
13104
+ readonly access_url?: string | null;
13105
+ /**
13106
+ * Load balancer this listener belongs to
13107
+ */
13108
+ load_balancer?: string;
13109
+ readonly load_balancer_name?: string;
13110
+ readonly load_balancer_uuid?: string;
13111
+ readonly protocol?: string;
13112
+ readonly protocol_port?: number;
13113
+ /**
13114
+ * Default pool for this listener
13115
+ */
13116
+ default_pool?: string | null;
13117
+ readonly provisioning_status?: string;
13118
+ readonly operating_status?: string;
13119
+ readonly marketplace_offering_uuid?: string | null;
13120
+ readonly marketplace_offering_name?: string | null;
13121
+ readonly marketplace_offering_type?: string | null;
13122
+ readonly marketplace_offering_plugin_options?: {
13123
+ [key: string]: unknown;
13124
+ } | null;
13125
+ readonly marketplace_category_uuid?: string | null;
13126
+ readonly marketplace_category_name?: string | null;
13127
+ readonly marketplace_resource_uuid?: string | null;
13128
+ readonly marketplace_plan_uuid?: string | null;
13129
+ readonly marketplace_resource_state?: string | null;
13130
+ readonly is_usage_based?: boolean | null;
13131
+ readonly is_limit_based?: boolean | null;
13132
+ };
13133
+ export type OpenStackLoadBalancer = {
13134
+ readonly url?: string;
13135
+ readonly uuid?: string;
13136
+ name?: string;
13137
+ description?: string;
13138
+ readonly service_name?: string;
13139
+ service_settings?: string;
13140
+ readonly service_settings_uuid?: string;
13141
+ readonly service_settings_state?: string;
13142
+ readonly service_settings_error_message?: string;
13143
+ project?: string;
13144
+ readonly project_name?: string;
13145
+ readonly project_uuid?: string;
13146
+ readonly customer?: string;
13147
+ readonly customer_uuid?: string;
13148
+ readonly customer_name?: string;
13149
+ readonly customer_native_name?: string;
13150
+ readonly customer_abbreviation?: string;
13151
+ error_message?: string;
13152
+ error_traceback?: string;
13153
+ readonly resource_type?: string;
13154
+ state?: CoreStates;
13155
+ readonly created?: string;
13156
+ readonly modified?: string;
13157
+ /**
13158
+ * Load balancer ID in Octavia
13159
+ */
13160
+ backend_id?: string | null;
13161
+ readonly access_url?: string | null;
13162
+ /**
13163
+ * OpenStack tenant this load balancer belongs to
13164
+ */
13165
+ tenant?: string;
13166
+ readonly tenant_name?: string;
13167
+ readonly tenant_uuid?: string;
13168
+ /**
13169
+ * An IPv4 or IPv6 address.
13170
+ */
13171
+ vip_address?: string;
13172
+ readonly vip_subnet_id?: string;
13173
+ readonly vip_port_id?: string;
13174
+ /**
13175
+ * Floating IP attached to the VIP port
13176
+ */
13177
+ attached_floating_ip?: string | null;
13178
+ readonly provider?: string;
13179
+ readonly provisioning_status?: string;
13180
+ readonly operating_status?: string;
13181
+ readonly marketplace_offering_uuid?: string | null;
13182
+ readonly marketplace_offering_name?: string | null;
13183
+ readonly marketplace_offering_type?: string | null;
13184
+ readonly marketplace_offering_plugin_options?: {
13185
+ [key: string]: unknown;
13186
+ } | null;
13187
+ readonly marketplace_category_uuid?: string | null;
13188
+ readonly marketplace_category_name?: string | null;
13189
+ readonly marketplace_resource_uuid?: string | null;
13190
+ readonly marketplace_plan_uuid?: string | null;
13191
+ readonly marketplace_resource_state?: string | null;
13192
+ readonly is_usage_based?: boolean | null;
13193
+ readonly is_limit_based?: boolean | null;
13194
+ };
13195
+ export type OpenStackLoadBalancerRequest = {
13196
+ name: string;
13197
+ description?: string;
13198
+ service_settings: string;
13199
+ project: string;
13200
+ error_message?: string;
13201
+ error_traceback?: string;
13202
+ /**
13203
+ * Load balancer ID in Octavia
13204
+ */
13205
+ backend_id?: string | null;
13206
+ /**
13207
+ * OpenStack tenant this load balancer belongs to
13208
+ */
13209
+ tenant: string;
13210
+ /**
13211
+ * Floating IP attached to the VIP port
13212
+ */
13213
+ attached_floating_ip?: string | null;
13214
+ };
12569
13215
  export type OpenStackNestedFloatingIp = {
12570
13216
  readonly url?: string;
12571
13217
  readonly uuid?: string;
@@ -12795,6 +13441,7 @@ export type OpenStackNetwork = {
12795
13441
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
12796
13442
  readonly marketplace_offering_uuid?: string | null;
12797
13443
  readonly marketplace_offering_name?: string | null;
13444
+ readonly marketplace_offering_type?: string | null;
12798
13445
  readonly marketplace_offering_plugin_options?: {
12799
13446
  [key: string]: unknown;
12800
13447
  } | null;
@@ -12810,6 +13457,137 @@ export type OpenStackNetworkRequest = {
12810
13457
  name: string;
12811
13458
  description?: string;
12812
13459
  };
13460
+ export type OpenStackPool = {
13461
+ readonly url?: string;
13462
+ readonly uuid?: string;
13463
+ name?: string;
13464
+ description?: string;
13465
+ readonly service_name?: string;
13466
+ service_settings?: string;
13467
+ readonly service_settings_uuid?: string;
13468
+ readonly service_settings_state?: string;
13469
+ readonly service_settings_error_message?: string;
13470
+ project?: string;
13471
+ readonly project_name?: string;
13472
+ readonly project_uuid?: string;
13473
+ readonly customer?: string;
13474
+ readonly customer_uuid?: string;
13475
+ readonly customer_name?: string;
13476
+ readonly customer_native_name?: string;
13477
+ readonly customer_abbreviation?: string;
13478
+ error_message?: string;
13479
+ error_traceback?: string;
13480
+ readonly resource_type?: string;
13481
+ state?: CoreStates;
13482
+ readonly created?: string;
13483
+ readonly modified?: string;
13484
+ /**
13485
+ * Pool ID in Octavia
13486
+ */
13487
+ backend_id?: string | null;
13488
+ readonly access_url?: string | null;
13489
+ /**
13490
+ * Load balancer this pool belongs to
13491
+ */
13492
+ load_balancer?: string;
13493
+ readonly load_balancer_name?: string;
13494
+ readonly load_balancer_uuid?: string;
13495
+ readonly protocol?: string;
13496
+ readonly lb_algorithm?: string;
13497
+ readonly provisioning_status?: string;
13498
+ readonly operating_status?: string;
13499
+ readonly marketplace_offering_uuid?: string | null;
13500
+ readonly marketplace_offering_name?: string | null;
13501
+ readonly marketplace_offering_type?: string | null;
13502
+ readonly marketplace_offering_plugin_options?: {
13503
+ [key: string]: unknown;
13504
+ } | null;
13505
+ readonly marketplace_category_uuid?: string | null;
13506
+ readonly marketplace_category_name?: string | null;
13507
+ readonly marketplace_resource_uuid?: string | null;
13508
+ readonly marketplace_plan_uuid?: string | null;
13509
+ readonly marketplace_resource_state?: string | null;
13510
+ readonly is_usage_based?: boolean | null;
13511
+ readonly is_limit_based?: boolean | null;
13512
+ };
13513
+ export type OpenStackPoolMember = {
13514
+ readonly url?: string;
13515
+ readonly uuid?: string;
13516
+ name?: string;
13517
+ description?: string;
13518
+ readonly service_name?: string;
13519
+ service_settings?: string;
13520
+ readonly service_settings_uuid?: string;
13521
+ readonly service_settings_state?: string;
13522
+ readonly service_settings_error_message?: string;
13523
+ project?: string;
13524
+ readonly project_name?: string;
13525
+ readonly project_uuid?: string;
13526
+ readonly customer?: string;
13527
+ readonly customer_uuid?: string;
13528
+ readonly customer_name?: string;
13529
+ readonly customer_native_name?: string;
13530
+ readonly customer_abbreviation?: string;
13531
+ error_message?: string;
13532
+ error_traceback?: string;
13533
+ readonly resource_type?: string;
13534
+ state?: CoreStates;
13535
+ readonly created?: string;
13536
+ readonly modified?: string;
13537
+ /**
13538
+ * Member ID in Octavia
13539
+ */
13540
+ backend_id?: string | null;
13541
+ readonly access_url?: string | null;
13542
+ /**
13543
+ * Pool this member belongs to
13544
+ */
13545
+ pool?: string;
13546
+ readonly pool_name?: string;
13547
+ readonly pool_uuid?: string;
13548
+ readonly load_balancer_uuid?: string;
13549
+ /**
13550
+ * An IPv4 or IPv6 address.
13551
+ */
13552
+ address?: string;
13553
+ readonly protocol_port?: number;
13554
+ /**
13555
+ * Subnet ID for the member (required for creation)
13556
+ */
13557
+ subnet_id?: string;
13558
+ readonly weight?: number;
13559
+ readonly provisioning_status?: string;
13560
+ readonly operating_status?: string;
13561
+ readonly marketplace_offering_uuid?: string | null;
13562
+ readonly marketplace_offering_name?: string | null;
13563
+ readonly marketplace_offering_type?: string | null;
13564
+ readonly marketplace_offering_plugin_options?: {
13565
+ [key: string]: unknown;
13566
+ } | null;
13567
+ readonly marketplace_category_uuid?: string | null;
13568
+ readonly marketplace_category_name?: string | null;
13569
+ readonly marketplace_resource_uuid?: string | null;
13570
+ readonly marketplace_plan_uuid?: string | null;
13571
+ readonly marketplace_resource_state?: string | null;
13572
+ readonly is_usage_based?: boolean | null;
13573
+ readonly is_limit_based?: boolean | null;
13574
+ };
13575
+ export type OpenStackPoolRequest = {
13576
+ name: string;
13577
+ description?: string;
13578
+ service_settings: string;
13579
+ project: string;
13580
+ error_message?: string;
13581
+ error_traceback?: string;
13582
+ /**
13583
+ * Pool ID in Octavia
13584
+ */
13585
+ backend_id?: string | null;
13586
+ /**
13587
+ * Load balancer this pool belongs to
13588
+ */
13589
+ load_balancer: string;
13590
+ };
12813
13591
  export type OpenStackPort = {
12814
13592
  readonly url?: string;
12815
13593
  readonly uuid?: string;
@@ -12881,6 +13659,7 @@ export type OpenStackPort = {
12881
13659
  readonly status?: string | null;
12882
13660
  readonly marketplace_offering_uuid?: string | null;
12883
13661
  readonly marketplace_offering_name?: string | null;
13662
+ readonly marketplace_offering_type?: string | null;
12884
13663
  readonly marketplace_offering_plugin_options?: {
12885
13664
  [key: string]: unknown;
12886
13665
  } | null;
@@ -12973,6 +13752,7 @@ export type OpenStackRouter = {
12973
13752
  readonly ports?: Array<OpenStackNestedPort>;
12974
13753
  readonly marketplace_offering_uuid?: string | null;
12975
13754
  readonly marketplace_offering_name?: string | null;
13755
+ readonly marketplace_offering_type?: string | null;
12976
13756
  readonly marketplace_offering_plugin_options?: {
12977
13757
  [key: string]: unknown;
12978
13758
  } | null;
@@ -13033,6 +13813,7 @@ export type OpenStackSecurityGroup = {
13033
13813
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
13034
13814
  readonly marketplace_offering_uuid?: string | null;
13035
13815
  readonly marketplace_offering_name?: string | null;
13816
+ readonly marketplace_offering_type?: string | null;
13036
13817
  readonly marketplace_offering_plugin_options?: {
13037
13818
  [key: string]: unknown;
13038
13819
  } | null;
@@ -13064,7 +13845,7 @@ export type OpenStackSecurityGroupRuleCreate = {
13064
13845
  /**
13065
13846
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13066
13847
  */
13067
- protocol?: ProtocolEnum | BlankEnum;
13848
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13068
13849
  /**
13069
13850
  * Starting port number in the range (1-65535)
13070
13851
  */
@@ -13098,7 +13879,7 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
13098
13879
  /**
13099
13880
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13100
13881
  */
13101
- protocol?: ProtocolEnum | BlankEnum;
13882
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13102
13883
  /**
13103
13884
  * Starting port number in the range (1-65535)
13104
13885
  */
@@ -13129,7 +13910,7 @@ export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
13129
13910
  /**
13130
13911
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13131
13912
  */
13132
- protocol?: ProtocolEnum | BlankEnum;
13913
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13133
13914
  /**
13134
13915
  * Starting port number in the range (1-65535)
13135
13916
  */
@@ -13158,7 +13939,7 @@ export type OpenStackSecurityGroupRuleUpdateRequest = {
13158
13939
  /**
13159
13940
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13160
13941
  */
13161
- protocol?: ProtocolEnum | BlankEnum;
13942
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13162
13943
  /**
13163
13944
  * Starting port number in the range (1-65535)
13164
13945
  */
@@ -13222,6 +14003,7 @@ export type OpenStackServerGroup = {
13222
14003
  readonly instances?: Array<OpenStackNestedInstance>;
13223
14004
  readonly marketplace_offering_uuid?: string | null;
13224
14005
  readonly marketplace_offering_name?: string | null;
14006
+ readonly marketplace_offering_type?: string | null;
13225
14007
  readonly marketplace_offering_plugin_options?: {
13226
14008
  [key: string]: unknown;
13227
14009
  } | null;
@@ -13291,6 +14073,7 @@ export type OpenStackSnapshot = {
13291
14073
  kept_until?: string | null;
13292
14074
  readonly marketplace_offering_uuid?: string | null;
13293
14075
  readonly marketplace_offering_name?: string | null;
14076
+ readonly marketplace_offering_type?: string | null;
13294
14077
  readonly marketplace_offering_plugin_options?: {
13295
14078
  [key: string]: unknown;
13296
14079
  } | null;
@@ -13420,6 +14203,7 @@ export type OpenStackSubNet = {
13420
14203
  readonly is_connected?: boolean;
13421
14204
  readonly marketplace_offering_uuid?: string | null;
13422
14205
  readonly marketplace_offering_name?: string | null;
14206
+ readonly marketplace_offering_type?: string | null;
13423
14207
  readonly marketplace_offering_plugin_options?: {
13424
14208
  [key: string]: unknown;
13425
14209
  } | null;
@@ -13529,6 +14313,7 @@ export type OpenStackTenant = {
13529
14313
  skip_creation_of_default_router?: boolean;
13530
14314
  readonly marketplace_offering_uuid?: string | null;
13531
14315
  readonly marketplace_offering_name?: string | null;
14316
+ readonly marketplace_offering_type?: string | null;
13532
14317
  readonly marketplace_offering_plugin_options?: {
13533
14318
  [key: string]: unknown;
13534
14319
  } | null;
@@ -13673,6 +14458,7 @@ export type OpenStackVolume = {
13673
14458
  readonly extend_enabled?: boolean;
13674
14459
  readonly marketplace_offering_uuid?: string | null;
13675
14460
  readonly marketplace_offering_name?: string | null;
14461
+ readonly marketplace_offering_type?: string | null;
13676
14462
  readonly marketplace_offering_plugin_options?: {
13677
14463
  [key: string]: unknown;
13678
14464
  } | null;
@@ -14093,6 +14879,14 @@ export type PartitionSummary = {
14093
14879
  * Quality of Service (QOS) name
14094
14880
  */
14095
14881
  qos?: string;
14882
+ /**
14883
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14884
+ */
14885
+ cpu_arch?: string;
14886
+ /**
14887
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14888
+ */
14889
+ gpu_arch?: string;
14096
14890
  };
14097
14891
  export type PartitionSummaryRequest = {
14098
14892
  /**
@@ -14107,6 +14901,14 @@ export type PartitionSummaryRequest = {
14107
14901
  * Quality of Service (QOS) name
14108
14902
  */
14109
14903
  qos?: string;
14904
+ /**
14905
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14906
+ */
14907
+ cpu_arch?: string;
14908
+ /**
14909
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14910
+ */
14911
+ gpu_arch?: string;
14110
14912
  };
14111
14913
  export type PasswordChangeRequest = {
14112
14914
  new_password: string;
@@ -14842,6 +15644,14 @@ export type PatchedOfferingPartitionUpdateRequest = {
14842
15644
  * Name of the SLURM partition
14843
15645
  */
14844
15646
  partition_name?: string;
15647
+ /**
15648
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
15649
+ */
15650
+ cpu_arch?: string;
15651
+ /**
15652
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
15653
+ */
15654
+ gpu_arch?: string;
14845
15655
  /**
14846
15656
  * Default task binding policy (SLURM cpu_bind)
14847
15657
  */
@@ -15054,10 +15864,46 @@ export type PatchedOpenStackInstanceRequest = {
15054
15864
  name?: string;
15055
15865
  description?: string;
15056
15866
  };
15867
+ export type PatchedOpenStackLoadBalancerRequest = {
15868
+ name?: string;
15869
+ description?: string;
15870
+ service_settings?: string;
15871
+ project?: string;
15872
+ error_message?: string;
15873
+ error_traceback?: string;
15874
+ /**
15875
+ * Load balancer ID in Octavia
15876
+ */
15877
+ backend_id?: string | null;
15878
+ /**
15879
+ * OpenStack tenant this load balancer belongs to
15880
+ */
15881
+ tenant?: string;
15882
+ /**
15883
+ * Floating IP attached to the VIP port
15884
+ */
15885
+ attached_floating_ip?: string | null;
15886
+ };
15057
15887
  export type PatchedOpenStackNetworkRequest = {
15058
15888
  name?: string;
15059
15889
  description?: string;
15060
15890
  };
15891
+ export type PatchedOpenStackPoolRequest = {
15892
+ name?: string;
15893
+ description?: string;
15894
+ service_settings?: string;
15895
+ project?: string;
15896
+ error_message?: string;
15897
+ error_traceback?: string;
15898
+ /**
15899
+ * Pool ID in Octavia
15900
+ */
15901
+ backend_id?: string | null;
15902
+ /**
15903
+ * Load balancer this pool belongs to
15904
+ */
15905
+ load_balancer?: string;
15906
+ };
15061
15907
  export type PatchedOpenStackPortRequest = {
15062
15908
  name?: string;
15063
15909
  description?: string;
@@ -15803,6 +16649,10 @@ export type PatchedServiceProviderRequest = {
15803
16649
  description?: string;
15804
16650
  enable_notifications?: boolean;
15805
16651
  image?: (Blob | File) | null;
16652
+ /**
16653
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
16654
+ */
16655
+ allowed_domains?: unknown;
15806
16656
  };
15807
16657
  export type PatchedSlurmAllocationRequest = {
15808
16658
  name?: string;
@@ -15904,10 +16754,6 @@ export type PatchedSoftwarePackageRequest = {
15904
16754
  * Whether this package is an extension of another package
15905
16755
  */
15906
16756
  is_extension?: boolean;
15907
- /**
15908
- * Parent package for extensions (e.g., Python package within Python)
15909
- */
15910
- parent_software?: string | null;
15911
16757
  };
15912
16758
  export type PatchedTagRequest = {
15913
16759
  name?: string;
@@ -15918,6 +16764,20 @@ export type PatchedTemplateRequest = {
15918
16764
  description?: string;
15919
16765
  issue_type?: IssueTypeEnum;
15920
16766
  };
16767
+ export type PatchedUpdateHealthMonitorRequest = {
16768
+ name?: string;
16769
+ delay?: number;
16770
+ timeout?: number;
16771
+ max_retries?: number;
16772
+ };
16773
+ export type PatchedUpdateListenerRequest = {
16774
+ name?: string;
16775
+ default_pool?: string | null;
16776
+ };
16777
+ export type PatchedUpdatePoolMemberRequest = {
16778
+ name?: string;
16779
+ weight?: number;
16780
+ };
15921
16781
  export type PatchedUserAgreementRequest = {
15922
16782
  content?: string;
15923
16783
  agreement_type?: AgreementTypeEnum;
@@ -17288,7 +18148,6 @@ export type ProtectedRoundRequest = {
17288
18148
  review_duration_in_days?: number;
17289
18149
  minimum_number_of_reviewers?: number | null;
17290
18150
  };
17291
- export type ProtocolEnum = 'tcp' | 'udp' | 'icmp';
17292
18151
  export type ProviderCustomerStats = {
17293
18152
  /**
17294
18153
  * Total number of customers
@@ -18430,6 +19289,7 @@ export type RancherApplication = {
18430
19289
  readonly external_url?: string | null;
18431
19290
  readonly marketplace_offering_uuid?: string | null;
18432
19291
  readonly marketplace_offering_name?: string | null;
19292
+ readonly marketplace_offering_type?: string | null;
18433
19293
  readonly marketplace_offering_plugin_options?: {
18434
19294
  [key: string]: unknown;
18435
19295
  } | null;
@@ -18579,6 +19439,7 @@ export type RancherCluster = {
18579
19439
  readonly router_ips?: Array<unknown>;
18580
19440
  readonly marketplace_offering_uuid?: string | null;
18581
19441
  readonly marketplace_offering_name?: string | null;
19442
+ readonly marketplace_offering_type?: string | null;
18582
19443
  readonly marketplace_offering_plugin_options?: {
18583
19444
  [key: string]: unknown;
18584
19445
  } | null;
@@ -18618,7 +19479,7 @@ export type RancherClusterSecurityGroupRule = {
18618
19479
  /**
18619
19480
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18620
19481
  */
18621
- protocol?: ProtocolEnum | BlankEnum;
19482
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18622
19483
  /**
18623
19484
  * Starting port number in the range (1-65535)
18624
19485
  */
@@ -18645,7 +19506,7 @@ export type RancherClusterSecurityGroupRuleRequest = {
18645
19506
  /**
18646
19507
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18647
19508
  */
18648
- protocol?: ProtocolEnum | BlankEnum;
19509
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18649
19510
  /**
18650
19511
  * Starting port number in the range (1-65535)
18651
19512
  */
@@ -18780,6 +19641,7 @@ export type RancherIngress = {
18780
19641
  rules?: unknown;
18781
19642
  readonly marketplace_offering_uuid?: string | null;
18782
19643
  readonly marketplace_offering_name?: string | null;
19644
+ readonly marketplace_offering_type?: string | null;
18783
19645
  readonly marketplace_offering_plugin_options?: {
18784
19646
  [key: string]: unknown;
18785
19647
  } | null;
@@ -18971,6 +19833,7 @@ export type RancherService = {
18971
19833
  target_workloads?: Array<RancherNestedWorkload>;
18972
19834
  readonly marketplace_offering_uuid?: string | null;
18973
19835
  readonly marketplace_offering_name?: string | null;
19836
+ readonly marketplace_offering_type?: string | null;
18974
19837
  readonly marketplace_offering_plugin_options?: {
18975
19838
  [key: string]: unknown;
18976
19839
  } | null;
@@ -19019,6 +19882,7 @@ export type RancherServiceCreate = {
19019
19882
  target_workloads?: Array<RancherWorkloadCreate>;
19020
19883
  readonly marketplace_offering_uuid: string | null;
19021
19884
  readonly marketplace_offering_name: string | null;
19885
+ readonly marketplace_offering_type: string | null;
19022
19886
  readonly marketplace_offering_plugin_options: {
19023
19887
  [key: string]: unknown;
19024
19888
  } | null;
@@ -19236,6 +20100,7 @@ export type RemoteAllocation = {
19236
20100
  readonly is_active?: boolean;
19237
20101
  readonly marketplace_offering_uuid?: string | null;
19238
20102
  readonly marketplace_offering_name?: string | null;
20103
+ readonly marketplace_offering_type?: string | null;
19239
20104
  readonly marketplace_offering_plugin_options?: {
19240
20105
  [key: string]: unknown;
19241
20106
  } | null;
@@ -21359,6 +22224,7 @@ export type SectionRequest = {
21359
22224
  */
21360
22225
  is_standalone?: boolean;
21361
22226
  };
22227
+ export type SecurityGroupRuleProtocolEnum = 'tcp' | 'udp' | 'icmp';
21362
22228
  export type SelfDeclaredConflictRequest = {
21363
22229
  proposal_uuid: string;
21364
22230
  coi_type: CoiTypeEnum;
@@ -21425,6 +22291,10 @@ export type ServiceProvider = {
21425
22291
  image?: string | null;
21426
22292
  readonly organization_groups?: Array<OrganizationGroup>;
21427
22293
  readonly offering_count?: number;
22294
+ /**
22295
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22296
+ */
22297
+ allowed_domains?: unknown;
21428
22298
  };
21429
22299
  export type ServiceProviderAccess = {
21430
22300
  offering_uuid: string;
@@ -21477,6 +22347,10 @@ export type ServiceProviderRequest = {
21477
22347
  enable_notifications?: boolean;
21478
22348
  customer: string;
21479
22349
  image?: (Blob | File) | null;
22350
+ /**
22351
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22352
+ */
22353
+ allowed_domains?: unknown;
21480
22354
  };
21481
22355
  export type ServiceProviderRevenues = {
21482
22356
  /**
@@ -21691,6 +22565,7 @@ export type SlurmAllocation = {
21691
22565
  readonly is_active?: boolean;
21692
22566
  readonly marketplace_offering_uuid?: string | null;
21693
22567
  readonly marketplace_offering_name?: string | null;
22568
+ readonly marketplace_offering_type?: string | null;
21694
22569
  readonly marketplace_offering_plugin_options?: {
21695
22570
  [key: string]: unknown;
21696
22571
  } | null;
@@ -22193,10 +23068,7 @@ export type SoftwarePackage = {
22193
23068
  * Whether this package is an extension of another package
22194
23069
  */
22195
23070
  is_extension?: boolean;
22196
- /**
22197
- * Parent package for extensions (e.g., Python package within Python)
22198
- */
22199
- parent_software?: string | null;
23071
+ readonly parent_softwares: Array<NestedParentSoftware>;
22200
23072
  readonly catalog_name: string;
22201
23073
  readonly catalog_version: string;
22202
23074
  readonly catalog_type: string;
@@ -22226,10 +23098,6 @@ export type SoftwarePackageRequest = {
22226
23098
  * Whether this package is an extension of another package
22227
23099
  */
22228
23100
  is_extension?: boolean;
22229
- /**
22230
- * Parent package for extensions (e.g., Python package within Python)
22231
- */
22232
- parent_software?: string | null;
22233
23101
  };
22234
23102
  export type SoftwareTarget = {
22235
23103
  readonly url: string;
@@ -22256,6 +23124,10 @@ export type SoftwareTarget = {
22256
23124
  * Target-specific metadata (build options, system requirements, etc.)
22257
23125
  */
22258
23126
  readonly metadata: unknown;
23127
+ /**
23128
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
23129
+ */
23130
+ readonly gpu_architectures: unknown;
22259
23131
  };
22260
23132
  export type SoftwareVersion = {
22261
23133
  readonly url: string;
@@ -22627,6 +23499,12 @@ export type TableGrowthStatsResponse = {
22627
23499
  */
22628
23500
  alerts: Array<TableGrowthAlert>;
22629
23501
  };
23502
+ export type TableGrowthTriggerResponse = {
23503
+ /**
23504
+ * Status message about the triggered task
23505
+ */
23506
+ detail: string;
23507
+ };
22630
23508
  export type TableSize = {
22631
23509
  /**
22632
23510
  * Name of the database table
@@ -22924,6 +23802,26 @@ export type UpdateActionsResponse = {
22924
23802
  message: string;
22925
23803
  provider_action_type?: string | null;
22926
23804
  };
23805
+ export type UpdateHealthMonitor = {
23806
+ name?: string;
23807
+ delay?: number;
23808
+ timeout?: number;
23809
+ max_retries?: number;
23810
+ };
23811
+ export type UpdateHealthMonitorRequest = {
23812
+ name?: string;
23813
+ delay?: number;
23814
+ timeout?: number;
23815
+ max_retries?: number;
23816
+ };
23817
+ export type UpdateListener = {
23818
+ name?: string;
23819
+ default_pool?: string | null;
23820
+ };
23821
+ export type UpdateListenerRequest = {
23822
+ name?: string;
23823
+ default_pool?: string | null;
23824
+ };
22927
23825
  export type UpdateOfferingComponentRequest = {
22928
23826
  uuid: string;
22929
23827
  billing_type: BillingTypeEnum;
@@ -22957,6 +23855,14 @@ export type UpdateOfferingComponentRequest = {
22957
23855
  min_prepaid_duration?: number | null;
22958
23856
  max_prepaid_duration?: number | null;
22959
23857
  };
23858
+ export type UpdatePoolMember = {
23859
+ name?: string;
23860
+ weight?: number;
23861
+ };
23862
+ export type UpdatePoolMemberRequest = {
23863
+ name?: string;
23864
+ weight?: number;
23865
+ };
22960
23866
  export type UrgencyEnum = 'low' | 'medium' | 'high';
22961
23867
  export type User = {
22962
23868
  readonly url?: string;
@@ -23664,6 +24570,7 @@ export type VmwareDisk = {
23664
24570
  readonly vm_name?: string;
23665
24571
  readonly marketplace_offering_uuid?: string | null;
23666
24572
  readonly marketplace_offering_name?: string | null;
24573
+ readonly marketplace_offering_type?: string | null;
23667
24574
  readonly marketplace_offering_plugin_options?: {
23668
24575
  [key: string]: unknown;
23669
24576
  } | null;
@@ -23777,6 +24684,7 @@ export type VmwarePort = {
23777
24684
  readonly network_name?: string;
23778
24685
  readonly marketplace_offering_uuid?: string | null;
23779
24686
  readonly marketplace_offering_name?: string | null;
24687
+ readonly marketplace_offering_type?: string | null;
23780
24688
  readonly marketplace_offering_plugin_options?: {
23781
24689
  [key: string]: unknown;
23782
24690
  } | null;
@@ -23883,6 +24791,7 @@ export type VmwareVirtualMachine = {
23883
24791
  readonly tools_installed?: boolean;
23884
24792
  readonly marketplace_offering_uuid?: string | null;
23885
24793
  readonly marketplace_offering_name?: string | null;
24794
+ readonly marketplace_offering_type?: string | null;
23886
24795
  readonly marketplace_offering_plugin_options?: {
23887
24796
  [key: string]: unknown;
23888
24797
  } | null;
@@ -24828,22 +25737,38 @@ export type ServiceProviderRequestForm = {
24828
25737
  enable_notifications?: boolean;
24829
25738
  customer: string;
24830
25739
  image?: (Blob | File) | null;
25740
+ /**
25741
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25742
+ */
25743
+ allowed_domains?: unknown;
24831
25744
  };
24832
25745
  export type ServiceProviderRequestMultipart = {
24833
25746
  description?: string;
24834
25747
  enable_notifications?: boolean;
24835
25748
  customer: string;
24836
25749
  image?: (Blob | File) | null;
25750
+ /**
25751
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25752
+ */
25753
+ allowed_domains?: unknown;
24837
25754
  };
24838
25755
  export type PatchedServiceProviderRequestForm = {
24839
25756
  description?: string;
24840
25757
  enable_notifications?: boolean;
24841
25758
  image?: (Blob | File) | null;
25759
+ /**
25760
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25761
+ */
25762
+ allowed_domains?: unknown;
24842
25763
  };
24843
25764
  export type PatchedServiceProviderRequestMultipart = {
24844
25765
  description?: string;
24845
25766
  enable_notifications?: boolean;
24846
25767
  image?: (Blob | File) | null;
25768
+ /**
25769
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25770
+ */
25771
+ allowed_domains?: unknown;
24847
25772
  };
24848
25773
  export type OnboardingJustificationDocumentationRequestForm = {
24849
25774
  /**
@@ -25221,6 +26146,7 @@ export type ConstanceSettingsRequestForm = {
25221
26146
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25222
26147
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25223
26148
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26149
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25224
26150
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25225
26151
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25226
26152
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25465,6 +26391,7 @@ export type ConstanceSettingsRequestMultipart = {
25465
26391
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25466
26392
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25467
26393
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26394
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25468
26395
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25469
26396
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25470
26397
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25957,13 +26884,13 @@ export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created'
25957
26884
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
25958
26885
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
25959
26886
  export type AssignmentItemOEnum = '-affinity_score' | '-created' | '-responded_at' | '-status' | 'affinity_score' | 'created' | 'responded_at' | 'status';
25960
- export type AwsInstanceFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'region' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'uuid';
25961
- export type AwsVolumeFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device' | 'error_message' | 'error_traceback' | 'instance' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'region' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'volume_type';
25962
- export type AzurePublicIpFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'location' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
25963
- export type AzureResourceGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'location' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
25964
- export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset' | 'collation' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_group_name' | 'resource_type' | 'server' | 'server_marketplace_uuid' | 'server_name' | 'server_uuid' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
25965
- export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
25966
- export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
26887
+ export type AwsInstanceFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'region' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'uuid';
26888
+ export type AwsVolumeFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device' | 'error_message' | 'error_traceback' | 'instance' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'region' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'volume_type';
26889
+ export type AzurePublicIpFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'location' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26890
+ export type AzureResourceGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'location' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26891
+ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset' | 'collation' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_group_name' | 'resource_type' | 'server' | 'server_marketplace_uuid' | 'server_name' | 'server_uuid' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26892
+ export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
26893
+ export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
25967
26894
  export type BackendResourceReqOEnum = '-created' | 'created';
25968
26895
  export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
25969
26896
  export type BookingResourceFieldEnum = '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_backend_id' | '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';
@@ -25987,12 +26914,12 @@ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_
25987
26914
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
25988
26915
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
25989
26916
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
25990
- export type DigitalOceanDropletFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'region' | 'region_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'uuid';
26917
+ export type DigitalOceanDropletFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'region' | 'region_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'uuid';
25991
26918
  export type DigitalOceanImageOEnum = '-distribution' | '-type' | 'distribution' | 'type';
25992
26919
  export type EmailLogOEnum = '-sent_at' | '-subject' | 'sent_at' | 'subject';
25993
26920
  export type EventFieldEnum = 'context' | 'created' | 'event_type' | 'message' | 'uuid';
25994
26921
  export type ExpertiseCategoryOEnum = '-code' | '-level' | '-name' | 'code' | 'level' | 'name';
25995
- export type GoogleCredentialsFieldEnum = 'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26922
+ export type GoogleCredentialsFieldEnum = 'allowed_domains' | 'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
25996
26923
  export type WebHookContentTypeEnum1 = 1 | 2;
25997
26924
  export type InvoiceFieldEnum = 'backend_id' | 'compensations' | 'customer' | 'customer_details' | 'due_date' | 'incurred_costs' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year';
25998
26925
  export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month' | 'year';
@@ -26030,7 +26957,7 @@ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy'
26030
26957
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26031
26958
  export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
26032
26959
  export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
26033
- export type ServiceProviderFieldEnum = 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26960
+ export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26034
26961
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
26035
26962
  export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date';
26036
26963
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
@@ -26043,6 +26970,7 @@ export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' |
26043
26970
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
26044
26971
  export type SoftwareTargetOEnum = '-cpu_family' | '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_family' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
26045
26972
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
26973
+ export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
26046
26974
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
26047
26975
  export type OnboardingJustificationOEnum = '-created' | '-modified' | '-validated_at' | 'created' | 'modified' | 'validated_at';
26048
26976
  export type OnboardingJustificationValidationDecisionEnum = 'Approved' | 'Pending Review' | 'Rejected';
@@ -26051,25 +26979,30 @@ export type OnboardingVerificationStatusEnum1 = 'Escalated for manual validation
26051
26979
  export type OnboardingVerificationValidationMethodEnum = 'Austrian Business Register (WirtschaftsCompass)' | 'Estonian Business Register (ariregister)' | 'Norwegian Business Register (Brreg)' | 'Swedish Business Register (Bolagsverket)';
26052
26980
  export type ChecklistResponseChecklistTypeEnum = 'customer' | 'intent';
26053
26981
  export type AvailableChecklistsResponseChecklistTypeEnum = 'customer' | 'intent' | 'all';
26054
- export type AllocationFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'groupname' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26055
- export type RemoteAllocationFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'remote_project_identifier' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26056
- export type OpenStackBackupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'instance' | 'instance_floating_ips' | 'instance_marketplace_uuid' | 'instance_name' | 'instance_ports' | 'instance_security_groups' | 'is_limit_based' | 'is_usage_based' | 'kept_until' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'restorations' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant_uuid' | 'url' | 'uuid';
26982
+ export type AllocationFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'groupname' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26983
+ export type RemoteAllocationFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'remote_project_identifier' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26984
+ export type OpenStackBackupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'instance' | 'instance_floating_ips' | 'instance_marketplace_uuid' | 'instance_name' | 'instance_ports' | 'instance_security_groups' | 'is_limit_based' | 'is_usage_based' | 'kept_until' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'restorations' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant_uuid' | 'url' | 'uuid';
26057
26985
  export type ExternalNetworkFieldEnum = 'backend_id' | 'description' | 'is_default' | 'is_shared' | 'name' | 'settings' | 'status' | 'subnets' | 'url' | 'uuid';
26058
26986
  export type OpenStackFlavorFieldEnum = 'backend_id' | 'cores' | 'disk' | 'display_name' | 'name' | 'ram' | 'settings' | 'url' | 'uuid';
26059
26987
  export type OpenStackFlavorOEnum = '-cores' | '-disk' | '-ram' | 'cores' | 'disk' | 'ram';
26060
- export type OpenStackFloatingIpFieldEnum = 'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'router' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26061
- export type OpenStackInstanceFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes';
26988
+ export type OpenStackFloatingIpFieldEnum = 'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'router' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26989
+ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'delay' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'max_retries' | 'modified' | 'name' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'timeout' | 'type' | 'url' | 'uuid';
26990
+ export type OpenStackInstanceFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes';
26062
26991
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
26063
- export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
26064
- export type OpenStackPortFieldEnum = 'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26992
+ export type OpenStackListenerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_pool' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26993
+ export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port_id' | 'vip_subnet_id';
26994
+ export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
26995
+ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_id' | 'url' | 'uuid' | 'weight';
26996
+ export type OpenStackPoolFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'lb_algorithm' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26997
+ export type OpenStackPortFieldEnum = 'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26065
26998
  export type OpenStackPortOEnum = '-admin_state_up' | '-created' | '-device_owner' | '-instance_name' | '-mac_address' | '-name' | '-network_name' | '-status' | '-subnet_name' | 'admin_state_up' | 'created' | 'device_owner' | 'instance_name' | 'mac_address' | 'name' | 'network_name' | 'status' | 'subnet_name';
26066
- export type OpenStackRouterFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'offering_external_ips' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'routes' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26067
- export type OpenStackSecurityGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'rules' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26068
- export type OpenStackServerGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'display_name' | 'error_message' | 'error_traceback' | 'instances' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'policy' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
26069
- export type OpenStackSnapshotFieldEnum = 'access_url' | 'action' | 'action_details' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'kept_until' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'restorations' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_volume' | 'source_volume_marketplace_uuid' | 'source_volume_name' | 'state' | 'url' | 'uuid';
26070
- export type OpenStackSubNetFieldEnum = 'access_url' | 'allocation_pools' | 'backend_id' | 'cidr' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disable_gateway' | 'dns_nameservers' | 'enable_dhcp' | 'error_message' | 'error_traceback' | 'gateway_ip' | 'host_routes' | 'ip_version' | 'is_connected' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'url' | 'uuid';
26071
- export type OpenStackTenantFieldEnum = 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'external_network_ref_name' | 'external_network_ref_uuid' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid';
26072
- export type OpenStackVolumeFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'bootable' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device' | 'error_message' | 'error_traceback' | 'extend_enabled' | 'image' | 'image_metadata' | 'image_name' | 'instance' | 'instance_marketplace_uuid' | 'instance_name' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_snapshot' | 'state' | 'tenant' | 'tenant_uuid' | 'type' | 'type_name' | 'url' | 'uuid';
26999
+ export type OpenStackRouterFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'offering_external_ips' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'routes' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27000
+ export type OpenStackSecurityGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'rules' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27001
+ export type OpenStackServerGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'display_name' | 'error_message' | 'error_traceback' | 'instances' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'policy' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27002
+ export type OpenStackSnapshotFieldEnum = 'access_url' | 'action' | 'action_details' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'kept_until' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'restorations' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_volume' | 'source_volume_marketplace_uuid' | 'source_volume_name' | 'state' | 'url' | 'uuid';
27003
+ export type OpenStackSubNetFieldEnum = 'access_url' | 'allocation_pools' | 'backend_id' | 'cidr' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disable_gateway' | 'dns_nameservers' | 'enable_dhcp' | 'error_message' | 'error_traceback' | 'gateway_ip' | 'host_routes' | 'ip_version' | 'is_connected' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'url' | 'uuid';
27004
+ export type OpenStackTenantFieldEnum = 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'external_network_ref_name' | 'external_network_ref_uuid' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid';
27005
+ export type OpenStackVolumeFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'bootable' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device' | 'error_message' | 'error_traceback' | 'extend_enabled' | 'image' | 'image_metadata' | 'image_name' | 'instance' | 'instance_marketplace_uuid' | 'instance_name' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_snapshot' | 'state' | 'tenant' | 'tenant_uuid' | 'type' | 'type_name' | 'url' | 'uuid';
26073
27006
  export type PaymentProfileOEnum = '-is_active' | '-name' | '-payment_type' | 'is_active' | 'name' | 'payment_type';
26074
27007
  export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-project_name' | '-value' | 'end_date' | 'expected_consumption' | 'project_name' | 'value';
26075
27008
  export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
@@ -26083,12 +27016,12 @@ export type ProviderRequestedOfferingOEnum = '-call__name' | '-created' | '-offe
26083
27016
  export type ProviderRequestedResourceOEnum = '-created' | '-offering__name' | '-proposal__name' | '-resource__name' | 'created' | 'offering__name' | 'proposal__name' | 'resource__name';
26084
27017
  export type ProposalReviewOEnum = '-created' | '-state' | 'created' | 'state';
26085
27018
  export type InvoiceItemOEnum1 = '-invoice_customer_name' | '-project_name' | '-resource_offering_name' | '-unit_price' | 'invoice_customer_name' | 'project_name' | 'resource_offering_name' | 'unit_price';
26086
- export type RancherApplicationFieldEnum = 'access_url' | 'answers' | 'backend_id' | 'catalog_name' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_url' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'namespace' | 'namespace_name' | 'project' | 'project_name' | 'project_uuid' | 'rancher_project' | 'rancher_project_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'url' | 'uuid' | 'version';
26087
- export type RancherClusterFieldEnum = 'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project';
26088
- export type RancherIngressFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'namespace' | 'namespace_name' | 'project' | 'project_name' | 'project_uuid' | 'rancher_project' | 'rancher_project_name' | 'resource_type' | 'rules' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
27019
+ export type RancherApplicationFieldEnum = 'access_url' | 'answers' | 'backend_id' | 'catalog_name' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_url' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'namespace' | 'namespace_name' | 'project' | 'project_name' | 'project_uuid' | 'rancher_project' | 'rancher_project_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'url' | 'uuid' | 'version';
27020
+ export type RancherClusterFieldEnum = 'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project';
27021
+ export type RancherIngressFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'namespace' | 'namespace_name' | 'project' | 'project_name' | 'project_uuid' | 'rancher_project' | 'rancher_project_name' | 'resource_type' | 'rules' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
26089
27022
  export type RancherNamespaceOEnum = '-cluster_name' | '-name' | '-project_name' | 'cluster_name' | 'name' | 'project_name';
26090
27023
  export type RoleTemplateOEnum = '-name' | '-scope_type' | 'name' | 'scope_type';
26091
- export type RancherServiceFieldEnum = 'access_url' | 'backend_id' | 'cluster_ip' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'namespace' | 'namespace_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'selector' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'target_workloads' | 'url' | 'uuid';
27024
+ export type RancherServiceFieldEnum = 'access_url' | 'backend_id' | 'cluster_ip' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'namespace' | 'namespace_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'selector' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'target_workloads' | 'url' | 'uuid';
26092
27025
  export type RancherTemplateOEnum = '-catalog_name' | '-name' | 'catalog_name' | 'name';
26093
27026
  export type RancherWorkloadOEnum = '-cluster_name' | '-name' | '-namespace_name' | '-project_name' | 'cluster_name' | 'name' | 'namespace_name' | 'project_name';
26094
27027
  export type ReviewerBidOEnum = '-bid' | '-modified_at' | '-submitted_at' | 'bid' | 'modified_at' | 'submitted_at';
@@ -26096,16 +27029,16 @@ export type ReviewerProfileOEnum = '-created' | '-user_email' | '-user_name' | '
26096
27029
  export type ReviewerSuggestionOEnum = '-affinity_score' | '-created' | '-reviewed_at' | '-status' | 'affinity_score' | 'created' | 'reviewed_at' | 'status';
26097
27030
  export type RoleDetailsFieldEnum = 'content_type' | 'description' | 'description_ar' | 'description_cs' | 'description_da' | 'description_de' | 'description_en' | 'description_es' | 'description_et' | 'description_fr' | 'description_it' | 'description_lt' | 'description_lv' | 'description_nb' | 'description_ru' | 'description_sv' | 'is_active' | 'is_system_role' | 'name' | 'permissions' | 'users_count' | 'uuid';
26098
27031
  export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_native_name' | 'error_message' | 'name' | 'options' | 'scope' | 'scope_uuid' | 'shared' | 'state' | 'terms_of_services' | 'type' | 'url' | 'uuid';
26099
- export type SlurmAllocationFieldEnum = 'access_url' | 'backend_id' | 'cpu_limit' | 'cpu_usage' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'gateway' | 'gpu_limit' | 'gpu_usage' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram_limit' | 'ram_usage' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'username' | 'uuid';
27032
+ export type SlurmAllocationFieldEnum = 'access_url' | 'backend_id' | 'cpu_limit' | 'cpu_usage' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'gateway' | 'gpu_limit' | 'gpu_usage' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram_limit' | 'ram_usage' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'username' | 'uuid';
26100
27033
  export type FirecrestJobFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'file' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'report' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'user' | 'user_username' | 'user_uuid' | 'uuid';
26101
27034
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
26102
27035
  export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last_name' | '-created' | '-customer_name' | '-key' | '-modified' | '-priority' | '-project_name' | '-remote_id' | '-reporter_name' | '-status' | '-summary' | '-type' | 'assignee_name' | 'caller_first_name' | 'caller_last_name' | 'created' | 'customer_name' | 'key' | 'modified' | 'priority' | 'project_name' | 'remote_id' | 'reporter_name' | 'status' | 'summary' | 'type';
26103
27036
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
26104
27037
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
26105
27038
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
26106
- export type VmwareDiskFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
26107
- export type VmwarePortFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
26108
- export type VmwareVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cluster' | 'cluster_name' | 'cores' | 'cores_per_socket' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'datastore' | 'datastore_name' | 'description' | 'disk' | 'disks' | 'error_message' | 'error_traceback' | 'folder' | 'folder_name' | 'guest_os' | 'guest_os_name' | 'guest_power_state' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'networks' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'tools_installed' | 'tools_state' | 'url' | 'uuid';
27039
+ export type VmwareDiskFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
27040
+ export type VmwarePortFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
27041
+ export type VmwareVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cluster' | 'cluster_name' | 'cores' | 'cores_per_socket' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'datastore' | 'datastore_name' | 'description' | 'disk' | 'disks' | 'error_message' | 'error_traceback' | 'folder' | 'folder_name' | 'guest_os' | 'guest_os_name' | 'guest_power_state' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'networks' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'tools_installed' | 'tools_state' | 'url' | 'uuid';
26109
27042
  /**
26110
27043
  * A page number within the paginated result set.
26111
27044
  */
@@ -40023,7 +40956,7 @@ export type MarketplaceCourseAccountsListData = {
40023
40956
  *
40024
40957
  *
40025
40958
  */
40026
- state?: Array<ServiceAccountState>;
40959
+ state?: Array<CourseAccountStateEnum>;
40027
40960
  /**
40028
40961
  * Username
40029
40962
  */
@@ -40082,7 +41015,7 @@ export type MarketplaceCourseAccountsCountData = {
40082
41015
  *
40083
41016
  *
40084
41017
  */
40085
- state?: Array<ServiceAccountState>;
41018
+ state?: Array<CourseAccountStateEnum>;
40086
41019
  /**
40087
41020
  * Username
40088
41021
  */
@@ -40180,7 +41113,7 @@ export type MarketplaceCourseAccountsCreateBulkData = {
40180
41113
  *
40181
41114
  *
40182
41115
  */
40183
- state?: Array<ServiceAccountState>;
41116
+ state?: Array<CourseAccountStateEnum>;
40184
41117
  /**
40185
41118
  * Username
40186
41119
  */
@@ -50099,7 +51032,7 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
50099
51032
  *
50100
51033
  *
50101
51034
  */
50102
- state?: Array<ServiceAccountState>;
51035
+ state?: Array<CourseAccountStateEnum>;
50103
51036
  /**
50104
51037
  * Username
50105
51038
  */
@@ -50200,7 +51133,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
50200
51133
  /**
50201
51134
  * Filter projects where the given user has a role.
50202
51135
  */
50203
- user_uuid?: string;
51136
+ user_uuid_with_active_role?: string;
50204
51137
  };
50205
51138
  url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/';
50206
51139
  };
@@ -50694,7 +51627,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
50694
51627
  /**
50695
51628
  * Filter projects where the given user has a role.
50696
51629
  */
50697
- user_uuid?: string;
51630
+ user_uuid_with_active_role?: string;
50698
51631
  };
50699
51632
  url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/';
50700
51633
  };
@@ -51758,6 +52691,18 @@ export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses = {
51758
52691
  200: Array<SlurmPolicyEvaluationLog>;
51759
52692
  };
51760
52693
  export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponse = MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses];
52694
+ export type MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetData = {
52695
+ body?: SlurmPolicyEvaluateRequestRequest;
52696
+ path: {
52697
+ uuid: string;
52698
+ };
52699
+ query?: never;
52700
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/force-period-reset/';
52701
+ };
52702
+ export type MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponses = {
52703
+ 200: SlurmPolicyEvaluateResponse;
52704
+ };
52705
+ export type MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponse = MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponses];
51761
52706
  export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultData = {
51762
52707
  body: SlurmCommandResultRequest;
51763
52708
  path: {
@@ -52105,6 +53050,14 @@ export type MarketplaceSoftwarePackagesListData = {
52105
53050
  * Filter packages having extensions of a specific type (e.g., 'python')
52106
53051
  */
52107
53052
  extension_type?: string;
53053
+ /**
53054
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
53055
+ */
53056
+ gpu_arch?: string;
53057
+ /**
53058
+ * Filter packages that have GPU-enabled builds
53059
+ */
53060
+ has_gpu?: boolean;
52108
53061
  /**
52109
53062
  * Filter packages that have a specific version
52110
53063
  */
@@ -52212,6 +53165,14 @@ export type MarketplaceSoftwarePackagesCountData = {
52212
53165
  * Filter packages having extensions of a specific type (e.g., 'python')
52213
53166
  */
52214
53167
  extension_type?: string;
53168
+ /**
53169
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
53170
+ */
53171
+ gpu_arch?: string;
53172
+ /**
53173
+ * Filter packages that have GPU-enabled builds
53174
+ */
53175
+ has_gpu?: boolean;
52215
53176
  /**
52216
53177
  * Filter packages that have a specific version
52217
53178
  */
@@ -52343,6 +53304,14 @@ export type MarketplaceSoftwareTargetsListData = {
52343
53304
  catalog_uuid?: string;
52344
53305
  cpu_family?: string;
52345
53306
  cpu_microarchitecture?: string;
53307
+ /**
53308
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53309
+ */
53310
+ gpu_arch?: string;
53311
+ /**
53312
+ * Filter targets that have GPU architectures
53313
+ */
53314
+ has_gpu?: boolean;
52346
53315
  /**
52347
53316
  * Ordering
52348
53317
  *
@@ -52387,6 +53356,14 @@ export type MarketplaceSoftwareTargetsCountData = {
52387
53356
  catalog_uuid?: string;
52388
53357
  cpu_family?: string;
52389
53358
  cpu_microarchitecture?: string;
53359
+ /**
53360
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53361
+ */
53362
+ gpu_arch?: string;
53363
+ /**
53364
+ * Filter targets that have GPU architectures
53365
+ */
53366
+ has_gpu?: boolean;
52390
53367
  /**
52391
53368
  * Ordering
52392
53369
  *
@@ -52501,67 +53478,83 @@ export type MarketplaceSoftwareVersionsListData = {
52501
53478
  cpu_family?: string;
52502
53479
  cpu_microarchitecture?: string;
52503
53480
  /**
52504
- * Ordering
52505
- *
52506
- *
52507
- */
52508
- o?: Array<SoftwareVersionOEnum>;
52509
- offering_uuid?: string;
52510
- package_name?: string;
52511
- package_uuid?: string;
52512
- /**
52513
- * A page number within the paginated result set.
52514
- */
52515
- page?: number;
52516
- /**
52517
- * Number of results to return per page.
52518
- */
52519
- page_size?: number;
52520
- /**
52521
- * Filter versions by release date range (release_date_after, release_date_before)
52522
- */
52523
- release_date_after?: string;
52524
- /**
52525
- * Filter versions by release date range (release_date_after, release_date_before)
52526
- */
52527
- release_date_before?: string;
52528
- /**
52529
- * Filter versions compatible with a specific toolchain family (e.g., foss_2022b)
53481
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
52530
53482
  */
52531
- toolchain_families_compatibility?: string;
52532
- /**
52533
- * Filter versions by toolchain name (e.g., foss, gfbf)
52534
- */
52535
- toolchain_name?: string;
52536
- /**
52537
- * Filter versions by toolchain version (e.g., 2023b)
52538
- */
52539
- toolchain_version?: string;
52540
- version?: string;
52541
- /**
52542
- * Filter versions by exact version string
52543
- */
52544
- version_exact?: string;
52545
- };
52546
- url: '/api/marketplace-software-versions/';
52547
- };
52548
- export type MarketplaceSoftwareVersionsListResponses = {
52549
- 200: Array<SoftwareVersion>;
52550
- };
52551
- export type MarketplaceSoftwareVersionsListResponse = MarketplaceSoftwareVersionsListResponses[keyof MarketplaceSoftwareVersionsListResponses];
52552
- export type MarketplaceSoftwareVersionsCountData = {
52553
- body?: never;
52554
- path?: never;
52555
- query?: {
53483
+ gpu_arch?: string;
52556
53484
  /**
52557
- * Filter versions by catalog type (binary_runtime, source_package, package_manager)
52558
- *
52559
- *
53485
+ * Filter versions that have GPU-enabled builds
52560
53486
  */
52561
- catalog_type?: CatalogTypeEnum;
52562
- catalog_uuid?: string;
52563
- cpu_family?: string;
52564
- cpu_microarchitecture?: string;
53487
+ has_gpu?: boolean;
53488
+ /**
53489
+ * Ordering
53490
+ *
53491
+ *
53492
+ */
53493
+ o?: Array<SoftwareVersionOEnum>;
53494
+ offering_uuid?: string;
53495
+ package_name?: string;
53496
+ package_uuid?: string;
53497
+ /**
53498
+ * A page number within the paginated result set.
53499
+ */
53500
+ page?: number;
53501
+ /**
53502
+ * Number of results to return per page.
53503
+ */
53504
+ page_size?: number;
53505
+ /**
53506
+ * Filter versions by release date range (release_date_after, release_date_before)
53507
+ */
53508
+ release_date_after?: string;
53509
+ /**
53510
+ * Filter versions by release date range (release_date_after, release_date_before)
53511
+ */
53512
+ release_date_before?: string;
53513
+ /**
53514
+ * Filter versions compatible with a specific toolchain family (e.g., foss_2022b)
53515
+ */
53516
+ toolchain_families_compatibility?: string;
53517
+ /**
53518
+ * Filter versions by toolchain name (e.g., foss, gfbf)
53519
+ */
53520
+ toolchain_name?: string;
53521
+ /**
53522
+ * Filter versions by toolchain version (e.g., 2023b)
53523
+ */
53524
+ toolchain_version?: string;
53525
+ version?: string;
53526
+ /**
53527
+ * Filter versions by exact version string
53528
+ */
53529
+ version_exact?: string;
53530
+ };
53531
+ url: '/api/marketplace-software-versions/';
53532
+ };
53533
+ export type MarketplaceSoftwareVersionsListResponses = {
53534
+ 200: Array<SoftwareVersion>;
53535
+ };
53536
+ export type MarketplaceSoftwareVersionsListResponse = MarketplaceSoftwareVersionsListResponses[keyof MarketplaceSoftwareVersionsListResponses];
53537
+ export type MarketplaceSoftwareVersionsCountData = {
53538
+ body?: never;
53539
+ path?: never;
53540
+ query?: {
53541
+ /**
53542
+ * Filter versions by catalog type (binary_runtime, source_package, package_manager)
53543
+ *
53544
+ *
53545
+ */
53546
+ catalog_type?: CatalogTypeEnum;
53547
+ catalog_uuid?: string;
53548
+ cpu_family?: string;
53549
+ cpu_microarchitecture?: string;
53550
+ /**
53551
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53552
+ */
53553
+ gpu_arch?: string;
53554
+ /**
53555
+ * Filter versions that have GPU-enabled builds
53556
+ */
53557
+ has_gpu?: boolean;
52565
53558
  /**
52566
53559
  * Ordering
52567
53560
  *
@@ -53318,6 +54311,318 @@ export type MarketplaceStatsOfferingsCounterStatsCountResponses = {
53318
54311
  */
53319
54312
  200: unknown;
53320
54313
  };
54314
+ export type MarketplaceStatsOpenstackInstancesListData = {
54315
+ body?: never;
54316
+ path?: never;
54317
+ query?: {
54318
+ /**
54319
+ * Filter by availability zone name.
54320
+ */
54321
+ availability_zone_name?: string;
54322
+ /**
54323
+ * Maximum number of vCPUs.
54324
+ */
54325
+ cores_max?: number;
54326
+ /**
54327
+ * Minimum number of vCPUs.
54328
+ */
54329
+ cores_min?: number;
54330
+ /**
54331
+ * Filter by customer UUID.
54332
+ */
54333
+ customer_uuid?: string;
54334
+ /**
54335
+ * Maximum disk in MiB.
54336
+ */
54337
+ disk_max?: number;
54338
+ /**
54339
+ * Minimum disk in MiB.
54340
+ */
54341
+ disk_min?: number;
54342
+ /**
54343
+ * Filter by flavor name (case-insensitive partial match).
54344
+ */
54345
+ flavor_name?: string;
54346
+ /**
54347
+ * Filter by hypervisor hostname (case-insensitive partial match).
54348
+ */
54349
+ hypervisor_hostname?: string;
54350
+ /**
54351
+ * Filter by image name (case-insensitive partial match).
54352
+ */
54353
+ image_name?: string;
54354
+ /**
54355
+ * Filter by instance name (case-insensitive partial match).
54356
+ */
54357
+ name?: string;
54358
+ /**
54359
+ * Ordering field. Prefix with - for descending. Options: name, cores, ram, disk, created, runtime_state, flavor_name, hypervisor_hostname, customer_name, project_name, cluster_name, start_time.
54360
+ */
54361
+ o?: string;
54362
+ /**
54363
+ * A page number within the paginated result set.
54364
+ */
54365
+ page?: number;
54366
+ /**
54367
+ * Number of results to return per page.
54368
+ */
54369
+ page_size?: number;
54370
+ /**
54371
+ * Filter by project UUID.
54372
+ */
54373
+ project_uuid?: string;
54374
+ /**
54375
+ * Maximum RAM in MiB.
54376
+ */
54377
+ ram_max?: number;
54378
+ /**
54379
+ * Minimum RAM in MiB.
54380
+ */
54381
+ ram_min?: number;
54382
+ /**
54383
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54384
+ */
54385
+ runtime_state?: string;
54386
+ /**
54387
+ * Filter by cluster (service settings) UUID.
54388
+ */
54389
+ service_settings_uuid?: string;
54390
+ /**
54391
+ * Filter by provisioning state (e.g. OK, ERRED). Supports multiple values.
54392
+ */
54393
+ state?: string;
54394
+ /**
54395
+ * Filter by tenant UUID.
54396
+ */
54397
+ tenant_uuid?: string;
54398
+ };
54399
+ url: '/api/marketplace-stats/openstack_instances/';
54400
+ };
54401
+ export type MarketplaceStatsOpenstackInstancesListResponses = {
54402
+ 200: Array<OpenStackInstanceReport>;
54403
+ };
54404
+ export type MarketplaceStatsOpenstackInstancesListResponse = MarketplaceStatsOpenstackInstancesListResponses[keyof MarketplaceStatsOpenstackInstancesListResponses];
54405
+ export type MarketplaceStatsOpenstackInstancesCountData = {
54406
+ body?: never;
54407
+ path?: never;
54408
+ query?: {
54409
+ /**
54410
+ * Filter by availability zone name.
54411
+ */
54412
+ availability_zone_name?: string;
54413
+ /**
54414
+ * Maximum number of vCPUs.
54415
+ */
54416
+ cores_max?: number;
54417
+ /**
54418
+ * Minimum number of vCPUs.
54419
+ */
54420
+ cores_min?: number;
54421
+ /**
54422
+ * Filter by customer UUID.
54423
+ */
54424
+ customer_uuid?: string;
54425
+ /**
54426
+ * Maximum disk in MiB.
54427
+ */
54428
+ disk_max?: number;
54429
+ /**
54430
+ * Minimum disk in MiB.
54431
+ */
54432
+ disk_min?: number;
54433
+ /**
54434
+ * Filter by flavor name (case-insensitive partial match).
54435
+ */
54436
+ flavor_name?: string;
54437
+ /**
54438
+ * Filter by hypervisor hostname (case-insensitive partial match).
54439
+ */
54440
+ hypervisor_hostname?: string;
54441
+ /**
54442
+ * Filter by image name (case-insensitive partial match).
54443
+ */
54444
+ image_name?: string;
54445
+ /**
54446
+ * Filter by instance name (case-insensitive partial match).
54447
+ */
54448
+ name?: string;
54449
+ /**
54450
+ * Ordering field. Prefix with - for descending. Options: name, cores, ram, disk, created, runtime_state, flavor_name, hypervisor_hostname, customer_name, project_name, cluster_name, start_time.
54451
+ */
54452
+ o?: string;
54453
+ /**
54454
+ * A page number within the paginated result set.
54455
+ */
54456
+ page?: number;
54457
+ /**
54458
+ * Number of results to return per page.
54459
+ */
54460
+ page_size?: number;
54461
+ /**
54462
+ * Filter by project UUID.
54463
+ */
54464
+ project_uuid?: string;
54465
+ /**
54466
+ * Maximum RAM in MiB.
54467
+ */
54468
+ ram_max?: number;
54469
+ /**
54470
+ * Minimum RAM in MiB.
54471
+ */
54472
+ ram_min?: number;
54473
+ /**
54474
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54475
+ */
54476
+ runtime_state?: string;
54477
+ /**
54478
+ * Filter by cluster (service settings) UUID.
54479
+ */
54480
+ service_settings_uuid?: string;
54481
+ /**
54482
+ * Filter by provisioning state (e.g. OK, ERRED). Supports multiple values.
54483
+ */
54484
+ state?: string;
54485
+ /**
54486
+ * Filter by tenant UUID.
54487
+ */
54488
+ tenant_uuid?: string;
54489
+ };
54490
+ url: '/api/marketplace-stats/openstack_instances/';
54491
+ };
54492
+ export type MarketplaceStatsOpenstackInstancesCountResponses = {
54493
+ /**
54494
+ * No response body
54495
+ */
54496
+ 200: unknown;
54497
+ };
54498
+ export type MarketplaceStatsOpenstackInstancesAggregateListData = {
54499
+ body?: never;
54500
+ path?: never;
54501
+ query: {
54502
+ /**
54503
+ * Filter by customer UUID.
54504
+ */
54505
+ customer_uuid?: string;
54506
+ /**
54507
+ * Filter by flavor name (case-insensitive partial match).
54508
+ */
54509
+ flavor_name?: string;
54510
+ /**
54511
+ * Dimension to group by.
54512
+ */
54513
+ group_by: OpenStackInstanceAggregateGroupByEnum;
54514
+ /**
54515
+ * Filter by hypervisor hostname (case-insensitive partial match).
54516
+ */
54517
+ hypervisor_hostname?: string;
54518
+ /**
54519
+ * Filter by image name (case-insensitive partial match).
54520
+ */
54521
+ image_name?: string;
54522
+ /**
54523
+ * Filter by instance name (case-insensitive partial match).
54524
+ */
54525
+ name?: string;
54526
+ /**
54527
+ * A page number within the paginated result set.
54528
+ */
54529
+ page?: number;
54530
+ /**
54531
+ * Number of results to return per page.
54532
+ */
54533
+ page_size?: number;
54534
+ /**
54535
+ * Filter by project UUID.
54536
+ */
54537
+ project_uuid?: string;
54538
+ /**
54539
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54540
+ */
54541
+ runtime_state?: string;
54542
+ /**
54543
+ * Filter by cluster (service settings) UUID.
54544
+ */
54545
+ service_settings_uuid?: string;
54546
+ /**
54547
+ * Filter by provisioning state (e.g. OK, ERRED).
54548
+ */
54549
+ state?: string;
54550
+ /**
54551
+ * Filter by tenant UUID.
54552
+ */
54553
+ tenant_uuid?: string;
54554
+ };
54555
+ url: '/api/marketplace-stats/openstack_instances_aggregate/';
54556
+ };
54557
+ export type MarketplaceStatsOpenstackInstancesAggregateListResponses = {
54558
+ 200: Array<OpenStackInstanceAggregate>;
54559
+ };
54560
+ export type MarketplaceStatsOpenstackInstancesAggregateListResponse = MarketplaceStatsOpenstackInstancesAggregateListResponses[keyof MarketplaceStatsOpenstackInstancesAggregateListResponses];
54561
+ export type MarketplaceStatsOpenstackInstancesAggregateCountData = {
54562
+ body?: never;
54563
+ path?: never;
54564
+ query: {
54565
+ /**
54566
+ * Filter by customer UUID.
54567
+ */
54568
+ customer_uuid?: string;
54569
+ /**
54570
+ * Filter by flavor name (case-insensitive partial match).
54571
+ */
54572
+ flavor_name?: string;
54573
+ /**
54574
+ * Dimension to group by.
54575
+ */
54576
+ group_by: OpenStackInstanceAggregateGroupByEnum;
54577
+ /**
54578
+ * Filter by hypervisor hostname (case-insensitive partial match).
54579
+ */
54580
+ hypervisor_hostname?: string;
54581
+ /**
54582
+ * Filter by image name (case-insensitive partial match).
54583
+ */
54584
+ image_name?: string;
54585
+ /**
54586
+ * Filter by instance name (case-insensitive partial match).
54587
+ */
54588
+ name?: string;
54589
+ /**
54590
+ * A page number within the paginated result set.
54591
+ */
54592
+ page?: number;
54593
+ /**
54594
+ * Number of results to return per page.
54595
+ */
54596
+ page_size?: number;
54597
+ /**
54598
+ * Filter by project UUID.
54599
+ */
54600
+ project_uuid?: string;
54601
+ /**
54602
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54603
+ */
54604
+ runtime_state?: string;
54605
+ /**
54606
+ * Filter by cluster (service settings) UUID.
54607
+ */
54608
+ service_settings_uuid?: string;
54609
+ /**
54610
+ * Filter by provisioning state (e.g. OK, ERRED).
54611
+ */
54612
+ state?: string;
54613
+ /**
54614
+ * Filter by tenant UUID.
54615
+ */
54616
+ tenant_uuid?: string;
54617
+ };
54618
+ url: '/api/marketplace-stats/openstack_instances_aggregate/';
54619
+ };
54620
+ export type MarketplaceStatsOpenstackInstancesAggregateCountResponses = {
54621
+ /**
54622
+ * No response body
54623
+ */
54624
+ 200: unknown;
54625
+ };
53321
54626
  export type MarketplaceStatsOrderStatsRetrieveData = {
53322
54627
  body?: never;
53323
54628
  path?: never;
@@ -57352,9 +58657,13 @@ export type OpenportalUnmanagedProjectsListData = {
57352
58657
  */
57353
58658
  slug?: string;
57354
58659
  /**
57355
- * Filter projects where the given user has a role.
58660
+ * Filter by user UUID.
57356
58661
  */
57357
58662
  user_uuid?: string;
58663
+ /**
58664
+ * Filter projects where the given user has a role.
58665
+ */
58666
+ user_uuid_with_active_role?: string;
57358
58667
  };
57359
58668
  url: '/api/openportal-unmanaged-projects/';
57360
58669
  };
@@ -57450,9 +58759,13 @@ export type OpenportalUnmanagedProjectsCountData = {
57450
58759
  */
57451
58760
  slug?: string;
57452
58761
  /**
57453
- * Filter projects where the given user has a role.
58762
+ * Filter by user UUID.
57454
58763
  */
57455
58764
  user_uuid?: string;
58765
+ /**
58766
+ * Filter projects where the given user has a role.
58767
+ */
58768
+ user_uuid_with_active_role?: string;
57456
58769
  };
57457
58770
  url: '/api/openportal-unmanaged-projects/';
57458
58771
  };
@@ -58867,6 +60180,170 @@ export type OpenstackFloatingIpsUpdateDescriptionResponses = {
58867
60180
  */
58868
60181
  200: unknown;
58869
60182
  };
60183
+ export type OpenstackHealthMonitorsListData = {
60184
+ body?: never;
60185
+ path?: never;
60186
+ query?: {
60187
+ field?: Array<OpenStackHealthMonitorFieldEnum>;
60188
+ /**
60189
+ * Load balancer UUID
60190
+ */
60191
+ load_balancer_uuid?: string;
60192
+ /**
60193
+ * Name
60194
+ */
60195
+ name?: string;
60196
+ /**
60197
+ * Name (exact)
60198
+ */
60199
+ name_exact?: string;
60200
+ /**
60201
+ * A page number within the paginated result set.
60202
+ */
60203
+ page?: number;
60204
+ /**
60205
+ * Number of results to return per page.
60206
+ */
60207
+ page_size?: number;
60208
+ /**
60209
+ * Pool URL
60210
+ */
60211
+ pool?: string;
60212
+ /**
60213
+ * Pool UUID
60214
+ */
60215
+ pool_uuid?: string;
60216
+ /**
60217
+ * State
60218
+ *
60219
+ *
60220
+ */
60221
+ state?: Array<CoreStates>;
60222
+ /**
60223
+ * Tenant UUID
60224
+ */
60225
+ tenant_uuid?: string;
60226
+ };
60227
+ url: '/api/openstack-health-monitors/';
60228
+ };
60229
+ export type OpenstackHealthMonitorsListResponses = {
60230
+ 200: Array<OpenStackHealthMonitor>;
60231
+ };
60232
+ export type OpenstackHealthMonitorsListResponse = OpenstackHealthMonitorsListResponses[keyof OpenstackHealthMonitorsListResponses];
60233
+ export type OpenstackHealthMonitorsCountData = {
60234
+ body?: never;
60235
+ path?: never;
60236
+ query?: {
60237
+ /**
60238
+ * Load balancer UUID
60239
+ */
60240
+ load_balancer_uuid?: string;
60241
+ /**
60242
+ * Name
60243
+ */
60244
+ name?: string;
60245
+ /**
60246
+ * Name (exact)
60247
+ */
60248
+ name_exact?: string;
60249
+ /**
60250
+ * A page number within the paginated result set.
60251
+ */
60252
+ page?: number;
60253
+ /**
60254
+ * Number of results to return per page.
60255
+ */
60256
+ page_size?: number;
60257
+ /**
60258
+ * Pool URL
60259
+ */
60260
+ pool?: string;
60261
+ /**
60262
+ * Pool UUID
60263
+ */
60264
+ pool_uuid?: string;
60265
+ /**
60266
+ * State
60267
+ *
60268
+ *
60269
+ */
60270
+ state?: Array<CoreStates>;
60271
+ /**
60272
+ * Tenant UUID
60273
+ */
60274
+ tenant_uuid?: string;
60275
+ };
60276
+ url: '/api/openstack-health-monitors/';
60277
+ };
60278
+ export type OpenstackHealthMonitorsCountResponses = {
60279
+ /**
60280
+ * No response body
60281
+ */
60282
+ 200: unknown;
60283
+ };
60284
+ export type OpenstackHealthMonitorsCreateData = {
60285
+ body: CreateHealthMonitorRequest;
60286
+ path?: never;
60287
+ query?: never;
60288
+ url: '/api/openstack-health-monitors/';
60289
+ };
60290
+ export type OpenstackHealthMonitorsCreateResponses = {
60291
+ 201: CreateHealthMonitor;
60292
+ };
60293
+ export type OpenstackHealthMonitorsCreateResponse = OpenstackHealthMonitorsCreateResponses[keyof OpenstackHealthMonitorsCreateResponses];
60294
+ export type OpenstackHealthMonitorsDestroyData = {
60295
+ body?: never;
60296
+ path: {
60297
+ uuid: string;
60298
+ };
60299
+ query?: never;
60300
+ url: '/api/openstack-health-monitors/{uuid}/';
60301
+ };
60302
+ export type OpenstackHealthMonitorsDestroyResponses = {
60303
+ /**
60304
+ * No response body
60305
+ */
60306
+ 204: void;
60307
+ };
60308
+ export type OpenstackHealthMonitorsDestroyResponse = OpenstackHealthMonitorsDestroyResponses[keyof OpenstackHealthMonitorsDestroyResponses];
60309
+ export type OpenstackHealthMonitorsRetrieveData = {
60310
+ body?: never;
60311
+ path: {
60312
+ uuid: string;
60313
+ };
60314
+ query?: {
60315
+ field?: Array<OpenStackHealthMonitorFieldEnum>;
60316
+ };
60317
+ url: '/api/openstack-health-monitors/{uuid}/';
60318
+ };
60319
+ export type OpenstackHealthMonitorsRetrieveResponses = {
60320
+ 200: OpenStackHealthMonitor;
60321
+ };
60322
+ export type OpenstackHealthMonitorsRetrieveResponse = OpenstackHealthMonitorsRetrieveResponses[keyof OpenstackHealthMonitorsRetrieveResponses];
60323
+ export type OpenstackHealthMonitorsPartialUpdateData = {
60324
+ body?: PatchedUpdateHealthMonitorRequest;
60325
+ path: {
60326
+ uuid: string;
60327
+ };
60328
+ query?: never;
60329
+ url: '/api/openstack-health-monitors/{uuid}/';
60330
+ };
60331
+ export type OpenstackHealthMonitorsPartialUpdateResponses = {
60332
+ 200: UpdateHealthMonitor;
60333
+ };
60334
+ export type OpenstackHealthMonitorsPartialUpdateResponse = OpenstackHealthMonitorsPartialUpdateResponses[keyof OpenstackHealthMonitorsPartialUpdateResponses];
60335
+ export type OpenstackHealthMonitorsUpdateData = {
60336
+ body?: UpdateHealthMonitorRequest;
60337
+ path: {
60338
+ uuid: string;
60339
+ };
60340
+ query?: never;
60341
+ url: '/api/openstack-health-monitors/{uuid}/';
60342
+ };
60343
+ export type OpenstackHealthMonitorsUpdateResponses = {
60344
+ 200: UpdateHealthMonitor;
60345
+ };
60346
+ export type OpenstackHealthMonitorsUpdateResponse = OpenstackHealthMonitorsUpdateResponses[keyof OpenstackHealthMonitorsUpdateResponses];
58870
60347
  export type OpenstackImagesListData = {
58871
60348
  body?: never;
58872
60349
  path?: never;
@@ -59629,6 +61106,352 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
59629
61106
  */
59630
61107
  200: unknown;
59631
61108
  };
61109
+ export type OpenstackListenersListData = {
61110
+ body?: never;
61111
+ path?: never;
61112
+ query?: {
61113
+ field?: Array<OpenStackListenerFieldEnum>;
61114
+ /**
61115
+ * Load balancer URL
61116
+ */
61117
+ load_balancer?: string;
61118
+ /**
61119
+ * Load balancer UUID
61120
+ */
61121
+ load_balancer_uuid?: string;
61122
+ /**
61123
+ * Name
61124
+ */
61125
+ name?: string;
61126
+ /**
61127
+ * Name (exact)
61128
+ */
61129
+ name_exact?: string;
61130
+ /**
61131
+ * A page number within the paginated result set.
61132
+ */
61133
+ page?: number;
61134
+ /**
61135
+ * Number of results to return per page.
61136
+ */
61137
+ page_size?: number;
61138
+ /**
61139
+ * State
61140
+ *
61141
+ *
61142
+ */
61143
+ state?: Array<CoreStates>;
61144
+ /**
61145
+ * Tenant UUID
61146
+ */
61147
+ tenant_uuid?: string;
61148
+ };
61149
+ url: '/api/openstack-listeners/';
61150
+ };
61151
+ export type OpenstackListenersListResponses = {
61152
+ 200: Array<OpenStackListener>;
61153
+ };
61154
+ export type OpenstackListenersListResponse = OpenstackListenersListResponses[keyof OpenstackListenersListResponses];
61155
+ export type OpenstackListenersCountData = {
61156
+ body?: never;
61157
+ path?: never;
61158
+ query?: {
61159
+ /**
61160
+ * Load balancer URL
61161
+ */
61162
+ load_balancer?: string;
61163
+ /**
61164
+ * Load balancer UUID
61165
+ */
61166
+ load_balancer_uuid?: string;
61167
+ /**
61168
+ * Name
61169
+ */
61170
+ name?: string;
61171
+ /**
61172
+ * Name (exact)
61173
+ */
61174
+ name_exact?: string;
61175
+ /**
61176
+ * A page number within the paginated result set.
61177
+ */
61178
+ page?: number;
61179
+ /**
61180
+ * Number of results to return per page.
61181
+ */
61182
+ page_size?: number;
61183
+ /**
61184
+ * State
61185
+ *
61186
+ *
61187
+ */
61188
+ state?: Array<CoreStates>;
61189
+ /**
61190
+ * Tenant UUID
61191
+ */
61192
+ tenant_uuid?: string;
61193
+ };
61194
+ url: '/api/openstack-listeners/';
61195
+ };
61196
+ export type OpenstackListenersCountResponses = {
61197
+ /**
61198
+ * No response body
61199
+ */
61200
+ 200: unknown;
61201
+ };
61202
+ export type OpenstackListenersCreateData = {
61203
+ body: CreateListenerRequest;
61204
+ path?: never;
61205
+ query?: never;
61206
+ url: '/api/openstack-listeners/';
61207
+ };
61208
+ export type OpenstackListenersCreateResponses = {
61209
+ 201: CreateListener;
61210
+ };
61211
+ export type OpenstackListenersCreateResponse = OpenstackListenersCreateResponses[keyof OpenstackListenersCreateResponses];
61212
+ export type OpenstackListenersDestroyData = {
61213
+ body?: never;
61214
+ path: {
61215
+ uuid: string;
61216
+ };
61217
+ query?: never;
61218
+ url: '/api/openstack-listeners/{uuid}/';
61219
+ };
61220
+ export type OpenstackListenersDestroyResponses = {
61221
+ /**
61222
+ * No response body
61223
+ */
61224
+ 204: void;
61225
+ };
61226
+ export type OpenstackListenersDestroyResponse = OpenstackListenersDestroyResponses[keyof OpenstackListenersDestroyResponses];
61227
+ export type OpenstackListenersRetrieveData = {
61228
+ body?: never;
61229
+ path: {
61230
+ uuid: string;
61231
+ };
61232
+ query?: {
61233
+ field?: Array<OpenStackListenerFieldEnum>;
61234
+ };
61235
+ url: '/api/openstack-listeners/{uuid}/';
61236
+ };
61237
+ export type OpenstackListenersRetrieveResponses = {
61238
+ 200: OpenStackListener;
61239
+ };
61240
+ export type OpenstackListenersRetrieveResponse = OpenstackListenersRetrieveResponses[keyof OpenstackListenersRetrieveResponses];
61241
+ export type OpenstackListenersPartialUpdateData = {
61242
+ body?: PatchedUpdateListenerRequest;
61243
+ path: {
61244
+ uuid: string;
61245
+ };
61246
+ query?: never;
61247
+ url: '/api/openstack-listeners/{uuid}/';
61248
+ };
61249
+ export type OpenstackListenersPartialUpdateResponses = {
61250
+ 200: UpdateListener;
61251
+ };
61252
+ export type OpenstackListenersPartialUpdateResponse = OpenstackListenersPartialUpdateResponses[keyof OpenstackListenersPartialUpdateResponses];
61253
+ export type OpenstackListenersUpdateData = {
61254
+ body?: UpdateListenerRequest;
61255
+ path: {
61256
+ uuid: string;
61257
+ };
61258
+ query?: never;
61259
+ url: '/api/openstack-listeners/{uuid}/';
61260
+ };
61261
+ export type OpenstackListenersUpdateResponses = {
61262
+ 200: UpdateListener;
61263
+ };
61264
+ export type OpenstackListenersUpdateResponse = OpenstackListenersUpdateResponses[keyof OpenstackListenersUpdateResponses];
61265
+ export type OpenstackLoadbalancersListData = {
61266
+ body?: never;
61267
+ path?: never;
61268
+ query?: {
61269
+ field?: Array<OpenStackLoadBalancerFieldEnum>;
61270
+ /**
61271
+ * Name
61272
+ */
61273
+ name?: string;
61274
+ /**
61275
+ * Name (exact)
61276
+ */
61277
+ name_exact?: string;
61278
+ /**
61279
+ * A page number within the paginated result set.
61280
+ */
61281
+ page?: number;
61282
+ /**
61283
+ * Number of results to return per page.
61284
+ */
61285
+ page_size?: number;
61286
+ /**
61287
+ * State
61288
+ *
61289
+ *
61290
+ */
61291
+ state?: Array<CoreStates>;
61292
+ /**
61293
+ * Tenant URL
61294
+ */
61295
+ tenant?: string;
61296
+ /**
61297
+ * Tenant UUID
61298
+ */
61299
+ tenant_uuid?: string;
61300
+ };
61301
+ url: '/api/openstack-loadbalancers/';
61302
+ };
61303
+ export type OpenstackLoadbalancersListResponses = {
61304
+ 200: Array<OpenStackLoadBalancer>;
61305
+ };
61306
+ export type OpenstackLoadbalancersListResponse = OpenstackLoadbalancersListResponses[keyof OpenstackLoadbalancersListResponses];
61307
+ export type OpenstackLoadbalancersCountData = {
61308
+ body?: never;
61309
+ path?: never;
61310
+ query?: {
61311
+ /**
61312
+ * Name
61313
+ */
61314
+ name?: string;
61315
+ /**
61316
+ * Name (exact)
61317
+ */
61318
+ name_exact?: string;
61319
+ /**
61320
+ * A page number within the paginated result set.
61321
+ */
61322
+ page?: number;
61323
+ /**
61324
+ * Number of results to return per page.
61325
+ */
61326
+ page_size?: number;
61327
+ /**
61328
+ * State
61329
+ *
61330
+ *
61331
+ */
61332
+ state?: Array<CoreStates>;
61333
+ /**
61334
+ * Tenant URL
61335
+ */
61336
+ tenant?: string;
61337
+ /**
61338
+ * Tenant UUID
61339
+ */
61340
+ tenant_uuid?: string;
61341
+ };
61342
+ url: '/api/openstack-loadbalancers/';
61343
+ };
61344
+ export type OpenstackLoadbalancersCountResponses = {
61345
+ /**
61346
+ * No response body
61347
+ */
61348
+ 200: unknown;
61349
+ };
61350
+ export type OpenstackLoadbalancersCreateData = {
61351
+ body: CreateLoadBalancerRequest;
61352
+ path?: never;
61353
+ query?: never;
61354
+ url: '/api/openstack-loadbalancers/';
61355
+ };
61356
+ export type OpenstackLoadbalancersCreateResponses = {
61357
+ 201: CreateLoadBalancer;
61358
+ };
61359
+ export type OpenstackLoadbalancersCreateResponse = OpenstackLoadbalancersCreateResponses[keyof OpenstackLoadbalancersCreateResponses];
61360
+ export type OpenstackLoadbalancersDestroyData = {
61361
+ body?: never;
61362
+ path: {
61363
+ uuid: string;
61364
+ };
61365
+ query?: never;
61366
+ url: '/api/openstack-loadbalancers/{uuid}/';
61367
+ };
61368
+ export type OpenstackLoadbalancersDestroyResponses = {
61369
+ /**
61370
+ * No response body
61371
+ */
61372
+ 204: void;
61373
+ };
61374
+ export type OpenstackLoadbalancersDestroyResponse = OpenstackLoadbalancersDestroyResponses[keyof OpenstackLoadbalancersDestroyResponses];
61375
+ export type OpenstackLoadbalancersRetrieveData = {
61376
+ body?: never;
61377
+ path: {
61378
+ uuid: string;
61379
+ };
61380
+ query?: {
61381
+ field?: Array<OpenStackLoadBalancerFieldEnum>;
61382
+ };
61383
+ url: '/api/openstack-loadbalancers/{uuid}/';
61384
+ };
61385
+ export type OpenstackLoadbalancersRetrieveResponses = {
61386
+ 200: OpenStackLoadBalancer;
61387
+ };
61388
+ export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
61389
+ export type OpenstackLoadbalancersPartialUpdateData = {
61390
+ body?: PatchedOpenStackLoadBalancerRequest;
61391
+ path: {
61392
+ uuid: string;
61393
+ };
61394
+ query?: never;
61395
+ url: '/api/openstack-loadbalancers/{uuid}/';
61396
+ };
61397
+ export type OpenstackLoadbalancersPartialUpdateResponses = {
61398
+ 200: OpenStackLoadBalancer;
61399
+ };
61400
+ export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
61401
+ export type OpenstackLoadbalancersUpdateData = {
61402
+ body: OpenStackLoadBalancerRequest;
61403
+ path: {
61404
+ uuid: string;
61405
+ };
61406
+ query?: never;
61407
+ url: '/api/openstack-loadbalancers/{uuid}/';
61408
+ };
61409
+ export type OpenstackLoadbalancersUpdateResponses = {
61410
+ 200: OpenStackLoadBalancer;
61411
+ };
61412
+ export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
61413
+ export type OpenstackLoadbalancersAttachFloatingIpData = {
61414
+ body: LoadBalancerAttachFloatingIpRequest;
61415
+ path: {
61416
+ uuid: string;
61417
+ };
61418
+ query?: never;
61419
+ url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
61420
+ };
61421
+ export type OpenstackLoadbalancersAttachFloatingIpResponses = {
61422
+ /**
61423
+ * No response body
61424
+ */
61425
+ 200: unknown;
61426
+ };
61427
+ export type OpenstackLoadbalancersDetachFloatingIpData = {
61428
+ body?: never;
61429
+ path: {
61430
+ uuid: string;
61431
+ };
61432
+ query?: never;
61433
+ url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
61434
+ };
61435
+ export type OpenstackLoadbalancersDetachFloatingIpResponses = {
61436
+ /**
61437
+ * No response body
61438
+ */
61439
+ 200: unknown;
61440
+ };
61441
+ export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
61442
+ body: LoadBalancerUpdateVipSecurityGroupsRequest;
61443
+ path: {
61444
+ uuid: string;
61445
+ };
61446
+ query?: never;
61447
+ url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
61448
+ };
61449
+ export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
61450
+ /**
61451
+ * No response body
61452
+ */
61453
+ 200: unknown;
61454
+ };
59632
61455
  export type OpenstackMarketplaceTenantsListData = {
59633
61456
  body?: never;
59634
61457
  path?: never;
@@ -60508,6 +62331,326 @@ export type OpenstackNetworksUnlinkResponses = {
60508
62331
  204: void;
60509
62332
  };
60510
62333
  export type OpenstackNetworksUnlinkResponse = OpenstackNetworksUnlinkResponses[keyof OpenstackNetworksUnlinkResponses];
62334
+ export type OpenstackPoolMembersListData = {
62335
+ body?: never;
62336
+ path?: never;
62337
+ query?: {
62338
+ field?: Array<OpenStackPoolMemberFieldEnum>;
62339
+ /**
62340
+ * Load balancer UUID
62341
+ */
62342
+ load_balancer_uuid?: string;
62343
+ /**
62344
+ * Name
62345
+ */
62346
+ name?: string;
62347
+ /**
62348
+ * Name (exact)
62349
+ */
62350
+ name_exact?: string;
62351
+ /**
62352
+ * A page number within the paginated result set.
62353
+ */
62354
+ page?: number;
62355
+ /**
62356
+ * Number of results to return per page.
62357
+ */
62358
+ page_size?: number;
62359
+ /**
62360
+ * Pool URL
62361
+ */
62362
+ pool?: string;
62363
+ /**
62364
+ * Pool UUID
62365
+ */
62366
+ pool_uuid?: string;
62367
+ /**
62368
+ * State
62369
+ *
62370
+ *
62371
+ */
62372
+ state?: Array<CoreStates>;
62373
+ /**
62374
+ * Tenant UUID
62375
+ */
62376
+ tenant_uuid?: string;
62377
+ };
62378
+ url: '/api/openstack-pool-members/';
62379
+ };
62380
+ export type OpenstackPoolMembersListResponses = {
62381
+ 200: Array<OpenStackPoolMember>;
62382
+ };
62383
+ export type OpenstackPoolMembersListResponse = OpenstackPoolMembersListResponses[keyof OpenstackPoolMembersListResponses];
62384
+ export type OpenstackPoolMembersCountData = {
62385
+ body?: never;
62386
+ path?: never;
62387
+ query?: {
62388
+ /**
62389
+ * Load balancer UUID
62390
+ */
62391
+ load_balancer_uuid?: string;
62392
+ /**
62393
+ * Name
62394
+ */
62395
+ name?: string;
62396
+ /**
62397
+ * Name (exact)
62398
+ */
62399
+ name_exact?: string;
62400
+ /**
62401
+ * A page number within the paginated result set.
62402
+ */
62403
+ page?: number;
62404
+ /**
62405
+ * Number of results to return per page.
62406
+ */
62407
+ page_size?: number;
62408
+ /**
62409
+ * Pool URL
62410
+ */
62411
+ pool?: string;
62412
+ /**
62413
+ * Pool UUID
62414
+ */
62415
+ pool_uuid?: string;
62416
+ /**
62417
+ * State
62418
+ *
62419
+ *
62420
+ */
62421
+ state?: Array<CoreStates>;
62422
+ /**
62423
+ * Tenant UUID
62424
+ */
62425
+ tenant_uuid?: string;
62426
+ };
62427
+ url: '/api/openstack-pool-members/';
62428
+ };
62429
+ export type OpenstackPoolMembersCountResponses = {
62430
+ /**
62431
+ * No response body
62432
+ */
62433
+ 200: unknown;
62434
+ };
62435
+ export type OpenstackPoolMembersCreateData = {
62436
+ body: CreatePoolMemberRequest;
62437
+ path?: never;
62438
+ query?: never;
62439
+ url: '/api/openstack-pool-members/';
62440
+ };
62441
+ export type OpenstackPoolMembersCreateResponses = {
62442
+ 201: CreatePoolMember;
62443
+ };
62444
+ export type OpenstackPoolMembersCreateResponse = OpenstackPoolMembersCreateResponses[keyof OpenstackPoolMembersCreateResponses];
62445
+ export type OpenstackPoolMembersDestroyData = {
62446
+ body?: never;
62447
+ path: {
62448
+ uuid: string;
62449
+ };
62450
+ query?: never;
62451
+ url: '/api/openstack-pool-members/{uuid}/';
62452
+ };
62453
+ export type OpenstackPoolMembersDestroyResponses = {
62454
+ /**
62455
+ * No response body
62456
+ */
62457
+ 204: void;
62458
+ };
62459
+ export type OpenstackPoolMembersDestroyResponse = OpenstackPoolMembersDestroyResponses[keyof OpenstackPoolMembersDestroyResponses];
62460
+ export type OpenstackPoolMembersRetrieveData = {
62461
+ body?: never;
62462
+ path: {
62463
+ uuid: string;
62464
+ };
62465
+ query?: {
62466
+ field?: Array<OpenStackPoolMemberFieldEnum>;
62467
+ };
62468
+ url: '/api/openstack-pool-members/{uuid}/';
62469
+ };
62470
+ export type OpenstackPoolMembersRetrieveResponses = {
62471
+ 200: OpenStackPoolMember;
62472
+ };
62473
+ export type OpenstackPoolMembersRetrieveResponse = OpenstackPoolMembersRetrieveResponses[keyof OpenstackPoolMembersRetrieveResponses];
62474
+ export type OpenstackPoolMembersPartialUpdateData = {
62475
+ body?: PatchedUpdatePoolMemberRequest;
62476
+ path: {
62477
+ uuid: string;
62478
+ };
62479
+ query?: never;
62480
+ url: '/api/openstack-pool-members/{uuid}/';
62481
+ };
62482
+ export type OpenstackPoolMembersPartialUpdateResponses = {
62483
+ 200: UpdatePoolMember;
62484
+ };
62485
+ export type OpenstackPoolMembersPartialUpdateResponse = OpenstackPoolMembersPartialUpdateResponses[keyof OpenstackPoolMembersPartialUpdateResponses];
62486
+ export type OpenstackPoolMembersUpdateData = {
62487
+ body?: UpdatePoolMemberRequest;
62488
+ path: {
62489
+ uuid: string;
62490
+ };
62491
+ query?: never;
62492
+ url: '/api/openstack-pool-members/{uuid}/';
62493
+ };
62494
+ export type OpenstackPoolMembersUpdateResponses = {
62495
+ 200: UpdatePoolMember;
62496
+ };
62497
+ export type OpenstackPoolMembersUpdateResponse = OpenstackPoolMembersUpdateResponses[keyof OpenstackPoolMembersUpdateResponses];
62498
+ export type OpenstackPoolsListData = {
62499
+ body?: never;
62500
+ path?: never;
62501
+ query?: {
62502
+ field?: Array<OpenStackPoolFieldEnum>;
62503
+ /**
62504
+ * Load balancer URL
62505
+ */
62506
+ load_balancer?: string;
62507
+ /**
62508
+ * Load balancer UUID
62509
+ */
62510
+ load_balancer_uuid?: string;
62511
+ /**
62512
+ * Name
62513
+ */
62514
+ name?: string;
62515
+ /**
62516
+ * Name (exact)
62517
+ */
62518
+ name_exact?: string;
62519
+ /**
62520
+ * A page number within the paginated result set.
62521
+ */
62522
+ page?: number;
62523
+ /**
62524
+ * Number of results to return per page.
62525
+ */
62526
+ page_size?: number;
62527
+ /**
62528
+ * State
62529
+ *
62530
+ *
62531
+ */
62532
+ state?: Array<CoreStates>;
62533
+ /**
62534
+ * Tenant UUID
62535
+ */
62536
+ tenant_uuid?: string;
62537
+ };
62538
+ url: '/api/openstack-pools/';
62539
+ };
62540
+ export type OpenstackPoolsListResponses = {
62541
+ 200: Array<OpenStackPool>;
62542
+ };
62543
+ export type OpenstackPoolsListResponse = OpenstackPoolsListResponses[keyof OpenstackPoolsListResponses];
62544
+ export type OpenstackPoolsCountData = {
62545
+ body?: never;
62546
+ path?: never;
62547
+ query?: {
62548
+ /**
62549
+ * Load balancer URL
62550
+ */
62551
+ load_balancer?: string;
62552
+ /**
62553
+ * Load balancer UUID
62554
+ */
62555
+ load_balancer_uuid?: string;
62556
+ /**
62557
+ * Name
62558
+ */
62559
+ name?: string;
62560
+ /**
62561
+ * Name (exact)
62562
+ */
62563
+ name_exact?: string;
62564
+ /**
62565
+ * A page number within the paginated result set.
62566
+ */
62567
+ page?: number;
62568
+ /**
62569
+ * Number of results to return per page.
62570
+ */
62571
+ page_size?: number;
62572
+ /**
62573
+ * State
62574
+ *
62575
+ *
62576
+ */
62577
+ state?: Array<CoreStates>;
62578
+ /**
62579
+ * Tenant UUID
62580
+ */
62581
+ tenant_uuid?: string;
62582
+ };
62583
+ url: '/api/openstack-pools/';
62584
+ };
62585
+ export type OpenstackPoolsCountResponses = {
62586
+ /**
62587
+ * No response body
62588
+ */
62589
+ 200: unknown;
62590
+ };
62591
+ export type OpenstackPoolsCreateData = {
62592
+ body: CreatePoolRequest;
62593
+ path?: never;
62594
+ query?: never;
62595
+ url: '/api/openstack-pools/';
62596
+ };
62597
+ export type OpenstackPoolsCreateResponses = {
62598
+ 201: CreatePool;
62599
+ };
62600
+ export type OpenstackPoolsCreateResponse = OpenstackPoolsCreateResponses[keyof OpenstackPoolsCreateResponses];
62601
+ export type OpenstackPoolsDestroyData = {
62602
+ body?: never;
62603
+ path: {
62604
+ uuid: string;
62605
+ };
62606
+ query?: never;
62607
+ url: '/api/openstack-pools/{uuid}/';
62608
+ };
62609
+ export type OpenstackPoolsDestroyResponses = {
62610
+ /**
62611
+ * No response body
62612
+ */
62613
+ 204: void;
62614
+ };
62615
+ export type OpenstackPoolsDestroyResponse = OpenstackPoolsDestroyResponses[keyof OpenstackPoolsDestroyResponses];
62616
+ export type OpenstackPoolsRetrieveData = {
62617
+ body?: never;
62618
+ path: {
62619
+ uuid: string;
62620
+ };
62621
+ query?: {
62622
+ field?: Array<OpenStackPoolFieldEnum>;
62623
+ };
62624
+ url: '/api/openstack-pools/{uuid}/';
62625
+ };
62626
+ export type OpenstackPoolsRetrieveResponses = {
62627
+ 200: OpenStackPool;
62628
+ };
62629
+ export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
62630
+ export type OpenstackPoolsPartialUpdateData = {
62631
+ body?: PatchedOpenStackPoolRequest;
62632
+ path: {
62633
+ uuid: string;
62634
+ };
62635
+ query?: never;
62636
+ url: '/api/openstack-pools/{uuid}/';
62637
+ };
62638
+ export type OpenstackPoolsPartialUpdateResponses = {
62639
+ 200: OpenStackPool;
62640
+ };
62641
+ export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
62642
+ export type OpenstackPoolsUpdateData = {
62643
+ body: OpenStackPoolRequest;
62644
+ path: {
62645
+ uuid: string;
62646
+ };
62647
+ query?: never;
62648
+ url: '/api/openstack-pools/{uuid}/';
62649
+ };
62650
+ export type OpenstackPoolsUpdateResponses = {
62651
+ 200: OpenStackPool;
62652
+ };
62653
+ export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
60511
62654
  export type OpenstackPortsListData = {
60512
62655
  body?: never;
60513
62656
  path?: never;
@@ -64766,9 +66909,13 @@ export type ProjectsListData = {
64766
66909
  */
64767
66910
  slug?: string;
64768
66911
  /**
64769
- * Filter projects where the given user has a role.
66912
+ * Filter by user UUID.
64770
66913
  */
64771
66914
  user_uuid?: string;
66915
+ /**
66916
+ * Filter projects where the given user has a role.
66917
+ */
66918
+ user_uuid_with_active_role?: string;
64772
66919
  };
64773
66920
  url: '/api/projects/';
64774
66921
  };
@@ -64864,9 +67011,13 @@ export type ProjectsCountData = {
64864
67011
  */
64865
67012
  slug?: string;
64866
67013
  /**
64867
- * Filter projects where the given user has a role.
67014
+ * Filter by user UUID.
64868
67015
  */
64869
67016
  user_uuid?: string;
67017
+ /**
67018
+ * Filter projects where the given user has a role.
67019
+ */
67020
+ user_uuid_with_active_role?: string;
64870
67021
  };
64871
67022
  url: '/api/projects/';
64872
67023
  };
@@ -70594,20 +72745,6 @@ export type RemoteWaldurApiPullOfferingDetailsResponses = {
70594
72745
  */
70595
72746
  200: unknown;
70596
72747
  };
70597
- export type RemoteWaldurApiPullOfferingInvoicesData = {
70598
- body?: never;
70599
- path: {
70600
- uuid: string;
70601
- };
70602
- query?: never;
70603
- url: '/api/remote-waldur-api/pull_offering_invoices/{uuid}/';
70604
- };
70605
- export type RemoteWaldurApiPullOfferingInvoicesResponses = {
70606
- /**
70607
- * No response body
70608
- */
70609
- 200: unknown;
70610
- };
70611
72748
  export type RemoteWaldurApiPullOfferingOrdersData = {
70612
72749
  body?: never;
70613
72750
  path: {
@@ -72736,6 +74873,16 @@ export type StatsTableGrowthRetrieveResponses = {
72736
74873
  200: TableGrowthStatsResponse;
72737
74874
  };
72738
74875
  export type StatsTableGrowthRetrieveResponse = StatsTableGrowthRetrieveResponses[keyof StatsTableGrowthRetrieveResponses];
74876
+ export type StatsTableGrowthData = {
74877
+ body?: never;
74878
+ path?: never;
74879
+ query?: never;
74880
+ url: '/api/stats/table-growth/';
74881
+ };
74882
+ export type StatsTableGrowthResponses = {
74883
+ 202: TableGrowthTriggerResponse;
74884
+ };
74885
+ export type StatsTableGrowthResponse = StatsTableGrowthResponses[keyof StatsTableGrowthResponses];
72739
74886
  export type SupportAttachmentsListData = {
72740
74887
  body?: never;
72741
74888
  path?: never;