waldur-js-client 8.0.7-dev.33 → 8.0.7-dev.35

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,6 +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
2393
  export type BillingTypeEnum = 'fixed' | 'usage' | 'limit' | 'one' | 'few';
2393
2394
  export type BillingUnit = 'month' | 'quarter' | 'half_month' | 'day' | 'hour' | 'quantity';
2394
2395
  export type BlankEnum = '';
@@ -5011,96 +5012,86 @@ export type CreateFeedbackRequest = {
5011
5012
  export type CreateHealthMonitor = {
5012
5013
  readonly url: string;
5013
5014
  readonly uuid: string;
5014
- /**
5015
- * Pool this health monitor belongs to
5016
- */
5017
- pool: string;
5018
5015
  name?: string;
5019
- type: LoadBalancerProtocolEnum;
5020
5016
  /**
5021
5017
  * Interval between health checks in seconds
5022
5018
  */
5023
- delay: number;
5019
+ delay?: number;
5024
5020
  /**
5025
5021
  * Time in seconds to timeout a health check
5026
5022
  */
5027
- timeout: number;
5028
- /**
5029
- * Number of retries before marking member as down
5030
- */
5031
- max_retries: number;
5032
- readonly project: string;
5033
- readonly service_settings: string;
5034
- };
5035
- export type CreateHealthMonitorRequest = {
5023
+ timeout?: number;
5024
+ max_retries?: number;
5025
+ max_retries_down?: number;
5036
5026
  /**
5037
5027
  * Pool this health monitor belongs to
5038
5028
  */
5039
5029
  pool: string;
5040
- name?: string;
5041
5030
  type: LoadBalancerProtocolEnum;
5031
+ };
5032
+ export type CreateHealthMonitorRequest = {
5033
+ name?: string;
5042
5034
  /**
5043
5035
  * Interval between health checks in seconds
5044
5036
  */
5045
- delay: number;
5037
+ delay?: number;
5046
5038
  /**
5047
5039
  * Time in seconds to timeout a health check
5048
5040
  */
5049
- timeout: number;
5041
+ timeout?: number;
5042
+ max_retries?: number;
5043
+ max_retries_down?: number;
5050
5044
  /**
5051
- * Number of retries before marking member as down
5045
+ * Pool this health monitor belongs to
5052
5046
  */
5053
- max_retries: number;
5047
+ pool: string;
5048
+ type: LoadBalancerProtocolEnum;
5054
5049
  };
5055
5050
  export type CreateListener = {
5051
+ name?: string;
5052
+ default_pool?: string | null;
5056
5053
  readonly url: string;
5057
5054
  readonly uuid: string;
5058
5055
  /**
5059
5056
  * Load balancer this listener belongs to
5060
5057
  */
5061
5058
  load_balancer: string;
5062
- name: string;
5063
5059
  protocol: LoadBalancerProtocolEnum;
5064
5060
  /**
5065
5061
  * Port on which the listener listens
5066
5062
  */
5067
5063
  protocol_port: number;
5068
- default_pool?: string | null;
5069
- readonly project: string;
5070
- readonly service_settings: string;
5071
5064
  };
5072
5065
  export type CreateListenerRequest = {
5066
+ name?: string;
5067
+ default_pool?: string | null;
5073
5068
  /**
5074
5069
  * Load balancer this listener belongs to
5075
5070
  */
5076
5071
  load_balancer: string;
5077
- name: string;
5078
5072
  protocol: LoadBalancerProtocolEnum;
5079
5073
  /**
5080
5074
  * Port on which the listener listens
5081
5075
  */
5082
5076
  protocol_port: number;
5083
- default_pool?: string | null;
5084
5077
  };
5085
5078
  export type CreateLoadBalancer = {
5086
5079
  readonly url: string;
5087
5080
  readonly uuid: string;
5081
+ name: string;
5088
5082
  /**
5089
5083
  * OpenStack tenant this load balancer belongs to
5090
5084
  */
5091
5085
  tenant: string;
5092
- name: string;
5093
- vip_subnet_id: string;
5094
- readonly project: string;
5095
- readonly service_settings: string;
5086
+ vip_subnet: string;
5096
5087
  };
5097
5088
  export type CreateLoadBalancerRequest = {
5089
+ name: string;
5098
5090
  /**
5099
5091
  * OpenStack tenant this load balancer belongs to
5100
5092
  */
5101
5093
  tenant: string;
5102
- name: string;
5103
- vip_subnet_id: string;
5094
+ vip_subnet: string;
5104
5095
  };
5105
5096
  export type CreateManualAssignmentRequest = {
5106
5097
  /**
@@ -5129,24 +5120,22 @@ export type CreateManualAssignmentResponse = {
5129
5120
  export type CreatePool = {
5130
5121
  readonly url: string;
5131
5122
  readonly uuid: string;
5123
+ name: string;
5132
5124
  /**
5133
5125
  * Load balancer this pool belongs to
5134
5126
  */
5135
5127
  load_balancer: string;
5136
- name: string;
5137
5128
  protocol: LoadBalancerProtocolEnum;
5138
- lb_algorithm?: LbAlgorithmEnum;
5139
- readonly project: string;
5140
- readonly service_settings: string;
5141
5129
  };
5142
5130
  export type CreatePoolMember = {
5143
5131
  readonly url: string;
5144
5132
  readonly uuid: string;
5133
+ name?: string;
5134
+ weight?: number;
5145
5135
  /**
5146
5136
  * Pool this member belongs to
5147
5137
  */
5148
5138
  pool: string;
5149
- name?: string;
5150
5139
  /**
5151
5140
  * An IPv4 or IPv6 address.
5152
5141
  */
@@ -5155,17 +5144,15 @@ export type CreatePoolMember = {
5155
5144
  * Port on the backend server
5156
5145
  */
5157
5146
  protocol_port: number;
5158
- subnet_id: string;
5159
- weight?: number;
5160
- readonly project: string;
5161
- readonly service_settings: string;
5147
+ subnet: string;
5162
5148
  };
5163
5149
  export type CreatePoolMemberRequest = {
5150
+ name?: string;
5151
+ weight?: number;
5164
5152
  /**
5165
5153
  * Pool this member belongs to
5166
5154
  */
5167
5155
  pool: string;
5168
- name?: string;
5169
5156
  /**
5170
5157
  * An IPv4 or IPv6 address.
5171
5158
  */
@@ -5174,17 +5161,15 @@ export type CreatePoolMemberRequest = {
5174
5161
  * Port on the backend server
5175
5162
  */
5176
5163
  protocol_port: number;
5177
- subnet_id: string;
5178
- weight?: number;
5164
+ subnet: string;
5179
5165
  };
5180
5166
  export type CreatePoolRequest = {
5167
+ name: string;
5181
5168
  /**
5182
5169
  * Load balancer this pool belongs to
5183
5170
  */
5184
5171
  load_balancer: string;
5185
- name: string;
5186
5172
  protocol: LoadBalancerProtocolEnum;
5187
- lb_algorithm?: LbAlgorithmEnum;
5188
5173
  };
5189
5174
  export type CreateRouter = {
5190
5175
  readonly url: string;
@@ -5310,6 +5295,13 @@ export type Customer = {
5310
5295
  * Comma-separated list of notification email addresses
5311
5296
  */
5312
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;
5313
5305
  readonly payment_profiles?: Array<PaymentProfile>;
5314
5306
  readonly customer_credit?: number | null;
5315
5307
  readonly customer_unallocated_credit?: number | null;
@@ -5673,6 +5665,13 @@ export type CustomerRequest = {
5673
5665
  * Comma-separated list of notification email addresses
5674
5666
  */
5675
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;
5676
5675
  };
5677
5676
  export type CustomerServiceAccount = {
5678
5677
  readonly url: string;
@@ -8522,7 +8521,6 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8522
8521
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8523
8522
  export type KindEnum = 'default' | 'course' | 'public';
8524
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';
8525
- export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8526
8524
  export type LexisLink = {
8527
8525
  readonly url: string;
8528
8526
  readonly uuid: string;
@@ -8587,13 +8585,16 @@ export type LinkToInvoice = {
8587
8585
  export type LinkToInvoiceRequest = {
8588
8586
  invoice: string;
8589
8587
  };
8588
+ export type LoadBalancerAsyncOperationResponse = {
8589
+ /**
8590
+ * Message that execution of the operation was scheduled.
8591
+ */
8592
+ status: string;
8593
+ };
8590
8594
  export type LoadBalancerAttachFloatingIpRequest = {
8591
8595
  floating_ip: string;
8592
8596
  };
8593
8597
  export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8594
- export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8595
- security_groups: Array<string>;
8596
- };
8597
8598
  export type LockStats = {
8598
8599
  /**
8599
8600
  * Total number of locks currently held
@@ -9250,6 +9251,10 @@ export type MergedPluginOptions = {
9250
9251
  * Default limit for snapshot size in GB
9251
9252
  */
9252
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;
9253
9258
  /**
9254
9259
  * HEAppE cluster id
9255
9260
  */
@@ -9548,6 +9553,10 @@ export type MergedPluginOptionsRequest = {
9548
9553
  * Default limit for snapshot size in GB
9549
9554
  */
9550
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;
9551
9560
  /**
9552
9561
  * HEAppE cluster id
9553
9562
  */
@@ -11108,6 +11117,7 @@ export type Offering = {
11108
11117
  * Returns 'limit_only', 'usage_only', or 'mixed'.
11109
11118
  */
11110
11119
  readonly billing_type_classification?: string;
11120
+ readonly effective_available_limits?: Array<string>;
11111
11121
  compliance_checklist?: string | null;
11112
11122
  readonly user_has_consent?: boolean;
11113
11123
  readonly is_accessible?: boolean;
@@ -13411,8 +13421,8 @@ export type OpenStackLoadBalancer = {
13411
13421
  * An IPv4 or IPv6 address.
13412
13422
  */
13413
13423
  vip_address?: string;
13414
- readonly vip_subnet_id?: string;
13415
- readonly vip_port_id?: string;
13424
+ readonly vip_subnet?: string | null;
13425
+ readonly vip_port?: string | null;
13416
13426
  /**
13417
13427
  * Floating IP attached to the VIP port
13418
13428
  */
@@ -13434,26 +13444,6 @@ export type OpenStackLoadBalancer = {
13434
13444
  readonly is_usage_based?: boolean | null;
13435
13445
  readonly is_limit_based?: boolean | null;
13436
13446
  };
13437
- export type OpenStackLoadBalancerRequest = {
13438
- name: string;
13439
- description?: string;
13440
- service_settings: string;
13441
- project: string;
13442
- error_message?: string;
13443
- error_traceback?: string;
13444
- /**
13445
- * Load balancer ID in Octavia
13446
- */
13447
- backend_id?: string | null;
13448
- /**
13449
- * OpenStack tenant this load balancer belongs to
13450
- */
13451
- tenant: string;
13452
- /**
13453
- * Floating IP attached to the VIP port
13454
- */
13455
- attached_floating_ip?: string | null;
13456
- };
13457
13447
  export type OpenStackNestedFloatingIp = {
13458
13448
  readonly url?: string;
13459
13449
  readonly uuid?: string;
@@ -13793,10 +13783,7 @@ export type OpenStackPoolMember = {
13793
13783
  */
13794
13784
  address?: string;
13795
13785
  readonly protocol_port?: number;
13796
- /**
13797
- * Subnet ID for the member (required for creation)
13798
- */
13799
- subnet_id?: string;
13786
+ readonly subnet?: string | null;
13800
13787
  readonly weight?: number;
13801
13788
  readonly provisioning_status?: string;
13802
13789
  readonly operating_status?: string;
@@ -13814,22 +13801,6 @@ export type OpenStackPoolMember = {
13814
13801
  readonly is_usage_based?: boolean | null;
13815
13802
  readonly is_limit_based?: boolean | null;
13816
13803
  };
13817
- export type OpenStackPoolRequest = {
13818
- name: string;
13819
- description?: string;
13820
- service_settings: string;
13821
- project: string;
13822
- error_message?: string;
13823
- error_traceback?: string;
13824
- /**
13825
- * Pool ID in Octavia
13826
- */
13827
- backend_id?: string | null;
13828
- /**
13829
- * Load balancer this pool belongs to
13830
- */
13831
- load_balancer: string;
13832
- };
13833
13804
  export type OpenStackPort = {
13834
13805
  readonly url?: string;
13835
13806
  readonly uuid?: string;
@@ -15579,6 +15550,13 @@ export type PatchedCustomerRequest = {
15579
15550
  * Comma-separated list of notification email addresses
15580
15551
  */
15581
15552
  notification_emails?: string;
15553
+ city?: string;
15554
+ state?: string;
15555
+ parish?: string;
15556
+ street?: string;
15557
+ house_nr?: string;
15558
+ apartment_nr?: string;
15559
+ household?: string;
15582
15560
  };
15583
15561
  export type PatchedCustomerServiceAccountRequest = {
15584
15562
  username?: string;
@@ -16123,46 +16101,10 @@ export type PatchedOpenStackInstanceRequest = {
16123
16101
  name?: string;
16124
16102
  description?: string;
16125
16103
  };
16126
- export type PatchedOpenStackLoadBalancerRequest = {
16127
- name?: string;
16128
- description?: string;
16129
- service_settings?: string;
16130
- project?: string;
16131
- error_message?: string;
16132
- error_traceback?: string;
16133
- /**
16134
- * Load balancer ID in Octavia
16135
- */
16136
- backend_id?: string | null;
16137
- /**
16138
- * OpenStack tenant this load balancer belongs to
16139
- */
16140
- tenant?: string;
16141
- /**
16142
- * Floating IP attached to the VIP port
16143
- */
16144
- attached_floating_ip?: string | null;
16145
- };
16146
16104
  export type PatchedOpenStackNetworkRequest = {
16147
16105
  name?: string;
16148
16106
  description?: string;
16149
16107
  };
16150
- export type PatchedOpenStackPoolRequest = {
16151
- name?: string;
16152
- description?: string;
16153
- service_settings?: string;
16154
- project?: string;
16155
- error_message?: string;
16156
- error_traceback?: string;
16157
- /**
16158
- * Pool ID in Octavia
16159
- */
16160
- backend_id?: string | null;
16161
- /**
16162
- * Load balancer this pool belongs to
16163
- */
16164
- load_balancer?: string;
16165
- };
16166
16108
  export type PatchedOpenStackPortRequest = {
16167
16109
  name?: string;
16168
16110
  description?: string;
@@ -17025,18 +16967,31 @@ export type PatchedTemplateRequest = {
17025
16967
  };
17026
16968
  export type PatchedUpdateHealthMonitorRequest = {
17027
16969
  name?: string;
16970
+ /**
16971
+ * Interval between health checks in seconds
16972
+ */
17028
16973
  delay?: number;
16974
+ /**
16975
+ * Time in seconds to timeout a health check
16976
+ */
17029
16977
  timeout?: number;
17030
16978
  max_retries?: number;
16979
+ max_retries_down?: number;
17031
16980
  };
17032
16981
  export type PatchedUpdateListenerRequest = {
17033
16982
  name?: string;
17034
16983
  default_pool?: string | null;
17035
16984
  };
16985
+ export type PatchedUpdateLoadBalancerRequest = {
16986
+ name?: string;
16987
+ };
17036
16988
  export type PatchedUpdatePoolMemberRequest = {
17037
16989
  name?: string;
17038
16990
  weight?: number;
17039
16991
  };
16992
+ export type PatchedUpdatePoolRequest = {
16993
+ name?: string;
16994
+ };
17040
16995
  export type PatchedUserAgreementRequest = {
17041
16996
  content?: string;
17042
16997
  agreement_type?: AgreementTypeEnum;
@@ -18702,6 +18657,7 @@ export type ProviderOfferingDetails = {
18702
18657
  * Returns 'limit_only', 'usage_only', or 'mixed'.
18703
18658
  */
18704
18659
  readonly billing_type_classification?: string;
18660
+ readonly effective_available_limits?: Array<string>;
18705
18661
  compliance_checklist?: string | null;
18706
18662
  readonly integration_status?: Array<IntegrationStatus> | null;
18707
18663
  readonly google_calendar_is_public?: boolean | null;
@@ -19104,6 +19060,7 @@ export type PublicOfferingDetails = {
19104
19060
  * Returns 'limit_only', 'usage_only', or 'mixed'.
19105
19061
  */
19106
19062
  readonly billing_type_classification?: string;
19063
+ readonly effective_available_limits?: Array<string>;
19107
19064
  compliance_checklist?: string | null;
19108
19065
  readonly user_has_consent?: boolean;
19109
19066
  readonly is_accessible?: boolean;
@@ -23699,6 +23656,12 @@ export type SupportUser = {
23699
23656
  export type SupportedCountriesResponse = {
23700
23657
  supported_countries: Array<string>;
23701
23658
  };
23659
+ export type SwitchBillingModeRequest = {
23660
+ /**
23661
+ * Switch all builtin components to monthly (LIMIT) or prepaid (ONE_TIME + is_prepaid) billing.
23662
+ */
23663
+ billing_mode: BillingModeEnum;
23664
+ };
23702
23665
  export type SyncFromArrowRequestRequest = {
23703
23666
  settings_uuid?: string;
23704
23667
  };
@@ -24248,16 +24211,32 @@ export type UpdateActionsResponse = {
24248
24211
  provider_action_type?: string | null;
24249
24212
  };
24250
24213
  export type UpdateHealthMonitor = {
24214
+ readonly url: string;
24215
+ readonly uuid: string;
24251
24216
  name?: string;
24217
+ /**
24218
+ * Interval between health checks in seconds
24219
+ */
24252
24220
  delay?: number;
24221
+ /**
24222
+ * Time in seconds to timeout a health check
24223
+ */
24253
24224
  timeout?: number;
24254
24225
  max_retries?: number;
24226
+ max_retries_down?: number;
24255
24227
  };
24256
24228
  export type UpdateHealthMonitorRequest = {
24257
24229
  name?: string;
24230
+ /**
24231
+ * Interval between health checks in seconds
24232
+ */
24258
24233
  delay?: number;
24234
+ /**
24235
+ * Time in seconds to timeout a health check
24236
+ */
24259
24237
  timeout?: number;
24260
24238
  max_retries?: number;
24239
+ max_retries_down?: number;
24261
24240
  };
24262
24241
  export type UpdateListener = {
24263
24242
  name?: string;
@@ -24267,6 +24246,14 @@ export type UpdateListenerRequest = {
24267
24246
  name?: string;
24268
24247
  default_pool?: string | null;
24269
24248
  };
24249
+ export type UpdateLoadBalancer = {
24250
+ readonly url: string;
24251
+ readonly uuid: string;
24252
+ name: string;
24253
+ };
24254
+ export type UpdateLoadBalancerRequest = {
24255
+ name: string;
24256
+ };
24270
24257
  export type UpdateOfferingComponentRequest = {
24271
24258
  uuid: string;
24272
24259
  billing_type: BillingTypeEnum;
@@ -24316,7 +24303,14 @@ export type UpdateOfferingComponentRequest = {
24316
24303
  */
24317
24304
  renewal_duration_step?: number | null;
24318
24305
  };
24306
+ export type UpdatePool = {
24307
+ readonly url: string;
24308
+ readonly uuid: string;
24309
+ name: string;
24310
+ };
24319
24311
  export type UpdatePoolMember = {
24312
+ readonly url: string;
24313
+ readonly uuid: string;
24320
24314
  name?: string;
24321
24315
  weight?: number;
24322
24316
  };
@@ -24324,6 +24318,9 @@ export type UpdatePoolMemberRequest = {
24324
24318
  name?: string;
24325
24319
  weight?: number;
24326
24320
  };
24321
+ export type UpdatePoolRequest = {
24322
+ name: string;
24323
+ };
24327
24324
  export type UrgencyEnum = 'low' | 'medium' | 'high';
24328
24325
  export type User = {
24329
24326
  readonly url?: string;
@@ -25665,6 +25662,13 @@ export type CustomerRequestForm = {
25665
25662
  * Comma-separated list of notification email addresses
25666
25663
  */
25667
25664
  notification_emails?: string;
25665
+ city?: string;
25666
+ state?: string;
25667
+ parish?: string;
25668
+ street?: string;
25669
+ house_nr?: string;
25670
+ apartment_nr?: string;
25671
+ household?: string;
25668
25672
  };
25669
25673
  export type CustomerRequestMultipart = {
25670
25674
  /**
@@ -25742,6 +25746,13 @@ export type CustomerRequestMultipart = {
25742
25746
  * Comma-separated list of notification email addresses
25743
25747
  */
25744
25748
  notification_emails?: string;
25749
+ city?: string;
25750
+ state?: string;
25751
+ parish?: string;
25752
+ street?: string;
25753
+ house_nr?: string;
25754
+ apartment_nr?: string;
25755
+ household?: string;
25745
25756
  };
25746
25757
  export type PatchedCustomerRequestForm = {
25747
25758
  /**
@@ -25819,6 +25830,13 @@ export type PatchedCustomerRequestForm = {
25819
25830
  * Comma-separated list of notification email addresses
25820
25831
  */
25821
25832
  notification_emails?: string;
25833
+ city?: string;
25834
+ state?: string;
25835
+ parish?: string;
25836
+ street?: string;
25837
+ house_nr?: string;
25838
+ apartment_nr?: string;
25839
+ household?: string;
25822
25840
  };
25823
25841
  export type PatchedCustomerRequestMultipart = {
25824
25842
  /**
@@ -25896,6 +25914,13 @@ export type PatchedCustomerRequestMultipart = {
25896
25914
  * Comma-separated list of notification email addresses
25897
25915
  */
25898
25916
  notification_emails?: string;
25917
+ city?: string;
25918
+ state?: string;
25919
+ parish?: string;
25920
+ street?: string;
25921
+ house_nr?: string;
25922
+ apartment_nr?: string;
25923
+ household?: string;
25899
25924
  };
25900
25925
  export type ExternalLinkRequestForm = {
25901
25926
  name: string;
@@ -27425,7 +27450,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
27425
27450
  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';
27426
27451
  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';
27427
27452
  export type BackendResourceReqOEnum = '-created' | 'created';
27428
- 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' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | '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';
27453
+ 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' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | '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';
27429
27454
  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_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | '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';
27430
27455
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
27431
27456
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
@@ -27443,7 +27468,7 @@ export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity'
27443
27468
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
27444
27469
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
27445
27470
  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';
27446
- 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';
27471
+ 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';
27447
27472
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
27448
27473
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
27449
27474
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -27482,13 +27507,13 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
27482
27507
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
27483
27508
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
27484
27509
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
27485
- export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | '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' | 'uuid' | 'vendor_details';
27510
+ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | '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' | 'uuid' | 'vendor_details';
27486
27511
  export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
27487
27512
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
27488
27513
  export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27489
27514
  export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
27490
27515
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
27491
- 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' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | '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';
27516
+ 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' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | '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';
27492
27517
  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';
27493
27518
  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';
27494
27519
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -27523,9 +27548,9 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
27523
27548
  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';
27524
27549
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
27525
27550
  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';
27526
- 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';
27551
+ 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';
27527
27552
  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';
27528
- 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';
27553
+ 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';
27529
27554
  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';
27530
27555
  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';
27531
27556
  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';
@@ -48197,6 +48222,20 @@ export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
48197
48222
  };
48198
48223
  };
48199
48224
  export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
48225
+ export type MarketplaceProviderOfferingsSwitchBillingModeData = {
48226
+ body: SwitchBillingModeRequest;
48227
+ path: {
48228
+ uuid: string;
48229
+ };
48230
+ query?: never;
48231
+ url: '/api/marketplace-provider-offerings/{uuid}/switch_billing_mode/';
48232
+ };
48233
+ export type MarketplaceProviderOfferingsSwitchBillingModeResponses = {
48234
+ /**
48235
+ * No response body
48236
+ */
48237
+ 200: unknown;
48238
+ };
48200
48239
  export type MarketplaceProviderOfferingsSyncData = {
48201
48240
  body?: never;
48202
48241
  path: {
@@ -63102,7 +63141,7 @@ export type OpenstackLoadbalancersRetrieveResponses = {
63102
63141
  };
63103
63142
  export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
63104
63143
  export type OpenstackLoadbalancersPartialUpdateData = {
63105
- body?: PatchedOpenStackLoadBalancerRequest;
63144
+ body?: PatchedUpdateLoadBalancerRequest;
63106
63145
  path: {
63107
63146
  uuid: string;
63108
63147
  };
@@ -63110,11 +63149,11 @@ export type OpenstackLoadbalancersPartialUpdateData = {
63110
63149
  url: '/api/openstack-loadbalancers/{uuid}/';
63111
63150
  };
63112
63151
  export type OpenstackLoadbalancersPartialUpdateResponses = {
63113
- 200: OpenStackLoadBalancer;
63152
+ 200: UpdateLoadBalancer;
63114
63153
  };
63115
63154
  export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
63116
63155
  export type OpenstackLoadbalancersUpdateData = {
63117
- body: OpenStackLoadBalancerRequest;
63156
+ body: UpdateLoadBalancerRequest;
63118
63157
  path: {
63119
63158
  uuid: string;
63120
63159
  };
@@ -63122,7 +63161,7 @@ export type OpenstackLoadbalancersUpdateData = {
63122
63161
  url: '/api/openstack-loadbalancers/{uuid}/';
63123
63162
  };
63124
63163
  export type OpenstackLoadbalancersUpdateResponses = {
63125
- 200: OpenStackLoadBalancer;
63164
+ 200: UpdateLoadBalancer;
63126
63165
  };
63127
63166
  export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
63128
63167
  export type OpenstackLoadbalancersAttachFloatingIpData = {
@@ -63134,11 +63173,9 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
63134
63173
  url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
63135
63174
  };
63136
63175
  export type OpenstackLoadbalancersAttachFloatingIpResponses = {
63137
- /**
63138
- * No response body
63139
- */
63140
- 200: unknown;
63176
+ 202: LoadBalancerAsyncOperationResponse;
63141
63177
  };
63178
+ export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
63142
63179
  export type OpenstackLoadbalancersDetachFloatingIpData = {
63143
63180
  body?: never;
63144
63181
  path: {
@@ -63148,25 +63185,24 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
63148
63185
  url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
63149
63186
  };
63150
63187
  export type OpenstackLoadbalancersDetachFloatingIpResponses = {
63151
- /**
63152
- * No response body
63153
- */
63154
- 200: unknown;
63188
+ 202: LoadBalancerAsyncOperationResponse;
63155
63189
  };
63156
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
63157
- body: LoadBalancerUpdateVipSecurityGroupsRequest;
63190
+ export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
63191
+ export type OpenstackLoadbalancersUnlinkData = {
63192
+ body?: never;
63158
63193
  path: {
63159
63194
  uuid: string;
63160
63195
  };
63161
63196
  query?: never;
63162
- url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
63197
+ url: '/api/openstack-loadbalancers/{uuid}/unlink/';
63163
63198
  };
63164
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
63199
+ export type OpenstackLoadbalancersUnlinkResponses = {
63165
63200
  /**
63166
63201
  * No response body
63167
63202
  */
63168
- 200: unknown;
63203
+ 204: void;
63169
63204
  };
63205
+ export type OpenstackLoadbalancersUnlinkResponse = OpenstackLoadbalancersUnlinkResponses[keyof OpenstackLoadbalancersUnlinkResponses];
63170
63206
  export type OpenstackMarketplaceTenantsListData = {
63171
63207
  body?: never;
63172
63208
  path?: never;
@@ -64343,7 +64379,7 @@ export type OpenstackPoolsRetrieveResponses = {
64343
64379
  };
64344
64380
  export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
64345
64381
  export type OpenstackPoolsPartialUpdateData = {
64346
- body?: PatchedOpenStackPoolRequest;
64382
+ body?: PatchedUpdatePoolRequest;
64347
64383
  path: {
64348
64384
  uuid: string;
64349
64385
  };
@@ -64351,11 +64387,11 @@ export type OpenstackPoolsPartialUpdateData = {
64351
64387
  url: '/api/openstack-pools/{uuid}/';
64352
64388
  };
64353
64389
  export type OpenstackPoolsPartialUpdateResponses = {
64354
- 200: OpenStackPool;
64390
+ 200: UpdatePool;
64355
64391
  };
64356
64392
  export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
64357
64393
  export type OpenstackPoolsUpdateData = {
64358
- body: OpenStackPoolRequest;
64394
+ body: UpdatePoolRequest;
64359
64395
  path: {
64360
64396
  uuid: string;
64361
64397
  };
@@ -64363,7 +64399,7 @@ export type OpenstackPoolsUpdateData = {
64363
64399
  url: '/api/openstack-pools/{uuid}/';
64364
64400
  };
64365
64401
  export type OpenstackPoolsUpdateResponses = {
64366
- 200: OpenStackPool;
64402
+ 200: UpdatePool;
64367
64403
  };
64368
64404
  export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
64369
64405
  export type OpenstackPortsListData = {