waldur-js-client 8.0.7-dev.34 → 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.
- package/dist/sdk.gen.d.ts +4 -4
- package/dist/sdk.gen.js +5 -9
- package/dist/types.gen.d.ts +164 -152
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
|
5019
|
+
delay?: number;
|
|
5025
5020
|
/**
|
|
5026
5021
|
* Time in seconds to timeout a health check
|
|
5027
5022
|
*/
|
|
5028
|
-
timeout
|
|
5029
|
-
|
|
5030
|
-
|
|
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
|
|
5037
|
+
delay?: number;
|
|
5047
5038
|
/**
|
|
5048
5039
|
* Time in seconds to timeout a health check
|
|
5049
5040
|
*/
|
|
5050
|
-
timeout
|
|
5041
|
+
timeout?: number;
|
|
5042
|
+
max_retries?: number;
|
|
5043
|
+
max_retries_down?: number;
|
|
5051
5044
|
/**
|
|
5052
|
-
*
|
|
5045
|
+
* Pool this health monitor belongs to
|
|
5053
5046
|
*/
|
|
5054
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
*/
|
|
@@ -13413,8 +13421,8 @@ export type OpenStackLoadBalancer = {
|
|
|
13413
13421
|
* An IPv4 or IPv6 address.
|
|
13414
13422
|
*/
|
|
13415
13423
|
vip_address?: string;
|
|
13416
|
-
readonly
|
|
13417
|
-
readonly
|
|
13424
|
+
readonly vip_subnet?: string | null;
|
|
13425
|
+
readonly vip_port?: string | null;
|
|
13418
13426
|
/**
|
|
13419
13427
|
* Floating IP attached to the VIP port
|
|
13420
13428
|
*/
|
|
@@ -13436,26 +13444,6 @@ export type OpenStackLoadBalancer = {
|
|
|
13436
13444
|
readonly is_usage_based?: boolean | null;
|
|
13437
13445
|
readonly is_limit_based?: boolean | null;
|
|
13438
13446
|
};
|
|
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
13447
|
export type OpenStackNestedFloatingIp = {
|
|
13460
13448
|
readonly url?: string;
|
|
13461
13449
|
readonly uuid?: string;
|
|
@@ -13795,10 +13783,7 @@ export type OpenStackPoolMember = {
|
|
|
13795
13783
|
*/
|
|
13796
13784
|
address?: string;
|
|
13797
13785
|
readonly protocol_port?: number;
|
|
13798
|
-
|
|
13799
|
-
* Subnet ID for the member (required for creation)
|
|
13800
|
-
*/
|
|
13801
|
-
subnet_id?: string;
|
|
13786
|
+
readonly subnet?: string | null;
|
|
13802
13787
|
readonly weight?: number;
|
|
13803
13788
|
readonly provisioning_status?: string;
|
|
13804
13789
|
readonly operating_status?: string;
|
|
@@ -13816,22 +13801,6 @@ export type OpenStackPoolMember = {
|
|
|
13816
13801
|
readonly is_usage_based?: boolean | null;
|
|
13817
13802
|
readonly is_limit_based?: boolean | null;
|
|
13818
13803
|
};
|
|
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
13804
|
export type OpenStackPort = {
|
|
13836
13805
|
readonly url?: string;
|
|
13837
13806
|
readonly uuid?: string;
|
|
@@ -15581,6 +15550,13 @@ export type PatchedCustomerRequest = {
|
|
|
15581
15550
|
* Comma-separated list of notification email addresses
|
|
15582
15551
|
*/
|
|
15583
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;
|
|
15584
15560
|
};
|
|
15585
15561
|
export type PatchedCustomerServiceAccountRequest = {
|
|
15586
15562
|
username?: string;
|
|
@@ -16125,46 +16101,10 @@ export type PatchedOpenStackInstanceRequest = {
|
|
|
16125
16101
|
name?: string;
|
|
16126
16102
|
description?: string;
|
|
16127
16103
|
};
|
|
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
16104
|
export type PatchedOpenStackNetworkRequest = {
|
|
16149
16105
|
name?: string;
|
|
16150
16106
|
description?: string;
|
|
16151
16107
|
};
|
|
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
16108
|
export type PatchedOpenStackPortRequest = {
|
|
16169
16109
|
name?: string;
|
|
16170
16110
|
description?: string;
|
|
@@ -17027,18 +16967,31 @@ export type PatchedTemplateRequest = {
|
|
|
17027
16967
|
};
|
|
17028
16968
|
export type PatchedUpdateHealthMonitorRequest = {
|
|
17029
16969
|
name?: string;
|
|
16970
|
+
/**
|
|
16971
|
+
* Interval between health checks in seconds
|
|
16972
|
+
*/
|
|
17030
16973
|
delay?: number;
|
|
16974
|
+
/**
|
|
16975
|
+
* Time in seconds to timeout a health check
|
|
16976
|
+
*/
|
|
17031
16977
|
timeout?: number;
|
|
17032
16978
|
max_retries?: number;
|
|
16979
|
+
max_retries_down?: number;
|
|
17033
16980
|
};
|
|
17034
16981
|
export type PatchedUpdateListenerRequest = {
|
|
17035
16982
|
name?: string;
|
|
17036
16983
|
default_pool?: string | null;
|
|
17037
16984
|
};
|
|
16985
|
+
export type PatchedUpdateLoadBalancerRequest = {
|
|
16986
|
+
name?: string;
|
|
16987
|
+
};
|
|
17038
16988
|
export type PatchedUpdatePoolMemberRequest = {
|
|
17039
16989
|
name?: string;
|
|
17040
16990
|
weight?: number;
|
|
17041
16991
|
};
|
|
16992
|
+
export type PatchedUpdatePoolRequest = {
|
|
16993
|
+
name?: string;
|
|
16994
|
+
};
|
|
17042
16995
|
export type PatchedUserAgreementRequest = {
|
|
17043
16996
|
content?: string;
|
|
17044
16997
|
agreement_type?: AgreementTypeEnum;
|
|
@@ -24258,16 +24211,32 @@ export type UpdateActionsResponse = {
|
|
|
24258
24211
|
provider_action_type?: string | null;
|
|
24259
24212
|
};
|
|
24260
24213
|
export type UpdateHealthMonitor = {
|
|
24214
|
+
readonly url: string;
|
|
24215
|
+
readonly uuid: string;
|
|
24261
24216
|
name?: string;
|
|
24217
|
+
/**
|
|
24218
|
+
* Interval between health checks in seconds
|
|
24219
|
+
*/
|
|
24262
24220
|
delay?: number;
|
|
24221
|
+
/**
|
|
24222
|
+
* Time in seconds to timeout a health check
|
|
24223
|
+
*/
|
|
24263
24224
|
timeout?: number;
|
|
24264
24225
|
max_retries?: number;
|
|
24226
|
+
max_retries_down?: number;
|
|
24265
24227
|
};
|
|
24266
24228
|
export type UpdateHealthMonitorRequest = {
|
|
24267
24229
|
name?: string;
|
|
24230
|
+
/**
|
|
24231
|
+
* Interval between health checks in seconds
|
|
24232
|
+
*/
|
|
24268
24233
|
delay?: number;
|
|
24234
|
+
/**
|
|
24235
|
+
* Time in seconds to timeout a health check
|
|
24236
|
+
*/
|
|
24269
24237
|
timeout?: number;
|
|
24270
24238
|
max_retries?: number;
|
|
24239
|
+
max_retries_down?: number;
|
|
24271
24240
|
};
|
|
24272
24241
|
export type UpdateListener = {
|
|
24273
24242
|
name?: string;
|
|
@@ -24277,6 +24246,14 @@ export type UpdateListenerRequest = {
|
|
|
24277
24246
|
name?: string;
|
|
24278
24247
|
default_pool?: string | null;
|
|
24279
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
|
+
};
|
|
24280
24257
|
export type UpdateOfferingComponentRequest = {
|
|
24281
24258
|
uuid: string;
|
|
24282
24259
|
billing_type: BillingTypeEnum;
|
|
@@ -24326,7 +24303,14 @@ export type UpdateOfferingComponentRequest = {
|
|
|
24326
24303
|
*/
|
|
24327
24304
|
renewal_duration_step?: number | null;
|
|
24328
24305
|
};
|
|
24306
|
+
export type UpdatePool = {
|
|
24307
|
+
readonly url: string;
|
|
24308
|
+
readonly uuid: string;
|
|
24309
|
+
name: string;
|
|
24310
|
+
};
|
|
24329
24311
|
export type UpdatePoolMember = {
|
|
24312
|
+
readonly url: string;
|
|
24313
|
+
readonly uuid: string;
|
|
24330
24314
|
name?: string;
|
|
24331
24315
|
weight?: number;
|
|
24332
24316
|
};
|
|
@@ -24334,6 +24318,9 @@ export type UpdatePoolMemberRequest = {
|
|
|
24334
24318
|
name?: string;
|
|
24335
24319
|
weight?: number;
|
|
24336
24320
|
};
|
|
24321
|
+
export type UpdatePoolRequest = {
|
|
24322
|
+
name: string;
|
|
24323
|
+
};
|
|
24337
24324
|
export type UrgencyEnum = 'low' | 'medium' | 'high';
|
|
24338
24325
|
export type User = {
|
|
24339
24326
|
readonly url?: string;
|
|
@@ -25675,6 +25662,13 @@ export type CustomerRequestForm = {
|
|
|
25675
25662
|
* Comma-separated list of notification email addresses
|
|
25676
25663
|
*/
|
|
25677
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;
|
|
25678
25672
|
};
|
|
25679
25673
|
export type CustomerRequestMultipart = {
|
|
25680
25674
|
/**
|
|
@@ -25752,6 +25746,13 @@ export type CustomerRequestMultipart = {
|
|
|
25752
25746
|
* Comma-separated list of notification email addresses
|
|
25753
25747
|
*/
|
|
25754
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;
|
|
25755
25756
|
};
|
|
25756
25757
|
export type PatchedCustomerRequestForm = {
|
|
25757
25758
|
/**
|
|
@@ -25829,6 +25830,13 @@ export type PatchedCustomerRequestForm = {
|
|
|
25829
25830
|
* Comma-separated list of notification email addresses
|
|
25830
25831
|
*/
|
|
25831
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;
|
|
25832
25840
|
};
|
|
25833
25841
|
export type PatchedCustomerRequestMultipart = {
|
|
25834
25842
|
/**
|
|
@@ -25906,6 +25914,13 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
25906
25914
|
* Comma-separated list of notification email addresses
|
|
25907
25915
|
*/
|
|
25908
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;
|
|
25909
25924
|
};
|
|
25910
25925
|
export type ExternalLinkRequestForm = {
|
|
25911
25926
|
name: string;
|
|
@@ -27453,7 +27468,7 @@ export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity'
|
|
|
27453
27468
|
export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
|
|
27454
27469
|
export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
|
|
27455
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';
|
|
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';
|
|
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';
|
|
27457
27472
|
export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
|
|
27458
27473
|
export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
|
|
27459
27474
|
export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
|
|
@@ -27533,9 +27548,9 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
|
|
|
27533
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';
|
|
27534
27549
|
export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
|
|
27535
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';
|
|
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' | '
|
|
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';
|
|
27537
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';
|
|
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' | '
|
|
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';
|
|
27539
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';
|
|
27540
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';
|
|
27541
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';
|
|
@@ -63126,7 +63141,7 @@ export type OpenstackLoadbalancersRetrieveResponses = {
|
|
|
63126
63141
|
};
|
|
63127
63142
|
export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
|
|
63128
63143
|
export type OpenstackLoadbalancersPartialUpdateData = {
|
|
63129
|
-
body?:
|
|
63144
|
+
body?: PatchedUpdateLoadBalancerRequest;
|
|
63130
63145
|
path: {
|
|
63131
63146
|
uuid: string;
|
|
63132
63147
|
};
|
|
@@ -63134,11 +63149,11 @@ export type OpenstackLoadbalancersPartialUpdateData = {
|
|
|
63134
63149
|
url: '/api/openstack-loadbalancers/{uuid}/';
|
|
63135
63150
|
};
|
|
63136
63151
|
export type OpenstackLoadbalancersPartialUpdateResponses = {
|
|
63137
|
-
200:
|
|
63152
|
+
200: UpdateLoadBalancer;
|
|
63138
63153
|
};
|
|
63139
63154
|
export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
|
|
63140
63155
|
export type OpenstackLoadbalancersUpdateData = {
|
|
63141
|
-
body:
|
|
63156
|
+
body: UpdateLoadBalancerRequest;
|
|
63142
63157
|
path: {
|
|
63143
63158
|
uuid: string;
|
|
63144
63159
|
};
|
|
@@ -63146,7 +63161,7 @@ export type OpenstackLoadbalancersUpdateData = {
|
|
|
63146
63161
|
url: '/api/openstack-loadbalancers/{uuid}/';
|
|
63147
63162
|
};
|
|
63148
63163
|
export type OpenstackLoadbalancersUpdateResponses = {
|
|
63149
|
-
200:
|
|
63164
|
+
200: UpdateLoadBalancer;
|
|
63150
63165
|
};
|
|
63151
63166
|
export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
|
|
63152
63167
|
export type OpenstackLoadbalancersAttachFloatingIpData = {
|
|
@@ -63158,11 +63173,9 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
|
|
|
63158
63173
|
url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
|
|
63159
63174
|
};
|
|
63160
63175
|
export type OpenstackLoadbalancersAttachFloatingIpResponses = {
|
|
63161
|
-
|
|
63162
|
-
* No response body
|
|
63163
|
-
*/
|
|
63164
|
-
200: unknown;
|
|
63176
|
+
202: LoadBalancerAsyncOperationResponse;
|
|
63165
63177
|
};
|
|
63178
|
+
export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
|
|
63166
63179
|
export type OpenstackLoadbalancersDetachFloatingIpData = {
|
|
63167
63180
|
body?: never;
|
|
63168
63181
|
path: {
|
|
@@ -63172,25 +63185,24 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
|
|
|
63172
63185
|
url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
|
|
63173
63186
|
};
|
|
63174
63187
|
export type OpenstackLoadbalancersDetachFloatingIpResponses = {
|
|
63175
|
-
|
|
63176
|
-
* No response body
|
|
63177
|
-
*/
|
|
63178
|
-
200: unknown;
|
|
63188
|
+
202: LoadBalancerAsyncOperationResponse;
|
|
63179
63189
|
};
|
|
63180
|
-
export type
|
|
63181
|
-
|
|
63190
|
+
export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
|
|
63191
|
+
export type OpenstackLoadbalancersUnlinkData = {
|
|
63192
|
+
body?: never;
|
|
63182
63193
|
path: {
|
|
63183
63194
|
uuid: string;
|
|
63184
63195
|
};
|
|
63185
63196
|
query?: never;
|
|
63186
|
-
url: '/api/openstack-loadbalancers/{uuid}/
|
|
63197
|
+
url: '/api/openstack-loadbalancers/{uuid}/unlink/';
|
|
63187
63198
|
};
|
|
63188
|
-
export type
|
|
63199
|
+
export type OpenstackLoadbalancersUnlinkResponses = {
|
|
63189
63200
|
/**
|
|
63190
63201
|
* No response body
|
|
63191
63202
|
*/
|
|
63192
|
-
|
|
63203
|
+
204: void;
|
|
63193
63204
|
};
|
|
63205
|
+
export type OpenstackLoadbalancersUnlinkResponse = OpenstackLoadbalancersUnlinkResponses[keyof OpenstackLoadbalancersUnlinkResponses];
|
|
63194
63206
|
export type OpenstackMarketplaceTenantsListData = {
|
|
63195
63207
|
body?: never;
|
|
63196
63208
|
path?: never;
|
|
@@ -64367,7 +64379,7 @@ export type OpenstackPoolsRetrieveResponses = {
|
|
|
64367
64379
|
};
|
|
64368
64380
|
export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
|
|
64369
64381
|
export type OpenstackPoolsPartialUpdateData = {
|
|
64370
|
-
body?:
|
|
64382
|
+
body?: PatchedUpdatePoolRequest;
|
|
64371
64383
|
path: {
|
|
64372
64384
|
uuid: string;
|
|
64373
64385
|
};
|
|
@@ -64375,11 +64387,11 @@ export type OpenstackPoolsPartialUpdateData = {
|
|
|
64375
64387
|
url: '/api/openstack-pools/{uuid}/';
|
|
64376
64388
|
};
|
|
64377
64389
|
export type OpenstackPoolsPartialUpdateResponses = {
|
|
64378
|
-
200:
|
|
64390
|
+
200: UpdatePool;
|
|
64379
64391
|
};
|
|
64380
64392
|
export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
|
|
64381
64393
|
export type OpenstackPoolsUpdateData = {
|
|
64382
|
-
body:
|
|
64394
|
+
body: UpdatePoolRequest;
|
|
64383
64395
|
path: {
|
|
64384
64396
|
uuid: string;
|
|
64385
64397
|
};
|
|
@@ -64387,7 +64399,7 @@ export type OpenstackPoolsUpdateData = {
|
|
|
64387
64399
|
url: '/api/openstack-pools/{uuid}/';
|
|
64388
64400
|
};
|
|
64389
64401
|
export type OpenstackPoolsUpdateResponses = {
|
|
64390
|
-
200:
|
|
64402
|
+
200: UpdatePool;
|
|
64391
64403
|
};
|
|
64392
64404
|
export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
|
|
64393
64405
|
export type OpenstackPortsListData = {
|