waldur-js-client 8.0.7-dev.34 → 8.0.7-dev.36

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.
@@ -2389,7 +2389,7 @@ export type BasicUser = {
2389
2389
  image?: string | null;
2390
2390
  };
2391
2391
  export type BidEnum = 'eager' | 'willing' | 'not_willing' | 'conflict';
2392
- export type BillingModeEnum = 'monthly' | 'prepaid';
2392
+ export type BillingModeEnum = 'monthly' | 'prepaid' | 'usage';
2393
2393
  export type BillingTypeEnum = 'fixed' | 'usage' | 'limit' | 'one' | 'few';
2394
2394
  export type BillingUnit = 'month' | 'quarter' | 'half_month' | 'day' | 'hour' | 'quantity';
2395
2395
  export type BlankEnum = '';
@@ -5012,96 +5012,86 @@ export type CreateFeedbackRequest = {
5012
5012
  export type CreateHealthMonitor = {
5013
5013
  readonly url: string;
5014
5014
  readonly uuid: string;
5015
- /**
5016
- * Pool this health monitor belongs to
5017
- */
5018
- pool: string;
5019
5015
  name?: string;
5020
- type: LoadBalancerProtocolEnum;
5021
5016
  /**
5022
5017
  * Interval between health checks in seconds
5023
5018
  */
5024
- delay: number;
5019
+ delay?: number;
5025
5020
  /**
5026
5021
  * Time in seconds to timeout a health check
5027
5022
  */
5028
- timeout: number;
5029
- /**
5030
- * Number of retries before marking member as down
5031
- */
5032
- max_retries: number;
5033
- readonly project: string;
5034
- readonly service_settings: string;
5035
- };
5036
- export type CreateHealthMonitorRequest = {
5023
+ timeout?: number;
5024
+ max_retries?: number;
5025
+ max_retries_down?: number;
5037
5026
  /**
5038
5027
  * Pool this health monitor belongs to
5039
5028
  */
5040
5029
  pool: string;
5041
- name?: string;
5042
5030
  type: LoadBalancerProtocolEnum;
5031
+ };
5032
+ export type CreateHealthMonitorRequest = {
5033
+ name?: string;
5043
5034
  /**
5044
5035
  * Interval between health checks in seconds
5045
5036
  */
5046
- delay: number;
5037
+ delay?: number;
5047
5038
  /**
5048
5039
  * Time in seconds to timeout a health check
5049
5040
  */
5050
- timeout: number;
5041
+ timeout?: number;
5042
+ max_retries?: number;
5043
+ max_retries_down?: number;
5051
5044
  /**
5052
- * Number of retries before marking member as down
5045
+ * Pool this health monitor belongs to
5053
5046
  */
5054
- max_retries: number;
5047
+ pool: string;
5048
+ type: LoadBalancerProtocolEnum;
5055
5049
  };
5056
5050
  export type CreateListener = {
5051
+ name?: string;
5052
+ default_pool?: string | null;
5057
5053
  readonly url: string;
5058
5054
  readonly uuid: string;
5059
5055
  /**
5060
5056
  * Load balancer this listener belongs to
5061
5057
  */
5062
5058
  load_balancer: string;
5063
- name: string;
5064
5059
  protocol: LoadBalancerProtocolEnum;
5065
5060
  /**
5066
5061
  * Port on which the listener listens
5067
5062
  */
5068
5063
  protocol_port: number;
5069
- default_pool?: string | null;
5070
- readonly project: string;
5071
- readonly service_settings: string;
5072
5064
  };
5073
5065
  export type CreateListenerRequest = {
5066
+ name?: string;
5067
+ default_pool?: string | null;
5074
5068
  /**
5075
5069
  * Load balancer this listener belongs to
5076
5070
  */
5077
5071
  load_balancer: string;
5078
- name: string;
5079
5072
  protocol: LoadBalancerProtocolEnum;
5080
5073
  /**
5081
5074
  * Port on which the listener listens
5082
5075
  */
5083
5076
  protocol_port: number;
5084
- default_pool?: string | null;
5085
5077
  };
5086
5078
  export type CreateLoadBalancer = {
5087
5079
  readonly url: string;
5088
5080
  readonly uuid: string;
5081
+ name: string;
5089
5082
  /**
5090
5083
  * OpenStack tenant this load balancer belongs to
5091
5084
  */
5092
5085
  tenant: string;
5093
- name: string;
5094
- vip_subnet_id: string;
5095
- readonly project: string;
5096
- readonly service_settings: string;
5086
+ vip_subnet: string;
5097
5087
  };
5098
5088
  export type CreateLoadBalancerRequest = {
5089
+ name: string;
5099
5090
  /**
5100
5091
  * OpenStack tenant this load balancer belongs to
5101
5092
  */
5102
5093
  tenant: string;
5103
- name: string;
5104
- vip_subnet_id: string;
5094
+ vip_subnet: string;
5105
5095
  };
5106
5096
  export type CreateManualAssignmentRequest = {
5107
5097
  /**
@@ -5130,24 +5120,22 @@ export type CreateManualAssignmentResponse = {
5130
5120
  export type CreatePool = {
5131
5121
  readonly url: string;
5132
5122
  readonly uuid: string;
5123
+ name: string;
5133
5124
  /**
5134
5125
  * Load balancer this pool belongs to
5135
5126
  */
5136
5127
  load_balancer: string;
5137
- name: string;
5138
5128
  protocol: LoadBalancerProtocolEnum;
5139
- lb_algorithm?: LbAlgorithmEnum;
5140
- readonly project: string;
5141
- readonly service_settings: string;
5142
5129
  };
5143
5130
  export type CreatePoolMember = {
5144
5131
  readonly url: string;
5145
5132
  readonly uuid: string;
5133
+ name?: string;
5134
+ weight?: number;
5146
5135
  /**
5147
5136
  * Pool this member belongs to
5148
5137
  */
5149
5138
  pool: string;
5150
- name?: string;
5151
5139
  /**
5152
5140
  * An IPv4 or IPv6 address.
5153
5141
  */
@@ -5156,17 +5144,15 @@ export type CreatePoolMember = {
5156
5144
  * Port on the backend server
5157
5145
  */
5158
5146
  protocol_port: number;
5159
- subnet_id: string;
5160
- weight?: number;
5161
- readonly project: string;
5162
- readonly service_settings: string;
5147
+ subnet: string;
5163
5148
  };
5164
5149
  export type CreatePoolMemberRequest = {
5150
+ name?: string;
5151
+ weight?: number;
5165
5152
  /**
5166
5153
  * Pool this member belongs to
5167
5154
  */
5168
5155
  pool: string;
5169
- name?: string;
5170
5156
  /**
5171
5157
  * An IPv4 or IPv6 address.
5172
5158
  */
@@ -5175,17 +5161,15 @@ export type CreatePoolMemberRequest = {
5175
5161
  * Port on the backend server
5176
5162
  */
5177
5163
  protocol_port: number;
5178
- subnet_id: string;
5179
- weight?: number;
5164
+ subnet: string;
5180
5165
  };
5181
5166
  export type CreatePoolRequest = {
5167
+ name: string;
5182
5168
  /**
5183
5169
  * Load balancer this pool belongs to
5184
5170
  */
5185
5171
  load_balancer: string;
5186
- name: string;
5187
5172
  protocol: LoadBalancerProtocolEnum;
5188
- lb_algorithm?: LbAlgorithmEnum;
5189
5173
  };
5190
5174
  export type CreateRouter = {
5191
5175
  readonly url: string;
@@ -5311,6 +5295,13 @@ export type Customer = {
5311
5295
  * Comma-separated list of notification email addresses
5312
5296
  */
5313
5297
  notification_emails?: string;
5298
+ city?: string;
5299
+ state?: string;
5300
+ parish?: string;
5301
+ street?: string;
5302
+ house_nr?: string;
5303
+ apartment_nr?: string;
5304
+ household?: string;
5314
5305
  readonly payment_profiles?: Array<PaymentProfile>;
5315
5306
  readonly customer_credit?: number | null;
5316
5307
  readonly customer_unallocated_credit?: number | null;
@@ -5674,6 +5665,13 @@ export type CustomerRequest = {
5674
5665
  * Comma-separated list of notification email addresses
5675
5666
  */
5676
5667
  notification_emails?: string;
5668
+ city?: string;
5669
+ state?: string;
5670
+ parish?: string;
5671
+ street?: string;
5672
+ house_nr?: string;
5673
+ apartment_nr?: string;
5674
+ household?: string;
5677
5675
  };
5678
5676
  export type CustomerServiceAccount = {
5679
5677
  readonly url: string;
@@ -8523,7 +8521,6 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8523
8521
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8524
8522
  export type KindEnum = 'default' | 'course' | 'public';
8525
8523
  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';
8526
- export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8527
8524
  export type LexisLink = {
8528
8525
  readonly url: string;
8529
8526
  readonly uuid: string;
@@ -8588,13 +8585,16 @@ export type LinkToInvoice = {
8588
8585
  export type LinkToInvoiceRequest = {
8589
8586
  invoice: string;
8590
8587
  };
8588
+ export type LoadBalancerAsyncOperationResponse = {
8589
+ /**
8590
+ * Message that execution of the operation was scheduled.
8591
+ */
8592
+ status: string;
8593
+ };
8591
8594
  export type LoadBalancerAttachFloatingIpRequest = {
8592
8595
  floating_ip: string;
8593
8596
  };
8594
8597
  export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8595
- export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8596
- security_groups: Array<string>;
8597
- };
8598
8598
  export type LockStats = {
8599
8599
  /**
8600
8600
  * Total number of locks currently held
@@ -9251,6 +9251,10 @@ export type MergedPluginOptions = {
9251
9251
  * Default limit for snapshot size in GB
9252
9252
  */
9253
9253
  snapshot_size_limit_gb?: number;
9254
+ /**
9255
+ * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9256
+ */
9257
+ lbaas_enabled?: boolean;
9254
9258
  /**
9255
9259
  * HEAppE cluster id
9256
9260
  */
@@ -9549,6 +9553,10 @@ export type MergedPluginOptionsRequest = {
9549
9553
  * Default limit for snapshot size in GB
9550
9554
  */
9551
9555
  snapshot_size_limit_gb?: number;
9556
+ /**
9557
+ * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9558
+ */
9559
+ lbaas_enabled?: boolean;
9552
9560
  /**
9553
9561
  * HEAppE cluster id
9554
9562
  */
@@ -11989,6 +11997,14 @@ export type OfferingSoftwareCatalogRequest = {
11989
11997
  partition?: string | null;
11990
11998
  };
11991
11999
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
12000
+ export type OfferingStateCounter = {
12001
+ state: string;
12002
+ count: number;
12003
+ };
12004
+ export type OfferingStateCounters = {
12005
+ resources: Array<OfferingStateCounter>;
12006
+ users: Array<OfferingStateCounter>;
12007
+ };
11992
12008
  export type OfferingStats = {
11993
12009
  /**
11994
12010
  * Number of resources for the offering
@@ -13413,8 +13429,8 @@ export type OpenStackLoadBalancer = {
13413
13429
  * An IPv4 or IPv6 address.
13414
13430
  */
13415
13431
  vip_address?: string;
13416
- readonly vip_subnet_id?: string;
13417
- readonly vip_port_id?: string;
13432
+ readonly vip_subnet?: string | null;
13433
+ readonly vip_port?: string | null;
13418
13434
  /**
13419
13435
  * Floating IP attached to the VIP port
13420
13436
  */
@@ -13436,26 +13452,6 @@ export type OpenStackLoadBalancer = {
13436
13452
  readonly is_usage_based?: boolean | null;
13437
13453
  readonly is_limit_based?: boolean | null;
13438
13454
  };
13439
- export type OpenStackLoadBalancerRequest = {
13440
- name: string;
13441
- description?: string;
13442
- service_settings: string;
13443
- project: string;
13444
- error_message?: string;
13445
- error_traceback?: string;
13446
- /**
13447
- * Load balancer ID in Octavia
13448
- */
13449
- backend_id?: string | null;
13450
- /**
13451
- * OpenStack tenant this load balancer belongs to
13452
- */
13453
- tenant: string;
13454
- /**
13455
- * Floating IP attached to the VIP port
13456
- */
13457
- attached_floating_ip?: string | null;
13458
- };
13459
13455
  export type OpenStackNestedFloatingIp = {
13460
13456
  readonly url?: string;
13461
13457
  readonly uuid?: string;
@@ -13795,10 +13791,7 @@ export type OpenStackPoolMember = {
13795
13791
  */
13796
13792
  address?: string;
13797
13793
  readonly protocol_port?: number;
13798
- /**
13799
- * Subnet ID for the member (required for creation)
13800
- */
13801
- subnet_id?: string;
13794
+ readonly subnet?: string | null;
13802
13795
  readonly weight?: number;
13803
13796
  readonly provisioning_status?: string;
13804
13797
  readonly operating_status?: string;
@@ -13816,22 +13809,6 @@ export type OpenStackPoolMember = {
13816
13809
  readonly is_usage_based?: boolean | null;
13817
13810
  readonly is_limit_based?: boolean | null;
13818
13811
  };
13819
- export type OpenStackPoolRequest = {
13820
- name: string;
13821
- description?: string;
13822
- service_settings: string;
13823
- project: string;
13824
- error_message?: string;
13825
- error_traceback?: string;
13826
- /**
13827
- * Pool ID in Octavia
13828
- */
13829
- backend_id?: string | null;
13830
- /**
13831
- * Load balancer this pool belongs to
13832
- */
13833
- load_balancer: string;
13834
- };
13835
13812
  export type OpenStackPort = {
13836
13813
  readonly url?: string;
13837
13814
  readonly uuid?: string;
@@ -15581,6 +15558,13 @@ export type PatchedCustomerRequest = {
15581
15558
  * Comma-separated list of notification email addresses
15582
15559
  */
15583
15560
  notification_emails?: string;
15561
+ city?: string;
15562
+ state?: string;
15563
+ parish?: string;
15564
+ street?: string;
15565
+ house_nr?: string;
15566
+ apartment_nr?: string;
15567
+ household?: string;
15584
15568
  };
15585
15569
  export type PatchedCustomerServiceAccountRequest = {
15586
15570
  username?: string;
@@ -16125,46 +16109,10 @@ export type PatchedOpenStackInstanceRequest = {
16125
16109
  name?: string;
16126
16110
  description?: string;
16127
16111
  };
16128
- export type PatchedOpenStackLoadBalancerRequest = {
16129
- name?: string;
16130
- description?: string;
16131
- service_settings?: string;
16132
- project?: string;
16133
- error_message?: string;
16134
- error_traceback?: string;
16135
- /**
16136
- * Load balancer ID in Octavia
16137
- */
16138
- backend_id?: string | null;
16139
- /**
16140
- * OpenStack tenant this load balancer belongs to
16141
- */
16142
- tenant?: string;
16143
- /**
16144
- * Floating IP attached to the VIP port
16145
- */
16146
- attached_floating_ip?: string | null;
16147
- };
16148
16112
  export type PatchedOpenStackNetworkRequest = {
16149
16113
  name?: string;
16150
16114
  description?: string;
16151
16115
  };
16152
- export type PatchedOpenStackPoolRequest = {
16153
- name?: string;
16154
- description?: string;
16155
- service_settings?: string;
16156
- project?: string;
16157
- error_message?: string;
16158
- error_traceback?: string;
16159
- /**
16160
- * Pool ID in Octavia
16161
- */
16162
- backend_id?: string | null;
16163
- /**
16164
- * Load balancer this pool belongs to
16165
- */
16166
- load_balancer?: string;
16167
- };
16168
16116
  export type PatchedOpenStackPortRequest = {
16169
16117
  name?: string;
16170
16118
  description?: string;
@@ -17027,18 +16975,31 @@ export type PatchedTemplateRequest = {
17027
16975
  };
17028
16976
  export type PatchedUpdateHealthMonitorRequest = {
17029
16977
  name?: string;
16978
+ /**
16979
+ * Interval between health checks in seconds
16980
+ */
17030
16981
  delay?: number;
16982
+ /**
16983
+ * Time in seconds to timeout a health check
16984
+ */
17031
16985
  timeout?: number;
17032
16986
  max_retries?: number;
16987
+ max_retries_down?: number;
17033
16988
  };
17034
16989
  export type PatchedUpdateListenerRequest = {
17035
16990
  name?: string;
17036
16991
  default_pool?: string | null;
17037
16992
  };
16993
+ export type PatchedUpdateLoadBalancerRequest = {
16994
+ name?: string;
16995
+ };
17038
16996
  export type PatchedUpdatePoolMemberRequest = {
17039
16997
  name?: string;
17040
16998
  weight?: number;
17041
16999
  };
17000
+ export type PatchedUpdatePoolRequest = {
17001
+ name?: string;
17002
+ };
17042
17003
  export type PatchedUserAgreementRequest = {
17043
17004
  content?: string;
17044
17005
  agreement_type?: AgreementTypeEnum;
@@ -23705,7 +23666,7 @@ export type SupportedCountriesResponse = {
23705
23666
  };
23706
23667
  export type SwitchBillingModeRequest = {
23707
23668
  /**
23708
- * Switch all builtin components to monthly (LIMIT) or prepaid (ONE_TIME + is_prepaid) billing.
23669
+ * Switch all builtin components to monthly (LIMIT), prepaid (ONE_TIME + is_prepaid), or usage-based billing.
23709
23670
  */
23710
23671
  billing_mode: BillingModeEnum;
23711
23672
  };
@@ -24258,16 +24219,32 @@ export type UpdateActionsResponse = {
24258
24219
  provider_action_type?: string | null;
24259
24220
  };
24260
24221
  export type UpdateHealthMonitor = {
24222
+ readonly url: string;
24223
+ readonly uuid: string;
24261
24224
  name?: string;
24225
+ /**
24226
+ * Interval between health checks in seconds
24227
+ */
24262
24228
  delay?: number;
24229
+ /**
24230
+ * Time in seconds to timeout a health check
24231
+ */
24263
24232
  timeout?: number;
24264
24233
  max_retries?: number;
24234
+ max_retries_down?: number;
24265
24235
  };
24266
24236
  export type UpdateHealthMonitorRequest = {
24267
24237
  name?: string;
24238
+ /**
24239
+ * Interval between health checks in seconds
24240
+ */
24268
24241
  delay?: number;
24242
+ /**
24243
+ * Time in seconds to timeout a health check
24244
+ */
24269
24245
  timeout?: number;
24270
24246
  max_retries?: number;
24247
+ max_retries_down?: number;
24271
24248
  };
24272
24249
  export type UpdateListener = {
24273
24250
  name?: string;
@@ -24277,6 +24254,14 @@ export type UpdateListenerRequest = {
24277
24254
  name?: string;
24278
24255
  default_pool?: string | null;
24279
24256
  };
24257
+ export type UpdateLoadBalancer = {
24258
+ readonly url: string;
24259
+ readonly uuid: string;
24260
+ name: string;
24261
+ };
24262
+ export type UpdateLoadBalancerRequest = {
24263
+ name: string;
24264
+ };
24280
24265
  export type UpdateOfferingComponentRequest = {
24281
24266
  uuid: string;
24282
24267
  billing_type: BillingTypeEnum;
@@ -24326,7 +24311,14 @@ export type UpdateOfferingComponentRequest = {
24326
24311
  */
24327
24312
  renewal_duration_step?: number | null;
24328
24313
  };
24314
+ export type UpdatePool = {
24315
+ readonly url: string;
24316
+ readonly uuid: string;
24317
+ name: string;
24318
+ };
24329
24319
  export type UpdatePoolMember = {
24320
+ readonly url: string;
24321
+ readonly uuid: string;
24330
24322
  name?: string;
24331
24323
  weight?: number;
24332
24324
  };
@@ -24334,6 +24326,9 @@ export type UpdatePoolMemberRequest = {
24334
24326
  name?: string;
24335
24327
  weight?: number;
24336
24328
  };
24329
+ export type UpdatePoolRequest = {
24330
+ name: string;
24331
+ };
24337
24332
  export type UrgencyEnum = 'low' | 'medium' | 'high';
24338
24333
  export type User = {
24339
24334
  readonly url?: string;
@@ -25675,6 +25670,13 @@ export type CustomerRequestForm = {
25675
25670
  * Comma-separated list of notification email addresses
25676
25671
  */
25677
25672
  notification_emails?: string;
25673
+ city?: string;
25674
+ state?: string;
25675
+ parish?: string;
25676
+ street?: string;
25677
+ house_nr?: string;
25678
+ apartment_nr?: string;
25679
+ household?: string;
25678
25680
  };
25679
25681
  export type CustomerRequestMultipart = {
25680
25682
  /**
@@ -25752,6 +25754,13 @@ export type CustomerRequestMultipart = {
25752
25754
  * Comma-separated list of notification email addresses
25753
25755
  */
25754
25756
  notification_emails?: string;
25757
+ city?: string;
25758
+ state?: string;
25759
+ parish?: string;
25760
+ street?: string;
25761
+ house_nr?: string;
25762
+ apartment_nr?: string;
25763
+ household?: string;
25755
25764
  };
25756
25765
  export type PatchedCustomerRequestForm = {
25757
25766
  /**
@@ -25829,6 +25838,13 @@ export type PatchedCustomerRequestForm = {
25829
25838
  * Comma-separated list of notification email addresses
25830
25839
  */
25831
25840
  notification_emails?: string;
25841
+ city?: string;
25842
+ state?: string;
25843
+ parish?: string;
25844
+ street?: string;
25845
+ house_nr?: string;
25846
+ apartment_nr?: string;
25847
+ household?: string;
25832
25848
  };
25833
25849
  export type PatchedCustomerRequestMultipart = {
25834
25850
  /**
@@ -25906,6 +25922,13 @@ export type PatchedCustomerRequestMultipart = {
25906
25922
  * Comma-separated list of notification email addresses
25907
25923
  */
25908
25924
  notification_emails?: string;
25925
+ city?: string;
25926
+ state?: string;
25927
+ parish?: string;
25928
+ street?: string;
25929
+ house_nr?: string;
25930
+ apartment_nr?: string;
25931
+ household?: string;
25909
25932
  };
25910
25933
  export type ExternalLinkRequestForm = {
25911
25934
  name: string;
@@ -27453,7 +27476,7 @@ export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity'
27453
27476
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
27454
27477
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
27455
27478
  export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
27456
- export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
27479
+ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
27457
27480
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
27458
27481
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
27459
27482
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -27533,9 +27556,9 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
27533
27556
  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';
27534
27557
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
27535
27558
  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';
27536
- 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';
27559
+ 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' | 'vip_subnet';
27537
27560
  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';
27538
- 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';
27561
+ 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' | 'url' | 'uuid' | 'weight';
27539
27562
  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';
27540
27563
  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';
27541
27564
  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';
@@ -48192,6 +48215,18 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
48192
48215
  */
48193
48216
  200: unknown;
48194
48217
  };
48218
+ export type MarketplaceProviderOfferingsStateCountersRetrieveData = {
48219
+ body?: never;
48220
+ path: {
48221
+ uuid: string;
48222
+ };
48223
+ query?: never;
48224
+ url: '/api/marketplace-provider-offerings/{uuid}/state_counters/';
48225
+ };
48226
+ export type MarketplaceProviderOfferingsStateCountersRetrieveResponses = {
48227
+ 200: OfferingStateCounters;
48228
+ };
48229
+ export type MarketplaceProviderOfferingsStateCountersRetrieveResponse = MarketplaceProviderOfferingsStateCountersRetrieveResponses[keyof MarketplaceProviderOfferingsStateCountersRetrieveResponses];
48195
48230
  export type MarketplaceProviderOfferingsStatsRetrieveData = {
48196
48231
  body?: never;
48197
48232
  path: {
@@ -63126,7 +63161,7 @@ export type OpenstackLoadbalancersRetrieveResponses = {
63126
63161
  };
63127
63162
  export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
63128
63163
  export type OpenstackLoadbalancersPartialUpdateData = {
63129
- body?: PatchedOpenStackLoadBalancerRequest;
63164
+ body?: PatchedUpdateLoadBalancerRequest;
63130
63165
  path: {
63131
63166
  uuid: string;
63132
63167
  };
@@ -63134,11 +63169,11 @@ export type OpenstackLoadbalancersPartialUpdateData = {
63134
63169
  url: '/api/openstack-loadbalancers/{uuid}/';
63135
63170
  };
63136
63171
  export type OpenstackLoadbalancersPartialUpdateResponses = {
63137
- 200: OpenStackLoadBalancer;
63172
+ 200: UpdateLoadBalancer;
63138
63173
  };
63139
63174
  export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
63140
63175
  export type OpenstackLoadbalancersUpdateData = {
63141
- body: OpenStackLoadBalancerRequest;
63176
+ body: UpdateLoadBalancerRequest;
63142
63177
  path: {
63143
63178
  uuid: string;
63144
63179
  };
@@ -63146,7 +63181,7 @@ export type OpenstackLoadbalancersUpdateData = {
63146
63181
  url: '/api/openstack-loadbalancers/{uuid}/';
63147
63182
  };
63148
63183
  export type OpenstackLoadbalancersUpdateResponses = {
63149
- 200: OpenStackLoadBalancer;
63184
+ 200: UpdateLoadBalancer;
63150
63185
  };
63151
63186
  export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
63152
63187
  export type OpenstackLoadbalancersAttachFloatingIpData = {
@@ -63158,11 +63193,9 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
63158
63193
  url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
63159
63194
  };
63160
63195
  export type OpenstackLoadbalancersAttachFloatingIpResponses = {
63161
- /**
63162
- * No response body
63163
- */
63164
- 200: unknown;
63196
+ 202: LoadBalancerAsyncOperationResponse;
63165
63197
  };
63198
+ export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
63166
63199
  export type OpenstackLoadbalancersDetachFloatingIpData = {
63167
63200
  body?: never;
63168
63201
  path: {
@@ -63172,25 +63205,24 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
63172
63205
  url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
63173
63206
  };
63174
63207
  export type OpenstackLoadbalancersDetachFloatingIpResponses = {
63175
- /**
63176
- * No response body
63177
- */
63178
- 200: unknown;
63208
+ 202: LoadBalancerAsyncOperationResponse;
63179
63209
  };
63180
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
63181
- body: LoadBalancerUpdateVipSecurityGroupsRequest;
63210
+ export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
63211
+ export type OpenstackLoadbalancersUnlinkData = {
63212
+ body?: never;
63182
63213
  path: {
63183
63214
  uuid: string;
63184
63215
  };
63185
63216
  query?: never;
63186
- url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
63217
+ url: '/api/openstack-loadbalancers/{uuid}/unlink/';
63187
63218
  };
63188
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
63219
+ export type OpenstackLoadbalancersUnlinkResponses = {
63189
63220
  /**
63190
63221
  * No response body
63191
63222
  */
63192
- 200: unknown;
63223
+ 204: void;
63193
63224
  };
63225
+ export type OpenstackLoadbalancersUnlinkResponse = OpenstackLoadbalancersUnlinkResponses[keyof OpenstackLoadbalancersUnlinkResponses];
63194
63226
  export type OpenstackMarketplaceTenantsListData = {
63195
63227
  body?: never;
63196
63228
  path?: never;
@@ -64367,7 +64399,7 @@ export type OpenstackPoolsRetrieveResponses = {
64367
64399
  };
64368
64400
  export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
64369
64401
  export type OpenstackPoolsPartialUpdateData = {
64370
- body?: PatchedOpenStackPoolRequest;
64402
+ body?: PatchedUpdatePoolRequest;
64371
64403
  path: {
64372
64404
  uuid: string;
64373
64405
  };
@@ -64375,11 +64407,11 @@ export type OpenstackPoolsPartialUpdateData = {
64375
64407
  url: '/api/openstack-pools/{uuid}/';
64376
64408
  };
64377
64409
  export type OpenstackPoolsPartialUpdateResponses = {
64378
- 200: OpenStackPool;
64410
+ 200: UpdatePool;
64379
64411
  };
64380
64412
  export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
64381
64413
  export type OpenstackPoolsUpdateData = {
64382
- body: OpenStackPoolRequest;
64414
+ body: UpdatePoolRequest;
64383
64415
  path: {
64384
64416
  uuid: string;
64385
64417
  };
@@ -64387,7 +64419,7 @@ export type OpenstackPoolsUpdateData = {
64387
64419
  url: '/api/openstack-pools/{uuid}/';
64388
64420
  };
64389
64421
  export type OpenstackPoolsUpdateResponses = {
64390
- 200: OpenStackPool;
64422
+ 200: UpdatePool;
64391
64423
  };
64392
64424
  export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
64393
64425
  export type OpenstackPortsListData = {