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

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;
@@ -3418,6 +3427,10 @@ export type ChatResponse = {
3418
3427
  m?: {
3419
3428
  [key: string]: unknown;
3420
3429
  };
3430
+ /**
3431
+ * PII detection warning message.
3432
+ */
3433
+ w?: string;
3421
3434
  };
3422
3435
  export type ChatSession = {
3423
3436
  readonly uuid?: string;
@@ -4201,6 +4214,7 @@ export type ConstanceSettings = {
4201
4214
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4202
4215
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4203
4216
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4217
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4204
4218
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4205
4219
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4206
4220
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4445,6 +4459,7 @@ export type ConstanceSettingsRequest = {
4445
4459
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4446
4460
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4447
4461
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4462
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4448
4463
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4449
4464
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4450
4465
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4693,7 +4708,7 @@ export type CourseAccount = {
4693
4708
  readonly username: string;
4694
4709
  readonly customer_uuid: string;
4695
4710
  readonly customer_name: string;
4696
- state: ServiceAccountState;
4711
+ state: CourseAccountStateEnum;
4697
4712
  email?: string;
4698
4713
  description?: string;
4699
4714
  readonly error_message: string;
@@ -4708,6 +4723,7 @@ export type CourseAccountRequest = {
4708
4723
  email?: string;
4709
4724
  description?: string;
4710
4725
  };
4726
+ export type CourseAccountStateEnum = 'OK' | 'Closed' | 'Erred' | 'Pending';
4711
4727
  export type CourseAccountsBulkCreateRequest = {
4712
4728
  course_accounts: Array<CourseAccountCreateNestedRequest>;
4713
4729
  project: string;
@@ -4757,6 +4773,100 @@ export type CreateFeedbackRequest = {
4757
4773
  evaluation: number;
4758
4774
  token: string;
4759
4775
  };
4776
+ export type CreateHealthMonitor = {
4777
+ readonly url: string;
4778
+ readonly uuid: string;
4779
+ /**
4780
+ * Pool this health monitor belongs to
4781
+ */
4782
+ pool: string;
4783
+ name?: string;
4784
+ type: LoadBalancerProtocolEnum;
4785
+ /**
4786
+ * Interval between health checks in seconds
4787
+ */
4788
+ delay: number;
4789
+ /**
4790
+ * Time in seconds to timeout a health check
4791
+ */
4792
+ timeout: number;
4793
+ /**
4794
+ * Number of retries before marking member as down
4795
+ */
4796
+ max_retries: number;
4797
+ readonly project: string;
4798
+ readonly service_settings: string;
4799
+ };
4800
+ export type CreateHealthMonitorRequest = {
4801
+ /**
4802
+ * Pool this health monitor belongs to
4803
+ */
4804
+ pool: string;
4805
+ name?: string;
4806
+ type: LoadBalancerProtocolEnum;
4807
+ /**
4808
+ * Interval between health checks in seconds
4809
+ */
4810
+ delay: number;
4811
+ /**
4812
+ * Time in seconds to timeout a health check
4813
+ */
4814
+ timeout: number;
4815
+ /**
4816
+ * Number of retries before marking member as down
4817
+ */
4818
+ max_retries: number;
4819
+ };
4820
+ export type CreateListener = {
4821
+ readonly url: string;
4822
+ readonly uuid: string;
4823
+ /**
4824
+ * Load balancer this listener belongs to
4825
+ */
4826
+ load_balancer: string;
4827
+ name: string;
4828
+ protocol: LoadBalancerProtocolEnum;
4829
+ /**
4830
+ * Port on which the listener listens
4831
+ */
4832
+ protocol_port: number;
4833
+ default_pool?: string | null;
4834
+ readonly project: string;
4835
+ readonly service_settings: string;
4836
+ };
4837
+ export type CreateListenerRequest = {
4838
+ /**
4839
+ * Load balancer this listener belongs to
4840
+ */
4841
+ load_balancer: string;
4842
+ name: string;
4843
+ protocol: LoadBalancerProtocolEnum;
4844
+ /**
4845
+ * Port on which the listener listens
4846
+ */
4847
+ protocol_port: number;
4848
+ default_pool?: string | null;
4849
+ };
4850
+ export type CreateLoadBalancer = {
4851
+ readonly url: string;
4852
+ readonly uuid: string;
4853
+ /**
4854
+ * OpenStack tenant this load balancer belongs to
4855
+ */
4856
+ tenant: string;
4857
+ name: string;
4858
+ vip_subnet_id: string;
4859
+ readonly project: string;
4860
+ readonly service_settings: string;
4861
+ };
4862
+ export type CreateLoadBalancerRequest = {
4863
+ /**
4864
+ * OpenStack tenant this load balancer belongs to
4865
+ */
4866
+ tenant: string;
4867
+ name: string;
4868
+ vip_subnet_id: string;
4869
+ };
4760
4870
  export type CreateManualAssignmentRequest = {
4761
4871
  /**
4762
4872
  * UUID of the reviewer pool entry to assign proposals to
@@ -4781,6 +4891,66 @@ export type CreateManualAssignmentResponse = {
4781
4891
  [key: string]: unknown;
4782
4892
  }>;
4783
4893
  };
4894
+ export type CreatePool = {
4895
+ readonly url: string;
4896
+ readonly uuid: string;
4897
+ /**
4898
+ * Load balancer this pool belongs to
4899
+ */
4900
+ load_balancer: string;
4901
+ name: string;
4902
+ protocol: LoadBalancerProtocolEnum;
4903
+ lb_algorithm?: LbAlgorithmEnum;
4904
+ readonly project: string;
4905
+ readonly service_settings: string;
4906
+ };
4907
+ export type CreatePoolMember = {
4908
+ readonly url: string;
4909
+ readonly uuid: string;
4910
+ /**
4911
+ * Pool this member belongs to
4912
+ */
4913
+ pool: string;
4914
+ name?: string;
4915
+ /**
4916
+ * An IPv4 or IPv6 address.
4917
+ */
4918
+ address: string;
4919
+ /**
4920
+ * Port on the backend server
4921
+ */
4922
+ protocol_port: number;
4923
+ subnet_id: string;
4924
+ weight?: number;
4925
+ readonly project: string;
4926
+ readonly service_settings: string;
4927
+ };
4928
+ export type CreatePoolMemberRequest = {
4929
+ /**
4930
+ * Pool this member belongs to
4931
+ */
4932
+ pool: string;
4933
+ name?: string;
4934
+ /**
4935
+ * An IPv4 or IPv6 address.
4936
+ */
4937
+ address: string;
4938
+ /**
4939
+ * Port on the backend server
4940
+ */
4941
+ protocol_port: number;
4942
+ subnet_id: string;
4943
+ weight?: number;
4944
+ };
4945
+ export type CreatePoolRequest = {
4946
+ /**
4947
+ * Load balancer this pool belongs to
4948
+ */
4949
+ load_balancer: string;
4950
+ name: string;
4951
+ protocol: LoadBalancerProtocolEnum;
4952
+ lb_algorithm?: LbAlgorithmEnum;
4953
+ };
4784
4954
  export type CreateRouter = {
4785
4955
  readonly url: string;
4786
4956
  readonly uuid: string;
@@ -5610,6 +5780,7 @@ export type DigitalOceanDroplet = {
5610
5780
  readonly region_name?: string;
5611
5781
  readonly marketplace_offering_uuid?: string | null;
5612
5782
  readonly marketplace_offering_name?: string | null;
5783
+ readonly marketplace_offering_type?: string | null;
5613
5784
  readonly marketplace_offering_plugin_options?: {
5614
5785
  [key: string]: unknown;
5615
5786
  } | null;
@@ -6083,7 +6254,7 @@ export type EventMetadataResponse = {
6083
6254
  * Map of event group keys to lists of event type enums from EventType
6084
6255
  */
6085
6256
  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'>;
6257
+ [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
6258
  };
6088
6259
  };
6089
6260
  export type EventStats = {
@@ -6162,7 +6333,7 @@ export type EventSubscriptionRequest = {
6162
6333
  */
6163
6334
  observable_objects?: unknown;
6164
6335
  };
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';
6336
+ 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
6337
  export type ExecuteActionErrorResponse = {
6167
6338
  error: string;
6168
6339
  };
@@ -6764,6 +6935,10 @@ export type GoogleCredentials = {
6764
6935
  image?: string | null;
6765
6936
  readonly organization_groups?: Array<OrganizationGroup>;
6766
6937
  readonly offering_count?: number;
6938
+ /**
6939
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
6940
+ */
6941
+ allowed_domains?: unknown;
6767
6942
  readonly calendar_token?: string;
6768
6943
  readonly calendar_refresh_token?: string;
6769
6944
  readonly google_auth_url?: string;
@@ -8100,6 +8275,7 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8100
8275
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8101
8276
  export type KindEnum = 'default' | 'course' | 'public';
8102
8277
  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';
8278
+ export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8103
8279
  export type LexisLink = {
8104
8280
  readonly url: string;
8105
8281
  readonly uuid: string;
@@ -8164,6 +8340,13 @@ export type LinkToInvoice = {
8164
8340
  export type LinkToInvoiceRequest = {
8165
8341
  invoice: string;
8166
8342
  };
8343
+ export type LoadBalancerAttachFloatingIpRequest = {
8344
+ floating_ip: string;
8345
+ };
8346
+ export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8347
+ export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8348
+ security_groups: Array<string>;
8349
+ };
8167
8350
  export type LockStats = {
8168
8351
  /**
8169
8352
  * Total number of locks currently held
@@ -8706,6 +8889,10 @@ export type MergedPluginOptions = {
8706
8889
  * Service provider can create offering user
8707
8890
  */
8708
8891
  service_provider_can_create_offering_user?: boolean;
8892
+ /**
8893
+ * 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.
8894
+ */
8895
+ offering_user_auto_deletion?: boolean;
8709
8896
  /**
8710
8897
  * Maximum resource termination offset in days
8711
8898
  */
@@ -9000,6 +9187,10 @@ export type MergedPluginOptionsRequest = {
9000
9187
  * Service provider can create offering user
9001
9188
  */
9002
9189
  service_provider_can_create_offering_user?: boolean;
9190
+ /**
9191
+ * 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.
9192
+ */
9193
+ offering_user_auto_deletion?: boolean;
9003
9194
  /**
9004
9195
  * Maximum resource termination offset in days
9005
9196
  */
@@ -9614,9 +9805,10 @@ export type Message = {
9614
9805
  readonly replaces: string;
9615
9806
  readonly created: string;
9616
9807
  readonly is_flagged: boolean;
9617
- readonly injection_score: number;
9618
- injection_severity: InjectionSeverityEnum;
9808
+ severity: InjectionSeverityEnum;
9619
9809
  readonly injection_categories: unknown;
9810
+ readonly pii_categories: unknown;
9811
+ action_taken: ActionTakenEnum;
9620
9812
  };
9621
9813
  export type MessageResponse = {
9622
9814
  message: string;
@@ -9950,12 +10142,28 @@ export type NestedOfferingFileRequest = {
9950
10142
  name: string;
9951
10143
  file: Blob | File;
9952
10144
  };
10145
+ export type NestedParentSoftware = {
10146
+ readonly uuid: string;
10147
+ name: string;
10148
+ readonly url: string;
10149
+ };
10150
+ export type NestedParentSoftwareRequest = {
10151
+ name: string;
10152
+ };
9953
10153
  export type NestedPartition = {
9954
10154
  readonly uuid?: string;
9955
10155
  /**
9956
10156
  * Name of the SLURM partition
9957
10157
  */
9958
10158
  partition_name?: string;
10159
+ /**
10160
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10161
+ */
10162
+ cpu_arch?: string;
10163
+ /**
10164
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10165
+ */
10166
+ gpu_arch?: string;
9959
10167
  /**
9960
10168
  * Default task binding policy (SLURM cpu_bind)
9961
10169
  */
@@ -10038,6 +10246,14 @@ export type NestedPartitionRequest = {
10038
10246
  * Name of the SLURM partition
10039
10247
  */
10040
10248
  partition_name: string;
10249
+ /**
10250
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10251
+ */
10252
+ cpu_arch?: string;
10253
+ /**
10254
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10255
+ */
10256
+ gpu_arch?: string;
10041
10257
  /**
10042
10258
  * Default task binding policy (SLURM cpu_bind)
10043
10259
  */
@@ -10313,7 +10529,7 @@ export type NestedSecurityGroupRule = {
10313
10529
  /**
10314
10530
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10315
10531
  */
10316
- protocol?: ProtocolEnum | BlankEnum;
10532
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10317
10533
  /**
10318
10534
  * Starting port number in the range (1-65535)
10319
10535
  */
@@ -10343,7 +10559,7 @@ export type NestedSecurityGroupRuleRequest = {
10343
10559
  /**
10344
10560
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10345
10561
  */
10346
- protocol?: ProtocolEnum | BlankEnum;
10562
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10347
10563
  /**
10348
10564
  * Starting port number in the range (1-65535)
10349
10565
  */
@@ -10404,6 +10620,10 @@ export type NestedSoftwareTarget = {
10404
10620
  * Target-specific metadata (build options, system requirements, etc.)
10405
10621
  */
10406
10622
  metadata?: unknown;
10623
+ /**
10624
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10625
+ */
10626
+ gpu_architectures?: unknown;
10407
10627
  };
10408
10628
  export type NestedSoftwareTargetRequest = {
10409
10629
  /**
@@ -10426,6 +10646,10 @@ export type NestedSoftwareTargetRequest = {
10426
10646
  * Target-specific metadata (build options, system requirements, etc.)
10427
10647
  */
10428
10648
  metadata?: unknown;
10649
+ /**
10650
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10651
+ */
10652
+ gpu_architectures?: unknown;
10429
10653
  };
10430
10654
  export type NestedSoftwareVersion = {
10431
10655
  readonly uuid: string;
@@ -11198,6 +11422,14 @@ export type OfferingPartition = {
11198
11422
  * Name of the SLURM partition
11199
11423
  */
11200
11424
  partition_name: string;
11425
+ /**
11426
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11427
+ */
11428
+ cpu_arch?: string;
11429
+ /**
11430
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11431
+ */
11432
+ gpu_arch?: string;
11201
11433
  /**
11202
11434
  * Default task binding policy (SLURM cpu_bind)
11203
11435
  */
@@ -11281,6 +11513,14 @@ export type OfferingPartitionRequest = {
11281
11513
  * Name of the SLURM partition
11282
11514
  */
11283
11515
  partition_name: string;
11516
+ /**
11517
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11518
+ */
11519
+ cpu_arch?: string;
11520
+ /**
11521
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11522
+ */
11523
+ gpu_arch?: string;
11284
11524
  /**
11285
11525
  * Default task binding policy (SLURM cpu_bind)
11286
11526
  */
@@ -12150,6 +12390,7 @@ export type OpenStackBackup = {
12150
12390
  readonly tenant_uuid?: string;
12151
12391
  readonly marketplace_offering_uuid?: string | null;
12152
12392
  readonly marketplace_offering_name?: string | null;
12393
+ readonly marketplace_offering_type?: string | null;
12153
12394
  readonly marketplace_offering_plugin_options?: {
12154
12395
  [key: string]: unknown;
12155
12396
  } | null;
@@ -12363,6 +12604,7 @@ export type OpenStackFloatingIp = {
12363
12604
  readonly instance_url?: string | null;
12364
12605
  readonly marketplace_offering_uuid?: string | null;
12365
12606
  readonly marketplace_offering_name?: string | null;
12607
+ readonly marketplace_offering_type?: string | null;
12366
12608
  readonly marketplace_offering_plugin_options?: {
12367
12609
  [key: string]: unknown;
12368
12610
  } | null;
@@ -12389,6 +12631,62 @@ export type OpenStackFloatingIpRequest = {
12389
12631
  */
12390
12632
  router?: string | null;
12391
12633
  };
12634
+ export type OpenStackHealthMonitor = {
12635
+ readonly url?: string;
12636
+ readonly uuid?: string;
12637
+ name?: string;
12638
+ description?: string;
12639
+ readonly service_name?: string;
12640
+ service_settings?: string;
12641
+ readonly service_settings_uuid?: string;
12642
+ readonly service_settings_state?: string;
12643
+ readonly service_settings_error_message?: string;
12644
+ project?: string;
12645
+ readonly project_name?: string;
12646
+ readonly project_uuid?: string;
12647
+ readonly customer?: string;
12648
+ readonly customer_uuid?: string;
12649
+ readonly customer_name?: string;
12650
+ readonly customer_native_name?: string;
12651
+ readonly customer_abbreviation?: string;
12652
+ error_message?: string;
12653
+ error_traceback?: string;
12654
+ readonly resource_type?: string;
12655
+ state?: CoreStates;
12656
+ readonly created?: string;
12657
+ readonly modified?: string;
12658
+ /**
12659
+ * Health monitor ID in Octavia
12660
+ */
12661
+ backend_id?: string | null;
12662
+ readonly access_url?: string | null;
12663
+ /**
12664
+ * Pool this health monitor belongs to
12665
+ */
12666
+ pool?: string;
12667
+ readonly pool_name?: string;
12668
+ readonly pool_uuid?: string;
12669
+ readonly load_balancer_uuid?: string;
12670
+ readonly type?: string;
12671
+ readonly delay?: number;
12672
+ readonly timeout?: number;
12673
+ readonly max_retries?: number;
12674
+ readonly provisioning_status?: string;
12675
+ readonly operating_status?: string;
12676
+ readonly marketplace_offering_uuid?: string | null;
12677
+ readonly marketplace_offering_name?: string | null;
12678
+ readonly marketplace_offering_type?: string | null;
12679
+ readonly marketplace_offering_plugin_options?: {
12680
+ [key: string]: unknown;
12681
+ } | null;
12682
+ readonly marketplace_category_uuid?: string | null;
12683
+ readonly marketplace_category_name?: string | null;
12684
+ readonly marketplace_resource_uuid?: string | null;
12685
+ readonly marketplace_plan_uuid?: string | null;
12686
+ readonly marketplace_resource_state?: string | null;
12687
+ readonly is_usage_based?: boolean | null;
12688
+ readonly is_limit_based?: boolean | null;
12689
+ };
12392
12690
  export type OpenStackImage = {
12393
12691
  readonly url: string;
12394
12692
  readonly uuid: string;
@@ -12519,6 +12817,7 @@ export type OpenStackInstance = {
12519
12817
  rancher_cluster?: RancherClusterReference | null;
12520
12818
  readonly marketplace_offering_uuid?: string | null;
12521
12819
  readonly marketplace_offering_name?: string | null;
12820
+ readonly marketplace_offering_type?: string | null;
12522
12821
  readonly marketplace_offering_plugin_options?: {
12523
12822
  [key: string]: unknown;
12524
12823
  } | null;
@@ -12530,6 +12829,40 @@ export type OpenStackInstance = {
12530
12829
  readonly is_usage_based?: boolean | null;
12531
12830
  readonly is_limit_based?: boolean | null;
12532
12831
  };
12832
+ export type OpenStackInstanceAggregate = {
12833
+ /**
12834
+ * Group key value
12835
+ */
12836
+ group_key: string;
12837
+ /**
12838
+ * Human-readable group label
12839
+ */
12840
+ group_label: string;
12841
+ /**
12842
+ * Number of instances
12843
+ */
12844
+ instance_count: number;
12845
+ /**
12846
+ * Total vCPUs
12847
+ */
12848
+ total_cores: number;
12849
+ /**
12850
+ * Total RAM in MiB
12851
+ */
12852
+ total_ram_mb: number;
12853
+ /**
12854
+ * Total disk in MiB
12855
+ */
12856
+ total_disk_mb: number;
12857
+ /**
12858
+ * Total attached volume size in MiB
12859
+ */
12860
+ total_volume_size_mb: number;
12861
+ /**
12862
+ * Total number of floating IPs
12863
+ */
12864
+ total_floating_ips: number;
12865
+ };
12533
12866
  export type OpenStackInstanceAllowedAddressPairsUpdateRequest = {
12534
12867
  /**
12535
12868
  * The subnet to update allowed address pairs for.
@@ -12556,6 +12889,124 @@ export type OpenStackInstanceFloatingIpsUpdateRequest = {
12556
12889
  export type OpenStackInstancePortsUpdateRequest = {
12557
12890
  ports: Array<OpenStackCreatePortRequest>;
12558
12891
  };
12892
+ export type OpenStackInstanceReport = {
12893
+ /**
12894
+ * Instance UUID
12895
+ */
12896
+ uuid: string;
12897
+ /**
12898
+ * Instance name
12899
+ */
12900
+ name: string;
12901
+ /**
12902
+ * Creation timestamp
12903
+ */
12904
+ created: string;
12905
+ /**
12906
+ * Number of vCPUs
12907
+ */
12908
+ cores: number;
12909
+ /**
12910
+ * RAM in MiB
12911
+ */
12912
+ ram: number;
12913
+ /**
12914
+ * Root disk in MiB
12915
+ */
12916
+ disk: number;
12917
+ /**
12918
+ * Flavor name
12919
+ */
12920
+ flavor_name: string;
12921
+ /**
12922
+ * Flavor disk in MiB
12923
+ */
12924
+ flavor_disk: number;
12925
+ /**
12926
+ * Image name
12927
+ */
12928
+ image_name: string;
12929
+ /**
12930
+ * Hypervisor hostname
12931
+ */
12932
+ hypervisor_hostname: string;
12933
+ /**
12934
+ * Runtime state (e.g. ACTIVE, SHUTOFF)
12935
+ */
12936
+ runtime_state: string;
12937
+ /**
12938
+ * Provisioning state
12939
+ */
12940
+ state: string;
12941
+ /**
12942
+ * Availability zone name
12943
+ */
12944
+ availability_zone_name: string | null;
12945
+ /**
12946
+ * Last start time of the VM
12947
+ */
12948
+ start_time: string | null;
12949
+ /**
12950
+ * Cluster UUID
12951
+ */
12952
+ service_settings_uuid: string;
12953
+ /**
12954
+ * Cluster name
12955
+ */
12956
+ service_settings_name: string;
12957
+ /**
12958
+ * Tenant UUID
12959
+ */
12960
+ tenant_uuid: string;
12961
+ /**
12962
+ * Tenant name
12963
+ */
12964
+ tenant_name: string;
12965
+ /**
12966
+ * Project UUID
12967
+ */
12968
+ project_uuid: string;
12969
+ /**
12970
+ * Project name
12971
+ */
12972
+ project_name: string;
12973
+ /**
12974
+ * Customer UUID
12975
+ */
12976
+ customer_uuid: string;
12977
+ /**
12978
+ * Customer name
12979
+ */
12980
+ customer_name: string;
12981
+ /**
12982
+ * Customer abbreviation
12983
+ */
12984
+ customer_abbreviation: string;
12985
+ /**
12986
+ * Number of attached volumes
12987
+ */
12988
+ volume_count: number;
12989
+ /**
12990
+ * Total attached volume size in MiB
12991
+ */
12992
+ total_volume_size_mb: number;
12993
+ /**
12994
+ * Number of floating IPs
12995
+ */
12996
+ floating_ip_count: number;
12997
+ /**
12998
+ * Number of ports
12999
+ */
13000
+ port_count: number;
13001
+ /**
13002
+ * List of internal IP addresses
13003
+ */
13004
+ internal_ips: Array<string>;
13005
+ /**
13006
+ * List of external IP addresses
13007
+ */
13008
+ external_ips: Array<string>;
13009
+ };
12559
13010
  export type OpenStackInstanceRequest = {
12560
13011
  name: string;
12561
13012
  description?: string;
@@ -12566,6 +13017,145 @@ export type OpenStackInstanceSecurityGroupsUpdateRequest = {
12566
13017
  */
12567
13018
  security_groups: Array<string>;
12568
13019
  };
13020
+ export type OpenStackListener = {
13021
+ readonly url?: string;
13022
+ readonly uuid?: string;
13023
+ name?: string;
13024
+ description?: string;
13025
+ readonly service_name?: string;
13026
+ service_settings?: string;
13027
+ readonly service_settings_uuid?: string;
13028
+ readonly service_settings_state?: string;
13029
+ readonly service_settings_error_message?: string;
13030
+ project?: string;
13031
+ readonly project_name?: string;
13032
+ readonly project_uuid?: string;
13033
+ readonly customer?: string;
13034
+ readonly customer_uuid?: string;
13035
+ readonly customer_name?: string;
13036
+ readonly customer_native_name?: string;
13037
+ readonly customer_abbreviation?: string;
13038
+ error_message?: string;
13039
+ error_traceback?: string;
13040
+ readonly resource_type?: string;
13041
+ state?: CoreStates;
13042
+ readonly created?: string;
13043
+ readonly modified?: string;
13044
+ /**
13045
+ * Listener ID in Octavia
13046
+ */
13047
+ backend_id?: string | null;
13048
+ readonly access_url?: string | null;
13049
+ /**
13050
+ * Load balancer this listener belongs to
13051
+ */
13052
+ load_balancer?: string;
13053
+ readonly load_balancer_name?: string;
13054
+ readonly load_balancer_uuid?: string;
13055
+ readonly protocol?: string;
13056
+ readonly protocol_port?: number;
13057
+ /**
13058
+ * Default pool for this listener
13059
+ */
13060
+ default_pool?: string | null;
13061
+ readonly provisioning_status?: string;
13062
+ readonly operating_status?: string;
13063
+ readonly marketplace_offering_uuid?: string | null;
13064
+ readonly marketplace_offering_name?: string | null;
13065
+ readonly marketplace_offering_type?: string | null;
13066
+ readonly marketplace_offering_plugin_options?: {
13067
+ [key: string]: unknown;
13068
+ } | null;
13069
+ readonly marketplace_category_uuid?: string | null;
13070
+ readonly marketplace_category_name?: string | null;
13071
+ readonly marketplace_resource_uuid?: string | null;
13072
+ readonly marketplace_plan_uuid?: string | null;
13073
+ readonly marketplace_resource_state?: string | null;
13074
+ readonly is_usage_based?: boolean | null;
13075
+ readonly is_limit_based?: boolean | null;
13076
+ };
13077
+ export type OpenStackLoadBalancer = {
13078
+ readonly url?: string;
13079
+ readonly uuid?: string;
13080
+ name?: string;
13081
+ description?: string;
13082
+ readonly service_name?: string;
13083
+ service_settings?: string;
13084
+ readonly service_settings_uuid?: string;
13085
+ readonly service_settings_state?: string;
13086
+ readonly service_settings_error_message?: string;
13087
+ project?: string;
13088
+ readonly project_name?: string;
13089
+ readonly project_uuid?: string;
13090
+ readonly customer?: string;
13091
+ readonly customer_uuid?: string;
13092
+ readonly customer_name?: string;
13093
+ readonly customer_native_name?: string;
13094
+ readonly customer_abbreviation?: string;
13095
+ error_message?: string;
13096
+ error_traceback?: string;
13097
+ readonly resource_type?: string;
13098
+ state?: CoreStates;
13099
+ readonly created?: string;
13100
+ readonly modified?: string;
13101
+ /**
13102
+ * Load balancer ID in Octavia
13103
+ */
13104
+ backend_id?: string | null;
13105
+ readonly access_url?: string | null;
13106
+ /**
13107
+ * OpenStack tenant this load balancer belongs to
13108
+ */
13109
+ tenant?: string;
13110
+ readonly tenant_name?: string;
13111
+ readonly tenant_uuid?: string;
13112
+ /**
13113
+ * An IPv4 or IPv6 address.
13114
+ */
13115
+ vip_address?: string;
13116
+ readonly vip_subnet_id?: string;
13117
+ readonly vip_port_id?: string;
13118
+ /**
13119
+ * Floating IP attached to the VIP port
13120
+ */
13121
+ attached_floating_ip?: string | null;
13122
+ readonly provider?: string;
13123
+ readonly provisioning_status?: string;
13124
+ readonly operating_status?: string;
13125
+ readonly marketplace_offering_uuid?: string | null;
13126
+ readonly marketplace_offering_name?: string | null;
13127
+ readonly marketplace_offering_type?: string | null;
13128
+ readonly marketplace_offering_plugin_options?: {
13129
+ [key: string]: unknown;
13130
+ } | null;
13131
+ readonly marketplace_category_uuid?: string | null;
13132
+ readonly marketplace_category_name?: string | null;
13133
+ readonly marketplace_resource_uuid?: string | null;
13134
+ readonly marketplace_plan_uuid?: string | null;
13135
+ readonly marketplace_resource_state?: string | null;
13136
+ readonly is_usage_based?: boolean | null;
13137
+ readonly is_limit_based?: boolean | null;
13138
+ };
13139
+ export type OpenStackLoadBalancerRequest = {
13140
+ name: string;
13141
+ description?: string;
13142
+ service_settings: string;
13143
+ project: string;
13144
+ error_message?: string;
13145
+ error_traceback?: string;
13146
+ /**
13147
+ * Load balancer ID in Octavia
13148
+ */
13149
+ backend_id?: string | null;
13150
+ /**
13151
+ * OpenStack tenant this load balancer belongs to
13152
+ */
13153
+ tenant: string;
13154
+ /**
13155
+ * Floating IP attached to the VIP port
13156
+ */
13157
+ attached_floating_ip?: string | null;
13158
+ };
12569
13159
  export type OpenStackNestedFloatingIp = {
12570
13160
  readonly url?: string;
12571
13161
  readonly uuid?: string;
@@ -12795,6 +13385,7 @@ export type OpenStackNetwork = {
12795
13385
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
12796
13386
  readonly marketplace_offering_uuid?: string | null;
12797
13387
  readonly marketplace_offering_name?: string | null;
13388
+ readonly marketplace_offering_type?: string | null;
12798
13389
  readonly marketplace_offering_plugin_options?: {
12799
13390
  [key: string]: unknown;
12800
13391
  } | null;
@@ -12810,6 +13401,137 @@ export type OpenStackNetworkRequest = {
12810
13401
  name: string;
12811
13402
  description?: string;
12812
13403
  };
13404
+ export type OpenStackPool = {
13405
+ readonly url?: string;
13406
+ readonly uuid?: string;
13407
+ name?: string;
13408
+ description?: string;
13409
+ readonly service_name?: string;
13410
+ service_settings?: string;
13411
+ readonly service_settings_uuid?: string;
13412
+ readonly service_settings_state?: string;
13413
+ readonly service_settings_error_message?: string;
13414
+ project?: string;
13415
+ readonly project_name?: string;
13416
+ readonly project_uuid?: string;
13417
+ readonly customer?: string;
13418
+ readonly customer_uuid?: string;
13419
+ readonly customer_name?: string;
13420
+ readonly customer_native_name?: string;
13421
+ readonly customer_abbreviation?: string;
13422
+ error_message?: string;
13423
+ error_traceback?: string;
13424
+ readonly resource_type?: string;
13425
+ state?: CoreStates;
13426
+ readonly created?: string;
13427
+ readonly modified?: string;
13428
+ /**
13429
+ * Pool ID in Octavia
13430
+ */
13431
+ backend_id?: string | null;
13432
+ readonly access_url?: string | null;
13433
+ /**
13434
+ * Load balancer this pool belongs to
13435
+ */
13436
+ load_balancer?: string;
13437
+ readonly load_balancer_name?: string;
13438
+ readonly load_balancer_uuid?: string;
13439
+ readonly protocol?: string;
13440
+ readonly lb_algorithm?: string;
13441
+ readonly provisioning_status?: string;
13442
+ readonly operating_status?: string;
13443
+ readonly marketplace_offering_uuid?: string | null;
13444
+ readonly marketplace_offering_name?: string | null;
13445
+ readonly marketplace_offering_type?: string | null;
13446
+ readonly marketplace_offering_plugin_options?: {
13447
+ [key: string]: unknown;
13448
+ } | null;
13449
+ readonly marketplace_category_uuid?: string | null;
13450
+ readonly marketplace_category_name?: string | null;
13451
+ readonly marketplace_resource_uuid?: string | null;
13452
+ readonly marketplace_plan_uuid?: string | null;
13453
+ readonly marketplace_resource_state?: string | null;
13454
+ readonly is_usage_based?: boolean | null;
13455
+ readonly is_limit_based?: boolean | null;
13456
+ };
13457
+ export type OpenStackPoolMember = {
13458
+ readonly url?: string;
13459
+ readonly uuid?: string;
13460
+ name?: string;
13461
+ description?: string;
13462
+ readonly service_name?: string;
13463
+ service_settings?: string;
13464
+ readonly service_settings_uuid?: string;
13465
+ readonly service_settings_state?: string;
13466
+ readonly service_settings_error_message?: string;
13467
+ project?: string;
13468
+ readonly project_name?: string;
13469
+ readonly project_uuid?: string;
13470
+ readonly customer?: string;
13471
+ readonly customer_uuid?: string;
13472
+ readonly customer_name?: string;
13473
+ readonly customer_native_name?: string;
13474
+ readonly customer_abbreviation?: string;
13475
+ error_message?: string;
13476
+ error_traceback?: string;
13477
+ readonly resource_type?: string;
13478
+ state?: CoreStates;
13479
+ readonly created?: string;
13480
+ readonly modified?: string;
13481
+ /**
13482
+ * Member ID in Octavia
13483
+ */
13484
+ backend_id?: string | null;
13485
+ readonly access_url?: string | null;
13486
+ /**
13487
+ * Pool this member belongs to
13488
+ */
13489
+ pool?: string;
13490
+ readonly pool_name?: string;
13491
+ readonly pool_uuid?: string;
13492
+ readonly load_balancer_uuid?: string;
13493
+ /**
13494
+ * An IPv4 or IPv6 address.
13495
+ */
13496
+ address?: string;
13497
+ readonly protocol_port?: number;
13498
+ /**
13499
+ * Subnet ID for the member (required for creation)
13500
+ */
13501
+ subnet_id?: string;
13502
+ readonly weight?: number;
13503
+ readonly provisioning_status?: string;
13504
+ readonly operating_status?: string;
13505
+ readonly marketplace_offering_uuid?: string | null;
13506
+ readonly marketplace_offering_name?: string | null;
13507
+ readonly marketplace_offering_type?: string | null;
13508
+ readonly marketplace_offering_plugin_options?: {
13509
+ [key: string]: unknown;
13510
+ } | null;
13511
+ readonly marketplace_category_uuid?: string | null;
13512
+ readonly marketplace_category_name?: string | null;
13513
+ readonly marketplace_resource_uuid?: string | null;
13514
+ readonly marketplace_plan_uuid?: string | null;
13515
+ readonly marketplace_resource_state?: string | null;
13516
+ readonly is_usage_based?: boolean | null;
13517
+ readonly is_limit_based?: boolean | null;
13518
+ };
13519
+ export type OpenStackPoolRequest = {
13520
+ name: string;
13521
+ description?: string;
13522
+ service_settings: string;
13523
+ project: string;
13524
+ error_message?: string;
13525
+ error_traceback?: string;
13526
+ /**
13527
+ * Pool ID in Octavia
13528
+ */
13529
+ backend_id?: string | null;
13530
+ /**
13531
+ * Load balancer this pool belongs to
13532
+ */
13533
+ load_balancer: string;
13534
+ };
12813
13535
  export type OpenStackPort = {
12814
13536
  readonly url?: string;
12815
13537
  readonly uuid?: string;
@@ -12881,6 +13603,7 @@ export type OpenStackPort = {
12881
13603
  readonly status?: string | null;
12882
13604
  readonly marketplace_offering_uuid?: string | null;
12883
13605
  readonly marketplace_offering_name?: string | null;
13606
+ readonly marketplace_offering_type?: string | null;
12884
13607
  readonly marketplace_offering_plugin_options?: {
12885
13608
  [key: string]: unknown;
12886
13609
  } | null;
@@ -12973,6 +13696,7 @@ export type OpenStackRouter = {
12973
13696
  readonly ports?: Array<OpenStackNestedPort>;
12974
13697
  readonly marketplace_offering_uuid?: string | null;
12975
13698
  readonly marketplace_offering_name?: string | null;
13699
+ readonly marketplace_offering_type?: string | null;
12976
13700
  readonly marketplace_offering_plugin_options?: {
12977
13701
  [key: string]: unknown;
12978
13702
  } | null;
@@ -13033,6 +13757,7 @@ export type OpenStackSecurityGroup = {
13033
13757
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
13034
13758
  readonly marketplace_offering_uuid?: string | null;
13035
13759
  readonly marketplace_offering_name?: string | null;
13760
+ readonly marketplace_offering_type?: string | null;
13036
13761
  readonly marketplace_offering_plugin_options?: {
13037
13762
  [key: string]: unknown;
13038
13763
  } | null;
@@ -13064,7 +13789,7 @@ export type OpenStackSecurityGroupRuleCreate = {
13064
13789
  /**
13065
13790
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13066
13791
  */
13067
- protocol?: ProtocolEnum | BlankEnum;
13792
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13068
13793
  /**
13069
13794
  * Starting port number in the range (1-65535)
13070
13795
  */
@@ -13098,7 +13823,7 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
13098
13823
  /**
13099
13824
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13100
13825
  */
13101
- protocol?: ProtocolEnum | BlankEnum;
13826
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13102
13827
  /**
13103
13828
  * Starting port number in the range (1-65535)
13104
13829
  */
@@ -13129,7 +13854,7 @@ export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
13129
13854
  /**
13130
13855
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13131
13856
  */
13132
- protocol?: ProtocolEnum | BlankEnum;
13857
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13133
13858
  /**
13134
13859
  * Starting port number in the range (1-65535)
13135
13860
  */
@@ -13158,7 +13883,7 @@ export type OpenStackSecurityGroupRuleUpdateRequest = {
13158
13883
  /**
13159
13884
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13160
13885
  */
13161
- protocol?: ProtocolEnum | BlankEnum;
13886
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13162
13887
  /**
13163
13888
  * Starting port number in the range (1-65535)
13164
13889
  */
@@ -13222,6 +13947,7 @@ export type OpenStackServerGroup = {
13222
13947
  readonly instances?: Array<OpenStackNestedInstance>;
13223
13948
  readonly marketplace_offering_uuid?: string | null;
13224
13949
  readonly marketplace_offering_name?: string | null;
13950
+ readonly marketplace_offering_type?: string | null;
13225
13951
  readonly marketplace_offering_plugin_options?: {
13226
13952
  [key: string]: unknown;
13227
13953
  } | null;
@@ -13291,6 +14017,7 @@ export type OpenStackSnapshot = {
13291
14017
  kept_until?: string | null;
13292
14018
  readonly marketplace_offering_uuid?: string | null;
13293
14019
  readonly marketplace_offering_name?: string | null;
14020
+ readonly marketplace_offering_type?: string | null;
13294
14021
  readonly marketplace_offering_plugin_options?: {
13295
14022
  [key: string]: unknown;
13296
14023
  } | null;
@@ -13420,6 +14147,7 @@ export type OpenStackSubNet = {
13420
14147
  readonly is_connected?: boolean;
13421
14148
  readonly marketplace_offering_uuid?: string | null;
13422
14149
  readonly marketplace_offering_name?: string | null;
14150
+ readonly marketplace_offering_type?: string | null;
13423
14151
  readonly marketplace_offering_plugin_options?: {
13424
14152
  [key: string]: unknown;
13425
14153
  } | null;
@@ -13529,6 +14257,7 @@ export type OpenStackTenant = {
13529
14257
  skip_creation_of_default_router?: boolean;
13530
14258
  readonly marketplace_offering_uuid?: string | null;
13531
14259
  readonly marketplace_offering_name?: string | null;
14260
+ readonly marketplace_offering_type?: string | null;
13532
14261
  readonly marketplace_offering_plugin_options?: {
13533
14262
  [key: string]: unknown;
13534
14263
  } | null;
@@ -13673,6 +14402,7 @@ export type OpenStackVolume = {
13673
14402
  readonly extend_enabled?: boolean;
13674
14403
  readonly marketplace_offering_uuid?: string | null;
13675
14404
  readonly marketplace_offering_name?: string | null;
14405
+ readonly marketplace_offering_type?: string | null;
13676
14406
  readonly marketplace_offering_plugin_options?: {
13677
14407
  [key: string]: unknown;
13678
14408
  } | null;
@@ -14093,6 +14823,14 @@ export type PartitionSummary = {
14093
14823
  * Quality of Service (QOS) name
14094
14824
  */
14095
14825
  qos?: string;
14826
+ /**
14827
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14828
+ */
14829
+ cpu_arch?: string;
14830
+ /**
14831
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14832
+ */
14833
+ gpu_arch?: string;
14096
14834
  };
14097
14835
  export type PartitionSummaryRequest = {
14098
14836
  /**
@@ -14107,6 +14845,14 @@ export type PartitionSummaryRequest = {
14107
14845
  * Quality of Service (QOS) name
14108
14846
  */
14109
14847
  qos?: string;
14848
+ /**
14849
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14850
+ */
14851
+ cpu_arch?: string;
14852
+ /**
14853
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14854
+ */
14855
+ gpu_arch?: string;
14110
14856
  };
14111
14857
  export type PasswordChangeRequest = {
14112
14858
  new_password: string;
@@ -14842,6 +15588,14 @@ export type PatchedOfferingPartitionUpdateRequest = {
14842
15588
  * Name of the SLURM partition
14843
15589
  */
14844
15590
  partition_name?: string;
15591
+ /**
15592
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
15593
+ */
15594
+ cpu_arch?: string;
15595
+ /**
15596
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
15597
+ */
15598
+ gpu_arch?: string;
14845
15599
  /**
14846
15600
  * Default task binding policy (SLURM cpu_bind)
14847
15601
  */
@@ -15054,10 +15808,46 @@ export type PatchedOpenStackInstanceRequest = {
15054
15808
  name?: string;
15055
15809
  description?: string;
15056
15810
  };
15811
+ export type PatchedOpenStackLoadBalancerRequest = {
15812
+ name?: string;
15813
+ description?: string;
15814
+ service_settings?: string;
15815
+ project?: string;
15816
+ error_message?: string;
15817
+ error_traceback?: string;
15818
+ /**
15819
+ * Load balancer ID in Octavia
15820
+ */
15821
+ backend_id?: string | null;
15822
+ /**
15823
+ * OpenStack tenant this load balancer belongs to
15824
+ */
15825
+ tenant?: string;
15826
+ /**
15827
+ * Floating IP attached to the VIP port
15828
+ */
15829
+ attached_floating_ip?: string | null;
15830
+ };
15057
15831
  export type PatchedOpenStackNetworkRequest = {
15058
15832
  name?: string;
15059
15833
  description?: string;
15060
15834
  };
15835
+ export type PatchedOpenStackPoolRequest = {
15836
+ name?: string;
15837
+ description?: string;
15838
+ service_settings?: string;
15839
+ project?: string;
15840
+ error_message?: string;
15841
+ error_traceback?: string;
15842
+ /**
15843
+ * Pool ID in Octavia
15844
+ */
15845
+ backend_id?: string | null;
15846
+ /**
15847
+ * Load balancer this pool belongs to
15848
+ */
15849
+ load_balancer?: string;
15850
+ };
15061
15851
  export type PatchedOpenStackPortRequest = {
15062
15852
  name?: string;
15063
15853
  description?: string;
@@ -15803,6 +16593,10 @@ export type PatchedServiceProviderRequest = {
15803
16593
  description?: string;
15804
16594
  enable_notifications?: boolean;
15805
16595
  image?: (Blob | File) | null;
16596
+ /**
16597
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
16598
+ */
16599
+ allowed_domains?: unknown;
15806
16600
  };
15807
16601
  export type PatchedSlurmAllocationRequest = {
15808
16602
  name?: string;
@@ -15904,10 +16698,6 @@ export type PatchedSoftwarePackageRequest = {
15904
16698
  * Whether this package is an extension of another package
15905
16699
  */
15906
16700
  is_extension?: boolean;
15907
- /**
15908
- * Parent package for extensions (e.g., Python package within Python)
15909
- */
15910
- parent_software?: string | null;
15911
16701
  };
15912
16702
  export type PatchedTagRequest = {
15913
16703
  name?: string;
@@ -15918,6 +16708,20 @@ export type PatchedTemplateRequest = {
15918
16708
  description?: string;
15919
16709
  issue_type?: IssueTypeEnum;
15920
16710
  };
16711
+ export type PatchedUpdateHealthMonitorRequest = {
16712
+ name?: string;
16713
+ delay?: number;
16714
+ timeout?: number;
16715
+ max_retries?: number;
16716
+ };
16717
+ export type PatchedUpdateListenerRequest = {
16718
+ name?: string;
16719
+ default_pool?: string | null;
16720
+ };
16721
+ export type PatchedUpdatePoolMemberRequest = {
16722
+ name?: string;
16723
+ weight?: number;
16724
+ };
15921
16725
  export type PatchedUserAgreementRequest = {
15922
16726
  content?: string;
15923
16727
  agreement_type?: AgreementTypeEnum;
@@ -17288,7 +18092,6 @@ export type ProtectedRoundRequest = {
17288
18092
  review_duration_in_days?: number;
17289
18093
  minimum_number_of_reviewers?: number | null;
17290
18094
  };
17291
- export type ProtocolEnum = 'tcp' | 'udp' | 'icmp';
17292
18095
  export type ProviderCustomerStats = {
17293
18096
  /**
17294
18097
  * Total number of customers
@@ -18430,6 +19233,7 @@ export type RancherApplication = {
18430
19233
  readonly external_url?: string | null;
18431
19234
  readonly marketplace_offering_uuid?: string | null;
18432
19235
  readonly marketplace_offering_name?: string | null;
19236
+ readonly marketplace_offering_type?: string | null;
18433
19237
  readonly marketplace_offering_plugin_options?: {
18434
19238
  [key: string]: unknown;
18435
19239
  } | null;
@@ -18579,6 +19383,7 @@ export type RancherCluster = {
18579
19383
  readonly router_ips?: Array<unknown>;
18580
19384
  readonly marketplace_offering_uuid?: string | null;
18581
19385
  readonly marketplace_offering_name?: string | null;
19386
+ readonly marketplace_offering_type?: string | null;
18582
19387
  readonly marketplace_offering_plugin_options?: {
18583
19388
  [key: string]: unknown;
18584
19389
  } | null;
@@ -18618,7 +19423,7 @@ export type RancherClusterSecurityGroupRule = {
18618
19423
  /**
18619
19424
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18620
19425
  */
18621
- protocol?: ProtocolEnum | BlankEnum;
19426
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18622
19427
  /**
18623
19428
  * Starting port number in the range (1-65535)
18624
19429
  */
@@ -18645,7 +19450,7 @@ export type RancherClusterSecurityGroupRuleRequest = {
18645
19450
  /**
18646
19451
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18647
19452
  */
18648
- protocol?: ProtocolEnum | BlankEnum;
19453
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18649
19454
  /**
18650
19455
  * Starting port number in the range (1-65535)
18651
19456
  */
@@ -18780,6 +19585,7 @@ export type RancherIngress = {
18780
19585
  rules?: unknown;
18781
19586
  readonly marketplace_offering_uuid?: string | null;
18782
19587
  readonly marketplace_offering_name?: string | null;
19588
+ readonly marketplace_offering_type?: string | null;
18783
19589
  readonly marketplace_offering_plugin_options?: {
18784
19590
  [key: string]: unknown;
18785
19591
  } | null;
@@ -18971,6 +19777,7 @@ export type RancherService = {
18971
19777
  target_workloads?: Array<RancherNestedWorkload>;
18972
19778
  readonly marketplace_offering_uuid?: string | null;
18973
19779
  readonly marketplace_offering_name?: string | null;
19780
+ readonly marketplace_offering_type?: string | null;
18974
19781
  readonly marketplace_offering_plugin_options?: {
18975
19782
  [key: string]: unknown;
18976
19783
  } | null;
@@ -19019,6 +19826,7 @@ export type RancherServiceCreate = {
19019
19826
  target_workloads?: Array<RancherWorkloadCreate>;
19020
19827
  readonly marketplace_offering_uuid: string | null;
19021
19828
  readonly marketplace_offering_name: string | null;
19829
+ readonly marketplace_offering_type: string | null;
19022
19830
  readonly marketplace_offering_plugin_options: {
19023
19831
  [key: string]: unknown;
19024
19832
  } | null;
@@ -19236,6 +20044,7 @@ export type RemoteAllocation = {
19236
20044
  readonly is_active?: boolean;
19237
20045
  readonly marketplace_offering_uuid?: string | null;
19238
20046
  readonly marketplace_offering_name?: string | null;
20047
+ readonly marketplace_offering_type?: string | null;
19239
20048
  readonly marketplace_offering_plugin_options?: {
19240
20049
  [key: string]: unknown;
19241
20050
  } | null;
@@ -21359,6 +22168,7 @@ export type SectionRequest = {
21359
22168
  */
21360
22169
  is_standalone?: boolean;
21361
22170
  };
22171
+ export type SecurityGroupRuleProtocolEnum = 'tcp' | 'udp' | 'icmp';
21362
22172
  export type SelfDeclaredConflictRequest = {
21363
22173
  proposal_uuid: string;
21364
22174
  coi_type: CoiTypeEnum;
@@ -21425,6 +22235,10 @@ export type ServiceProvider = {
21425
22235
  image?: string | null;
21426
22236
  readonly organization_groups?: Array<OrganizationGroup>;
21427
22237
  readonly offering_count?: number;
22238
+ /**
22239
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22240
+ */
22241
+ allowed_domains?: unknown;
21428
22242
  };
21429
22243
  export type ServiceProviderAccess = {
21430
22244
  offering_uuid: string;
@@ -21477,6 +22291,10 @@ export type ServiceProviderRequest = {
21477
22291
  enable_notifications?: boolean;
21478
22292
  customer: string;
21479
22293
  image?: (Blob | File) | null;
22294
+ /**
22295
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22296
+ */
22297
+ allowed_domains?: unknown;
21480
22298
  };
21481
22299
  export type ServiceProviderRevenues = {
21482
22300
  /**
@@ -21691,6 +22509,7 @@ export type SlurmAllocation = {
21691
22509
  readonly is_active?: boolean;
21692
22510
  readonly marketplace_offering_uuid?: string | null;
21693
22511
  readonly marketplace_offering_name?: string | null;
22512
+ readonly marketplace_offering_type?: string | null;
21694
22513
  readonly marketplace_offering_plugin_options?: {
21695
22514
  [key: string]: unknown;
21696
22515
  } | null;
@@ -22193,10 +23012,7 @@ export type SoftwarePackage = {
22193
23012
  * Whether this package is an extension of another package
22194
23013
  */
22195
23014
  is_extension?: boolean;
22196
- /**
22197
- * Parent package for extensions (e.g., Python package within Python)
22198
- */
22199
- parent_software?: string | null;
23015
+ readonly parent_softwares: Array<NestedParentSoftware>;
22200
23016
  readonly catalog_name: string;
22201
23017
  readonly catalog_version: string;
22202
23018
  readonly catalog_type: string;
@@ -22226,10 +23042,6 @@ export type SoftwarePackageRequest = {
22226
23042
  * Whether this package is an extension of another package
22227
23043
  */
22228
23044
  is_extension?: boolean;
22229
- /**
22230
- * Parent package for extensions (e.g., Python package within Python)
22231
- */
22232
- parent_software?: string | null;
22233
23045
  };
22234
23046
  export type SoftwareTarget = {
22235
23047
  readonly url: string;
@@ -22256,6 +23068,10 @@ export type SoftwareTarget = {
22256
23068
  * Target-specific metadata (build options, system requirements, etc.)
22257
23069
  */
22258
23070
  readonly metadata: unknown;
23071
+ /**
23072
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
23073
+ */
23074
+ readonly gpu_architectures: unknown;
22259
23075
  };
22260
23076
  export type SoftwareVersion = {
22261
23077
  readonly url: string;
@@ -22627,6 +23443,12 @@ export type TableGrowthStatsResponse = {
22627
23443
  */
22628
23444
  alerts: Array<TableGrowthAlert>;
22629
23445
  };
23446
+ export type TableGrowthTriggerResponse = {
23447
+ /**
23448
+ * Status message about the triggered task
23449
+ */
23450
+ detail: string;
23451
+ };
22630
23452
  export type TableSize = {
22631
23453
  /**
22632
23454
  * Name of the database table
@@ -22924,6 +23746,26 @@ export type UpdateActionsResponse = {
22924
23746
  message: string;
22925
23747
  provider_action_type?: string | null;
22926
23748
  };
23749
+ export type UpdateHealthMonitor = {
23750
+ name?: string;
23751
+ delay?: number;
23752
+ timeout?: number;
23753
+ max_retries?: number;
23754
+ };
23755
+ export type UpdateHealthMonitorRequest = {
23756
+ name?: string;
23757
+ delay?: number;
23758
+ timeout?: number;
23759
+ max_retries?: number;
23760
+ };
23761
+ export type UpdateListener = {
23762
+ name?: string;
23763
+ default_pool?: string | null;
23764
+ };
23765
+ export type UpdateListenerRequest = {
23766
+ name?: string;
23767
+ default_pool?: string | null;
23768
+ };
22927
23769
  export type UpdateOfferingComponentRequest = {
22928
23770
  uuid: string;
22929
23771
  billing_type: BillingTypeEnum;
@@ -22957,6 +23799,14 @@ export type UpdateOfferingComponentRequest = {
22957
23799
  min_prepaid_duration?: number | null;
22958
23800
  max_prepaid_duration?: number | null;
22959
23801
  };
23802
+ export type UpdatePoolMember = {
23803
+ name?: string;
23804
+ weight?: number;
23805
+ };
23806
+ export type UpdatePoolMemberRequest = {
23807
+ name?: string;
23808
+ weight?: number;
23809
+ };
22960
23810
  export type UrgencyEnum = 'low' | 'medium' | 'high';
22961
23811
  export type User = {
22962
23812
  readonly url?: string;
@@ -23664,6 +24514,7 @@ export type VmwareDisk = {
23664
24514
  readonly vm_name?: string;
23665
24515
  readonly marketplace_offering_uuid?: string | null;
23666
24516
  readonly marketplace_offering_name?: string | null;
24517
+ readonly marketplace_offering_type?: string | null;
23667
24518
  readonly marketplace_offering_plugin_options?: {
23668
24519
  [key: string]: unknown;
23669
24520
  } | null;
@@ -23777,6 +24628,7 @@ export type VmwarePort = {
23777
24628
  readonly network_name?: string;
23778
24629
  readonly marketplace_offering_uuid?: string | null;
23779
24630
  readonly marketplace_offering_name?: string | null;
24631
+ readonly marketplace_offering_type?: string | null;
23780
24632
  readonly marketplace_offering_plugin_options?: {
23781
24633
  [key: string]: unknown;
23782
24634
  } | null;
@@ -23883,6 +24735,7 @@ export type VmwareVirtualMachine = {
23883
24735
  readonly tools_installed?: boolean;
23884
24736
  readonly marketplace_offering_uuid?: string | null;
23885
24737
  readonly marketplace_offering_name?: string | null;
24738
+ readonly marketplace_offering_type?: string | null;
23886
24739
  readonly marketplace_offering_plugin_options?: {
23887
24740
  [key: string]: unknown;
23888
24741
  } | null;
@@ -24828,22 +25681,38 @@ export type ServiceProviderRequestForm = {
24828
25681
  enable_notifications?: boolean;
24829
25682
  customer: string;
24830
25683
  image?: (Blob | File) | null;
25684
+ /**
25685
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25686
+ */
25687
+ allowed_domains?: unknown;
24831
25688
  };
24832
25689
  export type ServiceProviderRequestMultipart = {
24833
25690
  description?: string;
24834
25691
  enable_notifications?: boolean;
24835
25692
  customer: string;
24836
25693
  image?: (Blob | File) | null;
25694
+ /**
25695
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25696
+ */
25697
+ allowed_domains?: unknown;
24837
25698
  };
24838
25699
  export type PatchedServiceProviderRequestForm = {
24839
25700
  description?: string;
24840
25701
  enable_notifications?: boolean;
24841
25702
  image?: (Blob | File) | null;
25703
+ /**
25704
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25705
+ */
25706
+ allowed_domains?: unknown;
24842
25707
  };
24843
25708
  export type PatchedServiceProviderRequestMultipart = {
24844
25709
  description?: string;
24845
25710
  enable_notifications?: boolean;
24846
25711
  image?: (Blob | File) | null;
25712
+ /**
25713
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25714
+ */
25715
+ allowed_domains?: unknown;
24847
25716
  };
24848
25717
  export type OnboardingJustificationDocumentationRequestForm = {
24849
25718
  /**
@@ -25221,6 +26090,7 @@ export type ConstanceSettingsRequestForm = {
25221
26090
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25222
26091
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25223
26092
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26093
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25224
26094
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25225
26095
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25226
26096
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25465,6 +26335,7 @@ export type ConstanceSettingsRequestMultipart = {
25465
26335
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25466
26336
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25467
26337
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26338
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25468
26339
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25469
26340
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25470
26341
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25957,13 +26828,13 @@ export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created'
25957
26828
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
25958
26829
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
25959
26830
  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';
26831
+ 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';
26832
+ 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';
26833
+ 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';
26834
+ 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';
26835
+ 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';
26836
+ 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';
26837
+ 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
26838
  export type BackendResourceReqOEnum = '-created' | 'created';
25968
26839
  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
26840
  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 +26858,12 @@ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_
25987
26858
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
25988
26859
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
25989
26860
  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';
26861
+ 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
26862
  export type DigitalOceanImageOEnum = '-distribution' | '-type' | 'distribution' | 'type';
25992
26863
  export type EmailLogOEnum = '-sent_at' | '-subject' | 'sent_at' | 'subject';
25993
26864
  export type EventFieldEnum = 'context' | 'created' | 'event_type' | 'message' | 'uuid';
25994
26865
  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';
26866
+ 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
26867
  export type WebHookContentTypeEnum1 = 1 | 2;
25997
26868
  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
26869
  export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month' | 'year';
@@ -26030,7 +26901,7 @@ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy'
26030
26901
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26031
26902
  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
26903
  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';
26904
+ 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
26905
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
26035
26906
  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
26907
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
@@ -26043,6 +26914,7 @@ export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' |
26043
26914
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
26044
26915
  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
26916
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
26917
+ export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
26046
26918
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
26047
26919
  export type OnboardingJustificationOEnum = '-created' | '-modified' | '-validated_at' | 'created' | 'modified' | 'validated_at';
26048
26920
  export type OnboardingJustificationValidationDecisionEnum = 'Approved' | 'Pending Review' | 'Rejected';
@@ -26051,25 +26923,30 @@ export type OnboardingVerificationStatusEnum1 = 'Escalated for manual validation
26051
26923
  export type OnboardingVerificationValidationMethodEnum = 'Austrian Business Register (WirtschaftsCompass)' | 'Estonian Business Register (ariregister)' | 'Norwegian Business Register (Brreg)' | 'Swedish Business Register (Bolagsverket)';
26052
26924
  export type ChecklistResponseChecklistTypeEnum = 'customer' | 'intent';
26053
26925
  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';
26926
+ 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';
26927
+ 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';
26928
+ 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
26929
  export type ExternalNetworkFieldEnum = 'backend_id' | 'description' | 'is_default' | 'is_shared' | 'name' | 'settings' | 'status' | 'subnets' | 'url' | 'uuid';
26058
26930
  export type OpenStackFlavorFieldEnum = 'backend_id' | 'cores' | 'disk' | 'display_name' | 'name' | 'ram' | 'settings' | 'url' | 'uuid';
26059
26931
  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';
26932
+ 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';
26933
+ 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';
26934
+ 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
26935
  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';
26936
+ 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';
26937
+ 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';
26938
+ 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';
26939
+ 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';
26940
+ 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';
26941
+ 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
26942
  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';
26943
+ 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';
26944
+ 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';
26945
+ 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';
26946
+ 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';
26947
+ 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';
26948
+ 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';
26949
+ 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
26950
  export type PaymentProfileOEnum = '-is_active' | '-name' | '-payment_type' | 'is_active' | 'name' | 'payment_type';
26074
26951
  export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-project_name' | '-value' | 'end_date' | 'expected_consumption' | 'project_name' | 'value';
26075
26952
  export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
@@ -26083,12 +26960,12 @@ export type ProviderRequestedOfferingOEnum = '-call__name' | '-created' | '-offe
26083
26960
  export type ProviderRequestedResourceOEnum = '-created' | '-offering__name' | '-proposal__name' | '-resource__name' | 'created' | 'offering__name' | 'proposal__name' | 'resource__name';
26084
26961
  export type ProposalReviewOEnum = '-created' | '-state' | 'created' | 'state';
26085
26962
  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';
26963
+ 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';
26964
+ 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';
26965
+ 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
26966
  export type RancherNamespaceOEnum = '-cluster_name' | '-name' | '-project_name' | 'cluster_name' | 'name' | 'project_name';
26090
26967
  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';
26968
+ 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
26969
  export type RancherTemplateOEnum = '-catalog_name' | '-name' | 'catalog_name' | 'name';
26093
26970
  export type RancherWorkloadOEnum = '-cluster_name' | '-name' | '-namespace_name' | '-project_name' | 'cluster_name' | 'name' | 'namespace_name' | 'project_name';
26094
26971
  export type ReviewerBidOEnum = '-bid' | '-modified_at' | '-submitted_at' | 'bid' | 'modified_at' | 'submitted_at';
@@ -26096,16 +26973,16 @@ export type ReviewerProfileOEnum = '-created' | '-user_email' | '-user_name' | '
26096
26973
  export type ReviewerSuggestionOEnum = '-affinity_score' | '-created' | '-reviewed_at' | '-status' | 'affinity_score' | 'created' | 'reviewed_at' | 'status';
26097
26974
  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
26975
  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';
26976
+ 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
26977
  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
26978
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
26102
26979
  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
26980
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
26104
26981
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
26105
26982
  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';
26983
+ 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';
26984
+ 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';
26985
+ 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
26986
  /**
26110
26987
  * A page number within the paginated result set.
26111
26988
  */
@@ -40023,7 +40900,7 @@ export type MarketplaceCourseAccountsListData = {
40023
40900
  *
40024
40901
  *
40025
40902
  */
40026
- state?: Array<ServiceAccountState>;
40903
+ state?: Array<CourseAccountStateEnum>;
40027
40904
  /**
40028
40905
  * Username
40029
40906
  */
@@ -40082,7 +40959,7 @@ export type MarketplaceCourseAccountsCountData = {
40082
40959
  *
40083
40960
  *
40084
40961
  */
40085
- state?: Array<ServiceAccountState>;
40962
+ state?: Array<CourseAccountStateEnum>;
40086
40963
  /**
40087
40964
  * Username
40088
40965
  */
@@ -40180,7 +41057,7 @@ export type MarketplaceCourseAccountsCreateBulkData = {
40180
41057
  *
40181
41058
  *
40182
41059
  */
40183
- state?: Array<ServiceAccountState>;
41060
+ state?: Array<CourseAccountStateEnum>;
40184
41061
  /**
40185
41062
  * Username
40186
41063
  */
@@ -50099,7 +50976,7 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
50099
50976
  *
50100
50977
  *
50101
50978
  */
50102
- state?: Array<ServiceAccountState>;
50979
+ state?: Array<CourseAccountStateEnum>;
50103
50980
  /**
50104
50981
  * Username
50105
50982
  */
@@ -51758,6 +52635,18 @@ export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses = {
51758
52635
  200: Array<SlurmPolicyEvaluationLog>;
51759
52636
  };
51760
52637
  export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponse = MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses];
52638
+ export type MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetData = {
52639
+ body?: SlurmPolicyEvaluateRequestRequest;
52640
+ path: {
52641
+ uuid: string;
52642
+ };
52643
+ query?: never;
52644
+ url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/force-period-reset/';
52645
+ };
52646
+ export type MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponses = {
52647
+ 200: SlurmPolicyEvaluateResponse;
52648
+ };
52649
+ export type MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponse = MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesForcePeriodResetResponses];
51761
52650
  export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultData = {
51762
52651
  body: SlurmCommandResultRequest;
51763
52652
  path: {
@@ -52105,6 +52994,14 @@ export type MarketplaceSoftwarePackagesListData = {
52105
52994
  * Filter packages having extensions of a specific type (e.g., 'python')
52106
52995
  */
52107
52996
  extension_type?: string;
52997
+ /**
52998
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
52999
+ */
53000
+ gpu_arch?: string;
53001
+ /**
53002
+ * Filter packages that have GPU-enabled builds
53003
+ */
53004
+ has_gpu?: boolean;
52108
53005
  /**
52109
53006
  * Filter packages that have a specific version
52110
53007
  */
@@ -52212,6 +53109,14 @@ export type MarketplaceSoftwarePackagesCountData = {
52212
53109
  * Filter packages having extensions of a specific type (e.g., 'python')
52213
53110
  */
52214
53111
  extension_type?: string;
53112
+ /**
53113
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
53114
+ */
53115
+ gpu_arch?: string;
53116
+ /**
53117
+ * Filter packages that have GPU-enabled builds
53118
+ */
53119
+ has_gpu?: boolean;
52215
53120
  /**
52216
53121
  * Filter packages that have a specific version
52217
53122
  */
@@ -52343,6 +53248,14 @@ export type MarketplaceSoftwareTargetsListData = {
52343
53248
  catalog_uuid?: string;
52344
53249
  cpu_family?: string;
52345
53250
  cpu_microarchitecture?: string;
53251
+ /**
53252
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53253
+ */
53254
+ gpu_arch?: string;
53255
+ /**
53256
+ * Filter targets that have GPU architectures
53257
+ */
53258
+ has_gpu?: boolean;
52346
53259
  /**
52347
53260
  * Ordering
52348
53261
  *
@@ -52387,6 +53300,14 @@ export type MarketplaceSoftwareTargetsCountData = {
52387
53300
  catalog_uuid?: string;
52388
53301
  cpu_family?: string;
52389
53302
  cpu_microarchitecture?: string;
53303
+ /**
53304
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53305
+ */
53306
+ gpu_arch?: string;
53307
+ /**
53308
+ * Filter targets that have GPU architectures
53309
+ */
53310
+ has_gpu?: boolean;
52390
53311
  /**
52391
53312
  * Ordering
52392
53313
  *
@@ -52501,67 +53422,83 @@ export type MarketplaceSoftwareVersionsListData = {
52501
53422
  cpu_family?: string;
52502
53423
  cpu_microarchitecture?: string;
52503
53424
  /**
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)
53425
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
52530
53426
  */
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?: {
53427
+ gpu_arch?: string;
52556
53428
  /**
52557
- * Filter versions by catalog type (binary_runtime, source_package, package_manager)
52558
- *
52559
- *
53429
+ * Filter versions that have GPU-enabled builds
52560
53430
  */
52561
- catalog_type?: CatalogTypeEnum;
52562
- catalog_uuid?: string;
52563
- cpu_family?: string;
52564
- cpu_microarchitecture?: string;
53431
+ has_gpu?: boolean;
53432
+ /**
53433
+ * Ordering
53434
+ *
53435
+ *
53436
+ */
53437
+ o?: Array<SoftwareVersionOEnum>;
53438
+ offering_uuid?: string;
53439
+ package_name?: string;
53440
+ package_uuid?: string;
53441
+ /**
53442
+ * A page number within the paginated result set.
53443
+ */
53444
+ page?: number;
53445
+ /**
53446
+ * Number of results to return per page.
53447
+ */
53448
+ page_size?: number;
53449
+ /**
53450
+ * Filter versions by release date range (release_date_after, release_date_before)
53451
+ */
53452
+ release_date_after?: string;
53453
+ /**
53454
+ * Filter versions by release date range (release_date_after, release_date_before)
53455
+ */
53456
+ release_date_before?: string;
53457
+ /**
53458
+ * Filter versions compatible with a specific toolchain family (e.g., foss_2022b)
53459
+ */
53460
+ toolchain_families_compatibility?: string;
53461
+ /**
53462
+ * Filter versions by toolchain name (e.g., foss, gfbf)
53463
+ */
53464
+ toolchain_name?: string;
53465
+ /**
53466
+ * Filter versions by toolchain version (e.g., 2023b)
53467
+ */
53468
+ toolchain_version?: string;
53469
+ version?: string;
53470
+ /**
53471
+ * Filter versions by exact version string
53472
+ */
53473
+ version_exact?: string;
53474
+ };
53475
+ url: '/api/marketplace-software-versions/';
53476
+ };
53477
+ export type MarketplaceSoftwareVersionsListResponses = {
53478
+ 200: Array<SoftwareVersion>;
53479
+ };
53480
+ export type MarketplaceSoftwareVersionsListResponse = MarketplaceSoftwareVersionsListResponses[keyof MarketplaceSoftwareVersionsListResponses];
53481
+ export type MarketplaceSoftwareVersionsCountData = {
53482
+ body?: never;
53483
+ path?: never;
53484
+ query?: {
53485
+ /**
53486
+ * Filter versions by catalog type (binary_runtime, source_package, package_manager)
53487
+ *
53488
+ *
53489
+ */
53490
+ catalog_type?: CatalogTypeEnum;
53491
+ catalog_uuid?: string;
53492
+ cpu_family?: string;
53493
+ cpu_microarchitecture?: string;
53494
+ /**
53495
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53496
+ */
53497
+ gpu_arch?: string;
53498
+ /**
53499
+ * Filter versions that have GPU-enabled builds
53500
+ */
53501
+ has_gpu?: boolean;
52565
53502
  /**
52566
53503
  * Ordering
52567
53504
  *
@@ -53318,6 +54255,318 @@ export type MarketplaceStatsOfferingsCounterStatsCountResponses = {
53318
54255
  */
53319
54256
  200: unknown;
53320
54257
  };
54258
+ export type MarketplaceStatsOpenstackInstancesListData = {
54259
+ body?: never;
54260
+ path?: never;
54261
+ query?: {
54262
+ /**
54263
+ * Filter by availability zone name.
54264
+ */
54265
+ availability_zone_name?: string;
54266
+ /**
54267
+ * Maximum number of vCPUs.
54268
+ */
54269
+ cores_max?: number;
54270
+ /**
54271
+ * Minimum number of vCPUs.
54272
+ */
54273
+ cores_min?: number;
54274
+ /**
54275
+ * Filter by customer UUID.
54276
+ */
54277
+ customer_uuid?: string;
54278
+ /**
54279
+ * Maximum disk in MiB.
54280
+ */
54281
+ disk_max?: number;
54282
+ /**
54283
+ * Minimum disk in MiB.
54284
+ */
54285
+ disk_min?: number;
54286
+ /**
54287
+ * Filter by flavor name (case-insensitive partial match).
54288
+ */
54289
+ flavor_name?: string;
54290
+ /**
54291
+ * Filter by hypervisor hostname (case-insensitive partial match).
54292
+ */
54293
+ hypervisor_hostname?: string;
54294
+ /**
54295
+ * Filter by image name (case-insensitive partial match).
54296
+ */
54297
+ image_name?: string;
54298
+ /**
54299
+ * Filter by instance name (case-insensitive partial match).
54300
+ */
54301
+ name?: string;
54302
+ /**
54303
+ * 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.
54304
+ */
54305
+ o?: string;
54306
+ /**
54307
+ * A page number within the paginated result set.
54308
+ */
54309
+ page?: number;
54310
+ /**
54311
+ * Number of results to return per page.
54312
+ */
54313
+ page_size?: number;
54314
+ /**
54315
+ * Filter by project UUID.
54316
+ */
54317
+ project_uuid?: string;
54318
+ /**
54319
+ * Maximum RAM in MiB.
54320
+ */
54321
+ ram_max?: number;
54322
+ /**
54323
+ * Minimum RAM in MiB.
54324
+ */
54325
+ ram_min?: number;
54326
+ /**
54327
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54328
+ */
54329
+ runtime_state?: string;
54330
+ /**
54331
+ * Filter by cluster (service settings) UUID.
54332
+ */
54333
+ service_settings_uuid?: string;
54334
+ /**
54335
+ * Filter by provisioning state (e.g. OK, ERRED). Supports multiple values.
54336
+ */
54337
+ state?: string;
54338
+ /**
54339
+ * Filter by tenant UUID.
54340
+ */
54341
+ tenant_uuid?: string;
54342
+ };
54343
+ url: '/api/marketplace-stats/openstack_instances/';
54344
+ };
54345
+ export type MarketplaceStatsOpenstackInstancesListResponses = {
54346
+ 200: Array<OpenStackInstanceReport>;
54347
+ };
54348
+ export type MarketplaceStatsOpenstackInstancesListResponse = MarketplaceStatsOpenstackInstancesListResponses[keyof MarketplaceStatsOpenstackInstancesListResponses];
54349
+ export type MarketplaceStatsOpenstackInstancesCountData = {
54350
+ body?: never;
54351
+ path?: never;
54352
+ query?: {
54353
+ /**
54354
+ * Filter by availability zone name.
54355
+ */
54356
+ availability_zone_name?: string;
54357
+ /**
54358
+ * Maximum number of vCPUs.
54359
+ */
54360
+ cores_max?: number;
54361
+ /**
54362
+ * Minimum number of vCPUs.
54363
+ */
54364
+ cores_min?: number;
54365
+ /**
54366
+ * Filter by customer UUID.
54367
+ */
54368
+ customer_uuid?: string;
54369
+ /**
54370
+ * Maximum disk in MiB.
54371
+ */
54372
+ disk_max?: number;
54373
+ /**
54374
+ * Minimum disk in MiB.
54375
+ */
54376
+ disk_min?: number;
54377
+ /**
54378
+ * Filter by flavor name (case-insensitive partial match).
54379
+ */
54380
+ flavor_name?: string;
54381
+ /**
54382
+ * Filter by hypervisor hostname (case-insensitive partial match).
54383
+ */
54384
+ hypervisor_hostname?: string;
54385
+ /**
54386
+ * Filter by image name (case-insensitive partial match).
54387
+ */
54388
+ image_name?: string;
54389
+ /**
54390
+ * Filter by instance name (case-insensitive partial match).
54391
+ */
54392
+ name?: string;
54393
+ /**
54394
+ * 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.
54395
+ */
54396
+ o?: string;
54397
+ /**
54398
+ * A page number within the paginated result set.
54399
+ */
54400
+ page?: number;
54401
+ /**
54402
+ * Number of results to return per page.
54403
+ */
54404
+ page_size?: number;
54405
+ /**
54406
+ * Filter by project UUID.
54407
+ */
54408
+ project_uuid?: string;
54409
+ /**
54410
+ * Maximum RAM in MiB.
54411
+ */
54412
+ ram_max?: number;
54413
+ /**
54414
+ * Minimum RAM in MiB.
54415
+ */
54416
+ ram_min?: number;
54417
+ /**
54418
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54419
+ */
54420
+ runtime_state?: string;
54421
+ /**
54422
+ * Filter by cluster (service settings) UUID.
54423
+ */
54424
+ service_settings_uuid?: string;
54425
+ /**
54426
+ * Filter by provisioning state (e.g. OK, ERRED). Supports multiple values.
54427
+ */
54428
+ state?: string;
54429
+ /**
54430
+ * Filter by tenant UUID.
54431
+ */
54432
+ tenant_uuid?: string;
54433
+ };
54434
+ url: '/api/marketplace-stats/openstack_instances/';
54435
+ };
54436
+ export type MarketplaceStatsOpenstackInstancesCountResponses = {
54437
+ /**
54438
+ * No response body
54439
+ */
54440
+ 200: unknown;
54441
+ };
54442
+ export type MarketplaceStatsOpenstackInstancesAggregateListData = {
54443
+ body?: never;
54444
+ path?: never;
54445
+ query: {
54446
+ /**
54447
+ * Filter by customer UUID.
54448
+ */
54449
+ customer_uuid?: string;
54450
+ /**
54451
+ * Filter by flavor name (case-insensitive partial match).
54452
+ */
54453
+ flavor_name?: string;
54454
+ /**
54455
+ * Dimension to group by.
54456
+ */
54457
+ group_by: OpenStackInstanceAggregateGroupByEnum;
54458
+ /**
54459
+ * Filter by hypervisor hostname (case-insensitive partial match).
54460
+ */
54461
+ hypervisor_hostname?: string;
54462
+ /**
54463
+ * Filter by image name (case-insensitive partial match).
54464
+ */
54465
+ image_name?: string;
54466
+ /**
54467
+ * Filter by instance name (case-insensitive partial match).
54468
+ */
54469
+ name?: string;
54470
+ /**
54471
+ * A page number within the paginated result set.
54472
+ */
54473
+ page?: number;
54474
+ /**
54475
+ * Number of results to return per page.
54476
+ */
54477
+ page_size?: number;
54478
+ /**
54479
+ * Filter by project UUID.
54480
+ */
54481
+ project_uuid?: string;
54482
+ /**
54483
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54484
+ */
54485
+ runtime_state?: string;
54486
+ /**
54487
+ * Filter by cluster (service settings) UUID.
54488
+ */
54489
+ service_settings_uuid?: string;
54490
+ /**
54491
+ * Filter by provisioning state (e.g. OK, ERRED).
54492
+ */
54493
+ state?: string;
54494
+ /**
54495
+ * Filter by tenant UUID.
54496
+ */
54497
+ tenant_uuid?: string;
54498
+ };
54499
+ url: '/api/marketplace-stats/openstack_instances_aggregate/';
54500
+ };
54501
+ export type MarketplaceStatsOpenstackInstancesAggregateListResponses = {
54502
+ 200: Array<OpenStackInstanceAggregate>;
54503
+ };
54504
+ export type MarketplaceStatsOpenstackInstancesAggregateListResponse = MarketplaceStatsOpenstackInstancesAggregateListResponses[keyof MarketplaceStatsOpenstackInstancesAggregateListResponses];
54505
+ export type MarketplaceStatsOpenstackInstancesAggregateCountData = {
54506
+ body?: never;
54507
+ path?: never;
54508
+ query: {
54509
+ /**
54510
+ * Filter by customer UUID.
54511
+ */
54512
+ customer_uuid?: string;
54513
+ /**
54514
+ * Filter by flavor name (case-insensitive partial match).
54515
+ */
54516
+ flavor_name?: string;
54517
+ /**
54518
+ * Dimension to group by.
54519
+ */
54520
+ group_by: OpenStackInstanceAggregateGroupByEnum;
54521
+ /**
54522
+ * Filter by hypervisor hostname (case-insensitive partial match).
54523
+ */
54524
+ hypervisor_hostname?: string;
54525
+ /**
54526
+ * Filter by image name (case-insensitive partial match).
54527
+ */
54528
+ image_name?: string;
54529
+ /**
54530
+ * Filter by instance name (case-insensitive partial match).
54531
+ */
54532
+ name?: string;
54533
+ /**
54534
+ * A page number within the paginated result set.
54535
+ */
54536
+ page?: number;
54537
+ /**
54538
+ * Number of results to return per page.
54539
+ */
54540
+ page_size?: number;
54541
+ /**
54542
+ * Filter by project UUID.
54543
+ */
54544
+ project_uuid?: string;
54545
+ /**
54546
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54547
+ */
54548
+ runtime_state?: string;
54549
+ /**
54550
+ * Filter by cluster (service settings) UUID.
54551
+ */
54552
+ service_settings_uuid?: string;
54553
+ /**
54554
+ * Filter by provisioning state (e.g. OK, ERRED).
54555
+ */
54556
+ state?: string;
54557
+ /**
54558
+ * Filter by tenant UUID.
54559
+ */
54560
+ tenant_uuid?: string;
54561
+ };
54562
+ url: '/api/marketplace-stats/openstack_instances_aggregate/';
54563
+ };
54564
+ export type MarketplaceStatsOpenstackInstancesAggregateCountResponses = {
54565
+ /**
54566
+ * No response body
54567
+ */
54568
+ 200: unknown;
54569
+ };
53321
54570
  export type MarketplaceStatsOrderStatsRetrieveData = {
53322
54571
  body?: never;
53323
54572
  path?: never;
@@ -58867,6 +60116,170 @@ export type OpenstackFloatingIpsUpdateDescriptionResponses = {
58867
60116
  */
58868
60117
  200: unknown;
58869
60118
  };
60119
+ export type OpenstackHealthMonitorsListData = {
60120
+ body?: never;
60121
+ path?: never;
60122
+ query?: {
60123
+ field?: Array<OpenStackHealthMonitorFieldEnum>;
60124
+ /**
60125
+ * Load balancer UUID
60126
+ */
60127
+ load_balancer_uuid?: string;
60128
+ /**
60129
+ * Name
60130
+ */
60131
+ name?: string;
60132
+ /**
60133
+ * Name (exact)
60134
+ */
60135
+ name_exact?: string;
60136
+ /**
60137
+ * A page number within the paginated result set.
60138
+ */
60139
+ page?: number;
60140
+ /**
60141
+ * Number of results to return per page.
60142
+ */
60143
+ page_size?: number;
60144
+ /**
60145
+ * Pool URL
60146
+ */
60147
+ pool?: string;
60148
+ /**
60149
+ * Pool UUID
60150
+ */
60151
+ pool_uuid?: string;
60152
+ /**
60153
+ * State
60154
+ *
60155
+ *
60156
+ */
60157
+ state?: Array<CoreStates>;
60158
+ /**
60159
+ * Tenant UUID
60160
+ */
60161
+ tenant_uuid?: string;
60162
+ };
60163
+ url: '/api/openstack-health-monitors/';
60164
+ };
60165
+ export type OpenstackHealthMonitorsListResponses = {
60166
+ 200: Array<OpenStackHealthMonitor>;
60167
+ };
60168
+ export type OpenstackHealthMonitorsListResponse = OpenstackHealthMonitorsListResponses[keyof OpenstackHealthMonitorsListResponses];
60169
+ export type OpenstackHealthMonitorsCountData = {
60170
+ body?: never;
60171
+ path?: never;
60172
+ query?: {
60173
+ /**
60174
+ * Load balancer UUID
60175
+ */
60176
+ load_balancer_uuid?: string;
60177
+ /**
60178
+ * Name
60179
+ */
60180
+ name?: string;
60181
+ /**
60182
+ * Name (exact)
60183
+ */
60184
+ name_exact?: string;
60185
+ /**
60186
+ * A page number within the paginated result set.
60187
+ */
60188
+ page?: number;
60189
+ /**
60190
+ * Number of results to return per page.
60191
+ */
60192
+ page_size?: number;
60193
+ /**
60194
+ * Pool URL
60195
+ */
60196
+ pool?: string;
60197
+ /**
60198
+ * Pool UUID
60199
+ */
60200
+ pool_uuid?: string;
60201
+ /**
60202
+ * State
60203
+ *
60204
+ *
60205
+ */
60206
+ state?: Array<CoreStates>;
60207
+ /**
60208
+ * Tenant UUID
60209
+ */
60210
+ tenant_uuid?: string;
60211
+ };
60212
+ url: '/api/openstack-health-monitors/';
60213
+ };
60214
+ export type OpenstackHealthMonitorsCountResponses = {
60215
+ /**
60216
+ * No response body
60217
+ */
60218
+ 200: unknown;
60219
+ };
60220
+ export type OpenstackHealthMonitorsCreateData = {
60221
+ body: CreateHealthMonitorRequest;
60222
+ path?: never;
60223
+ query?: never;
60224
+ url: '/api/openstack-health-monitors/';
60225
+ };
60226
+ export type OpenstackHealthMonitorsCreateResponses = {
60227
+ 201: CreateHealthMonitor;
60228
+ };
60229
+ export type OpenstackHealthMonitorsCreateResponse = OpenstackHealthMonitorsCreateResponses[keyof OpenstackHealthMonitorsCreateResponses];
60230
+ export type OpenstackHealthMonitorsDestroyData = {
60231
+ body?: never;
60232
+ path: {
60233
+ uuid: string;
60234
+ };
60235
+ query?: never;
60236
+ url: '/api/openstack-health-monitors/{uuid}/';
60237
+ };
60238
+ export type OpenstackHealthMonitorsDestroyResponses = {
60239
+ /**
60240
+ * No response body
60241
+ */
60242
+ 204: void;
60243
+ };
60244
+ export type OpenstackHealthMonitorsDestroyResponse = OpenstackHealthMonitorsDestroyResponses[keyof OpenstackHealthMonitorsDestroyResponses];
60245
+ export type OpenstackHealthMonitorsRetrieveData = {
60246
+ body?: never;
60247
+ path: {
60248
+ uuid: string;
60249
+ };
60250
+ query?: {
60251
+ field?: Array<OpenStackHealthMonitorFieldEnum>;
60252
+ };
60253
+ url: '/api/openstack-health-monitors/{uuid}/';
60254
+ };
60255
+ export type OpenstackHealthMonitorsRetrieveResponses = {
60256
+ 200: OpenStackHealthMonitor;
60257
+ };
60258
+ export type OpenstackHealthMonitorsRetrieveResponse = OpenstackHealthMonitorsRetrieveResponses[keyof OpenstackHealthMonitorsRetrieveResponses];
60259
+ export type OpenstackHealthMonitorsPartialUpdateData = {
60260
+ body?: PatchedUpdateHealthMonitorRequest;
60261
+ path: {
60262
+ uuid: string;
60263
+ };
60264
+ query?: never;
60265
+ url: '/api/openstack-health-monitors/{uuid}/';
60266
+ };
60267
+ export type OpenstackHealthMonitorsPartialUpdateResponses = {
60268
+ 200: UpdateHealthMonitor;
60269
+ };
60270
+ export type OpenstackHealthMonitorsPartialUpdateResponse = OpenstackHealthMonitorsPartialUpdateResponses[keyof OpenstackHealthMonitorsPartialUpdateResponses];
60271
+ export type OpenstackHealthMonitorsUpdateData = {
60272
+ body?: UpdateHealthMonitorRequest;
60273
+ path: {
60274
+ uuid: string;
60275
+ };
60276
+ query?: never;
60277
+ url: '/api/openstack-health-monitors/{uuid}/';
60278
+ };
60279
+ export type OpenstackHealthMonitorsUpdateResponses = {
60280
+ 200: UpdateHealthMonitor;
60281
+ };
60282
+ export type OpenstackHealthMonitorsUpdateResponse = OpenstackHealthMonitorsUpdateResponses[keyof OpenstackHealthMonitorsUpdateResponses];
58870
60283
  export type OpenstackImagesListData = {
58871
60284
  body?: never;
58872
60285
  path?: never;
@@ -59629,6 +61042,352 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
59629
61042
  */
59630
61043
  200: unknown;
59631
61044
  };
61045
+ export type OpenstackListenersListData = {
61046
+ body?: never;
61047
+ path?: never;
61048
+ query?: {
61049
+ field?: Array<OpenStackListenerFieldEnum>;
61050
+ /**
61051
+ * Load balancer URL
61052
+ */
61053
+ load_balancer?: string;
61054
+ /**
61055
+ * Load balancer UUID
61056
+ */
61057
+ load_balancer_uuid?: string;
61058
+ /**
61059
+ * Name
61060
+ */
61061
+ name?: string;
61062
+ /**
61063
+ * Name (exact)
61064
+ */
61065
+ name_exact?: string;
61066
+ /**
61067
+ * A page number within the paginated result set.
61068
+ */
61069
+ page?: number;
61070
+ /**
61071
+ * Number of results to return per page.
61072
+ */
61073
+ page_size?: number;
61074
+ /**
61075
+ * State
61076
+ *
61077
+ *
61078
+ */
61079
+ state?: Array<CoreStates>;
61080
+ /**
61081
+ * Tenant UUID
61082
+ */
61083
+ tenant_uuid?: string;
61084
+ };
61085
+ url: '/api/openstack-listeners/';
61086
+ };
61087
+ export type OpenstackListenersListResponses = {
61088
+ 200: Array<OpenStackListener>;
61089
+ };
61090
+ export type OpenstackListenersListResponse = OpenstackListenersListResponses[keyof OpenstackListenersListResponses];
61091
+ export type OpenstackListenersCountData = {
61092
+ body?: never;
61093
+ path?: never;
61094
+ query?: {
61095
+ /**
61096
+ * Load balancer URL
61097
+ */
61098
+ load_balancer?: string;
61099
+ /**
61100
+ * Load balancer UUID
61101
+ */
61102
+ load_balancer_uuid?: string;
61103
+ /**
61104
+ * Name
61105
+ */
61106
+ name?: string;
61107
+ /**
61108
+ * Name (exact)
61109
+ */
61110
+ name_exact?: string;
61111
+ /**
61112
+ * A page number within the paginated result set.
61113
+ */
61114
+ page?: number;
61115
+ /**
61116
+ * Number of results to return per page.
61117
+ */
61118
+ page_size?: number;
61119
+ /**
61120
+ * State
61121
+ *
61122
+ *
61123
+ */
61124
+ state?: Array<CoreStates>;
61125
+ /**
61126
+ * Tenant UUID
61127
+ */
61128
+ tenant_uuid?: string;
61129
+ };
61130
+ url: '/api/openstack-listeners/';
61131
+ };
61132
+ export type OpenstackListenersCountResponses = {
61133
+ /**
61134
+ * No response body
61135
+ */
61136
+ 200: unknown;
61137
+ };
61138
+ export type OpenstackListenersCreateData = {
61139
+ body: CreateListenerRequest;
61140
+ path?: never;
61141
+ query?: never;
61142
+ url: '/api/openstack-listeners/';
61143
+ };
61144
+ export type OpenstackListenersCreateResponses = {
61145
+ 201: CreateListener;
61146
+ };
61147
+ export type OpenstackListenersCreateResponse = OpenstackListenersCreateResponses[keyof OpenstackListenersCreateResponses];
61148
+ export type OpenstackListenersDestroyData = {
61149
+ body?: never;
61150
+ path: {
61151
+ uuid: string;
61152
+ };
61153
+ query?: never;
61154
+ url: '/api/openstack-listeners/{uuid}/';
61155
+ };
61156
+ export type OpenstackListenersDestroyResponses = {
61157
+ /**
61158
+ * No response body
61159
+ */
61160
+ 204: void;
61161
+ };
61162
+ export type OpenstackListenersDestroyResponse = OpenstackListenersDestroyResponses[keyof OpenstackListenersDestroyResponses];
61163
+ export type OpenstackListenersRetrieveData = {
61164
+ body?: never;
61165
+ path: {
61166
+ uuid: string;
61167
+ };
61168
+ query?: {
61169
+ field?: Array<OpenStackListenerFieldEnum>;
61170
+ };
61171
+ url: '/api/openstack-listeners/{uuid}/';
61172
+ };
61173
+ export type OpenstackListenersRetrieveResponses = {
61174
+ 200: OpenStackListener;
61175
+ };
61176
+ export type OpenstackListenersRetrieveResponse = OpenstackListenersRetrieveResponses[keyof OpenstackListenersRetrieveResponses];
61177
+ export type OpenstackListenersPartialUpdateData = {
61178
+ body?: PatchedUpdateListenerRequest;
61179
+ path: {
61180
+ uuid: string;
61181
+ };
61182
+ query?: never;
61183
+ url: '/api/openstack-listeners/{uuid}/';
61184
+ };
61185
+ export type OpenstackListenersPartialUpdateResponses = {
61186
+ 200: UpdateListener;
61187
+ };
61188
+ export type OpenstackListenersPartialUpdateResponse = OpenstackListenersPartialUpdateResponses[keyof OpenstackListenersPartialUpdateResponses];
61189
+ export type OpenstackListenersUpdateData = {
61190
+ body?: UpdateListenerRequest;
61191
+ path: {
61192
+ uuid: string;
61193
+ };
61194
+ query?: never;
61195
+ url: '/api/openstack-listeners/{uuid}/';
61196
+ };
61197
+ export type OpenstackListenersUpdateResponses = {
61198
+ 200: UpdateListener;
61199
+ };
61200
+ export type OpenstackListenersUpdateResponse = OpenstackListenersUpdateResponses[keyof OpenstackListenersUpdateResponses];
61201
+ export type OpenstackLoadbalancersListData = {
61202
+ body?: never;
61203
+ path?: never;
61204
+ query?: {
61205
+ field?: Array<OpenStackLoadBalancerFieldEnum>;
61206
+ /**
61207
+ * Name
61208
+ */
61209
+ name?: string;
61210
+ /**
61211
+ * Name (exact)
61212
+ */
61213
+ name_exact?: string;
61214
+ /**
61215
+ * A page number within the paginated result set.
61216
+ */
61217
+ page?: number;
61218
+ /**
61219
+ * Number of results to return per page.
61220
+ */
61221
+ page_size?: number;
61222
+ /**
61223
+ * State
61224
+ *
61225
+ *
61226
+ */
61227
+ state?: Array<CoreStates>;
61228
+ /**
61229
+ * Tenant URL
61230
+ */
61231
+ tenant?: string;
61232
+ /**
61233
+ * Tenant UUID
61234
+ */
61235
+ tenant_uuid?: string;
61236
+ };
61237
+ url: '/api/openstack-loadbalancers/';
61238
+ };
61239
+ export type OpenstackLoadbalancersListResponses = {
61240
+ 200: Array<OpenStackLoadBalancer>;
61241
+ };
61242
+ export type OpenstackLoadbalancersListResponse = OpenstackLoadbalancersListResponses[keyof OpenstackLoadbalancersListResponses];
61243
+ export type OpenstackLoadbalancersCountData = {
61244
+ body?: never;
61245
+ path?: never;
61246
+ query?: {
61247
+ /**
61248
+ * Name
61249
+ */
61250
+ name?: string;
61251
+ /**
61252
+ * Name (exact)
61253
+ */
61254
+ name_exact?: string;
61255
+ /**
61256
+ * A page number within the paginated result set.
61257
+ */
61258
+ page?: number;
61259
+ /**
61260
+ * Number of results to return per page.
61261
+ */
61262
+ page_size?: number;
61263
+ /**
61264
+ * State
61265
+ *
61266
+ *
61267
+ */
61268
+ state?: Array<CoreStates>;
61269
+ /**
61270
+ * Tenant URL
61271
+ */
61272
+ tenant?: string;
61273
+ /**
61274
+ * Tenant UUID
61275
+ */
61276
+ tenant_uuid?: string;
61277
+ };
61278
+ url: '/api/openstack-loadbalancers/';
61279
+ };
61280
+ export type OpenstackLoadbalancersCountResponses = {
61281
+ /**
61282
+ * No response body
61283
+ */
61284
+ 200: unknown;
61285
+ };
61286
+ export type OpenstackLoadbalancersCreateData = {
61287
+ body: CreateLoadBalancerRequest;
61288
+ path?: never;
61289
+ query?: never;
61290
+ url: '/api/openstack-loadbalancers/';
61291
+ };
61292
+ export type OpenstackLoadbalancersCreateResponses = {
61293
+ 201: CreateLoadBalancer;
61294
+ };
61295
+ export type OpenstackLoadbalancersCreateResponse = OpenstackLoadbalancersCreateResponses[keyof OpenstackLoadbalancersCreateResponses];
61296
+ export type OpenstackLoadbalancersDestroyData = {
61297
+ body?: never;
61298
+ path: {
61299
+ uuid: string;
61300
+ };
61301
+ query?: never;
61302
+ url: '/api/openstack-loadbalancers/{uuid}/';
61303
+ };
61304
+ export type OpenstackLoadbalancersDestroyResponses = {
61305
+ /**
61306
+ * No response body
61307
+ */
61308
+ 204: void;
61309
+ };
61310
+ export type OpenstackLoadbalancersDestroyResponse = OpenstackLoadbalancersDestroyResponses[keyof OpenstackLoadbalancersDestroyResponses];
61311
+ export type OpenstackLoadbalancersRetrieveData = {
61312
+ body?: never;
61313
+ path: {
61314
+ uuid: string;
61315
+ };
61316
+ query?: {
61317
+ field?: Array<OpenStackLoadBalancerFieldEnum>;
61318
+ };
61319
+ url: '/api/openstack-loadbalancers/{uuid}/';
61320
+ };
61321
+ export type OpenstackLoadbalancersRetrieveResponses = {
61322
+ 200: OpenStackLoadBalancer;
61323
+ };
61324
+ export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
61325
+ export type OpenstackLoadbalancersPartialUpdateData = {
61326
+ body?: PatchedOpenStackLoadBalancerRequest;
61327
+ path: {
61328
+ uuid: string;
61329
+ };
61330
+ query?: never;
61331
+ url: '/api/openstack-loadbalancers/{uuid}/';
61332
+ };
61333
+ export type OpenstackLoadbalancersPartialUpdateResponses = {
61334
+ 200: OpenStackLoadBalancer;
61335
+ };
61336
+ export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
61337
+ export type OpenstackLoadbalancersUpdateData = {
61338
+ body: OpenStackLoadBalancerRequest;
61339
+ path: {
61340
+ uuid: string;
61341
+ };
61342
+ query?: never;
61343
+ url: '/api/openstack-loadbalancers/{uuid}/';
61344
+ };
61345
+ export type OpenstackLoadbalancersUpdateResponses = {
61346
+ 200: OpenStackLoadBalancer;
61347
+ };
61348
+ export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
61349
+ export type OpenstackLoadbalancersAttachFloatingIpData = {
61350
+ body: LoadBalancerAttachFloatingIpRequest;
61351
+ path: {
61352
+ uuid: string;
61353
+ };
61354
+ query?: never;
61355
+ url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
61356
+ };
61357
+ export type OpenstackLoadbalancersAttachFloatingIpResponses = {
61358
+ /**
61359
+ * No response body
61360
+ */
61361
+ 200: unknown;
61362
+ };
61363
+ export type OpenstackLoadbalancersDetachFloatingIpData = {
61364
+ body?: never;
61365
+ path: {
61366
+ uuid: string;
61367
+ };
61368
+ query?: never;
61369
+ url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
61370
+ };
61371
+ export type OpenstackLoadbalancersDetachFloatingIpResponses = {
61372
+ /**
61373
+ * No response body
61374
+ */
61375
+ 200: unknown;
61376
+ };
61377
+ export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
61378
+ body: LoadBalancerUpdateVipSecurityGroupsRequest;
61379
+ path: {
61380
+ uuid: string;
61381
+ };
61382
+ query?: never;
61383
+ url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
61384
+ };
61385
+ export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
61386
+ /**
61387
+ * No response body
61388
+ */
61389
+ 200: unknown;
61390
+ };
59632
61391
  export type OpenstackMarketplaceTenantsListData = {
59633
61392
  body?: never;
59634
61393
  path?: never;
@@ -60508,6 +62267,326 @@ export type OpenstackNetworksUnlinkResponses = {
60508
62267
  204: void;
60509
62268
  };
60510
62269
  export type OpenstackNetworksUnlinkResponse = OpenstackNetworksUnlinkResponses[keyof OpenstackNetworksUnlinkResponses];
62270
+ export type OpenstackPoolMembersListData = {
62271
+ body?: never;
62272
+ path?: never;
62273
+ query?: {
62274
+ field?: Array<OpenStackPoolMemberFieldEnum>;
62275
+ /**
62276
+ * Load balancer UUID
62277
+ */
62278
+ load_balancer_uuid?: string;
62279
+ /**
62280
+ * Name
62281
+ */
62282
+ name?: string;
62283
+ /**
62284
+ * Name (exact)
62285
+ */
62286
+ name_exact?: string;
62287
+ /**
62288
+ * A page number within the paginated result set.
62289
+ */
62290
+ page?: number;
62291
+ /**
62292
+ * Number of results to return per page.
62293
+ */
62294
+ page_size?: number;
62295
+ /**
62296
+ * Pool URL
62297
+ */
62298
+ pool?: string;
62299
+ /**
62300
+ * Pool UUID
62301
+ */
62302
+ pool_uuid?: string;
62303
+ /**
62304
+ * State
62305
+ *
62306
+ *
62307
+ */
62308
+ state?: Array<CoreStates>;
62309
+ /**
62310
+ * Tenant UUID
62311
+ */
62312
+ tenant_uuid?: string;
62313
+ };
62314
+ url: '/api/openstack-pool-members/';
62315
+ };
62316
+ export type OpenstackPoolMembersListResponses = {
62317
+ 200: Array<OpenStackPoolMember>;
62318
+ };
62319
+ export type OpenstackPoolMembersListResponse = OpenstackPoolMembersListResponses[keyof OpenstackPoolMembersListResponses];
62320
+ export type OpenstackPoolMembersCountData = {
62321
+ body?: never;
62322
+ path?: never;
62323
+ query?: {
62324
+ /**
62325
+ * Load balancer UUID
62326
+ */
62327
+ load_balancer_uuid?: string;
62328
+ /**
62329
+ * Name
62330
+ */
62331
+ name?: string;
62332
+ /**
62333
+ * Name (exact)
62334
+ */
62335
+ name_exact?: string;
62336
+ /**
62337
+ * A page number within the paginated result set.
62338
+ */
62339
+ page?: number;
62340
+ /**
62341
+ * Number of results to return per page.
62342
+ */
62343
+ page_size?: number;
62344
+ /**
62345
+ * Pool URL
62346
+ */
62347
+ pool?: string;
62348
+ /**
62349
+ * Pool UUID
62350
+ */
62351
+ pool_uuid?: string;
62352
+ /**
62353
+ * State
62354
+ *
62355
+ *
62356
+ */
62357
+ state?: Array<CoreStates>;
62358
+ /**
62359
+ * Tenant UUID
62360
+ */
62361
+ tenant_uuid?: string;
62362
+ };
62363
+ url: '/api/openstack-pool-members/';
62364
+ };
62365
+ export type OpenstackPoolMembersCountResponses = {
62366
+ /**
62367
+ * No response body
62368
+ */
62369
+ 200: unknown;
62370
+ };
62371
+ export type OpenstackPoolMembersCreateData = {
62372
+ body: CreatePoolMemberRequest;
62373
+ path?: never;
62374
+ query?: never;
62375
+ url: '/api/openstack-pool-members/';
62376
+ };
62377
+ export type OpenstackPoolMembersCreateResponses = {
62378
+ 201: CreatePoolMember;
62379
+ };
62380
+ export type OpenstackPoolMembersCreateResponse = OpenstackPoolMembersCreateResponses[keyof OpenstackPoolMembersCreateResponses];
62381
+ export type OpenstackPoolMembersDestroyData = {
62382
+ body?: never;
62383
+ path: {
62384
+ uuid: string;
62385
+ };
62386
+ query?: never;
62387
+ url: '/api/openstack-pool-members/{uuid}/';
62388
+ };
62389
+ export type OpenstackPoolMembersDestroyResponses = {
62390
+ /**
62391
+ * No response body
62392
+ */
62393
+ 204: void;
62394
+ };
62395
+ export type OpenstackPoolMembersDestroyResponse = OpenstackPoolMembersDestroyResponses[keyof OpenstackPoolMembersDestroyResponses];
62396
+ export type OpenstackPoolMembersRetrieveData = {
62397
+ body?: never;
62398
+ path: {
62399
+ uuid: string;
62400
+ };
62401
+ query?: {
62402
+ field?: Array<OpenStackPoolMemberFieldEnum>;
62403
+ };
62404
+ url: '/api/openstack-pool-members/{uuid}/';
62405
+ };
62406
+ export type OpenstackPoolMembersRetrieveResponses = {
62407
+ 200: OpenStackPoolMember;
62408
+ };
62409
+ export type OpenstackPoolMembersRetrieveResponse = OpenstackPoolMembersRetrieveResponses[keyof OpenstackPoolMembersRetrieveResponses];
62410
+ export type OpenstackPoolMembersPartialUpdateData = {
62411
+ body?: PatchedUpdatePoolMemberRequest;
62412
+ path: {
62413
+ uuid: string;
62414
+ };
62415
+ query?: never;
62416
+ url: '/api/openstack-pool-members/{uuid}/';
62417
+ };
62418
+ export type OpenstackPoolMembersPartialUpdateResponses = {
62419
+ 200: UpdatePoolMember;
62420
+ };
62421
+ export type OpenstackPoolMembersPartialUpdateResponse = OpenstackPoolMembersPartialUpdateResponses[keyof OpenstackPoolMembersPartialUpdateResponses];
62422
+ export type OpenstackPoolMembersUpdateData = {
62423
+ body?: UpdatePoolMemberRequest;
62424
+ path: {
62425
+ uuid: string;
62426
+ };
62427
+ query?: never;
62428
+ url: '/api/openstack-pool-members/{uuid}/';
62429
+ };
62430
+ export type OpenstackPoolMembersUpdateResponses = {
62431
+ 200: UpdatePoolMember;
62432
+ };
62433
+ export type OpenstackPoolMembersUpdateResponse = OpenstackPoolMembersUpdateResponses[keyof OpenstackPoolMembersUpdateResponses];
62434
+ export type OpenstackPoolsListData = {
62435
+ body?: never;
62436
+ path?: never;
62437
+ query?: {
62438
+ field?: Array<OpenStackPoolFieldEnum>;
62439
+ /**
62440
+ * Load balancer URL
62441
+ */
62442
+ load_balancer?: string;
62443
+ /**
62444
+ * Load balancer UUID
62445
+ */
62446
+ load_balancer_uuid?: string;
62447
+ /**
62448
+ * Name
62449
+ */
62450
+ name?: string;
62451
+ /**
62452
+ * Name (exact)
62453
+ */
62454
+ name_exact?: string;
62455
+ /**
62456
+ * A page number within the paginated result set.
62457
+ */
62458
+ page?: number;
62459
+ /**
62460
+ * Number of results to return per page.
62461
+ */
62462
+ page_size?: number;
62463
+ /**
62464
+ * State
62465
+ *
62466
+ *
62467
+ */
62468
+ state?: Array<CoreStates>;
62469
+ /**
62470
+ * Tenant UUID
62471
+ */
62472
+ tenant_uuid?: string;
62473
+ };
62474
+ url: '/api/openstack-pools/';
62475
+ };
62476
+ export type OpenstackPoolsListResponses = {
62477
+ 200: Array<OpenStackPool>;
62478
+ };
62479
+ export type OpenstackPoolsListResponse = OpenstackPoolsListResponses[keyof OpenstackPoolsListResponses];
62480
+ export type OpenstackPoolsCountData = {
62481
+ body?: never;
62482
+ path?: never;
62483
+ query?: {
62484
+ /**
62485
+ * Load balancer URL
62486
+ */
62487
+ load_balancer?: string;
62488
+ /**
62489
+ * Load balancer UUID
62490
+ */
62491
+ load_balancer_uuid?: string;
62492
+ /**
62493
+ * Name
62494
+ */
62495
+ name?: string;
62496
+ /**
62497
+ * Name (exact)
62498
+ */
62499
+ name_exact?: string;
62500
+ /**
62501
+ * A page number within the paginated result set.
62502
+ */
62503
+ page?: number;
62504
+ /**
62505
+ * Number of results to return per page.
62506
+ */
62507
+ page_size?: number;
62508
+ /**
62509
+ * State
62510
+ *
62511
+ *
62512
+ */
62513
+ state?: Array<CoreStates>;
62514
+ /**
62515
+ * Tenant UUID
62516
+ */
62517
+ tenant_uuid?: string;
62518
+ };
62519
+ url: '/api/openstack-pools/';
62520
+ };
62521
+ export type OpenstackPoolsCountResponses = {
62522
+ /**
62523
+ * No response body
62524
+ */
62525
+ 200: unknown;
62526
+ };
62527
+ export type OpenstackPoolsCreateData = {
62528
+ body: CreatePoolRequest;
62529
+ path?: never;
62530
+ query?: never;
62531
+ url: '/api/openstack-pools/';
62532
+ };
62533
+ export type OpenstackPoolsCreateResponses = {
62534
+ 201: CreatePool;
62535
+ };
62536
+ export type OpenstackPoolsCreateResponse = OpenstackPoolsCreateResponses[keyof OpenstackPoolsCreateResponses];
62537
+ export type OpenstackPoolsDestroyData = {
62538
+ body?: never;
62539
+ path: {
62540
+ uuid: string;
62541
+ };
62542
+ query?: never;
62543
+ url: '/api/openstack-pools/{uuid}/';
62544
+ };
62545
+ export type OpenstackPoolsDestroyResponses = {
62546
+ /**
62547
+ * No response body
62548
+ */
62549
+ 204: void;
62550
+ };
62551
+ export type OpenstackPoolsDestroyResponse = OpenstackPoolsDestroyResponses[keyof OpenstackPoolsDestroyResponses];
62552
+ export type OpenstackPoolsRetrieveData = {
62553
+ body?: never;
62554
+ path: {
62555
+ uuid: string;
62556
+ };
62557
+ query?: {
62558
+ field?: Array<OpenStackPoolFieldEnum>;
62559
+ };
62560
+ url: '/api/openstack-pools/{uuid}/';
62561
+ };
62562
+ export type OpenstackPoolsRetrieveResponses = {
62563
+ 200: OpenStackPool;
62564
+ };
62565
+ export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
62566
+ export type OpenstackPoolsPartialUpdateData = {
62567
+ body?: PatchedOpenStackPoolRequest;
62568
+ path: {
62569
+ uuid: string;
62570
+ };
62571
+ query?: never;
62572
+ url: '/api/openstack-pools/{uuid}/';
62573
+ };
62574
+ export type OpenstackPoolsPartialUpdateResponses = {
62575
+ 200: OpenStackPool;
62576
+ };
62577
+ export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
62578
+ export type OpenstackPoolsUpdateData = {
62579
+ body: OpenStackPoolRequest;
62580
+ path: {
62581
+ uuid: string;
62582
+ };
62583
+ query?: never;
62584
+ url: '/api/openstack-pools/{uuid}/';
62585
+ };
62586
+ export type OpenstackPoolsUpdateResponses = {
62587
+ 200: OpenStackPool;
62588
+ };
62589
+ export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
60511
62590
  export type OpenstackPortsListData = {
60512
62591
  body?: never;
60513
62592
  path?: never;
@@ -72736,6 +74815,16 @@ export type StatsTableGrowthRetrieveResponses = {
72736
74815
  200: TableGrowthStatsResponse;
72737
74816
  };
72738
74817
  export type StatsTableGrowthRetrieveResponse = StatsTableGrowthRetrieveResponses[keyof StatsTableGrowthRetrieveResponses];
74818
+ export type StatsTableGrowthData = {
74819
+ body?: never;
74820
+ path?: never;
74821
+ query?: never;
74822
+ url: '/api/stats/table-growth/';
74823
+ };
74824
+ export type StatsTableGrowthResponses = {
74825
+ 202: TableGrowthTriggerResponse;
74826
+ };
74827
+ export type StatsTableGrowthResponse = StatsTableGrowthResponses[keyof StatsTableGrowthResponses];
72739
74828
  export type SupportAttachmentsListData = {
72740
74829
  body?: never;
72741
74830
  path?: never;