waldur-js-client 8.0.6-dev.12 → 8.0.6-dev.14

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.
@@ -471,6 +471,7 @@ export type Allocation = {
471
471
  readonly is_active?: boolean;
472
472
  readonly marketplace_offering_uuid?: string | null;
473
473
  readonly marketplace_offering_name?: string | null;
474
+ readonly marketplace_offering_type?: string | null;
474
475
  readonly marketplace_offering_plugin_options?: {
475
476
  [key: string]: unknown;
476
477
  } | null;
@@ -1582,6 +1583,7 @@ export type AwsInstance = {
1582
1583
  readonly image_name?: string;
1583
1584
  readonly marketplace_offering_uuid?: string | null;
1584
1585
  readonly marketplace_offering_name?: string | null;
1586
+ readonly marketplace_offering_type?: string | null;
1585
1587
  readonly marketplace_offering_plugin_options?: {
1586
1588
  [key: string]: unknown;
1587
1589
  } | null;
@@ -1673,6 +1675,7 @@ export type AwsVolume = {
1673
1675
  readonly runtime_state?: string;
1674
1676
  readonly marketplace_offering_uuid?: string | null;
1675
1677
  readonly marketplace_offering_name?: string | null;
1678
+ readonly marketplace_offering_type?: string | null;
1676
1679
  readonly marketplace_offering_plugin_options?: {
1677
1680
  [key: string]: unknown;
1678
1681
  } | null;
@@ -1755,6 +1758,7 @@ export type AzurePublicIp = {
1755
1758
  resource_group?: string;
1756
1759
  readonly marketplace_offering_uuid?: string | null;
1757
1760
  readonly marketplace_offering_name?: string | null;
1761
+ readonly marketplace_offering_type?: string | null;
1758
1762
  readonly marketplace_offering_plugin_options?: {
1759
1763
  [key: string]: unknown;
1760
1764
  } | null;
@@ -1803,6 +1807,7 @@ export type AzureResourceGroup = {
1803
1807
  location?: string;
1804
1808
  readonly marketplace_offering_uuid?: string | null;
1805
1809
  readonly marketplace_offering_name?: string | null;
1810
+ readonly marketplace_offering_type?: string | null;
1806
1811
  readonly marketplace_offering_plugin_options?: {
1807
1812
  [key: string]: unknown;
1808
1813
  } | null;
@@ -1860,6 +1865,7 @@ export type AzureSqlDatabase = {
1860
1865
  readonly server_marketplace_uuid?: string;
1861
1866
  readonly marketplace_offering_uuid?: string | null;
1862
1867
  readonly marketplace_offering_name?: string | null;
1868
+ readonly marketplace_offering_type?: string | null;
1863
1869
  readonly marketplace_offering_plugin_options?: {
1864
1870
  [key: string]: unknown;
1865
1871
  } | null;
@@ -1923,6 +1929,7 @@ export type AzureSqlServer = {
1923
1929
  readonly location_name?: string;
1924
1930
  readonly marketplace_offering_uuid?: string | null;
1925
1931
  readonly marketplace_offering_name?: string | null;
1932
+ readonly marketplace_offering_type?: string | null;
1926
1933
  readonly marketplace_offering_plugin_options?: {
1927
1934
  [key: string]: unknown;
1928
1935
  } | null;
@@ -2011,6 +2018,7 @@ export type AzureVirtualMachine = {
2011
2018
  readonly size_name?: string;
2012
2019
  readonly marketplace_offering_uuid?: string | null;
2013
2020
  readonly marketplace_offering_name?: string | null;
2021
+ readonly marketplace_offering_type?: string | null;
2014
2022
  readonly marketplace_offering_plugin_options?: {
2015
2023
  [key: string]: unknown;
2016
2024
  } | null;
@@ -4206,6 +4214,7 @@ export type ConstanceSettings = {
4206
4214
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4207
4215
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4208
4216
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4217
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4209
4218
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4210
4219
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4211
4220
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4450,6 +4459,7 @@ export type ConstanceSettingsRequest = {
4450
4459
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4451
4460
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4452
4461
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4462
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4453
4463
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4454
4464
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4455
4465
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4762,6 +4772,100 @@ export type CreateFeedbackRequest = {
4762
4772
  evaluation: number;
4763
4773
  token: string;
4764
4774
  };
4775
+ export type CreateHealthMonitor = {
4776
+ readonly url: string;
4777
+ readonly uuid: string;
4778
+ /**
4779
+ * Pool this health monitor belongs to
4780
+ */
4781
+ pool: string;
4782
+ name?: string;
4783
+ type: LoadBalancerProtocolEnum;
4784
+ /**
4785
+ * Interval between health checks in seconds
4786
+ */
4787
+ delay: number;
4788
+ /**
4789
+ * Time in seconds to timeout a health check
4790
+ */
4791
+ timeout: number;
4792
+ /**
4793
+ * Number of retries before marking member as down
4794
+ */
4795
+ max_retries: number;
4796
+ readonly project: string;
4797
+ readonly service_settings: string;
4798
+ };
4799
+ export type CreateHealthMonitorRequest = {
4800
+ /**
4801
+ * Pool this health monitor belongs to
4802
+ */
4803
+ pool: string;
4804
+ name?: string;
4805
+ type: LoadBalancerProtocolEnum;
4806
+ /**
4807
+ * Interval between health checks in seconds
4808
+ */
4809
+ delay: number;
4810
+ /**
4811
+ * Time in seconds to timeout a health check
4812
+ */
4813
+ timeout: number;
4814
+ /**
4815
+ * Number of retries before marking member as down
4816
+ */
4817
+ max_retries: number;
4818
+ };
4819
+ export type CreateListener = {
4820
+ readonly url: string;
4821
+ readonly uuid: string;
4822
+ /**
4823
+ * Load balancer this listener belongs to
4824
+ */
4825
+ load_balancer: string;
4826
+ name: string;
4827
+ protocol: LoadBalancerProtocolEnum;
4828
+ /**
4829
+ * Port on which the listener listens
4830
+ */
4831
+ protocol_port: number;
4832
+ default_pool?: string | null;
4833
+ readonly project: string;
4834
+ readonly service_settings: string;
4835
+ };
4836
+ export type CreateListenerRequest = {
4837
+ /**
4838
+ * Load balancer this listener belongs to
4839
+ */
4840
+ load_balancer: string;
4841
+ name: string;
4842
+ protocol: LoadBalancerProtocolEnum;
4843
+ /**
4844
+ * Port on which the listener listens
4845
+ */
4846
+ protocol_port: number;
4847
+ default_pool?: string | null;
4848
+ };
4849
+ export type CreateLoadBalancer = {
4850
+ readonly url: string;
4851
+ readonly uuid: string;
4852
+ /**
4853
+ * OpenStack tenant this load balancer belongs to
4854
+ */
4855
+ tenant: string;
4856
+ name: string;
4857
+ vip_subnet_id: string;
4858
+ readonly project: string;
4859
+ readonly service_settings: string;
4860
+ };
4861
+ export type CreateLoadBalancerRequest = {
4862
+ /**
4863
+ * OpenStack tenant this load balancer belongs to
4864
+ */
4865
+ tenant: string;
4866
+ name: string;
4867
+ vip_subnet_id: string;
4868
+ };
4765
4869
  export type CreateManualAssignmentRequest = {
4766
4870
  /**
4767
4871
  * UUID of the reviewer pool entry to assign proposals to
@@ -4786,6 +4890,66 @@ export type CreateManualAssignmentResponse = {
4786
4890
  [key: string]: unknown;
4787
4891
  }>;
4788
4892
  };
4893
+ export type CreatePool = {
4894
+ readonly url: string;
4895
+ readonly uuid: string;
4896
+ /**
4897
+ * Load balancer this pool belongs to
4898
+ */
4899
+ load_balancer: string;
4900
+ name: string;
4901
+ protocol: LoadBalancerProtocolEnum;
4902
+ lb_algorithm?: LbAlgorithmEnum;
4903
+ readonly project: string;
4904
+ readonly service_settings: string;
4905
+ };
4906
+ export type CreatePoolMember = {
4907
+ readonly url: string;
4908
+ readonly uuid: string;
4909
+ /**
4910
+ * Pool this member belongs to
4911
+ */
4912
+ pool: string;
4913
+ name?: string;
4914
+ /**
4915
+ * An IPv4 or IPv6 address.
4916
+ */
4917
+ address: string;
4918
+ /**
4919
+ * Port on the backend server
4920
+ */
4921
+ protocol_port: number;
4922
+ subnet_id: string;
4923
+ weight?: number;
4924
+ readonly project: string;
4925
+ readonly service_settings: string;
4926
+ };
4927
+ export type CreatePoolMemberRequest = {
4928
+ /**
4929
+ * Pool this member belongs to
4930
+ */
4931
+ pool: string;
4932
+ name?: string;
4933
+ /**
4934
+ * An IPv4 or IPv6 address.
4935
+ */
4936
+ address: string;
4937
+ /**
4938
+ * Port on the backend server
4939
+ */
4940
+ protocol_port: number;
4941
+ subnet_id: string;
4942
+ weight?: number;
4943
+ };
4944
+ export type CreatePoolRequest = {
4945
+ /**
4946
+ * Load balancer this pool belongs to
4947
+ */
4948
+ load_balancer: string;
4949
+ name: string;
4950
+ protocol: LoadBalancerProtocolEnum;
4951
+ lb_algorithm?: LbAlgorithmEnum;
4952
+ };
4789
4953
  export type CreateRouter = {
4790
4954
  readonly url: string;
4791
4955
  readonly uuid: string;
@@ -5615,6 +5779,7 @@ export type DigitalOceanDroplet = {
5615
5779
  readonly region_name?: string;
5616
5780
  readonly marketplace_offering_uuid?: string | null;
5617
5781
  readonly marketplace_offering_name?: string | null;
5782
+ readonly marketplace_offering_type?: string | null;
5618
5783
  readonly marketplace_offering_plugin_options?: {
5619
5784
  [key: string]: unknown;
5620
5785
  } | null;
@@ -6769,6 +6934,10 @@ export type GoogleCredentials = {
6769
6934
  image?: string | null;
6770
6935
  readonly organization_groups?: Array<OrganizationGroup>;
6771
6936
  readonly offering_count?: number;
6937
+ /**
6938
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
6939
+ */
6940
+ allowed_domains?: unknown;
6772
6941
  readonly calendar_token?: string;
6773
6942
  readonly calendar_refresh_token?: string;
6774
6943
  readonly google_auth_url?: string;
@@ -8105,6 +8274,7 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8105
8274
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8106
8275
  export type KindEnum = 'default' | 'course' | 'public';
8107
8276
  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';
8277
+ export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8108
8278
  export type LexisLink = {
8109
8279
  readonly url: string;
8110
8280
  readonly uuid: string;
@@ -8169,6 +8339,13 @@ export type LinkToInvoice = {
8169
8339
  export type LinkToInvoiceRequest = {
8170
8340
  invoice: string;
8171
8341
  };
8342
+ export type LoadBalancerAttachFloatingIpRequest = {
8343
+ floating_ip: string;
8344
+ };
8345
+ export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8346
+ export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8347
+ security_groups: Array<string>;
8348
+ };
8172
8349
  export type LockStats = {
8173
8350
  /**
8174
8351
  * Total number of locks currently held
@@ -9964,6 +10141,14 @@ export type NestedOfferingFileRequest = {
9964
10141
  name: string;
9965
10142
  file: Blob | File;
9966
10143
  };
10144
+ export type NestedParentSoftware = {
10145
+ readonly uuid: string;
10146
+ name: string;
10147
+ readonly url: string;
10148
+ };
10149
+ export type NestedParentSoftwareRequest = {
10150
+ name: string;
10151
+ };
9967
10152
  export type NestedPartition = {
9968
10153
  readonly uuid?: string;
9969
10154
  /**
@@ -10327,7 +10512,7 @@ export type NestedSecurityGroupRule = {
10327
10512
  /**
10328
10513
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10329
10514
  */
10330
- protocol?: ProtocolEnum | BlankEnum;
10515
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10331
10516
  /**
10332
10517
  * Starting port number in the range (1-65535)
10333
10518
  */
@@ -10357,7 +10542,7 @@ export type NestedSecurityGroupRuleRequest = {
10357
10542
  /**
10358
10543
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
10359
10544
  */
10360
- protocol?: ProtocolEnum | BlankEnum;
10545
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
10361
10546
  /**
10362
10547
  * Starting port number in the range (1-65535)
10363
10548
  */
@@ -12164,6 +12349,7 @@ export type OpenStackBackup = {
12164
12349
  readonly tenant_uuid?: string;
12165
12350
  readonly marketplace_offering_uuid?: string | null;
12166
12351
  readonly marketplace_offering_name?: string | null;
12352
+ readonly marketplace_offering_type?: string | null;
12167
12353
  readonly marketplace_offering_plugin_options?: {
12168
12354
  [key: string]: unknown;
12169
12355
  } | null;
@@ -12377,6 +12563,7 @@ export type OpenStackFloatingIp = {
12377
12563
  readonly instance_url?: string | null;
12378
12564
  readonly marketplace_offering_uuid?: string | null;
12379
12565
  readonly marketplace_offering_name?: string | null;
12566
+ readonly marketplace_offering_type?: string | null;
12380
12567
  readonly marketplace_offering_plugin_options?: {
12381
12568
  [key: string]: unknown;
12382
12569
  } | null;
@@ -12403,6 +12590,62 @@ export type OpenStackFloatingIpRequest = {
12403
12590
  */
12404
12591
  router?: string | null;
12405
12592
  };
12593
+ export type OpenStackHealthMonitor = {
12594
+ readonly url?: string;
12595
+ readonly uuid?: string;
12596
+ name?: string;
12597
+ description?: string;
12598
+ readonly service_name?: string;
12599
+ service_settings?: string;
12600
+ readonly service_settings_uuid?: string;
12601
+ readonly service_settings_state?: string;
12602
+ readonly service_settings_error_message?: string;
12603
+ project?: string;
12604
+ readonly project_name?: string;
12605
+ readonly project_uuid?: string;
12606
+ readonly customer?: string;
12607
+ readonly customer_uuid?: string;
12608
+ readonly customer_name?: string;
12609
+ readonly customer_native_name?: string;
12610
+ readonly customer_abbreviation?: string;
12611
+ error_message?: string;
12612
+ error_traceback?: string;
12613
+ readonly resource_type?: string;
12614
+ state?: CoreStates;
12615
+ readonly created?: string;
12616
+ readonly modified?: string;
12617
+ /**
12618
+ * Health monitor ID in Octavia
12619
+ */
12620
+ backend_id?: string | null;
12621
+ readonly access_url?: string | null;
12622
+ /**
12623
+ * Pool this health monitor belongs to
12624
+ */
12625
+ pool?: string;
12626
+ readonly pool_name?: string;
12627
+ readonly pool_uuid?: string;
12628
+ readonly load_balancer_uuid?: string;
12629
+ readonly type?: string;
12630
+ readonly delay?: number;
12631
+ readonly timeout?: number;
12632
+ readonly max_retries?: number;
12633
+ readonly provisioning_status?: string;
12634
+ readonly operating_status?: string;
12635
+ readonly marketplace_offering_uuid?: string | null;
12636
+ readonly marketplace_offering_name?: string | null;
12637
+ readonly marketplace_offering_type?: string | null;
12638
+ readonly marketplace_offering_plugin_options?: {
12639
+ [key: string]: unknown;
12640
+ } | null;
12641
+ readonly marketplace_category_uuid?: string | null;
12642
+ readonly marketplace_category_name?: string | null;
12643
+ readonly marketplace_resource_uuid?: string | null;
12644
+ readonly marketplace_plan_uuid?: string | null;
12645
+ readonly marketplace_resource_state?: string | null;
12646
+ readonly is_usage_based?: boolean | null;
12647
+ readonly is_limit_based?: boolean | null;
12648
+ };
12406
12649
  export type OpenStackImage = {
12407
12650
  readonly url: string;
12408
12651
  readonly uuid: string;
@@ -12533,6 +12776,7 @@ export type OpenStackInstance = {
12533
12776
  rancher_cluster?: RancherClusterReference | null;
12534
12777
  readonly marketplace_offering_uuid?: string | null;
12535
12778
  readonly marketplace_offering_name?: string | null;
12779
+ readonly marketplace_offering_type?: string | null;
12536
12780
  readonly marketplace_offering_plugin_options?: {
12537
12781
  [key: string]: unknown;
12538
12782
  } | null;
@@ -12544,6 +12788,40 @@ export type OpenStackInstance = {
12544
12788
  readonly is_usage_based?: boolean | null;
12545
12789
  readonly is_limit_based?: boolean | null;
12546
12790
  };
12791
+ export type OpenStackInstanceAggregate = {
12792
+ /**
12793
+ * Group key value
12794
+ */
12795
+ group_key: string;
12796
+ /**
12797
+ * Human-readable group label
12798
+ */
12799
+ group_label: string;
12800
+ /**
12801
+ * Number of instances
12802
+ */
12803
+ instance_count: number;
12804
+ /**
12805
+ * Total vCPUs
12806
+ */
12807
+ total_cores: number;
12808
+ /**
12809
+ * Total RAM in MiB
12810
+ */
12811
+ total_ram_mb: number;
12812
+ /**
12813
+ * Total disk in MiB
12814
+ */
12815
+ total_disk_mb: number;
12816
+ /**
12817
+ * Total attached volume size in MiB
12818
+ */
12819
+ total_volume_size_mb: number;
12820
+ /**
12821
+ * Total number of floating IPs
12822
+ */
12823
+ total_floating_ips: number;
12824
+ };
12547
12825
  export type OpenStackInstanceAllowedAddressPairsUpdateRequest = {
12548
12826
  /**
12549
12827
  * The subnet to update allowed address pairs for.
@@ -12570,6 +12848,124 @@ export type OpenStackInstanceFloatingIpsUpdateRequest = {
12570
12848
  export type OpenStackInstancePortsUpdateRequest = {
12571
12849
  ports: Array<OpenStackCreatePortRequest>;
12572
12850
  };
12851
+ export type OpenStackInstanceReport = {
12852
+ /**
12853
+ * Instance UUID
12854
+ */
12855
+ uuid: string;
12856
+ /**
12857
+ * Instance name
12858
+ */
12859
+ name: string;
12860
+ /**
12861
+ * Creation timestamp
12862
+ */
12863
+ created: string;
12864
+ /**
12865
+ * Number of vCPUs
12866
+ */
12867
+ cores: number;
12868
+ /**
12869
+ * RAM in MiB
12870
+ */
12871
+ ram: number;
12872
+ /**
12873
+ * Root disk in MiB
12874
+ */
12875
+ disk: number;
12876
+ /**
12877
+ * Flavor name
12878
+ */
12879
+ flavor_name: string;
12880
+ /**
12881
+ * Flavor disk in MiB
12882
+ */
12883
+ flavor_disk: number;
12884
+ /**
12885
+ * Image name
12886
+ */
12887
+ image_name: string;
12888
+ /**
12889
+ * Hypervisor hostname
12890
+ */
12891
+ hypervisor_hostname: string;
12892
+ /**
12893
+ * Runtime state (e.g. ACTIVE, SHUTOFF)
12894
+ */
12895
+ runtime_state: string;
12896
+ /**
12897
+ * Provisioning state
12898
+ */
12899
+ state: string;
12900
+ /**
12901
+ * Availability zone name
12902
+ */
12903
+ availability_zone_name: string | null;
12904
+ /**
12905
+ * Last start time of the VM
12906
+ */
12907
+ start_time: string | null;
12908
+ /**
12909
+ * Cluster UUID
12910
+ */
12911
+ service_settings_uuid: string;
12912
+ /**
12913
+ * Cluster name
12914
+ */
12915
+ service_settings_name: string;
12916
+ /**
12917
+ * Tenant UUID
12918
+ */
12919
+ tenant_uuid: string;
12920
+ /**
12921
+ * Tenant name
12922
+ */
12923
+ tenant_name: string;
12924
+ /**
12925
+ * Project UUID
12926
+ */
12927
+ project_uuid: string;
12928
+ /**
12929
+ * Project name
12930
+ */
12931
+ project_name: string;
12932
+ /**
12933
+ * Customer UUID
12934
+ */
12935
+ customer_uuid: string;
12936
+ /**
12937
+ * Customer name
12938
+ */
12939
+ customer_name: string;
12940
+ /**
12941
+ * Customer abbreviation
12942
+ */
12943
+ customer_abbreviation: string;
12944
+ /**
12945
+ * Number of attached volumes
12946
+ */
12947
+ volume_count: number;
12948
+ /**
12949
+ * Total attached volume size in MiB
12950
+ */
12951
+ total_volume_size_mb: number;
12952
+ /**
12953
+ * Number of floating IPs
12954
+ */
12955
+ floating_ip_count: number;
12956
+ /**
12957
+ * Number of ports
12958
+ */
12959
+ port_count: number;
12960
+ /**
12961
+ * List of internal IP addresses
12962
+ */
12963
+ internal_ips: Array<string>;
12964
+ /**
12965
+ * List of external IP addresses
12966
+ */
12967
+ external_ips: Array<string>;
12968
+ };
12573
12969
  export type OpenStackInstanceRequest = {
12574
12970
  name: string;
12575
12971
  description?: string;
@@ -12580,6 +12976,145 @@ export type OpenStackInstanceSecurityGroupsUpdateRequest = {
12580
12976
  */
12581
12977
  security_groups: Array<string>;
12582
12978
  };
12979
+ export type OpenStackListener = {
12980
+ readonly url?: string;
12981
+ readonly uuid?: string;
12982
+ name?: string;
12983
+ description?: string;
12984
+ readonly service_name?: string;
12985
+ service_settings?: string;
12986
+ readonly service_settings_uuid?: string;
12987
+ readonly service_settings_state?: string;
12988
+ readonly service_settings_error_message?: string;
12989
+ project?: string;
12990
+ readonly project_name?: string;
12991
+ readonly project_uuid?: string;
12992
+ readonly customer?: string;
12993
+ readonly customer_uuid?: string;
12994
+ readonly customer_name?: string;
12995
+ readonly customer_native_name?: string;
12996
+ readonly customer_abbreviation?: string;
12997
+ error_message?: string;
12998
+ error_traceback?: string;
12999
+ readonly resource_type?: string;
13000
+ state?: CoreStates;
13001
+ readonly created?: string;
13002
+ readonly modified?: string;
13003
+ /**
13004
+ * Listener ID in Octavia
13005
+ */
13006
+ backend_id?: string | null;
13007
+ readonly access_url?: string | null;
13008
+ /**
13009
+ * Load balancer this listener belongs to
13010
+ */
13011
+ load_balancer?: string;
13012
+ readonly load_balancer_name?: string;
13013
+ readonly load_balancer_uuid?: string;
13014
+ readonly protocol?: string;
13015
+ readonly protocol_port?: number;
13016
+ /**
13017
+ * Default pool for this listener
13018
+ */
13019
+ default_pool?: string | null;
13020
+ readonly provisioning_status?: string;
13021
+ readonly operating_status?: string;
13022
+ readonly marketplace_offering_uuid?: string | null;
13023
+ readonly marketplace_offering_name?: string | null;
13024
+ readonly marketplace_offering_type?: string | null;
13025
+ readonly marketplace_offering_plugin_options?: {
13026
+ [key: string]: unknown;
13027
+ } | null;
13028
+ readonly marketplace_category_uuid?: string | null;
13029
+ readonly marketplace_category_name?: string | null;
13030
+ readonly marketplace_resource_uuid?: string | null;
13031
+ readonly marketplace_plan_uuid?: string | null;
13032
+ readonly marketplace_resource_state?: string | null;
13033
+ readonly is_usage_based?: boolean | null;
13034
+ readonly is_limit_based?: boolean | null;
13035
+ };
13036
+ export type OpenStackLoadBalancer = {
13037
+ readonly url?: string;
13038
+ readonly uuid?: string;
13039
+ name?: string;
13040
+ description?: string;
13041
+ readonly service_name?: string;
13042
+ service_settings?: string;
13043
+ readonly service_settings_uuid?: string;
13044
+ readonly service_settings_state?: string;
13045
+ readonly service_settings_error_message?: string;
13046
+ project?: string;
13047
+ readonly project_name?: string;
13048
+ readonly project_uuid?: string;
13049
+ readonly customer?: string;
13050
+ readonly customer_uuid?: string;
13051
+ readonly customer_name?: string;
13052
+ readonly customer_native_name?: string;
13053
+ readonly customer_abbreviation?: string;
13054
+ error_message?: string;
13055
+ error_traceback?: string;
13056
+ readonly resource_type?: string;
13057
+ state?: CoreStates;
13058
+ readonly created?: string;
13059
+ readonly modified?: string;
13060
+ /**
13061
+ * Load balancer ID in Octavia
13062
+ */
13063
+ backend_id?: string | null;
13064
+ readonly access_url?: string | null;
13065
+ /**
13066
+ * OpenStack tenant this load balancer belongs to
13067
+ */
13068
+ tenant?: string;
13069
+ readonly tenant_name?: string;
13070
+ readonly tenant_uuid?: string;
13071
+ /**
13072
+ * An IPv4 or IPv6 address.
13073
+ */
13074
+ vip_address?: string;
13075
+ readonly vip_subnet_id?: string;
13076
+ readonly vip_port_id?: string;
13077
+ /**
13078
+ * Floating IP attached to the VIP port
13079
+ */
13080
+ attached_floating_ip?: string | null;
13081
+ readonly provider?: string;
13082
+ readonly provisioning_status?: string;
13083
+ readonly operating_status?: string;
13084
+ readonly marketplace_offering_uuid?: string | null;
13085
+ readonly marketplace_offering_name?: string | null;
13086
+ readonly marketplace_offering_type?: string | null;
13087
+ readonly marketplace_offering_plugin_options?: {
13088
+ [key: string]: unknown;
13089
+ } | null;
13090
+ readonly marketplace_category_uuid?: string | null;
13091
+ readonly marketplace_category_name?: string | null;
13092
+ readonly marketplace_resource_uuid?: string | null;
13093
+ readonly marketplace_plan_uuid?: string | null;
13094
+ readonly marketplace_resource_state?: string | null;
13095
+ readonly is_usage_based?: boolean | null;
13096
+ readonly is_limit_based?: boolean | null;
13097
+ };
13098
+ export type OpenStackLoadBalancerRequest = {
13099
+ name: string;
13100
+ description?: string;
13101
+ service_settings: string;
13102
+ project: string;
13103
+ error_message?: string;
13104
+ error_traceback?: string;
13105
+ /**
13106
+ * Load balancer ID in Octavia
13107
+ */
13108
+ backend_id?: string | null;
13109
+ /**
13110
+ * OpenStack tenant this load balancer belongs to
13111
+ */
13112
+ tenant: string;
13113
+ /**
13114
+ * Floating IP attached to the VIP port
13115
+ */
13116
+ attached_floating_ip?: string | null;
13117
+ };
12583
13118
  export type OpenStackNestedFloatingIp = {
12584
13119
  readonly url?: string;
12585
13120
  readonly uuid?: string;
@@ -12809,6 +13344,7 @@ export type OpenStackNetwork = {
12809
13344
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
12810
13345
  readonly marketplace_offering_uuid?: string | null;
12811
13346
  readonly marketplace_offering_name?: string | null;
13347
+ readonly marketplace_offering_type?: string | null;
12812
13348
  readonly marketplace_offering_plugin_options?: {
12813
13349
  [key: string]: unknown;
12814
13350
  } | null;
@@ -12824,6 +13360,137 @@ export type OpenStackNetworkRequest = {
12824
13360
  name: string;
12825
13361
  description?: string;
12826
13362
  };
13363
+ export type OpenStackPool = {
13364
+ readonly url?: string;
13365
+ readonly uuid?: string;
13366
+ name?: string;
13367
+ description?: string;
13368
+ readonly service_name?: string;
13369
+ service_settings?: string;
13370
+ readonly service_settings_uuid?: string;
13371
+ readonly service_settings_state?: string;
13372
+ readonly service_settings_error_message?: string;
13373
+ project?: string;
13374
+ readonly project_name?: string;
13375
+ readonly project_uuid?: string;
13376
+ readonly customer?: string;
13377
+ readonly customer_uuid?: string;
13378
+ readonly customer_name?: string;
13379
+ readonly customer_native_name?: string;
13380
+ readonly customer_abbreviation?: string;
13381
+ error_message?: string;
13382
+ error_traceback?: string;
13383
+ readonly resource_type?: string;
13384
+ state?: CoreStates;
13385
+ readonly created?: string;
13386
+ readonly modified?: string;
13387
+ /**
13388
+ * Pool ID in Octavia
13389
+ */
13390
+ backend_id?: string | null;
13391
+ readonly access_url?: string | null;
13392
+ /**
13393
+ * Load balancer this pool belongs to
13394
+ */
13395
+ load_balancer?: string;
13396
+ readonly load_balancer_name?: string;
13397
+ readonly load_balancer_uuid?: string;
13398
+ readonly protocol?: string;
13399
+ readonly lb_algorithm?: string;
13400
+ readonly provisioning_status?: string;
13401
+ readonly operating_status?: string;
13402
+ readonly marketplace_offering_uuid?: string | null;
13403
+ readonly marketplace_offering_name?: string | null;
13404
+ readonly marketplace_offering_type?: string | null;
13405
+ readonly marketplace_offering_plugin_options?: {
13406
+ [key: string]: unknown;
13407
+ } | null;
13408
+ readonly marketplace_category_uuid?: string | null;
13409
+ readonly marketplace_category_name?: string | null;
13410
+ readonly marketplace_resource_uuid?: string | null;
13411
+ readonly marketplace_plan_uuid?: string | null;
13412
+ readonly marketplace_resource_state?: string | null;
13413
+ readonly is_usage_based?: boolean | null;
13414
+ readonly is_limit_based?: boolean | null;
13415
+ };
13416
+ export type OpenStackPoolMember = {
13417
+ readonly url?: string;
13418
+ readonly uuid?: string;
13419
+ name?: string;
13420
+ description?: string;
13421
+ readonly service_name?: string;
13422
+ service_settings?: string;
13423
+ readonly service_settings_uuid?: string;
13424
+ readonly service_settings_state?: string;
13425
+ readonly service_settings_error_message?: string;
13426
+ project?: string;
13427
+ readonly project_name?: string;
13428
+ readonly project_uuid?: string;
13429
+ readonly customer?: string;
13430
+ readonly customer_uuid?: string;
13431
+ readonly customer_name?: string;
13432
+ readonly customer_native_name?: string;
13433
+ readonly customer_abbreviation?: string;
13434
+ error_message?: string;
13435
+ error_traceback?: string;
13436
+ readonly resource_type?: string;
13437
+ state?: CoreStates;
13438
+ readonly created?: string;
13439
+ readonly modified?: string;
13440
+ /**
13441
+ * Member ID in Octavia
13442
+ */
13443
+ backend_id?: string | null;
13444
+ readonly access_url?: string | null;
13445
+ /**
13446
+ * Pool this member belongs to
13447
+ */
13448
+ pool?: string;
13449
+ readonly pool_name?: string;
13450
+ readonly pool_uuid?: string;
13451
+ readonly load_balancer_uuid?: string;
13452
+ /**
13453
+ * An IPv4 or IPv6 address.
13454
+ */
13455
+ address?: string;
13456
+ readonly protocol_port?: number;
13457
+ /**
13458
+ * Subnet ID for the member (required for creation)
13459
+ */
13460
+ subnet_id?: string;
13461
+ readonly weight?: number;
13462
+ readonly provisioning_status?: string;
13463
+ readonly operating_status?: string;
13464
+ readonly marketplace_offering_uuid?: string | null;
13465
+ readonly marketplace_offering_name?: string | null;
13466
+ readonly marketplace_offering_type?: string | null;
13467
+ readonly marketplace_offering_plugin_options?: {
13468
+ [key: string]: unknown;
13469
+ } | null;
13470
+ readonly marketplace_category_uuid?: string | null;
13471
+ readonly marketplace_category_name?: string | null;
13472
+ readonly marketplace_resource_uuid?: string | null;
13473
+ readonly marketplace_plan_uuid?: string | null;
13474
+ readonly marketplace_resource_state?: string | null;
13475
+ readonly is_usage_based?: boolean | null;
13476
+ readonly is_limit_based?: boolean | null;
13477
+ };
13478
+ export type OpenStackPoolRequest = {
13479
+ name: string;
13480
+ description?: string;
13481
+ service_settings: string;
13482
+ project: string;
13483
+ error_message?: string;
13484
+ error_traceback?: string;
13485
+ /**
13486
+ * Pool ID in Octavia
13487
+ */
13488
+ backend_id?: string | null;
13489
+ /**
13490
+ * Load balancer this pool belongs to
13491
+ */
13492
+ load_balancer: string;
13493
+ };
12827
13494
  export type OpenStackPort = {
12828
13495
  readonly url?: string;
12829
13496
  readonly uuid?: string;
@@ -12895,6 +13562,7 @@ export type OpenStackPort = {
12895
13562
  readonly status?: string | null;
12896
13563
  readonly marketplace_offering_uuid?: string | null;
12897
13564
  readonly marketplace_offering_name?: string | null;
13565
+ readonly marketplace_offering_type?: string | null;
12898
13566
  readonly marketplace_offering_plugin_options?: {
12899
13567
  [key: string]: unknown;
12900
13568
  } | null;
@@ -12987,6 +13655,7 @@ export type OpenStackRouter = {
12987
13655
  readonly ports?: Array<OpenStackNestedPort>;
12988
13656
  readonly marketplace_offering_uuid?: string | null;
12989
13657
  readonly marketplace_offering_name?: string | null;
13658
+ readonly marketplace_offering_type?: string | null;
12990
13659
  readonly marketplace_offering_plugin_options?: {
12991
13660
  [key: string]: unknown;
12992
13661
  } | null;
@@ -13047,6 +13716,7 @@ export type OpenStackSecurityGroup = {
13047
13716
  rules?: Array<OpenStackSecurityGroupRuleCreate>;
13048
13717
  readonly marketplace_offering_uuid?: string | null;
13049
13718
  readonly marketplace_offering_name?: string | null;
13719
+ readonly marketplace_offering_type?: string | null;
13050
13720
  readonly marketplace_offering_plugin_options?: {
13051
13721
  [key: string]: unknown;
13052
13722
  } | null;
@@ -13078,7 +13748,7 @@ export type OpenStackSecurityGroupRuleCreate = {
13078
13748
  /**
13079
13749
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13080
13750
  */
13081
- protocol?: ProtocolEnum | BlankEnum;
13751
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13082
13752
  /**
13083
13753
  * Starting port number in the range (1-65535)
13084
13754
  */
@@ -13112,7 +13782,7 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
13112
13782
  /**
13113
13783
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13114
13784
  */
13115
- protocol?: ProtocolEnum | BlankEnum;
13785
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13116
13786
  /**
13117
13787
  * Starting port number in the range (1-65535)
13118
13788
  */
@@ -13143,7 +13813,7 @@ export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
13143
13813
  /**
13144
13814
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13145
13815
  */
13146
- protocol?: ProtocolEnum | BlankEnum;
13816
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13147
13817
  /**
13148
13818
  * Starting port number in the range (1-65535)
13149
13819
  */
@@ -13172,7 +13842,7 @@ export type OpenStackSecurityGroupRuleUpdateRequest = {
13172
13842
  /**
13173
13843
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
13174
13844
  */
13175
- protocol?: ProtocolEnum | BlankEnum;
13845
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
13176
13846
  /**
13177
13847
  * Starting port number in the range (1-65535)
13178
13848
  */
@@ -13236,6 +13906,7 @@ export type OpenStackServerGroup = {
13236
13906
  readonly instances?: Array<OpenStackNestedInstance>;
13237
13907
  readonly marketplace_offering_uuid?: string | null;
13238
13908
  readonly marketplace_offering_name?: string | null;
13909
+ readonly marketplace_offering_type?: string | null;
13239
13910
  readonly marketplace_offering_plugin_options?: {
13240
13911
  [key: string]: unknown;
13241
13912
  } | null;
@@ -13305,6 +13976,7 @@ export type OpenStackSnapshot = {
13305
13976
  kept_until?: string | null;
13306
13977
  readonly marketplace_offering_uuid?: string | null;
13307
13978
  readonly marketplace_offering_name?: string | null;
13979
+ readonly marketplace_offering_type?: string | null;
13308
13980
  readonly marketplace_offering_plugin_options?: {
13309
13981
  [key: string]: unknown;
13310
13982
  } | null;
@@ -13434,6 +14106,7 @@ export type OpenStackSubNet = {
13434
14106
  readonly is_connected?: boolean;
13435
14107
  readonly marketplace_offering_uuid?: string | null;
13436
14108
  readonly marketplace_offering_name?: string | null;
14109
+ readonly marketplace_offering_type?: string | null;
13437
14110
  readonly marketplace_offering_plugin_options?: {
13438
14111
  [key: string]: unknown;
13439
14112
  } | null;
@@ -13543,6 +14216,7 @@ export type OpenStackTenant = {
13543
14216
  skip_creation_of_default_router?: boolean;
13544
14217
  readonly marketplace_offering_uuid?: string | null;
13545
14218
  readonly marketplace_offering_name?: string | null;
14219
+ readonly marketplace_offering_type?: string | null;
13546
14220
  readonly marketplace_offering_plugin_options?: {
13547
14221
  [key: string]: unknown;
13548
14222
  } | null;
@@ -13687,6 +14361,7 @@ export type OpenStackVolume = {
13687
14361
  readonly extend_enabled?: boolean;
13688
14362
  readonly marketplace_offering_uuid?: string | null;
13689
14363
  readonly marketplace_offering_name?: string | null;
14364
+ readonly marketplace_offering_type?: string | null;
13690
14365
  readonly marketplace_offering_plugin_options?: {
13691
14366
  [key: string]: unknown;
13692
14367
  } | null;
@@ -15068,10 +15743,46 @@ export type PatchedOpenStackInstanceRequest = {
15068
15743
  name?: string;
15069
15744
  description?: string;
15070
15745
  };
15746
+ export type PatchedOpenStackLoadBalancerRequest = {
15747
+ name?: string;
15748
+ description?: string;
15749
+ service_settings?: string;
15750
+ project?: string;
15751
+ error_message?: string;
15752
+ error_traceback?: string;
15753
+ /**
15754
+ * Load balancer ID in Octavia
15755
+ */
15756
+ backend_id?: string | null;
15757
+ /**
15758
+ * OpenStack tenant this load balancer belongs to
15759
+ */
15760
+ tenant?: string;
15761
+ /**
15762
+ * Floating IP attached to the VIP port
15763
+ */
15764
+ attached_floating_ip?: string | null;
15765
+ };
15071
15766
  export type PatchedOpenStackNetworkRequest = {
15072
15767
  name?: string;
15073
15768
  description?: string;
15074
15769
  };
15770
+ export type PatchedOpenStackPoolRequest = {
15771
+ name?: string;
15772
+ description?: string;
15773
+ service_settings?: string;
15774
+ project?: string;
15775
+ error_message?: string;
15776
+ error_traceback?: string;
15777
+ /**
15778
+ * Pool ID in Octavia
15779
+ */
15780
+ backend_id?: string | null;
15781
+ /**
15782
+ * Load balancer this pool belongs to
15783
+ */
15784
+ load_balancer?: string;
15785
+ };
15075
15786
  export type PatchedOpenStackPortRequest = {
15076
15787
  name?: string;
15077
15788
  description?: string;
@@ -15817,6 +16528,10 @@ export type PatchedServiceProviderRequest = {
15817
16528
  description?: string;
15818
16529
  enable_notifications?: boolean;
15819
16530
  image?: (Blob | File) | null;
16531
+ /**
16532
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
16533
+ */
16534
+ allowed_domains?: unknown;
15820
16535
  };
15821
16536
  export type PatchedSlurmAllocationRequest = {
15822
16537
  name?: string;
@@ -15918,10 +16633,6 @@ export type PatchedSoftwarePackageRequest = {
15918
16633
  * Whether this package is an extension of another package
15919
16634
  */
15920
16635
  is_extension?: boolean;
15921
- /**
15922
- * Parent package for extensions (e.g., Python package within Python)
15923
- */
15924
- parent_software?: string | null;
15925
16636
  };
15926
16637
  export type PatchedTagRequest = {
15927
16638
  name?: string;
@@ -15932,6 +16643,20 @@ export type PatchedTemplateRequest = {
15932
16643
  description?: string;
15933
16644
  issue_type?: IssueTypeEnum;
15934
16645
  };
16646
+ export type PatchedUpdateHealthMonitorRequest = {
16647
+ name?: string;
16648
+ delay?: number;
16649
+ timeout?: number;
16650
+ max_retries?: number;
16651
+ };
16652
+ export type PatchedUpdateListenerRequest = {
16653
+ name?: string;
16654
+ default_pool?: string | null;
16655
+ };
16656
+ export type PatchedUpdatePoolMemberRequest = {
16657
+ name?: string;
16658
+ weight?: number;
16659
+ };
15935
16660
  export type PatchedUserAgreementRequest = {
15936
16661
  content?: string;
15937
16662
  agreement_type?: AgreementTypeEnum;
@@ -17302,7 +18027,6 @@ export type ProtectedRoundRequest = {
17302
18027
  review_duration_in_days?: number;
17303
18028
  minimum_number_of_reviewers?: number | null;
17304
18029
  };
17305
- export type ProtocolEnum = 'tcp' | 'udp' | 'icmp';
17306
18030
  export type ProviderCustomerStats = {
17307
18031
  /**
17308
18032
  * Total number of customers
@@ -18444,6 +19168,7 @@ export type RancherApplication = {
18444
19168
  readonly external_url?: string | null;
18445
19169
  readonly marketplace_offering_uuid?: string | null;
18446
19170
  readonly marketplace_offering_name?: string | null;
19171
+ readonly marketplace_offering_type?: string | null;
18447
19172
  readonly marketplace_offering_plugin_options?: {
18448
19173
  [key: string]: unknown;
18449
19174
  } | null;
@@ -18593,6 +19318,7 @@ export type RancherCluster = {
18593
19318
  readonly router_ips?: Array<unknown>;
18594
19319
  readonly marketplace_offering_uuid?: string | null;
18595
19320
  readonly marketplace_offering_name?: string | null;
19321
+ readonly marketplace_offering_type?: string | null;
18596
19322
  readonly marketplace_offering_plugin_options?: {
18597
19323
  [key: string]: unknown;
18598
19324
  } | null;
@@ -18632,7 +19358,7 @@ export type RancherClusterSecurityGroupRule = {
18632
19358
  /**
18633
19359
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18634
19360
  */
18635
- protocol?: ProtocolEnum | BlankEnum;
19361
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18636
19362
  /**
18637
19363
  * Starting port number in the range (1-65535)
18638
19364
  */
@@ -18659,7 +19385,7 @@ export type RancherClusterSecurityGroupRuleRequest = {
18659
19385
  /**
18660
19386
  * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
18661
19387
  */
18662
- protocol?: ProtocolEnum | BlankEnum;
19388
+ protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
18663
19389
  /**
18664
19390
  * Starting port number in the range (1-65535)
18665
19391
  */
@@ -18794,6 +19520,7 @@ export type RancherIngress = {
18794
19520
  rules?: unknown;
18795
19521
  readonly marketplace_offering_uuid?: string | null;
18796
19522
  readonly marketplace_offering_name?: string | null;
19523
+ readonly marketplace_offering_type?: string | null;
18797
19524
  readonly marketplace_offering_plugin_options?: {
18798
19525
  [key: string]: unknown;
18799
19526
  } | null;
@@ -18985,6 +19712,7 @@ export type RancherService = {
18985
19712
  target_workloads?: Array<RancherNestedWorkload>;
18986
19713
  readonly marketplace_offering_uuid?: string | null;
18987
19714
  readonly marketplace_offering_name?: string | null;
19715
+ readonly marketplace_offering_type?: string | null;
18988
19716
  readonly marketplace_offering_plugin_options?: {
18989
19717
  [key: string]: unknown;
18990
19718
  } | null;
@@ -19033,6 +19761,7 @@ export type RancherServiceCreate = {
19033
19761
  target_workloads?: Array<RancherWorkloadCreate>;
19034
19762
  readonly marketplace_offering_uuid: string | null;
19035
19763
  readonly marketplace_offering_name: string | null;
19764
+ readonly marketplace_offering_type: string | null;
19036
19765
  readonly marketplace_offering_plugin_options: {
19037
19766
  [key: string]: unknown;
19038
19767
  } | null;
@@ -19250,6 +19979,7 @@ export type RemoteAllocation = {
19250
19979
  readonly is_active?: boolean;
19251
19980
  readonly marketplace_offering_uuid?: string | null;
19252
19981
  readonly marketplace_offering_name?: string | null;
19982
+ readonly marketplace_offering_type?: string | null;
19253
19983
  readonly marketplace_offering_plugin_options?: {
19254
19984
  [key: string]: unknown;
19255
19985
  } | null;
@@ -21373,6 +22103,7 @@ export type SectionRequest = {
21373
22103
  */
21374
22104
  is_standalone?: boolean;
21375
22105
  };
22106
+ export type SecurityGroupRuleProtocolEnum = 'tcp' | 'udp' | 'icmp';
21376
22107
  export type SelfDeclaredConflictRequest = {
21377
22108
  proposal_uuid: string;
21378
22109
  coi_type: CoiTypeEnum;
@@ -21439,6 +22170,10 @@ export type ServiceProvider = {
21439
22170
  image?: string | null;
21440
22171
  readonly organization_groups?: Array<OrganizationGroup>;
21441
22172
  readonly offering_count?: number;
22173
+ /**
22174
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22175
+ */
22176
+ allowed_domains?: unknown;
21442
22177
  };
21443
22178
  export type ServiceProviderAccess = {
21444
22179
  offering_uuid: string;
@@ -21491,6 +22226,10 @@ export type ServiceProviderRequest = {
21491
22226
  enable_notifications?: boolean;
21492
22227
  customer: string;
21493
22228
  image?: (Blob | File) | null;
22229
+ /**
22230
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22231
+ */
22232
+ allowed_domains?: unknown;
21494
22233
  };
21495
22234
  export type ServiceProviderRevenues = {
21496
22235
  /**
@@ -21705,6 +22444,7 @@ export type SlurmAllocation = {
21705
22444
  readonly is_active?: boolean;
21706
22445
  readonly marketplace_offering_uuid?: string | null;
21707
22446
  readonly marketplace_offering_name?: string | null;
22447
+ readonly marketplace_offering_type?: string | null;
21708
22448
  readonly marketplace_offering_plugin_options?: {
21709
22449
  [key: string]: unknown;
21710
22450
  } | null;
@@ -22207,10 +22947,7 @@ export type SoftwarePackage = {
22207
22947
  * Whether this package is an extension of another package
22208
22948
  */
22209
22949
  is_extension?: boolean;
22210
- /**
22211
- * Parent package for extensions (e.g., Python package within Python)
22212
- */
22213
- parent_software?: string | null;
22950
+ readonly parent_softwares: Array<NestedParentSoftware>;
22214
22951
  readonly catalog_name: string;
22215
22952
  readonly catalog_version: string;
22216
22953
  readonly catalog_type: string;
@@ -22240,10 +22977,6 @@ export type SoftwarePackageRequest = {
22240
22977
  * Whether this package is an extension of another package
22241
22978
  */
22242
22979
  is_extension?: boolean;
22243
- /**
22244
- * Parent package for extensions (e.g., Python package within Python)
22245
- */
22246
- parent_software?: string | null;
22247
22980
  };
22248
22981
  export type SoftwareTarget = {
22249
22982
  readonly url: string;
@@ -22944,6 +23677,26 @@ export type UpdateActionsResponse = {
22944
23677
  message: string;
22945
23678
  provider_action_type?: string | null;
22946
23679
  };
23680
+ export type UpdateHealthMonitor = {
23681
+ name?: string;
23682
+ delay?: number;
23683
+ timeout?: number;
23684
+ max_retries?: number;
23685
+ };
23686
+ export type UpdateHealthMonitorRequest = {
23687
+ name?: string;
23688
+ delay?: number;
23689
+ timeout?: number;
23690
+ max_retries?: number;
23691
+ };
23692
+ export type UpdateListener = {
23693
+ name?: string;
23694
+ default_pool?: string | null;
23695
+ };
23696
+ export type UpdateListenerRequest = {
23697
+ name?: string;
23698
+ default_pool?: string | null;
23699
+ };
22947
23700
  export type UpdateOfferingComponentRequest = {
22948
23701
  uuid: string;
22949
23702
  billing_type: BillingTypeEnum;
@@ -22977,6 +23730,14 @@ export type UpdateOfferingComponentRequest = {
22977
23730
  min_prepaid_duration?: number | null;
22978
23731
  max_prepaid_duration?: number | null;
22979
23732
  };
23733
+ export type UpdatePoolMember = {
23734
+ name?: string;
23735
+ weight?: number;
23736
+ };
23737
+ export type UpdatePoolMemberRequest = {
23738
+ name?: string;
23739
+ weight?: number;
23740
+ };
22980
23741
  export type UrgencyEnum = 'low' | 'medium' | 'high';
22981
23742
  export type User = {
22982
23743
  readonly url?: string;
@@ -23684,6 +24445,7 @@ export type VmwareDisk = {
23684
24445
  readonly vm_name?: string;
23685
24446
  readonly marketplace_offering_uuid?: string | null;
23686
24447
  readonly marketplace_offering_name?: string | null;
24448
+ readonly marketplace_offering_type?: string | null;
23687
24449
  readonly marketplace_offering_plugin_options?: {
23688
24450
  [key: string]: unknown;
23689
24451
  } | null;
@@ -23797,6 +24559,7 @@ export type VmwarePort = {
23797
24559
  readonly network_name?: string;
23798
24560
  readonly marketplace_offering_uuid?: string | null;
23799
24561
  readonly marketplace_offering_name?: string | null;
24562
+ readonly marketplace_offering_type?: string | null;
23800
24563
  readonly marketplace_offering_plugin_options?: {
23801
24564
  [key: string]: unknown;
23802
24565
  } | null;
@@ -23903,6 +24666,7 @@ export type VmwareVirtualMachine = {
23903
24666
  readonly tools_installed?: boolean;
23904
24667
  readonly marketplace_offering_uuid?: string | null;
23905
24668
  readonly marketplace_offering_name?: string | null;
24669
+ readonly marketplace_offering_type?: string | null;
23906
24670
  readonly marketplace_offering_plugin_options?: {
23907
24671
  [key: string]: unknown;
23908
24672
  } | null;
@@ -24848,22 +25612,38 @@ export type ServiceProviderRequestForm = {
24848
25612
  enable_notifications?: boolean;
24849
25613
  customer: string;
24850
25614
  image?: (Blob | File) | null;
25615
+ /**
25616
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25617
+ */
25618
+ allowed_domains?: unknown;
24851
25619
  };
24852
25620
  export type ServiceProviderRequestMultipart = {
24853
25621
  description?: string;
24854
25622
  enable_notifications?: boolean;
24855
25623
  customer: string;
24856
25624
  image?: (Blob | File) | null;
25625
+ /**
25626
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25627
+ */
25628
+ allowed_domains?: unknown;
24857
25629
  };
24858
25630
  export type PatchedServiceProviderRequestForm = {
24859
25631
  description?: string;
24860
25632
  enable_notifications?: boolean;
24861
25633
  image?: (Blob | File) | null;
25634
+ /**
25635
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25636
+ */
25637
+ allowed_domains?: unknown;
24862
25638
  };
24863
25639
  export type PatchedServiceProviderRequestMultipart = {
24864
25640
  description?: string;
24865
25641
  enable_notifications?: boolean;
24866
25642
  image?: (Blob | File) | null;
25643
+ /**
25644
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25645
+ */
25646
+ allowed_domains?: unknown;
24867
25647
  };
24868
25648
  export type OnboardingJustificationDocumentationRequestForm = {
24869
25649
  /**
@@ -25241,6 +26021,7 @@ export type ConstanceSettingsRequestForm = {
25241
26021
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25242
26022
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25243
26023
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26024
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25244
26025
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25245
26026
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25246
26027
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25485,6 +26266,7 @@ export type ConstanceSettingsRequestMultipart = {
25485
26266
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25486
26267
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25487
26268
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26269
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25488
26270
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25489
26271
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25490
26272
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -25977,13 +26759,13 @@ export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created'
25977
26759
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
25978
26760
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
25979
26761
  export type AssignmentItemOEnum = '-affinity_score' | '-created' | '-responded_at' | '-status' | 'affinity_score' | 'created' | 'responded_at' | 'status';
25980
- 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';
25981
- 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';
25982
- 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';
25983
- 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';
25984
- 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';
25985
- 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';
25986
- 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';
26762
+ 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';
26763
+ 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';
26764
+ 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';
26765
+ 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';
26766
+ 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';
26767
+ 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';
26768
+ 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';
25987
26769
  export type BackendResourceReqOEnum = '-created' | 'created';
25988
26770
  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';
25989
26771
  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';
@@ -26007,12 +26789,12 @@ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_
26007
26789
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
26008
26790
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
26009
26791
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
26010
- 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';
26792
+ 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';
26011
26793
  export type DigitalOceanImageOEnum = '-distribution' | '-type' | 'distribution' | 'type';
26012
26794
  export type EmailLogOEnum = '-sent_at' | '-subject' | 'sent_at' | 'subject';
26013
26795
  export type EventFieldEnum = 'context' | 'created' | 'event_type' | 'message' | 'uuid';
26014
26796
  export type ExpertiseCategoryOEnum = '-code' | '-level' | '-name' | 'code' | 'level' | 'name';
26015
- 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';
26797
+ 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';
26016
26798
  export type WebHookContentTypeEnum1 = 1 | 2;
26017
26799
  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';
26018
26800
  export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month' | 'year';
@@ -26050,7 +26832,7 @@ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy'
26050
26832
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26051
26833
  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';
26052
26834
  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';
26053
- 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';
26835
+ 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';
26054
26836
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
26055
26837
  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';
26056
26838
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
@@ -26063,6 +26845,7 @@ export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' |
26063
26845
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
26064
26846
  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';
26065
26847
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
26848
+ export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
26066
26849
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
26067
26850
  export type OnboardingJustificationOEnum = '-created' | '-modified' | '-validated_at' | 'created' | 'modified' | 'validated_at';
26068
26851
  export type OnboardingJustificationValidationDecisionEnum = 'Approved' | 'Pending Review' | 'Rejected';
@@ -26071,25 +26854,30 @@ export type OnboardingVerificationStatusEnum1 = 'Escalated for manual validation
26071
26854
  export type OnboardingVerificationValidationMethodEnum = 'Austrian Business Register (WirtschaftsCompass)' | 'Estonian Business Register (ariregister)' | 'Norwegian Business Register (Brreg)' | 'Swedish Business Register (Bolagsverket)';
26072
26855
  export type ChecklistResponseChecklistTypeEnum = 'customer' | 'intent';
26073
26856
  export type AvailableChecklistsResponseChecklistTypeEnum = 'customer' | 'intent' | 'all';
26074
- 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';
26075
- 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';
26076
- 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';
26857
+ 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';
26858
+ 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';
26859
+ 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';
26077
26860
  export type ExternalNetworkFieldEnum = 'backend_id' | 'description' | 'is_default' | 'is_shared' | 'name' | 'settings' | 'status' | 'subnets' | 'url' | 'uuid';
26078
26861
  export type OpenStackFlavorFieldEnum = 'backend_id' | 'cores' | 'disk' | 'display_name' | 'name' | 'ram' | 'settings' | 'url' | 'uuid';
26079
26862
  export type OpenStackFlavorOEnum = '-cores' | '-disk' | '-ram' | 'cores' | 'disk' | 'ram';
26080
- 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';
26081
- 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';
26863
+ 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';
26864
+ 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';
26865
+ 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';
26082
26866
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
26083
- 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';
26084
- 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';
26867
+ 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';
26868
+ 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';
26869
+ 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';
26870
+ 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';
26871
+ 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';
26872
+ 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';
26085
26873
  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';
26086
- 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';
26087
- 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';
26088
- 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';
26089
- 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';
26090
- 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';
26091
- 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';
26092
- 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';
26874
+ 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';
26875
+ 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';
26876
+ 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';
26877
+ 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';
26878
+ 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';
26879
+ 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';
26880
+ 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';
26093
26881
  export type PaymentProfileOEnum = '-is_active' | '-name' | '-payment_type' | 'is_active' | 'name' | 'payment_type';
26094
26882
  export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-project_name' | '-value' | 'end_date' | 'expected_consumption' | 'project_name' | 'value';
26095
26883
  export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
@@ -26103,12 +26891,12 @@ export type ProviderRequestedOfferingOEnum = '-call__name' | '-created' | '-offe
26103
26891
  export type ProviderRequestedResourceOEnum = '-created' | '-offering__name' | '-proposal__name' | '-resource__name' | 'created' | 'offering__name' | 'proposal__name' | 'resource__name';
26104
26892
  export type ProposalReviewOEnum = '-created' | '-state' | 'created' | 'state';
26105
26893
  export type InvoiceItemOEnum1 = '-invoice_customer_name' | '-project_name' | '-resource_offering_name' | '-unit_price' | 'invoice_customer_name' | 'project_name' | 'resource_offering_name' | 'unit_price';
26106
- 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';
26107
- 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';
26108
- 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';
26894
+ 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';
26895
+ 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';
26896
+ 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';
26109
26897
  export type RancherNamespaceOEnum = '-cluster_name' | '-name' | '-project_name' | 'cluster_name' | 'name' | 'project_name';
26110
26898
  export type RoleTemplateOEnum = '-name' | '-scope_type' | 'name' | 'scope_type';
26111
- 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';
26899
+ 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';
26112
26900
  export type RancherTemplateOEnum = '-catalog_name' | '-name' | 'catalog_name' | 'name';
26113
26901
  export type RancherWorkloadOEnum = '-cluster_name' | '-name' | '-namespace_name' | '-project_name' | 'cluster_name' | 'name' | 'namespace_name' | 'project_name';
26114
26902
  export type ReviewerBidOEnum = '-bid' | '-modified_at' | '-submitted_at' | 'bid' | 'modified_at' | 'submitted_at';
@@ -26116,16 +26904,16 @@ export type ReviewerProfileOEnum = '-created' | '-user_email' | '-user_name' | '
26116
26904
  export type ReviewerSuggestionOEnum = '-affinity_score' | '-created' | '-reviewed_at' | '-status' | 'affinity_score' | 'created' | 'reviewed_at' | 'status';
26117
26905
  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';
26118
26906
  export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_native_name' | 'error_message' | 'name' | 'options' | 'scope' | 'scope_uuid' | 'shared' | 'state' | 'terms_of_services' | 'type' | 'url' | 'uuid';
26119
- 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';
26907
+ 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';
26120
26908
  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';
26121
26909
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
26122
26910
  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';
26123
26911
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
26124
26912
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
26125
26913
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
26126
- 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';
26127
- 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';
26128
- 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';
26914
+ 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';
26915
+ 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';
26916
+ 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';
26129
26917
  /**
26130
26918
  * A page number within the paginated result set.
26131
26919
  */
@@ -53350,6 +54138,318 @@ export type MarketplaceStatsOfferingsCounterStatsCountResponses = {
53350
54138
  */
53351
54139
  200: unknown;
53352
54140
  };
54141
+ export type MarketplaceStatsOpenstackInstancesListData = {
54142
+ body?: never;
54143
+ path?: never;
54144
+ query?: {
54145
+ /**
54146
+ * Filter by availability zone name.
54147
+ */
54148
+ availability_zone_name?: string;
54149
+ /**
54150
+ * Maximum number of vCPUs.
54151
+ */
54152
+ cores_max?: number;
54153
+ /**
54154
+ * Minimum number of vCPUs.
54155
+ */
54156
+ cores_min?: number;
54157
+ /**
54158
+ * Filter by customer UUID.
54159
+ */
54160
+ customer_uuid?: string;
54161
+ /**
54162
+ * Maximum disk in MiB.
54163
+ */
54164
+ disk_max?: number;
54165
+ /**
54166
+ * Minimum disk in MiB.
54167
+ */
54168
+ disk_min?: number;
54169
+ /**
54170
+ * Filter by flavor name (case-insensitive partial match).
54171
+ */
54172
+ flavor_name?: string;
54173
+ /**
54174
+ * Filter by hypervisor hostname (case-insensitive partial match).
54175
+ */
54176
+ hypervisor_hostname?: string;
54177
+ /**
54178
+ * Filter by image name (case-insensitive partial match).
54179
+ */
54180
+ image_name?: string;
54181
+ /**
54182
+ * Filter by instance name (case-insensitive partial match).
54183
+ */
54184
+ name?: string;
54185
+ /**
54186
+ * 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.
54187
+ */
54188
+ o?: string;
54189
+ /**
54190
+ * A page number within the paginated result set.
54191
+ */
54192
+ page?: number;
54193
+ /**
54194
+ * Number of results to return per page.
54195
+ */
54196
+ page_size?: number;
54197
+ /**
54198
+ * Filter by project UUID.
54199
+ */
54200
+ project_uuid?: string;
54201
+ /**
54202
+ * Maximum RAM in MiB.
54203
+ */
54204
+ ram_max?: number;
54205
+ /**
54206
+ * Minimum RAM in MiB.
54207
+ */
54208
+ ram_min?: number;
54209
+ /**
54210
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54211
+ */
54212
+ runtime_state?: string;
54213
+ /**
54214
+ * Filter by cluster (service settings) UUID.
54215
+ */
54216
+ service_settings_uuid?: string;
54217
+ /**
54218
+ * Filter by provisioning state (e.g. OK, ERRED). Supports multiple values.
54219
+ */
54220
+ state?: string;
54221
+ /**
54222
+ * Filter by tenant UUID.
54223
+ */
54224
+ tenant_uuid?: string;
54225
+ };
54226
+ url: '/api/marketplace-stats/openstack_instances/';
54227
+ };
54228
+ export type MarketplaceStatsOpenstackInstancesListResponses = {
54229
+ 200: Array<OpenStackInstanceReport>;
54230
+ };
54231
+ export type MarketplaceStatsOpenstackInstancesListResponse = MarketplaceStatsOpenstackInstancesListResponses[keyof MarketplaceStatsOpenstackInstancesListResponses];
54232
+ export type MarketplaceStatsOpenstackInstancesCountData = {
54233
+ body?: never;
54234
+ path?: never;
54235
+ query?: {
54236
+ /**
54237
+ * Filter by availability zone name.
54238
+ */
54239
+ availability_zone_name?: string;
54240
+ /**
54241
+ * Maximum number of vCPUs.
54242
+ */
54243
+ cores_max?: number;
54244
+ /**
54245
+ * Minimum number of vCPUs.
54246
+ */
54247
+ cores_min?: number;
54248
+ /**
54249
+ * Filter by customer UUID.
54250
+ */
54251
+ customer_uuid?: string;
54252
+ /**
54253
+ * Maximum disk in MiB.
54254
+ */
54255
+ disk_max?: number;
54256
+ /**
54257
+ * Minimum disk in MiB.
54258
+ */
54259
+ disk_min?: number;
54260
+ /**
54261
+ * Filter by flavor name (case-insensitive partial match).
54262
+ */
54263
+ flavor_name?: string;
54264
+ /**
54265
+ * Filter by hypervisor hostname (case-insensitive partial match).
54266
+ */
54267
+ hypervisor_hostname?: string;
54268
+ /**
54269
+ * Filter by image name (case-insensitive partial match).
54270
+ */
54271
+ image_name?: string;
54272
+ /**
54273
+ * Filter by instance name (case-insensitive partial match).
54274
+ */
54275
+ name?: string;
54276
+ /**
54277
+ * 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.
54278
+ */
54279
+ o?: string;
54280
+ /**
54281
+ * A page number within the paginated result set.
54282
+ */
54283
+ page?: number;
54284
+ /**
54285
+ * Number of results to return per page.
54286
+ */
54287
+ page_size?: number;
54288
+ /**
54289
+ * Filter by project UUID.
54290
+ */
54291
+ project_uuid?: string;
54292
+ /**
54293
+ * Maximum RAM in MiB.
54294
+ */
54295
+ ram_max?: number;
54296
+ /**
54297
+ * Minimum RAM in MiB.
54298
+ */
54299
+ ram_min?: number;
54300
+ /**
54301
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54302
+ */
54303
+ runtime_state?: string;
54304
+ /**
54305
+ * Filter by cluster (service settings) UUID.
54306
+ */
54307
+ service_settings_uuid?: string;
54308
+ /**
54309
+ * Filter by provisioning state (e.g. OK, ERRED). Supports multiple values.
54310
+ */
54311
+ state?: string;
54312
+ /**
54313
+ * Filter by tenant UUID.
54314
+ */
54315
+ tenant_uuid?: string;
54316
+ };
54317
+ url: '/api/marketplace-stats/openstack_instances/';
54318
+ };
54319
+ export type MarketplaceStatsOpenstackInstancesCountResponses = {
54320
+ /**
54321
+ * No response body
54322
+ */
54323
+ 200: unknown;
54324
+ };
54325
+ export type MarketplaceStatsOpenstackInstancesAggregateListData = {
54326
+ body?: never;
54327
+ path?: never;
54328
+ query: {
54329
+ /**
54330
+ * Filter by customer UUID.
54331
+ */
54332
+ customer_uuid?: string;
54333
+ /**
54334
+ * Filter by flavor name (case-insensitive partial match).
54335
+ */
54336
+ flavor_name?: string;
54337
+ /**
54338
+ * Dimension to group by.
54339
+ */
54340
+ group_by: OpenStackInstanceAggregateGroupByEnum;
54341
+ /**
54342
+ * Filter by hypervisor hostname (case-insensitive partial match).
54343
+ */
54344
+ hypervisor_hostname?: string;
54345
+ /**
54346
+ * Filter by image name (case-insensitive partial match).
54347
+ */
54348
+ image_name?: string;
54349
+ /**
54350
+ * Filter by instance name (case-insensitive partial match).
54351
+ */
54352
+ name?: string;
54353
+ /**
54354
+ * A page number within the paginated result set.
54355
+ */
54356
+ page?: number;
54357
+ /**
54358
+ * Number of results to return per page.
54359
+ */
54360
+ page_size?: number;
54361
+ /**
54362
+ * Filter by project UUID.
54363
+ */
54364
+ project_uuid?: string;
54365
+ /**
54366
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54367
+ */
54368
+ runtime_state?: string;
54369
+ /**
54370
+ * Filter by cluster (service settings) UUID.
54371
+ */
54372
+ service_settings_uuid?: string;
54373
+ /**
54374
+ * Filter by provisioning state (e.g. OK, ERRED).
54375
+ */
54376
+ state?: string;
54377
+ /**
54378
+ * Filter by tenant UUID.
54379
+ */
54380
+ tenant_uuid?: string;
54381
+ };
54382
+ url: '/api/marketplace-stats/openstack_instances_aggregate/';
54383
+ };
54384
+ export type MarketplaceStatsOpenstackInstancesAggregateListResponses = {
54385
+ 200: Array<OpenStackInstanceAggregate>;
54386
+ };
54387
+ export type MarketplaceStatsOpenstackInstancesAggregateListResponse = MarketplaceStatsOpenstackInstancesAggregateListResponses[keyof MarketplaceStatsOpenstackInstancesAggregateListResponses];
54388
+ export type MarketplaceStatsOpenstackInstancesAggregateCountData = {
54389
+ body?: never;
54390
+ path?: never;
54391
+ query: {
54392
+ /**
54393
+ * Filter by customer UUID.
54394
+ */
54395
+ customer_uuid?: string;
54396
+ /**
54397
+ * Filter by flavor name (case-insensitive partial match).
54398
+ */
54399
+ flavor_name?: string;
54400
+ /**
54401
+ * Dimension to group by.
54402
+ */
54403
+ group_by: OpenStackInstanceAggregateGroupByEnum;
54404
+ /**
54405
+ * Filter by hypervisor hostname (case-insensitive partial match).
54406
+ */
54407
+ hypervisor_hostname?: string;
54408
+ /**
54409
+ * Filter by image name (case-insensitive partial match).
54410
+ */
54411
+ image_name?: string;
54412
+ /**
54413
+ * Filter by instance name (case-insensitive partial match).
54414
+ */
54415
+ name?: string;
54416
+ /**
54417
+ * A page number within the paginated result set.
54418
+ */
54419
+ page?: number;
54420
+ /**
54421
+ * Number of results to return per page.
54422
+ */
54423
+ page_size?: number;
54424
+ /**
54425
+ * Filter by project UUID.
54426
+ */
54427
+ project_uuid?: string;
54428
+ /**
54429
+ * Filter by runtime state (e.g. ACTIVE, SHUTOFF).
54430
+ */
54431
+ runtime_state?: string;
54432
+ /**
54433
+ * Filter by cluster (service settings) UUID.
54434
+ */
54435
+ service_settings_uuid?: string;
54436
+ /**
54437
+ * Filter by provisioning state (e.g. OK, ERRED).
54438
+ */
54439
+ state?: string;
54440
+ /**
54441
+ * Filter by tenant UUID.
54442
+ */
54443
+ tenant_uuid?: string;
54444
+ };
54445
+ url: '/api/marketplace-stats/openstack_instances_aggregate/';
54446
+ };
54447
+ export type MarketplaceStatsOpenstackInstancesAggregateCountResponses = {
54448
+ /**
54449
+ * No response body
54450
+ */
54451
+ 200: unknown;
54452
+ };
53353
54453
  export type MarketplaceStatsOrderStatsRetrieveData = {
53354
54454
  body?: never;
53355
54455
  path?: never;
@@ -58899,6 +59999,170 @@ export type OpenstackFloatingIpsUpdateDescriptionResponses = {
58899
59999
  */
58900
60000
  200: unknown;
58901
60001
  };
60002
+ export type OpenstackHealthMonitorsListData = {
60003
+ body?: never;
60004
+ path?: never;
60005
+ query?: {
60006
+ field?: Array<OpenStackHealthMonitorFieldEnum>;
60007
+ /**
60008
+ * Load balancer UUID
60009
+ */
60010
+ load_balancer_uuid?: string;
60011
+ /**
60012
+ * Name
60013
+ */
60014
+ name?: string;
60015
+ /**
60016
+ * Name (exact)
60017
+ */
60018
+ name_exact?: string;
60019
+ /**
60020
+ * A page number within the paginated result set.
60021
+ */
60022
+ page?: number;
60023
+ /**
60024
+ * Number of results to return per page.
60025
+ */
60026
+ page_size?: number;
60027
+ /**
60028
+ * Pool URL
60029
+ */
60030
+ pool?: string;
60031
+ /**
60032
+ * Pool UUID
60033
+ */
60034
+ pool_uuid?: string;
60035
+ /**
60036
+ * State
60037
+ *
60038
+ *
60039
+ */
60040
+ state?: Array<CoreStates>;
60041
+ /**
60042
+ * Tenant UUID
60043
+ */
60044
+ tenant_uuid?: string;
60045
+ };
60046
+ url: '/api/openstack-health-monitors/';
60047
+ };
60048
+ export type OpenstackHealthMonitorsListResponses = {
60049
+ 200: Array<OpenStackHealthMonitor>;
60050
+ };
60051
+ export type OpenstackHealthMonitorsListResponse = OpenstackHealthMonitorsListResponses[keyof OpenstackHealthMonitorsListResponses];
60052
+ export type OpenstackHealthMonitorsCountData = {
60053
+ body?: never;
60054
+ path?: never;
60055
+ query?: {
60056
+ /**
60057
+ * Load balancer UUID
60058
+ */
60059
+ load_balancer_uuid?: string;
60060
+ /**
60061
+ * Name
60062
+ */
60063
+ name?: string;
60064
+ /**
60065
+ * Name (exact)
60066
+ */
60067
+ name_exact?: string;
60068
+ /**
60069
+ * A page number within the paginated result set.
60070
+ */
60071
+ page?: number;
60072
+ /**
60073
+ * Number of results to return per page.
60074
+ */
60075
+ page_size?: number;
60076
+ /**
60077
+ * Pool URL
60078
+ */
60079
+ pool?: string;
60080
+ /**
60081
+ * Pool UUID
60082
+ */
60083
+ pool_uuid?: string;
60084
+ /**
60085
+ * State
60086
+ *
60087
+ *
60088
+ */
60089
+ state?: Array<CoreStates>;
60090
+ /**
60091
+ * Tenant UUID
60092
+ */
60093
+ tenant_uuid?: string;
60094
+ };
60095
+ url: '/api/openstack-health-monitors/';
60096
+ };
60097
+ export type OpenstackHealthMonitorsCountResponses = {
60098
+ /**
60099
+ * No response body
60100
+ */
60101
+ 200: unknown;
60102
+ };
60103
+ export type OpenstackHealthMonitorsCreateData = {
60104
+ body: CreateHealthMonitorRequest;
60105
+ path?: never;
60106
+ query?: never;
60107
+ url: '/api/openstack-health-monitors/';
60108
+ };
60109
+ export type OpenstackHealthMonitorsCreateResponses = {
60110
+ 201: CreateHealthMonitor;
60111
+ };
60112
+ export type OpenstackHealthMonitorsCreateResponse = OpenstackHealthMonitorsCreateResponses[keyof OpenstackHealthMonitorsCreateResponses];
60113
+ export type OpenstackHealthMonitorsDestroyData = {
60114
+ body?: never;
60115
+ path: {
60116
+ uuid: string;
60117
+ };
60118
+ query?: never;
60119
+ url: '/api/openstack-health-monitors/{uuid}/';
60120
+ };
60121
+ export type OpenstackHealthMonitorsDestroyResponses = {
60122
+ /**
60123
+ * No response body
60124
+ */
60125
+ 204: void;
60126
+ };
60127
+ export type OpenstackHealthMonitorsDestroyResponse = OpenstackHealthMonitorsDestroyResponses[keyof OpenstackHealthMonitorsDestroyResponses];
60128
+ export type OpenstackHealthMonitorsRetrieveData = {
60129
+ body?: never;
60130
+ path: {
60131
+ uuid: string;
60132
+ };
60133
+ query?: {
60134
+ field?: Array<OpenStackHealthMonitorFieldEnum>;
60135
+ };
60136
+ url: '/api/openstack-health-monitors/{uuid}/';
60137
+ };
60138
+ export type OpenstackHealthMonitorsRetrieveResponses = {
60139
+ 200: OpenStackHealthMonitor;
60140
+ };
60141
+ export type OpenstackHealthMonitorsRetrieveResponse = OpenstackHealthMonitorsRetrieveResponses[keyof OpenstackHealthMonitorsRetrieveResponses];
60142
+ export type OpenstackHealthMonitorsPartialUpdateData = {
60143
+ body?: PatchedUpdateHealthMonitorRequest;
60144
+ path: {
60145
+ uuid: string;
60146
+ };
60147
+ query?: never;
60148
+ url: '/api/openstack-health-monitors/{uuid}/';
60149
+ };
60150
+ export type OpenstackHealthMonitorsPartialUpdateResponses = {
60151
+ 200: UpdateHealthMonitor;
60152
+ };
60153
+ export type OpenstackHealthMonitorsPartialUpdateResponse = OpenstackHealthMonitorsPartialUpdateResponses[keyof OpenstackHealthMonitorsPartialUpdateResponses];
60154
+ export type OpenstackHealthMonitorsUpdateData = {
60155
+ body?: UpdateHealthMonitorRequest;
60156
+ path: {
60157
+ uuid: string;
60158
+ };
60159
+ query?: never;
60160
+ url: '/api/openstack-health-monitors/{uuid}/';
60161
+ };
60162
+ export type OpenstackHealthMonitorsUpdateResponses = {
60163
+ 200: UpdateHealthMonitor;
60164
+ };
60165
+ export type OpenstackHealthMonitorsUpdateResponse = OpenstackHealthMonitorsUpdateResponses[keyof OpenstackHealthMonitorsUpdateResponses];
58902
60166
  export type OpenstackImagesListData = {
58903
60167
  body?: never;
58904
60168
  path?: never;
@@ -59661,6 +60925,352 @@ export type OpenstackInstancesUpdateSecurityGroupsResponses = {
59661
60925
  */
59662
60926
  200: unknown;
59663
60927
  };
60928
+ export type OpenstackListenersListData = {
60929
+ body?: never;
60930
+ path?: never;
60931
+ query?: {
60932
+ field?: Array<OpenStackListenerFieldEnum>;
60933
+ /**
60934
+ * Load balancer URL
60935
+ */
60936
+ load_balancer?: string;
60937
+ /**
60938
+ * Load balancer UUID
60939
+ */
60940
+ load_balancer_uuid?: string;
60941
+ /**
60942
+ * Name
60943
+ */
60944
+ name?: string;
60945
+ /**
60946
+ * Name (exact)
60947
+ */
60948
+ name_exact?: string;
60949
+ /**
60950
+ * A page number within the paginated result set.
60951
+ */
60952
+ page?: number;
60953
+ /**
60954
+ * Number of results to return per page.
60955
+ */
60956
+ page_size?: number;
60957
+ /**
60958
+ * State
60959
+ *
60960
+ *
60961
+ */
60962
+ state?: Array<CoreStates>;
60963
+ /**
60964
+ * Tenant UUID
60965
+ */
60966
+ tenant_uuid?: string;
60967
+ };
60968
+ url: '/api/openstack-listeners/';
60969
+ };
60970
+ export type OpenstackListenersListResponses = {
60971
+ 200: Array<OpenStackListener>;
60972
+ };
60973
+ export type OpenstackListenersListResponse = OpenstackListenersListResponses[keyof OpenstackListenersListResponses];
60974
+ export type OpenstackListenersCountData = {
60975
+ body?: never;
60976
+ path?: never;
60977
+ query?: {
60978
+ /**
60979
+ * Load balancer URL
60980
+ */
60981
+ load_balancer?: string;
60982
+ /**
60983
+ * Load balancer UUID
60984
+ */
60985
+ load_balancer_uuid?: string;
60986
+ /**
60987
+ * Name
60988
+ */
60989
+ name?: string;
60990
+ /**
60991
+ * Name (exact)
60992
+ */
60993
+ name_exact?: string;
60994
+ /**
60995
+ * A page number within the paginated result set.
60996
+ */
60997
+ page?: number;
60998
+ /**
60999
+ * Number of results to return per page.
61000
+ */
61001
+ page_size?: number;
61002
+ /**
61003
+ * State
61004
+ *
61005
+ *
61006
+ */
61007
+ state?: Array<CoreStates>;
61008
+ /**
61009
+ * Tenant UUID
61010
+ */
61011
+ tenant_uuid?: string;
61012
+ };
61013
+ url: '/api/openstack-listeners/';
61014
+ };
61015
+ export type OpenstackListenersCountResponses = {
61016
+ /**
61017
+ * No response body
61018
+ */
61019
+ 200: unknown;
61020
+ };
61021
+ export type OpenstackListenersCreateData = {
61022
+ body: CreateListenerRequest;
61023
+ path?: never;
61024
+ query?: never;
61025
+ url: '/api/openstack-listeners/';
61026
+ };
61027
+ export type OpenstackListenersCreateResponses = {
61028
+ 201: CreateListener;
61029
+ };
61030
+ export type OpenstackListenersCreateResponse = OpenstackListenersCreateResponses[keyof OpenstackListenersCreateResponses];
61031
+ export type OpenstackListenersDestroyData = {
61032
+ body?: never;
61033
+ path: {
61034
+ uuid: string;
61035
+ };
61036
+ query?: never;
61037
+ url: '/api/openstack-listeners/{uuid}/';
61038
+ };
61039
+ export type OpenstackListenersDestroyResponses = {
61040
+ /**
61041
+ * No response body
61042
+ */
61043
+ 204: void;
61044
+ };
61045
+ export type OpenstackListenersDestroyResponse = OpenstackListenersDestroyResponses[keyof OpenstackListenersDestroyResponses];
61046
+ export type OpenstackListenersRetrieveData = {
61047
+ body?: never;
61048
+ path: {
61049
+ uuid: string;
61050
+ };
61051
+ query?: {
61052
+ field?: Array<OpenStackListenerFieldEnum>;
61053
+ };
61054
+ url: '/api/openstack-listeners/{uuid}/';
61055
+ };
61056
+ export type OpenstackListenersRetrieveResponses = {
61057
+ 200: OpenStackListener;
61058
+ };
61059
+ export type OpenstackListenersRetrieveResponse = OpenstackListenersRetrieveResponses[keyof OpenstackListenersRetrieveResponses];
61060
+ export type OpenstackListenersPartialUpdateData = {
61061
+ body?: PatchedUpdateListenerRequest;
61062
+ path: {
61063
+ uuid: string;
61064
+ };
61065
+ query?: never;
61066
+ url: '/api/openstack-listeners/{uuid}/';
61067
+ };
61068
+ export type OpenstackListenersPartialUpdateResponses = {
61069
+ 200: UpdateListener;
61070
+ };
61071
+ export type OpenstackListenersPartialUpdateResponse = OpenstackListenersPartialUpdateResponses[keyof OpenstackListenersPartialUpdateResponses];
61072
+ export type OpenstackListenersUpdateData = {
61073
+ body?: UpdateListenerRequest;
61074
+ path: {
61075
+ uuid: string;
61076
+ };
61077
+ query?: never;
61078
+ url: '/api/openstack-listeners/{uuid}/';
61079
+ };
61080
+ export type OpenstackListenersUpdateResponses = {
61081
+ 200: UpdateListener;
61082
+ };
61083
+ export type OpenstackListenersUpdateResponse = OpenstackListenersUpdateResponses[keyof OpenstackListenersUpdateResponses];
61084
+ export type OpenstackLoadbalancersListData = {
61085
+ body?: never;
61086
+ path?: never;
61087
+ query?: {
61088
+ field?: Array<OpenStackLoadBalancerFieldEnum>;
61089
+ /**
61090
+ * Name
61091
+ */
61092
+ name?: string;
61093
+ /**
61094
+ * Name (exact)
61095
+ */
61096
+ name_exact?: string;
61097
+ /**
61098
+ * A page number within the paginated result set.
61099
+ */
61100
+ page?: number;
61101
+ /**
61102
+ * Number of results to return per page.
61103
+ */
61104
+ page_size?: number;
61105
+ /**
61106
+ * State
61107
+ *
61108
+ *
61109
+ */
61110
+ state?: Array<CoreStates>;
61111
+ /**
61112
+ * Tenant URL
61113
+ */
61114
+ tenant?: string;
61115
+ /**
61116
+ * Tenant UUID
61117
+ */
61118
+ tenant_uuid?: string;
61119
+ };
61120
+ url: '/api/openstack-loadbalancers/';
61121
+ };
61122
+ export type OpenstackLoadbalancersListResponses = {
61123
+ 200: Array<OpenStackLoadBalancer>;
61124
+ };
61125
+ export type OpenstackLoadbalancersListResponse = OpenstackLoadbalancersListResponses[keyof OpenstackLoadbalancersListResponses];
61126
+ export type OpenstackLoadbalancersCountData = {
61127
+ body?: never;
61128
+ path?: never;
61129
+ query?: {
61130
+ /**
61131
+ * Name
61132
+ */
61133
+ name?: string;
61134
+ /**
61135
+ * Name (exact)
61136
+ */
61137
+ name_exact?: string;
61138
+ /**
61139
+ * A page number within the paginated result set.
61140
+ */
61141
+ page?: number;
61142
+ /**
61143
+ * Number of results to return per page.
61144
+ */
61145
+ page_size?: number;
61146
+ /**
61147
+ * State
61148
+ *
61149
+ *
61150
+ */
61151
+ state?: Array<CoreStates>;
61152
+ /**
61153
+ * Tenant URL
61154
+ */
61155
+ tenant?: string;
61156
+ /**
61157
+ * Tenant UUID
61158
+ */
61159
+ tenant_uuid?: string;
61160
+ };
61161
+ url: '/api/openstack-loadbalancers/';
61162
+ };
61163
+ export type OpenstackLoadbalancersCountResponses = {
61164
+ /**
61165
+ * No response body
61166
+ */
61167
+ 200: unknown;
61168
+ };
61169
+ export type OpenstackLoadbalancersCreateData = {
61170
+ body: CreateLoadBalancerRequest;
61171
+ path?: never;
61172
+ query?: never;
61173
+ url: '/api/openstack-loadbalancers/';
61174
+ };
61175
+ export type OpenstackLoadbalancersCreateResponses = {
61176
+ 201: CreateLoadBalancer;
61177
+ };
61178
+ export type OpenstackLoadbalancersCreateResponse = OpenstackLoadbalancersCreateResponses[keyof OpenstackLoadbalancersCreateResponses];
61179
+ export type OpenstackLoadbalancersDestroyData = {
61180
+ body?: never;
61181
+ path: {
61182
+ uuid: string;
61183
+ };
61184
+ query?: never;
61185
+ url: '/api/openstack-loadbalancers/{uuid}/';
61186
+ };
61187
+ export type OpenstackLoadbalancersDestroyResponses = {
61188
+ /**
61189
+ * No response body
61190
+ */
61191
+ 204: void;
61192
+ };
61193
+ export type OpenstackLoadbalancersDestroyResponse = OpenstackLoadbalancersDestroyResponses[keyof OpenstackLoadbalancersDestroyResponses];
61194
+ export type OpenstackLoadbalancersRetrieveData = {
61195
+ body?: never;
61196
+ path: {
61197
+ uuid: string;
61198
+ };
61199
+ query?: {
61200
+ field?: Array<OpenStackLoadBalancerFieldEnum>;
61201
+ };
61202
+ url: '/api/openstack-loadbalancers/{uuid}/';
61203
+ };
61204
+ export type OpenstackLoadbalancersRetrieveResponses = {
61205
+ 200: OpenStackLoadBalancer;
61206
+ };
61207
+ export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
61208
+ export type OpenstackLoadbalancersPartialUpdateData = {
61209
+ body?: PatchedOpenStackLoadBalancerRequest;
61210
+ path: {
61211
+ uuid: string;
61212
+ };
61213
+ query?: never;
61214
+ url: '/api/openstack-loadbalancers/{uuid}/';
61215
+ };
61216
+ export type OpenstackLoadbalancersPartialUpdateResponses = {
61217
+ 200: OpenStackLoadBalancer;
61218
+ };
61219
+ export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
61220
+ export type OpenstackLoadbalancersUpdateData = {
61221
+ body: OpenStackLoadBalancerRequest;
61222
+ path: {
61223
+ uuid: string;
61224
+ };
61225
+ query?: never;
61226
+ url: '/api/openstack-loadbalancers/{uuid}/';
61227
+ };
61228
+ export type OpenstackLoadbalancersUpdateResponses = {
61229
+ 200: OpenStackLoadBalancer;
61230
+ };
61231
+ export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
61232
+ export type OpenstackLoadbalancersAttachFloatingIpData = {
61233
+ body: LoadBalancerAttachFloatingIpRequest;
61234
+ path: {
61235
+ uuid: string;
61236
+ };
61237
+ query?: never;
61238
+ url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
61239
+ };
61240
+ export type OpenstackLoadbalancersAttachFloatingIpResponses = {
61241
+ /**
61242
+ * No response body
61243
+ */
61244
+ 200: unknown;
61245
+ };
61246
+ export type OpenstackLoadbalancersDetachFloatingIpData = {
61247
+ body?: never;
61248
+ path: {
61249
+ uuid: string;
61250
+ };
61251
+ query?: never;
61252
+ url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
61253
+ };
61254
+ export type OpenstackLoadbalancersDetachFloatingIpResponses = {
61255
+ /**
61256
+ * No response body
61257
+ */
61258
+ 200: unknown;
61259
+ };
61260
+ export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
61261
+ body: LoadBalancerUpdateVipSecurityGroupsRequest;
61262
+ path: {
61263
+ uuid: string;
61264
+ };
61265
+ query?: never;
61266
+ url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
61267
+ };
61268
+ export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
61269
+ /**
61270
+ * No response body
61271
+ */
61272
+ 200: unknown;
61273
+ };
59664
61274
  export type OpenstackMarketplaceTenantsListData = {
59665
61275
  body?: never;
59666
61276
  path?: never;
@@ -60540,6 +62150,326 @@ export type OpenstackNetworksUnlinkResponses = {
60540
62150
  204: void;
60541
62151
  };
60542
62152
  export type OpenstackNetworksUnlinkResponse = OpenstackNetworksUnlinkResponses[keyof OpenstackNetworksUnlinkResponses];
62153
+ export type OpenstackPoolMembersListData = {
62154
+ body?: never;
62155
+ path?: never;
62156
+ query?: {
62157
+ field?: Array<OpenStackPoolMemberFieldEnum>;
62158
+ /**
62159
+ * Load balancer UUID
62160
+ */
62161
+ load_balancer_uuid?: string;
62162
+ /**
62163
+ * Name
62164
+ */
62165
+ name?: string;
62166
+ /**
62167
+ * Name (exact)
62168
+ */
62169
+ name_exact?: string;
62170
+ /**
62171
+ * A page number within the paginated result set.
62172
+ */
62173
+ page?: number;
62174
+ /**
62175
+ * Number of results to return per page.
62176
+ */
62177
+ page_size?: number;
62178
+ /**
62179
+ * Pool URL
62180
+ */
62181
+ pool?: string;
62182
+ /**
62183
+ * Pool UUID
62184
+ */
62185
+ pool_uuid?: string;
62186
+ /**
62187
+ * State
62188
+ *
62189
+ *
62190
+ */
62191
+ state?: Array<CoreStates>;
62192
+ /**
62193
+ * Tenant UUID
62194
+ */
62195
+ tenant_uuid?: string;
62196
+ };
62197
+ url: '/api/openstack-pool-members/';
62198
+ };
62199
+ export type OpenstackPoolMembersListResponses = {
62200
+ 200: Array<OpenStackPoolMember>;
62201
+ };
62202
+ export type OpenstackPoolMembersListResponse = OpenstackPoolMembersListResponses[keyof OpenstackPoolMembersListResponses];
62203
+ export type OpenstackPoolMembersCountData = {
62204
+ body?: never;
62205
+ path?: never;
62206
+ query?: {
62207
+ /**
62208
+ * Load balancer UUID
62209
+ */
62210
+ load_balancer_uuid?: string;
62211
+ /**
62212
+ * Name
62213
+ */
62214
+ name?: string;
62215
+ /**
62216
+ * Name (exact)
62217
+ */
62218
+ name_exact?: string;
62219
+ /**
62220
+ * A page number within the paginated result set.
62221
+ */
62222
+ page?: number;
62223
+ /**
62224
+ * Number of results to return per page.
62225
+ */
62226
+ page_size?: number;
62227
+ /**
62228
+ * Pool URL
62229
+ */
62230
+ pool?: string;
62231
+ /**
62232
+ * Pool UUID
62233
+ */
62234
+ pool_uuid?: string;
62235
+ /**
62236
+ * State
62237
+ *
62238
+ *
62239
+ */
62240
+ state?: Array<CoreStates>;
62241
+ /**
62242
+ * Tenant UUID
62243
+ */
62244
+ tenant_uuid?: string;
62245
+ };
62246
+ url: '/api/openstack-pool-members/';
62247
+ };
62248
+ export type OpenstackPoolMembersCountResponses = {
62249
+ /**
62250
+ * No response body
62251
+ */
62252
+ 200: unknown;
62253
+ };
62254
+ export type OpenstackPoolMembersCreateData = {
62255
+ body: CreatePoolMemberRequest;
62256
+ path?: never;
62257
+ query?: never;
62258
+ url: '/api/openstack-pool-members/';
62259
+ };
62260
+ export type OpenstackPoolMembersCreateResponses = {
62261
+ 201: CreatePoolMember;
62262
+ };
62263
+ export type OpenstackPoolMembersCreateResponse = OpenstackPoolMembersCreateResponses[keyof OpenstackPoolMembersCreateResponses];
62264
+ export type OpenstackPoolMembersDestroyData = {
62265
+ body?: never;
62266
+ path: {
62267
+ uuid: string;
62268
+ };
62269
+ query?: never;
62270
+ url: '/api/openstack-pool-members/{uuid}/';
62271
+ };
62272
+ export type OpenstackPoolMembersDestroyResponses = {
62273
+ /**
62274
+ * No response body
62275
+ */
62276
+ 204: void;
62277
+ };
62278
+ export type OpenstackPoolMembersDestroyResponse = OpenstackPoolMembersDestroyResponses[keyof OpenstackPoolMembersDestroyResponses];
62279
+ export type OpenstackPoolMembersRetrieveData = {
62280
+ body?: never;
62281
+ path: {
62282
+ uuid: string;
62283
+ };
62284
+ query?: {
62285
+ field?: Array<OpenStackPoolMemberFieldEnum>;
62286
+ };
62287
+ url: '/api/openstack-pool-members/{uuid}/';
62288
+ };
62289
+ export type OpenstackPoolMembersRetrieveResponses = {
62290
+ 200: OpenStackPoolMember;
62291
+ };
62292
+ export type OpenstackPoolMembersRetrieveResponse = OpenstackPoolMembersRetrieveResponses[keyof OpenstackPoolMembersRetrieveResponses];
62293
+ export type OpenstackPoolMembersPartialUpdateData = {
62294
+ body?: PatchedUpdatePoolMemberRequest;
62295
+ path: {
62296
+ uuid: string;
62297
+ };
62298
+ query?: never;
62299
+ url: '/api/openstack-pool-members/{uuid}/';
62300
+ };
62301
+ export type OpenstackPoolMembersPartialUpdateResponses = {
62302
+ 200: UpdatePoolMember;
62303
+ };
62304
+ export type OpenstackPoolMembersPartialUpdateResponse = OpenstackPoolMembersPartialUpdateResponses[keyof OpenstackPoolMembersPartialUpdateResponses];
62305
+ export type OpenstackPoolMembersUpdateData = {
62306
+ body?: UpdatePoolMemberRequest;
62307
+ path: {
62308
+ uuid: string;
62309
+ };
62310
+ query?: never;
62311
+ url: '/api/openstack-pool-members/{uuid}/';
62312
+ };
62313
+ export type OpenstackPoolMembersUpdateResponses = {
62314
+ 200: UpdatePoolMember;
62315
+ };
62316
+ export type OpenstackPoolMembersUpdateResponse = OpenstackPoolMembersUpdateResponses[keyof OpenstackPoolMembersUpdateResponses];
62317
+ export type OpenstackPoolsListData = {
62318
+ body?: never;
62319
+ path?: never;
62320
+ query?: {
62321
+ field?: Array<OpenStackPoolFieldEnum>;
62322
+ /**
62323
+ * Load balancer URL
62324
+ */
62325
+ load_balancer?: string;
62326
+ /**
62327
+ * Load balancer UUID
62328
+ */
62329
+ load_balancer_uuid?: string;
62330
+ /**
62331
+ * Name
62332
+ */
62333
+ name?: string;
62334
+ /**
62335
+ * Name (exact)
62336
+ */
62337
+ name_exact?: string;
62338
+ /**
62339
+ * A page number within the paginated result set.
62340
+ */
62341
+ page?: number;
62342
+ /**
62343
+ * Number of results to return per page.
62344
+ */
62345
+ page_size?: number;
62346
+ /**
62347
+ * State
62348
+ *
62349
+ *
62350
+ */
62351
+ state?: Array<CoreStates>;
62352
+ /**
62353
+ * Tenant UUID
62354
+ */
62355
+ tenant_uuid?: string;
62356
+ };
62357
+ url: '/api/openstack-pools/';
62358
+ };
62359
+ export type OpenstackPoolsListResponses = {
62360
+ 200: Array<OpenStackPool>;
62361
+ };
62362
+ export type OpenstackPoolsListResponse = OpenstackPoolsListResponses[keyof OpenstackPoolsListResponses];
62363
+ export type OpenstackPoolsCountData = {
62364
+ body?: never;
62365
+ path?: never;
62366
+ query?: {
62367
+ /**
62368
+ * Load balancer URL
62369
+ */
62370
+ load_balancer?: string;
62371
+ /**
62372
+ * Load balancer UUID
62373
+ */
62374
+ load_balancer_uuid?: string;
62375
+ /**
62376
+ * Name
62377
+ */
62378
+ name?: string;
62379
+ /**
62380
+ * Name (exact)
62381
+ */
62382
+ name_exact?: string;
62383
+ /**
62384
+ * A page number within the paginated result set.
62385
+ */
62386
+ page?: number;
62387
+ /**
62388
+ * Number of results to return per page.
62389
+ */
62390
+ page_size?: number;
62391
+ /**
62392
+ * State
62393
+ *
62394
+ *
62395
+ */
62396
+ state?: Array<CoreStates>;
62397
+ /**
62398
+ * Tenant UUID
62399
+ */
62400
+ tenant_uuid?: string;
62401
+ };
62402
+ url: '/api/openstack-pools/';
62403
+ };
62404
+ export type OpenstackPoolsCountResponses = {
62405
+ /**
62406
+ * No response body
62407
+ */
62408
+ 200: unknown;
62409
+ };
62410
+ export type OpenstackPoolsCreateData = {
62411
+ body: CreatePoolRequest;
62412
+ path?: never;
62413
+ query?: never;
62414
+ url: '/api/openstack-pools/';
62415
+ };
62416
+ export type OpenstackPoolsCreateResponses = {
62417
+ 201: CreatePool;
62418
+ };
62419
+ export type OpenstackPoolsCreateResponse = OpenstackPoolsCreateResponses[keyof OpenstackPoolsCreateResponses];
62420
+ export type OpenstackPoolsDestroyData = {
62421
+ body?: never;
62422
+ path: {
62423
+ uuid: string;
62424
+ };
62425
+ query?: never;
62426
+ url: '/api/openstack-pools/{uuid}/';
62427
+ };
62428
+ export type OpenstackPoolsDestroyResponses = {
62429
+ /**
62430
+ * No response body
62431
+ */
62432
+ 204: void;
62433
+ };
62434
+ export type OpenstackPoolsDestroyResponse = OpenstackPoolsDestroyResponses[keyof OpenstackPoolsDestroyResponses];
62435
+ export type OpenstackPoolsRetrieveData = {
62436
+ body?: never;
62437
+ path: {
62438
+ uuid: string;
62439
+ };
62440
+ query?: {
62441
+ field?: Array<OpenStackPoolFieldEnum>;
62442
+ };
62443
+ url: '/api/openstack-pools/{uuid}/';
62444
+ };
62445
+ export type OpenstackPoolsRetrieveResponses = {
62446
+ 200: OpenStackPool;
62447
+ };
62448
+ export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
62449
+ export type OpenstackPoolsPartialUpdateData = {
62450
+ body?: PatchedOpenStackPoolRequest;
62451
+ path: {
62452
+ uuid: string;
62453
+ };
62454
+ query?: never;
62455
+ url: '/api/openstack-pools/{uuid}/';
62456
+ };
62457
+ export type OpenstackPoolsPartialUpdateResponses = {
62458
+ 200: OpenStackPool;
62459
+ };
62460
+ export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
62461
+ export type OpenstackPoolsUpdateData = {
62462
+ body: OpenStackPoolRequest;
62463
+ path: {
62464
+ uuid: string;
62465
+ };
62466
+ query?: never;
62467
+ url: '/api/openstack-pools/{uuid}/';
62468
+ };
62469
+ export type OpenstackPoolsUpdateResponses = {
62470
+ 200: OpenStackPool;
62471
+ };
62472
+ export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
60543
62473
  export type OpenstackPortsListData = {
60544
62474
  body?: never;
60545
62475
  path?: never;