waldur-js-client 8.0.6-dev.8 → 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;
@@ -1487,6 +1489,7 @@ export type AuthToken = {
1487
1489
  */
1488
1490
  readonly user_token_lifetime: number | null;
1489
1491
  };
1492
+ export type AuthTypeEnum = 'password' | 'v3applicationcredential';
1490
1493
  export type AvailabilityZoneResponse = {
1491
1494
  name: string;
1492
1495
  state: string;
@@ -1580,6 +1583,7 @@ export type AwsInstance = {
1580
1583
  readonly image_name?: string;
1581
1584
  readonly marketplace_offering_uuid?: string | null;
1582
1585
  readonly marketplace_offering_name?: string | null;
1586
+ readonly marketplace_offering_type?: string | null;
1583
1587
  readonly marketplace_offering_plugin_options?: {
1584
1588
  [key: string]: unknown;
1585
1589
  } | null;
@@ -1671,6 +1675,7 @@ export type AwsVolume = {
1671
1675
  readonly runtime_state?: string;
1672
1676
  readonly marketplace_offering_uuid?: string | null;
1673
1677
  readonly marketplace_offering_name?: string | null;
1678
+ readonly marketplace_offering_type?: string | null;
1674
1679
  readonly marketplace_offering_plugin_options?: {
1675
1680
  [key: string]: unknown;
1676
1681
  } | null;
@@ -1753,6 +1758,7 @@ export type AzurePublicIp = {
1753
1758
  resource_group?: string;
1754
1759
  readonly marketplace_offering_uuid?: string | null;
1755
1760
  readonly marketplace_offering_name?: string | null;
1761
+ readonly marketplace_offering_type?: string | null;
1756
1762
  readonly marketplace_offering_plugin_options?: {
1757
1763
  [key: string]: unknown;
1758
1764
  } | null;
@@ -1801,6 +1807,7 @@ export type AzureResourceGroup = {
1801
1807
  location?: string;
1802
1808
  readonly marketplace_offering_uuid?: string | null;
1803
1809
  readonly marketplace_offering_name?: string | null;
1810
+ readonly marketplace_offering_type?: string | null;
1804
1811
  readonly marketplace_offering_plugin_options?: {
1805
1812
  [key: string]: unknown;
1806
1813
  } | null;
@@ -1858,6 +1865,7 @@ export type AzureSqlDatabase = {
1858
1865
  readonly server_marketplace_uuid?: string;
1859
1866
  readonly marketplace_offering_uuid?: string | null;
1860
1867
  readonly marketplace_offering_name?: string | null;
1868
+ readonly marketplace_offering_type?: string | null;
1861
1869
  readonly marketplace_offering_plugin_options?: {
1862
1870
  [key: string]: unknown;
1863
1871
  } | null;
@@ -1921,6 +1929,7 @@ export type AzureSqlServer = {
1921
1929
  readonly location_name?: string;
1922
1930
  readonly marketplace_offering_uuid?: string | null;
1923
1931
  readonly marketplace_offering_name?: string | null;
1932
+ readonly marketplace_offering_type?: string | null;
1924
1933
  readonly marketplace_offering_plugin_options?: {
1925
1934
  [key: string]: unknown;
1926
1935
  } | null;
@@ -2009,6 +2018,7 @@ export type AzureVirtualMachine = {
2009
2018
  readonly size_name?: string;
2010
2019
  readonly marketplace_offering_uuid?: string | null;
2011
2020
  readonly marketplace_offering_name?: string | null;
2021
+ readonly marketplace_offering_type?: string | null;
2012
2022
  readonly marketplace_offering_plugin_options?: {
2013
2023
  [key: string]: unknown;
2014
2024
  } | null;
@@ -3417,6 +3427,10 @@ export type ChatResponse = {
3417
3427
  m?: {
3418
3428
  [key: string]: unknown;
3419
3429
  };
3430
+ /**
3431
+ * PII detection warning message.
3432
+ */
3433
+ w?: string;
3420
3434
  };
3421
3435
  export type ChatSession = {
3422
3436
  readonly uuid?: string;
@@ -4200,6 +4214,7 @@ export type ConstanceSettings = {
4200
4214
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4201
4215
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4202
4216
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4217
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4203
4218
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4204
4219
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4205
4220
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4444,6 +4459,7 @@ export type ConstanceSettingsRequest = {
4444
4459
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4445
4460
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4446
4461
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4462
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4447
4463
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4448
4464
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4449
4465
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4692,7 +4708,7 @@ export type CourseAccount = {
4692
4708
  readonly username: string;
4693
4709
  readonly customer_uuid: string;
4694
4710
  readonly customer_name: string;
4695
- state: ServiceAccountState;
4711
+ state: CourseAccountStateEnum;
4696
4712
  email?: string;
4697
4713
  description?: string;
4698
4714
  readonly error_message: string;
@@ -4707,6 +4723,7 @@ export type CourseAccountRequest = {
4707
4723
  email?: string;
4708
4724
  description?: string;
4709
4725
  };
4726
+ export type CourseAccountStateEnum = 'OK' | 'Closed' | 'Erred' | 'Pending';
4710
4727
  export type CourseAccountsBulkCreateRequest = {
4711
4728
  course_accounts: Array<CourseAccountCreateNestedRequest>;
4712
4729
  project: string;
@@ -4756,6 +4773,100 @@ export type CreateFeedbackRequest = {
4756
4773
  evaluation: number;
4757
4774
  token: string;
4758
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
+ };
4759
4870
  export type CreateManualAssignmentRequest = {
4760
4871
  /**
4761
4872
  * UUID of the reviewer pool entry to assign proposals to
@@ -4780,6 +4891,66 @@ export type CreateManualAssignmentResponse = {
4780
4891
  [key: string]: unknown;
4781
4892
  }>;
4782
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
+ };
4783
4954
  export type CreateRouter = {
4784
4955
  readonly url: string;
4785
4956
  readonly uuid: string;
@@ -5609,6 +5780,7 @@ export type DigitalOceanDroplet = {
5609
5780
  readonly region_name?: string;
5610
5781
  readonly marketplace_offering_uuid?: string | null;
5611
5782
  readonly marketplace_offering_name?: string | null;
5783
+ readonly marketplace_offering_type?: string | null;
5612
5784
  readonly marketplace_offering_plugin_options?: {
5613
5785
  [key: string]: unknown;
5614
5786
  } | null;
@@ -5761,6 +5933,10 @@ export type DiscoverExternalNetworksRequestRequest = {
5761
5933
  * Keystone project (tenant) name
5762
5934
  */
5763
5935
  project_name?: string;
5936
+ /**
5937
+ * Authentication method: password or v3applicationcredential
5938
+ */
5939
+ auth_type?: AuthTypeEnum;
5764
5940
  verify_ssl?: boolean;
5765
5941
  /**
5766
5942
  * PEM-encoded CA certificate for SSL verification
@@ -5786,6 +5962,10 @@ export type DiscoverFlavorsRequestRequest = {
5786
5962
  * Keystone project (tenant) name
5787
5963
  */
5788
5964
  project_name?: string;
5965
+ /**
5966
+ * Authentication method: password or v3applicationcredential
5967
+ */
5968
+ auth_type?: AuthTypeEnum;
5789
5969
  verify_ssl?: boolean;
5790
5970
  /**
5791
5971
  * PEM-encoded CA certificate for SSL verification
@@ -5811,6 +5991,10 @@ export type DiscoverInstanceAvailabilityZonesRequestRequest = {
5811
5991
  * Keystone project (tenant) name
5812
5992
  */
5813
5993
  project_name?: string;
5994
+ /**
5995
+ * Authentication method: password or v3applicationcredential
5996
+ */
5997
+ auth_type?: AuthTypeEnum;
5814
5998
  verify_ssl?: boolean;
5815
5999
  /**
5816
6000
  * PEM-encoded CA certificate for SSL verification
@@ -5940,6 +6124,10 @@ export type DiscoverVolumeAvailabilityZonesRequestRequest = {
5940
6124
  * Keystone project (tenant) name
5941
6125
  */
5942
6126
  project_name?: string;
6127
+ /**
6128
+ * Authentication method: password or v3applicationcredential
6129
+ */
6130
+ auth_type?: AuthTypeEnum;
5943
6131
  verify_ssl?: boolean;
5944
6132
  /**
5945
6133
  * PEM-encoded CA certificate for SSL verification
@@ -5965,6 +6153,10 @@ export type DiscoverVolumeTypesRequestRequest = {
5965
6153
  * Keystone project (tenant) name
5966
6154
  */
5967
6155
  project_name?: string;
6156
+ /**
6157
+ * Authentication method: password or v3applicationcredential
6158
+ */
6159
+ auth_type?: AuthTypeEnum;
5968
6160
  verify_ssl?: boolean;
5969
6161
  /**
5970
6162
  * PEM-encoded CA certificate for SSL verification
@@ -6062,7 +6254,7 @@ export type EventMetadataResponse = {
6062
6254
  * Map of event group keys to lists of event type enums from EventType
6063
6255
  */
6064
6256
  event_groups: {
6065
- [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'>;
6066
6258
  };
6067
6259
  };
6068
6260
  export type EventStats = {
@@ -6141,7 +6333,7 @@ export type EventSubscriptionRequest = {
6141
6333
  */
6142
6334
  observable_objects?: unknown;
6143
6335
  };
6144
- 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';
6145
6337
  export type ExecuteActionErrorResponse = {
6146
6338
  error: string;
6147
6339
  };
@@ -6743,6 +6935,10 @@ export type GoogleCredentials = {
6743
6935
  image?: string | null;
6744
6936
  readonly organization_groups?: Array<OrganizationGroup>;
6745
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;
6746
6942
  readonly calendar_token?: string;
6747
6943
  readonly calendar_refresh_token?: string;
6748
6944
  readonly google_auth_url?: string;
@@ -7309,6 +7505,7 @@ export type IntegrationStatus = {
7309
7505
  service_name?: string;
7310
7506
  };
7311
7507
  export type IntegrationStatusDetails = {
7508
+ agent_type: AgentTypeEnum;
7312
7509
  readonly status: string;
7313
7510
  /**
7314
7511
  * Time of latest backend request
@@ -8078,6 +8275,7 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8078
8275
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8079
8276
  export type KindEnum = 'default' | 'course' | 'public';
8080
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';
8081
8279
  export type LexisLink = {
8082
8280
  readonly url: string;
8083
8281
  readonly uuid: string;
@@ -8142,6 +8340,13 @@ export type LinkToInvoice = {
8142
8340
  export type LinkToInvoiceRequest = {
8143
8341
  invoice: string;
8144
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
+ };
8145
8350
  export type LockStats = {
8146
8351
  /**
8147
8352
  * Total number of locks currently held
@@ -8684,6 +8889,10 @@ export type MergedPluginOptions = {
8684
8889
  * Service provider can create offering user
8685
8890
  */
8686
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;
8687
8896
  /**
8688
8897
  * Maximum resource termination offset in days
8689
8898
  */
@@ -8978,6 +9187,10 @@ export type MergedPluginOptionsRequest = {
8978
9187
  * Service provider can create offering user
8979
9188
  */
8980
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;
8981
9194
  /**
8982
9195
  * Maximum resource termination offset in days
8983
9196
  */
@@ -9592,9 +9805,10 @@ export type Message = {
9592
9805
  readonly replaces: string;
9593
9806
  readonly created: string;
9594
9807
  readonly is_flagged: boolean;
9595
- readonly injection_score: number;
9596
- injection_severity: InjectionSeverityEnum;
9808
+ severity: InjectionSeverityEnum;
9597
9809
  readonly injection_categories: unknown;
9810
+ readonly pii_categories: unknown;
9811
+ action_taken: ActionTakenEnum;
9598
9812
  };
9599
9813
  export type MessageResponse = {
9600
9814
  message: string;
@@ -9928,12 +10142,28 @@ export type NestedOfferingFileRequest = {
9928
10142
  name: string;
9929
10143
  file: Blob | File;
9930
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
+ };
9931
10153
  export type NestedPartition = {
9932
10154
  readonly uuid?: string;
9933
10155
  /**
9934
10156
  * Name of the SLURM partition
9935
10157
  */
9936
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;
9937
10167
  /**
9938
10168
  * Default task binding policy (SLURM cpu_bind)
9939
10169
  */
@@ -10016,6 +10246,14 @@ export type NestedPartitionRequest = {
10016
10246
  * Name of the SLURM partition
10017
10247
  */
10018
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;
10019
10257
  /**
10020
10258
  * Default task binding policy (SLURM cpu_bind)
10021
10259
  */
@@ -10291,7 +10529,7 @@ export type NestedSecurityGroupRule = {
10291
10529
  /**
10292
10530
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10293
10531
  */
10294
- protocol?: ProtocolEnum | BlankEnum;
10532
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10295
10533
  /**
10296
10534
  * Starting port number in the range (1-65535)
10297
10535
  */
@@ -10321,7 +10559,7 @@ export type NestedSecurityGroupRuleRequest = {
10321
10559
  /**
10322
10560
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10323
10561
  */
10324
- protocol?: ProtocolEnum | BlankEnum;
10562
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10325
10563
  /**
10326
10564
  * Starting port number in the range (1-65535)
10327
10565
  */
@@ -10382,6 +10620,10 @@ export type NestedSoftwareTarget = {
10382
10620
  * Target-specific metadata (build options, system requirements, etc.)
10383
10621
  */
10384
10622
  metadata?: unknown;
10623
+ /**
10624
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10625
+ */
10626
+ gpu_architectures?: unknown;
10385
10627
  };
10386
10628
  export type NestedSoftwareTargetRequest = {
10387
10629
  /**
@@ -10404,6 +10646,10 @@ export type NestedSoftwareTargetRequest = {
10404
10646
  * Target-specific metadata (build options, system requirements, etc.)
10405
10647
  */
10406
10648
  metadata?: unknown;
10649
+ /**
10650
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10651
+ */
10652
+ gpu_architectures?: unknown;
10407
10653
  };
10408
10654
  export type NestedSoftwareVersion = {
10409
10655
  readonly uuid: string;
@@ -11066,7 +11312,7 @@ export type OfferingKeycloakGroup = {
11066
11312
  * Level this role applies at, e.g. 'cluster', 'project'. Empty means offering-wide.
11067
11313
  */
11068
11314
  readonly role_scope_type: string;
11069
- resource: string | null;
11315
+ resource?: string | null;
11070
11316
  readonly resource_uuid: string;
11071
11317
  readonly resource_name: string | null;
11072
11318
  /**
@@ -11176,6 +11422,14 @@ export type OfferingPartition = {
11176
11422
  * Name of the SLURM partition
11177
11423
  */
11178
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;
11179
11433
  /**
11180
11434
  * Default task binding policy (SLURM cpu_bind)
11181
11435
  */
@@ -11259,6 +11513,14 @@ export type OfferingPartitionRequest = {
11259
11513
  * Name of the SLURM partition
11260
11514
  */
11261
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;
11262
11524
  /**
11263
11525
  * Default task binding policy (SLURM cpu_bind)
11264
11526
  */
@@ -12128,6 +12390,7 @@ export type OpenStackBackup = {
12128
12390
  readonly tenant_uuid?: string;
12129
12391
  readonly marketplace_offering_uuid?: string | null;
12130
12392
  readonly marketplace_offering_name?: string | null;
12393
+ readonly marketplace_offering_type?: string | null;
12131
12394
  readonly marketplace_offering_plugin_options?: {
12132
12395
  [key: string]: unknown;
12133
12396
  } | null;
@@ -12239,6 +12502,10 @@ export type OpenStackCredentialsRequest = {
12239
12502
  * Keystone project (tenant) name
12240
12503
  */
12241
12504
  project_name?: string;
12505
+ /**
12506
+ * Authentication method: password or v3applicationcredential
12507
+ */
12508
+ auth_type?: AuthTypeEnum;
12242
12509
  verify_ssl?: boolean;
12243
12510
  /**
12244
12511
  * PEM-encoded CA certificate for SSL verification
@@ -12337,6 +12604,7 @@ export type OpenStackFloatingIp = {
12337
12604
  readonly instance_url?: string | null;
12338
12605
  readonly marketplace_offering_uuid?: string | null;
12339
12606
  readonly marketplace_offering_name?: string | null;
12607
+ readonly marketplace_offering_type?: string | null;
12340
12608
  readonly marketplace_offering_plugin_options?: {
12341
12609
  [key: string]: unknown;
12342
12610
  } | null;
@@ -12363,6 +12631,62 @@ export type OpenStackFloatingIpRequest = {
12363
12631
  */
12364
12632
  router?: string | null;
12365
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
+ };
12366
12690
  export type OpenStackImage = {
12367
12691
  readonly url: string;
12368
12692
  readonly uuid: string;
@@ -12493,6 +12817,7 @@ export type OpenStackInstance = {
12493
12817
  rancher_cluster?: RancherClusterReference | null;
12494
12818
  readonly marketplace_offering_uuid?: string | null;
12495
12819
  readonly marketplace_offering_name?: string | null;
12820
+ readonly marketplace_offering_type?: string | null;
12496
12821
  readonly marketplace_offering_plugin_options?: {
12497
12822
  [key: string]: unknown;
12498
12823
  } | null;
@@ -12504,6 +12829,40 @@ export type OpenStackInstance = {
12504
12829
  readonly is_usage_based?: boolean | null;
12505
12830
  readonly is_limit_based?: boolean | null;
12506
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
+ };
12507
12866
  export type OpenStackInstanceAllowedAddressPairsUpdateRequest = {
12508
12867
  /**
12509
12868
  * The subnet to update allowed address pairs for.
@@ -12530,6 +12889,124 @@ export type OpenStackInstanceFloatingIpsUpdateRequest = {
12530
12889
  export type OpenStackInstancePortsUpdateRequest = {
12531
12890
  ports: Array<OpenStackCreatePortRequest>;
12532
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
+ };
12533
13010
  export type OpenStackInstanceRequest = {
12534
13011
  name: string;
12535
13012
  description?: string;
@@ -12540,6 +13017,145 @@ export type OpenStackInstanceSecurityGroupsUpdateRequest = {
12540
13017
  */
12541
13018
  security_groups: Array<string>;
12542
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
+ };
12543
13159
  export type OpenStackNestedFloatingIp = {
12544
13160
  readonly url?: string;
12545
13161
  readonly uuid?: string;
@@ -12769,6 +13385,7 @@ export type OpenStackNetwork = {
12769
13385
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
12770
13386
  readonly marketplace_offering_uuid?: string | null;
12771
13387
  readonly marketplace_offering_name?: string | null;
13388
+ readonly marketplace_offering_type?: string | null;
12772
13389
  readonly marketplace_offering_plugin_options?: {
12773
13390
  [key: string]: unknown;
12774
13391
  } | null;
@@ -12784,6 +13401,137 @@ export type OpenStackNetworkRequest = {
12784
13401
  name: string;
12785
13402
  description?: string;
12786
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
+ };
12787
13535
  export type OpenStackPort = {
12788
13536
  readonly url?: string;
12789
13537
  readonly uuid?: string;
@@ -12855,6 +13603,7 @@ export type OpenStackPort = {
12855
13603
  readonly status?: string | null;
12856
13604
  readonly marketplace_offering_uuid?: string | null;
12857
13605
  readonly marketplace_offering_name?: string | null;
13606
+ readonly marketplace_offering_type?: string | null;
12858
13607
  readonly marketplace_offering_plugin_options?: {
12859
13608
  [key: string]: unknown;
12860
13609
  } | null;
@@ -12947,6 +13696,7 @@ export type OpenStackRouter = {
12947
13696
  readonly ports?: Array<OpenStackNestedPort>;
12948
13697
  readonly marketplace_offering_uuid?: string | null;
12949
13698
  readonly marketplace_offering_name?: string | null;
13699
+ readonly marketplace_offering_type?: string | null;
12950
13700
  readonly marketplace_offering_plugin_options?: {
12951
13701
  [key: string]: unknown;
12952
13702
  } | null;
@@ -13007,6 +13757,7 @@ export type OpenStackSecurityGroup = {
13007
13757
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
13008
13758
  readonly marketplace_offering_uuid?: string | null;
13009
13759
  readonly marketplace_offering_name?: string | null;
13760
+ readonly marketplace_offering_type?: string | null;
13010
13761
  readonly marketplace_offering_plugin_options?: {
13011
13762
  [key: string]: unknown;
13012
13763
  } | null;
@@ -13038,7 +13789,7 @@ export type OpenStackSecurityGroupRuleCreate = {
13038
13789
  /**
13039
13790
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13040
13791
  */
13041
- protocol?: ProtocolEnum | BlankEnum;
13792
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13042
13793
  /**
13043
13794
  * Starting port number in the range (1-65535)
13044
13795
  */
@@ -13072,7 +13823,7 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
13072
13823
  /**
13073
13824
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13074
13825
  */
13075
- protocol?: ProtocolEnum | BlankEnum;
13826
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13076
13827
  /**
13077
13828
  * Starting port number in the range (1-65535)
13078
13829
  */
@@ -13103,7 +13854,7 @@ export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
13103
13854
  /**
13104
13855
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13105
13856
  */
13106
- protocol?: ProtocolEnum | BlankEnum;
13857
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13107
13858
  /**
13108
13859
  * Starting port number in the range (1-65535)
13109
13860
  */
@@ -13132,7 +13883,7 @@ export type OpenStackSecurityGroupRuleUpdateRequest = {
13132
13883
  /**
13133
13884
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13134
13885
  */
13135
- protocol?: ProtocolEnum | BlankEnum;
13886
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13136
13887
  /**
13137
13888
  * Starting port number in the range (1-65535)
13138
13889
  */
@@ -13196,6 +13947,7 @@ export type OpenStackServerGroup = {
13196
13947
  readonly instances?: Array<OpenStackNestedInstance>;
13197
13948
  readonly marketplace_offering_uuid?: string | null;
13198
13949
  readonly marketplace_offering_name?: string | null;
13950
+ readonly marketplace_offering_type?: string | null;
13199
13951
  readonly marketplace_offering_plugin_options?: {
13200
13952
  [key: string]: unknown;
13201
13953
  } | null;
@@ -13265,6 +14017,7 @@ export type OpenStackSnapshot = {
13265
14017
  kept_until?: string | null;
13266
14018
  readonly marketplace_offering_uuid?: string | null;
13267
14019
  readonly marketplace_offering_name?: string | null;
14020
+ readonly marketplace_offering_type?: string | null;
13268
14021
  readonly marketplace_offering_plugin_options?: {
13269
14022
  [key: string]: unknown;
13270
14023
  } | null;
@@ -13394,6 +14147,7 @@ export type OpenStackSubNet = {
13394
14147
  readonly is_connected?: boolean;
13395
14148
  readonly marketplace_offering_uuid?: string | null;
13396
14149
  readonly marketplace_offering_name?: string | null;
14150
+ readonly marketplace_offering_type?: string | null;
13397
14151
  readonly marketplace_offering_plugin_options?: {
13398
14152
  [key: string]: unknown;
13399
14153
  } | null;
@@ -13503,6 +14257,7 @@ export type OpenStackTenant = {
13503
14257
  skip_creation_of_default_router?: boolean;
13504
14258
  readonly marketplace_offering_uuid?: string | null;
13505
14259
  readonly marketplace_offering_name?: string | null;
14260
+ readonly marketplace_offering_type?: string | null;
13506
14261
  readonly marketplace_offering_plugin_options?: {
13507
14262
  [key: string]: unknown;
13508
14263
  } | null;
@@ -13647,6 +14402,7 @@ export type OpenStackVolume = {
13647
14402
  readonly extend_enabled?: boolean;
13648
14403
  readonly marketplace_offering_uuid?: string | null;
13649
14404
  readonly marketplace_offering_name?: string | null;
14405
+ readonly marketplace_offering_type?: string | null;
13650
14406
  readonly marketplace_offering_plugin_options?: {
13651
14407
  [key: string]: unknown;
13652
14408
  } | null;
@@ -14067,6 +14823,14 @@ export type PartitionSummary = {
14067
14823
  * Quality of Service (QOS) name
14068
14824
  */
14069
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;
14070
14834
  };
14071
14835
  export type PartitionSummaryRequest = {
14072
14836
  /**
@@ -14081,6 +14845,14 @@ export type PartitionSummaryRequest = {
14081
14845
  * Quality of Service (QOS) name
14082
14846
  */
14083
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;
14084
14856
  };
14085
14857
  export type PasswordChangeRequest = {
14086
14858
  new_password: string;
@@ -14816,6 +15588,14 @@ export type PatchedOfferingPartitionUpdateRequest = {
14816
15588
  * Name of the SLURM partition
14817
15589
  */
14818
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;
14819
15599
  /**
14820
15600
  * Default task binding policy (SLURM cpu_bind)
14821
15601
  */
@@ -15028,10 +15808,46 @@ export type PatchedOpenStackInstanceRequest = {
15028
15808
  name?: string;
15029
15809
  description?: string;
15030
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
+ };
15031
15831
  export type PatchedOpenStackNetworkRequest = {
15032
15832
  name?: string;
15033
15833
  description?: string;
15034
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
+ };
15035
15851
  export type PatchedOpenStackPortRequest = {
15036
15852
  name?: string;
15037
15853
  description?: string;
@@ -15777,6 +16593,10 @@ export type PatchedServiceProviderRequest = {
15777
16593
  description?: string;
15778
16594
  enable_notifications?: boolean;
15779
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;
15780
16600
  };
15781
16601
  export type PatchedSlurmAllocationRequest = {
15782
16602
  name?: string;
@@ -15878,10 +16698,6 @@ export type PatchedSoftwarePackageRequest = {
15878
16698
  * Whether this package is an extension of another package
15879
16699
  */
15880
16700
  is_extension?: boolean;
15881
- /**
15882
- * Parent package for extensions (e.g., Python package within Python)
15883
- */
15884
- parent_software?: string | null;
15885
16701
  };
15886
16702
  export type PatchedTagRequest = {
15887
16703
  name?: string;
@@ -15892,6 +16708,20 @@ export type PatchedTemplateRequest = {
15892
16708
  description?: string;
15893
16709
  issue_type?: IssueTypeEnum;
15894
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
+ };
15895
16725
  export type PatchedUserAgreementRequest = {
15896
16726
  content?: string;
15897
16727
  agreement_type?: AgreementTypeEnum;
@@ -16273,6 +17103,10 @@ export type PreviewServiceAttributesRequestRequest = {
16273
17103
  * Keystone project (tenant) name
16274
17104
  */
16275
17105
  project_name?: string;
17106
+ /**
17107
+ * Authentication method: password or v3applicationcredential
17108
+ */
17109
+ auth_type?: AuthTypeEnum;
16276
17110
  verify_ssl?: boolean;
16277
17111
  /**
16278
17112
  * PEM-encoded CA certificate for SSL verification
@@ -16768,7 +17602,7 @@ export type ProjectTemplate = {
16768
17602
  /**
16769
17603
  * The offering for which this template applies.
16770
17604
  */
16771
- offering: string | null;
17605
+ offering?: string | null;
16772
17606
  provider: string;
16773
17607
  provider_data: Customer;
16774
17608
  portal: string;
@@ -16812,7 +17646,7 @@ export type ProjectTemplateRequest = {
16812
17646
  /**
16813
17647
  * The offering for which this template applies.
16814
17648
  */
16815
- offering: string | null;
17649
+ offering?: string | null;
16816
17650
  provider: string;
16817
17651
  portal: string;
16818
17652
  /**
@@ -17258,7 +18092,6 @@ export type ProtectedRoundRequest = {
17258
18092
  review_duration_in_days?: number;
17259
18093
  minimum_number_of_reviewers?: number | null;
17260
18094
  };
17261
- export type ProtocolEnum = 'tcp' | 'udp' | 'icmp';
17262
18095
  export type ProviderCustomerStats = {
17263
18096
  /**
17264
18097
  * Total number of customers
@@ -18400,6 +19233,7 @@ export type RancherApplication = {
18400
19233
  readonly external_url?: string | null;
18401
19234
  readonly marketplace_offering_uuid?: string | null;
18402
19235
  readonly marketplace_offering_name?: string | null;
19236
+ readonly marketplace_offering_type?: string | null;
18403
19237
  readonly marketplace_offering_plugin_options?: {
18404
19238
  [key: string]: unknown;
18405
19239
  } | null;
@@ -18549,6 +19383,7 @@ export type RancherCluster = {
18549
19383
  readonly router_ips?: Array<unknown>;
18550
19384
  readonly marketplace_offering_uuid?: string | null;
18551
19385
  readonly marketplace_offering_name?: string | null;
19386
+ readonly marketplace_offering_type?: string | null;
18552
19387
  readonly marketplace_offering_plugin_options?: {
18553
19388
  [key: string]: unknown;
18554
19389
  } | null;
@@ -18588,7 +19423,7 @@ export type RancherClusterSecurityGroupRule = {
18588
19423
  /**
18589
19424
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18590
19425
  */
18591
- protocol?: ProtocolEnum | BlankEnum;
19426
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18592
19427
  /**
18593
19428
  * Starting port number in the range (1-65535)
18594
19429
  */
@@ -18615,7 +19450,7 @@ export type RancherClusterSecurityGroupRuleRequest = {
18615
19450
  /**
18616
19451
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18617
19452
  */
18618
- protocol?: ProtocolEnum | BlankEnum;
19453
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18619
19454
  /**
18620
19455
  * Starting port number in the range (1-65535)
18621
19456
  */
@@ -18750,6 +19585,7 @@ export type RancherIngress = {
18750
19585
  rules?: unknown;
18751
19586
  readonly marketplace_offering_uuid?: string | null;
18752
19587
  readonly marketplace_offering_name?: string | null;
19588
+ readonly marketplace_offering_type?: string | null;
18753
19589
  readonly marketplace_offering_plugin_options?: {
18754
19590
  [key: string]: unknown;
18755
19591
  } | null;
@@ -18941,6 +19777,7 @@ export type RancherService = {
18941
19777
  target_workloads?: Array<RancherNestedWorkload>;
18942
19778
  readonly marketplace_offering_uuid?: string | null;
18943
19779
  readonly marketplace_offering_name?: string | null;
19780
+ readonly marketplace_offering_type?: string | null;
18944
19781
  readonly marketplace_offering_plugin_options?: {
18945
19782
  [key: string]: unknown;
18946
19783
  } | null;
@@ -18989,6 +19826,7 @@ export type RancherServiceCreate = {
18989
19826
  target_workloads?: Array<RancherWorkloadCreate>;
18990
19827
  readonly marketplace_offering_uuid: string | null;
18991
19828
  readonly marketplace_offering_name: string | null;
19829
+ readonly marketplace_offering_type: string | null;
18992
19830
  readonly marketplace_offering_plugin_options: {
18993
19831
  [key: string]: unknown;
18994
19832
  } | null;
@@ -19206,6 +20044,7 @@ export type RemoteAllocation = {
19206
20044
  readonly is_active?: boolean;
19207
20045
  readonly marketplace_offering_uuid?: string | null;
19208
20046
  readonly marketplace_offering_name?: string | null;
20047
+ readonly marketplace_offering_type?: string | null;
19209
20048
  readonly marketplace_offering_plugin_options?: {
19210
20049
  [key: string]: unknown;
19211
20050
  } | null;
@@ -20487,7 +21326,7 @@ export type RmqClientProperties = {
20487
21326
  */
20488
21327
  readonly version: string | null;
20489
21328
  /**
20490
- * Client platform (e.g., 'Python 3.11')
21329
+ * Client platform (e.g., 'Python 3.12')
20491
21330
  */
20492
21331
  readonly platform: string | null;
20493
21332
  };
@@ -21329,6 +22168,7 @@ export type SectionRequest = {
21329
22168
  */
21330
22169
  is_standalone?: boolean;
21331
22170
  };
22171
+ export type SecurityGroupRuleProtocolEnum = 'tcp' | 'udp' | 'icmp';
21332
22172
  export type SelfDeclaredConflictRequest = {
21333
22173
  proposal_uuid: string;
21334
22174
  coi_type: CoiTypeEnum;
@@ -21395,6 +22235,10 @@ export type ServiceProvider = {
21395
22235
  image?: string | null;
21396
22236
  readonly organization_groups?: Array<OrganizationGroup>;
21397
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;
21398
22242
  };
21399
22243
  export type ServiceProviderAccess = {
21400
22244
  offering_uuid: string;
@@ -21447,6 +22291,10 @@ export type ServiceProviderRequest = {
21447
22291
  enable_notifications?: boolean;
21448
22292
  customer: string;
21449
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;
21450
22298
  };
21451
22299
  export type ServiceProviderRevenues = {
21452
22300
  /**
@@ -21661,6 +22509,7 @@ export type SlurmAllocation = {
21661
22509
  readonly is_active?: boolean;
21662
22510
  readonly marketplace_offering_uuid?: string | null;
21663
22511
  readonly marketplace_offering_name?: string | null;
22512
+ readonly marketplace_offering_type?: string | null;
21664
22513
  readonly marketplace_offering_plugin_options?: {
21665
22514
  [key: string]: unknown;
21666
22515
  } | null;
@@ -22163,10 +23012,7 @@ export type SoftwarePackage = {
22163
23012
  * Whether this package is an extension of another package
22164
23013
  */
22165
23014
  is_extension?: boolean;
22166
- /**
22167
- * Parent package for extensions (e.g., Python package within Python)
22168
- */
22169
- parent_software?: string | null;
23015
+ readonly parent_softwares: Array<NestedParentSoftware>;
22170
23016
  readonly catalog_name: string;
22171
23017
  readonly catalog_version: string;
22172
23018
  readonly catalog_type: string;
@@ -22196,10 +23042,6 @@ export type SoftwarePackageRequest = {
22196
23042
  * Whether this package is an extension of another package
22197
23043
  */
22198
23044
  is_extension?: boolean;
22199
- /**
22200
- * Parent package for extensions (e.g., Python package within Python)
22201
- */
22202
- parent_software?: string | null;
22203
23045
  };
22204
23046
  export type SoftwareTarget = {
22205
23047
  readonly url: string;
@@ -22226,6 +23068,10 @@ export type SoftwareTarget = {
22226
23068
  * Target-specific metadata (build options, system requirements, etc.)
22227
23069
  */
22228
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;
22229
23075
  };
22230
23076
  export type SoftwareVersion = {
22231
23077
  readonly url: string;
@@ -22368,8 +23214,8 @@ export type SupportUser = {
22368
23214
  readonly url: string;
22369
23215
  readonly uuid: string;
22370
23216
  name: string;
22371
- backend_id: string | null;
22372
- user: string | null;
23217
+ backend_id?: string | null;
23218
+ user?: string | null;
22373
23219
  backend_name?: string | null;
22374
23220
  };
22375
23221
  export type SupportedCountriesResponse = {
@@ -22597,6 +23443,12 @@ export type TableGrowthStatsResponse = {
22597
23443
  */
22598
23444
  alerts: Array<TableGrowthAlert>;
22599
23445
  };
23446
+ export type TableGrowthTriggerResponse = {
23447
+ /**
23448
+ * Status message about the triggered task
23449
+ */
23450
+ detail: string;
23451
+ };
22600
23452
  export type TableSize = {
22601
23453
  /**
22602
23454
  * Name of the database table
@@ -22894,6 +23746,26 @@ export type UpdateActionsResponse = {
22894
23746
  message: string;
22895
23747
  provider_action_type?: string | null;
22896
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
+ };
22897
23769
  export type UpdateOfferingComponentRequest = {
22898
23770
  uuid: string;
22899
23771
  billing_type: BillingTypeEnum;
@@ -22927,6 +23799,14 @@ export type UpdateOfferingComponentRequest = {
22927
23799
  min_prepaid_duration?: number | null;
22928
23800
  max_prepaid_duration?: number | null;
22929
23801
  };
23802
+ export type UpdatePoolMember = {
23803
+ name?: string;
23804
+ weight?: number;
23805
+ };
23806
+ export type UpdatePoolMemberRequest = {
23807
+ name?: string;
23808
+ weight?: number;
23809
+ };
22930
23810
  export type UrgencyEnum = 'low' | 'medium' | 'high';
22931
23811
  export type User = {
22932
23812
  readonly url?: string;
@@ -23634,6 +24514,7 @@ export type VmwareDisk = {
23634
24514
  readonly vm_name?: string;
23635
24515
  readonly marketplace_offering_uuid?: string | null;
23636
24516
  readonly marketplace_offering_name?: string | null;
24517
+ readonly marketplace_offering_type?: string | null;
23637
24518
  readonly marketplace_offering_plugin_options?: {
23638
24519
  [key: string]: unknown;
23639
24520
  } | null;
@@ -23747,6 +24628,7 @@ export type VmwarePort = {
23747
24628
  readonly network_name?: string;
23748
24629
  readonly marketplace_offering_uuid?: string | null;
23749
24630
  readonly marketplace_offering_name?: string | null;
24631
+ readonly marketplace_offering_type?: string | null;
23750
24632
  readonly marketplace_offering_plugin_options?: {
23751
24633
  [key: string]: unknown;
23752
24634
  } | null;
@@ -23853,6 +24735,7 @@ export type VmwareVirtualMachine = {
23853
24735
  readonly tools_installed?: boolean;
23854
24736
  readonly marketplace_offering_uuid?: string | null;
23855
24737
  readonly marketplace_offering_name?: string | null;
24738
+ readonly marketplace_offering_type?: string | null;
23856
24739
  readonly marketplace_offering_plugin_options?: {
23857
24740
  [key: string]: unknown;
23858
24741
  } | null;
@@ -24798,22 +25681,38 @@ export type ServiceProviderRequestForm = {
24798
25681
  enable_notifications?: boolean;
24799
25682
  customer: string;
24800
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;
24801
25688
  };
24802
25689
  export type ServiceProviderRequestMultipart = {
24803
25690
  description?: string;
24804
25691
  enable_notifications?: boolean;
24805
25692
  customer: string;
24806
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;
24807
25698
  };
24808
25699
  export type PatchedServiceProviderRequestForm = {
24809
25700
  description?: string;
24810
25701
  enable_notifications?: boolean;
24811
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;
24812
25707
  };
24813
25708
  export type PatchedServiceProviderRequestMultipart = {
24814
25709
  description?: string;
24815
25710
  enable_notifications?: boolean;
24816
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;
24817
25716
  };
24818
25717
  export type OnboardingJustificationDocumentationRequestForm = {
24819
25718
  /**
@@ -25191,6 +26090,7 @@ export type ConstanceSettingsRequestForm = {
25191
26090
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25192
26091
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25193
26092
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26093
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25194
26094
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25195
26095
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25196
26096
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25435,6 +26335,7 @@ export type ConstanceSettingsRequestMultipart = {
25435
26335
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25436
26336
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25437
26337
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26338
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25438
26339
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25439
26340
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25440
26341
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25927,13 +26828,13 @@ export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created'
25927
26828
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
25928
26829
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
25929
26830
  export type AssignmentItemOEnum = '-affinity_score' | '-created' | '-responded_at' | '-status' | 'affinity_score' | 'created' | 'responded_at' | 'status';
25930
- 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';
25931
- 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';
25932
- 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';
25933
- 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';
25934
- 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';
25935
- 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';
25936
- 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';
25937
26838
  export type BackendResourceReqOEnum = '-created' | 'created';
25938
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';
25939
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';
@@ -25957,12 +26858,12 @@ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_
25957
26858
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
25958
26859
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
25959
26860
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
25960
- 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';
25961
26862
  export type DigitalOceanImageOEnum = '-distribution' | '-type' | 'distribution' | 'type';
25962
26863
  export type EmailLogOEnum = '-sent_at' | '-subject' | 'sent_at' | 'subject';
25963
26864
  export type EventFieldEnum = 'context' | 'created' | 'event_type' | 'message' | 'uuid';
25964
26865
  export type ExpertiseCategoryOEnum = '-code' | '-level' | '-name' | 'code' | 'level' | 'name';
25965
- 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';
25966
26867
  export type WebHookContentTypeEnum1 = 1 | 2;
25967
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';
25968
26869
  export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month' | 'year';
@@ -26000,7 +26901,7 @@ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy'
26000
26901
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26001
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';
26002
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';
26003
- 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';
26004
26905
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
26005
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';
26006
26907
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
@@ -26013,6 +26914,7 @@ export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' |
26013
26914
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
26014
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';
26015
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';
26016
26918
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
26017
26919
  export type OnboardingJustificationOEnum = '-created' | '-modified' | '-validated_at' | 'created' | 'modified' | 'validated_at';
26018
26920
  export type OnboardingJustificationValidationDecisionEnum = 'Approved' | 'Pending Review' | 'Rejected';
@@ -26021,25 +26923,30 @@ export type OnboardingVerificationStatusEnum1 = 'Escalated for manual validation
26021
26923
  export type OnboardingVerificationValidationMethodEnum = 'Austrian Business Register (WirtschaftsCompass)' | 'Estonian Business Register (ariregister)' | 'Norwegian Business Register (Brreg)' | 'Swedish Business Register (Bolagsverket)';
26022
26924
  export type ChecklistResponseChecklistTypeEnum = 'customer' | 'intent';
26023
26925
  export type AvailableChecklistsResponseChecklistTypeEnum = 'customer' | 'intent' | 'all';
26024
- 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';
26025
- 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';
26026
- 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';
26027
26929
  export type ExternalNetworkFieldEnum = 'backend_id' | 'description' | 'is_default' | 'is_shared' | 'name' | 'settings' | 'status' | 'subnets' | 'url' | 'uuid';
26028
26930
  export type OpenStackFlavorFieldEnum = 'backend_id' | 'cores' | 'disk' | 'display_name' | 'name' | 'ram' | 'settings' | 'url' | 'uuid';
26029
26931
  export type OpenStackFlavorOEnum = '-cores' | '-disk' | '-ram' | 'cores' | 'disk' | 'ram';
26030
- 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';
26031
- 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';
26032
26935
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
26033
- 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';
26034
- 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';
26035
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';
26036
- 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';
26037
- 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';
26038
- 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';
26039
- 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';
26040
- 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';
26041
- 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';
26042
- 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';
26043
26950
  export type PaymentProfileOEnum = '-is_active' | '-name' | '-payment_type' | 'is_active' | 'name' | 'payment_type';
26044
26951
  export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-project_name' | '-value' | 'end_date' | 'expected_consumption' | 'project_name' | 'value';
26045
26952
  export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
@@ -26053,12 +26960,12 @@ export type ProviderRequestedOfferingOEnum = '-call__name' | '-created' | '-offe
26053
26960
  export type ProviderRequestedResourceOEnum = '-created' | '-offering__name' | '-proposal__name' | '-resource__name' | 'created' | 'offering__name' | 'proposal__name' | 'resource__name';
26054
26961
  export type ProposalReviewOEnum = '-created' | '-state' | 'created' | 'state';
26055
26962
  export type InvoiceItemOEnum1 = '-invoice_customer_name' | '-project_name' | '-resource_offering_name' | '-unit_price' | 'invoice_customer_name' | 'project_name' | 'resource_offering_name' | 'unit_price';
26056
- 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';
26057
- 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';
26058
- 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';
26059
26966
  export type RancherNamespaceOEnum = '-cluster_name' | '-name' | '-project_name' | 'cluster_name' | 'name' | 'project_name';
26060
26967
  export type RoleTemplateOEnum = '-name' | '-scope_type' | 'name' | 'scope_type';
26061
- 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';
26062
26969
  export type RancherTemplateOEnum = '-catalog_name' | '-name' | 'catalog_name' | 'name';
26063
26970
  export type RancherWorkloadOEnum = '-cluster_name' | '-name' | '-namespace_name' | '-project_name' | 'cluster_name' | 'name' | 'namespace_name' | 'project_name';
26064
26971
  export type ReviewerBidOEnum = '-bid' | '-modified_at' | '-submitted_at' | 'bid' | 'modified_at' | 'submitted_at';
@@ -26066,16 +26973,16 @@ export type ReviewerProfileOEnum = '-created' | '-user_email' | '-user_name' | '
26066
26973
  export type ReviewerSuggestionOEnum = '-affinity_score' | '-created' | '-reviewed_at' | '-status' | 'affinity_score' | 'created' | 'reviewed_at' | 'status';
26067
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';
26068
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';
26069
- 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';
26070
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';
26071
26978
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
26072
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';
26073
26980
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
26074
26981
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
26075
26982
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
26076
- 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';
26077
- 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';
26078
- 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';
26079
26986
  /**
26080
26987
  * A page number within the paginated result set.
26081
26988
  */
@@ -39993,7 +40900,7 @@ export type MarketplaceCourseAccountsListData = {
39993
40900
  *
39994
40901
  *
39995
40902
  */
39996
- state?: Array<ServiceAccountState>;
40903
+ state?: Array<CourseAccountStateEnum>;
39997
40904
  /**
39998
40905
  * Username
39999
40906
  */
@@ -40052,7 +40959,7 @@ export type MarketplaceCourseAccountsCountData = {
40052
40959
  *
40053
40960
  *
40054
40961
  */
40055
- state?: Array<ServiceAccountState>;
40962
+ state?: Array<CourseAccountStateEnum>;
40056
40963
  /**
40057
40964
  * Username
40058
40965
  */
@@ -40150,7 +41057,7 @@ export type MarketplaceCourseAccountsCreateBulkData = {
40150
41057
  *
40151
41058
  *
40152
41059
  */
40153
- state?: Array<ServiceAccountState>;
41060
+ state?: Array<CourseAccountStateEnum>;
40154
41061
  /**
40155
41062
  * Username
40156
41063
  */
@@ -50069,7 +50976,7 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
50069
50976
  *
50070
50977
  *
50071
50978
  */
50072
- state?: Array<ServiceAccountState>;
50979
+ state?: Array<CourseAccountStateEnum>;
50073
50980
  /**
50074
50981
  * Username
50075
50982
  */
@@ -50167,6 +51074,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
50167
51074
  * Slug
50168
51075
  */
50169
51076
  slug?: string;
51077
+ /**
51078
+ * Filter projects where the given user has a role.
51079
+ */
51080
+ user_uuid?: string;
50170
51081
  };
50171
51082
  url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/';
50172
51083
  };
@@ -50657,6 +51568,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
50657
51568
  * Slug
50658
51569
  */
50659
51570
  slug?: string;
51571
+ /**
51572
+ * Filter projects where the given user has a role.
51573
+ */
51574
+ user_uuid?: string;
50660
51575
  };
50661
51576
  url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/';
50662
51577
  };
@@ -51720,6 +52635,18 @@ export type MarketplaceSlurmPeriodicUsagePoliciesEvaluationLogsListResponses = {
51720
52635
  200: Array<SlurmPolicyEvaluationLog>;
51721
52636
  };
51722
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];
51723
52650
  export type MarketplaceSlurmPeriodicUsagePoliciesReportCommandResultData = {
51724
52651
  body: SlurmCommandResultRequest;
51725
52652
  path: {
@@ -52067,6 +52994,14 @@ export type MarketplaceSoftwarePackagesListData = {
52067
52994
  * Filter packages having extensions of a specific type (e.g., 'python')
52068
52995
  */
52069
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;
52070
53005
  /**
52071
53006
  * Filter packages that have a specific version
52072
53007
  */
@@ -52174,6 +53109,14 @@ export type MarketplaceSoftwarePackagesCountData = {
52174
53109
  * Filter packages having extensions of a specific type (e.g., 'python')
52175
53110
  */
52176
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;
52177
53120
  /**
52178
53121
  * Filter packages that have a specific version
52179
53122
  */
@@ -52306,49 +53249,65 @@ export type MarketplaceSoftwareTargetsListData = {
52306
53249
  cpu_family?: string;
52307
53250
  cpu_microarchitecture?: string;
52308
53251
  /**
52309
- * Ordering
52310
- *
52311
- *
52312
- */
52313
- o?: Array<SoftwareTargetOEnum>;
52314
- offering_uuid?: string;
52315
- package_uuid?: string;
52316
- /**
52317
- * A page number within the paginated result set.
52318
- */
52319
- page?: number;
52320
- /**
52321
- * Number of results to return per page.
52322
- */
52323
- page_size?: number;
52324
- path?: string;
52325
- /**
52326
- * Filter targets by name (e.g., x86_64, aarch64)
52327
- */
52328
- target_name?: string;
52329
- /**
52330
- * Filter targets by subtype (e.g., microarchitecture, distribution)
53252
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
52331
53253
  */
52332
- target_subtype?: string;
53254
+ gpu_arch?: string;
52333
53255
  /**
52334
- * Filter targets by type (e.g., architecture, platform, variant)
53256
+ * Filter targets that have GPU architectures
52335
53257
  */
52336
- target_type?: string;
52337
- version_uuid?: string;
52338
- };
52339
- url: '/api/marketplace-software-targets/';
52340
- };
52341
- export type MarketplaceSoftwareTargetsListResponses = {
52342
- 200: Array<SoftwareTarget>;
52343
- };
52344
- export type MarketplaceSoftwareTargetsListResponse = MarketplaceSoftwareTargetsListResponses[keyof MarketplaceSoftwareTargetsListResponses];
52345
- export type MarketplaceSoftwareTargetsCountData = {
52346
- body?: never;
52347
- path?: never;
52348
- query?: {
52349
- catalog_uuid?: string;
52350
- cpu_family?: string;
52351
- cpu_microarchitecture?: string;
53258
+ has_gpu?: boolean;
53259
+ /**
53260
+ * Ordering
53261
+ *
53262
+ *
53263
+ */
53264
+ o?: Array<SoftwareTargetOEnum>;
53265
+ offering_uuid?: string;
53266
+ package_uuid?: string;
53267
+ /**
53268
+ * A page number within the paginated result set.
53269
+ */
53270
+ page?: number;
53271
+ /**
53272
+ * Number of results to return per page.
53273
+ */
53274
+ page_size?: number;
53275
+ path?: string;
53276
+ /**
53277
+ * Filter targets by name (e.g., x86_64, aarch64)
53278
+ */
53279
+ target_name?: string;
53280
+ /**
53281
+ * Filter targets by subtype (e.g., microarchitecture, distribution)
53282
+ */
53283
+ target_subtype?: string;
53284
+ /**
53285
+ * Filter targets by type (e.g., architecture, platform, variant)
53286
+ */
53287
+ target_type?: string;
53288
+ version_uuid?: string;
53289
+ };
53290
+ url: '/api/marketplace-software-targets/';
53291
+ };
53292
+ export type MarketplaceSoftwareTargetsListResponses = {
53293
+ 200: Array<SoftwareTarget>;
53294
+ };
53295
+ export type MarketplaceSoftwareTargetsListResponse = MarketplaceSoftwareTargetsListResponses[keyof MarketplaceSoftwareTargetsListResponses];
53296
+ export type MarketplaceSoftwareTargetsCountData = {
53297
+ body?: never;
53298
+ path?: never;
53299
+ query?: {
53300
+ catalog_uuid?: string;
53301
+ cpu_family?: string;
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;
52352
53311
  /**
52353
53312
  * Ordering
52354
53313
  *
@@ -52462,6 +53421,14 @@ export type MarketplaceSoftwareVersionsListData = {
52462
53421
  catalog_uuid?: string;
52463
53422
  cpu_family?: string;
52464
53423
  cpu_microarchitecture?: string;
53424
+ /**
53425
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53426
+ */
53427
+ gpu_arch?: string;
53428
+ /**
53429
+ * Filter versions that have GPU-enabled builds
53430
+ */
53431
+ has_gpu?: boolean;
52465
53432
  /**
52466
53433
  * Ordering
52467
53434
  *
@@ -52524,6 +53491,14 @@ export type MarketplaceSoftwareVersionsCountData = {
52524
53491
  catalog_uuid?: string;
52525
53492
  cpu_family?: string;
52526
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;
52527
53502
  /**
52528
53503
  * Ordering
52529
53504
  *
@@ -53280,6 +54255,318 @@ export type MarketplaceStatsOfferingsCounterStatsCountResponses = {
53280
54255
  */
53281
54256
  200: unknown;
53282
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
+ };
53283
54570
  export type MarketplaceStatsOrderStatsRetrieveData = {
53284
54571
  body?: never;
53285
54572
  path?: never;
@@ -57314,7 +58601,7 @@ export type OpenportalUnmanagedProjectsListData = {
57314
58601
  */
57315
58602
  slug?: string;
57316
58603
  /**
57317
- * Filter by user UUID.
58604
+ * Filter projects where the given user has a role.
57318
58605
  */
57319
58606
  user_uuid?: string;
57320
58607
  };
@@ -57412,7 +58699,7 @@ export type OpenportalUnmanagedProjectsCountData = {
57412
58699
  */
57413
58700
  slug?: string;
57414
58701
  /**
57415
- * Filter by user UUID.
58702
+ * Filter projects where the given user has a role.
57416
58703
  */
57417
58704
  user_uuid?: string;
57418
58705
  };
@@ -58829,6 +60116,170 @@ export type OpenstackFloatingIpsUpdateDescriptionResponses = {
58829
60116
  */
58830
60117
  200: unknown;
58831
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];
58832
60283
  export type OpenstackImagesListData = {
58833
60284
  body?: never;
58834
60285
  path?: never;
@@ -59591,6 +61042,352 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
59591
61042
  */
59592
61043
  200: unknown;
59593
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
+ };
59594
61391
  export type OpenstackMarketplaceTenantsListData = {
59595
61392
  body?: never;
59596
61393
  path?: never;
@@ -60470,6 +62267,326 @@ export type OpenstackNetworksUnlinkResponses = {
60470
62267
  204: void;
60471
62268
  };
60472
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];
60473
62590
  export type OpenstackPortsListData = {
60474
62591
  body?: never;
60475
62592
  path?: never;
@@ -64728,7 +66845,7 @@ export type ProjectsListData = {
64728
66845
  */
64729
66846
  slug?: string;
64730
66847
  /**
64731
- * Filter by user UUID.
66848
+ * Filter projects where the given user has a role.
64732
66849
  */
64733
66850
  user_uuid?: string;
64734
66851
  };
@@ -64826,7 +66943,7 @@ export type ProjectsCountData = {
64826
66943
  */
64827
66944
  slug?: string;
64828
66945
  /**
64829
- * Filter by user UUID.
66946
+ * Filter projects where the given user has a role.
64830
66947
  */
64831
66948
  user_uuid?: string;
64832
66949
  };
@@ -72698,6 +74815,16 @@ export type StatsTableGrowthRetrieveResponses = {
72698
74815
  200: TableGrowthStatsResponse;
72699
74816
  };
72700
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];
72701
74828
  export type SupportAttachmentsListData = {
72702
74829
  body?: never;
72703
74830
  path?: never;