pulumi-alicloud 3.63.0a1726291447__py3-none-any.whl → 3.63.0a1726828180__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/amqp/binding.py +30 -36
- pulumi_alicloud/cen/_inputs.py +180 -14
- pulumi_alicloud/cen/outputs.py +173 -12
- pulumi_alicloud/cen/traffic_marking_policy.py +116 -53
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +338 -119
- pulumi_alicloud/cr/chart_namespace.py +14 -6
- pulumi_alicloud/cr/endpoint_acl_policy.py +10 -2
- pulumi_alicloud/cr/namespace.py +10 -2
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ecs/_inputs.py +28 -0
- pulumi_alicloud/ecs/outputs.py +20 -0
- pulumi_alicloud/emrv2/_inputs.py +12 -12
- pulumi_alicloud/emrv2/outputs.py +12 -12
- pulumi_alicloud/ens/_inputs.py +50 -2
- pulumi_alicloud/ens/instance.py +428 -184
- pulumi_alicloud/ens/outputs.py +57 -2
- pulumi_alicloud/expressconnect/physical_connection.py +321 -185
- pulumi_alicloud/fc/trigger.py +22 -24
- pulumi_alicloud/ga/endpoint_group.py +68 -14
- pulumi_alicloud/mongodb/instance.py +94 -0
- pulumi_alicloud/nlb/_inputs.py +120 -64
- pulumi_alicloud/nlb/get_listeners.py +32 -2
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +8 -2
- pulumi_alicloud/nlb/listener.py +315 -245
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +181 -212
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +29 -39
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +22 -18
- pulumi_alicloud/nlb/outputs.py +122 -66
- pulumi_alicloud/nlb/security_policy.py +53 -25
- pulumi_alicloud/nlb/server_group.py +196 -133
- pulumi_alicloud/ocean/base_instance.py +498 -163
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/RECORD +40 -40
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/top_level.txt +0 -0
|
@@ -19,11 +19,9 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
19
19
|
dry_run: Optional[pulumi.Input[bool]] = None):
|
|
20
20
|
"""
|
|
21
21
|
The set of arguments for constructing a LoadBalancerSecurityGroupAttachment resource.
|
|
22
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the
|
|
23
|
-
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
24
|
-
:param pulumi.Input[bool] dry_run:
|
|
25
|
-
- **true**: sends a check request and does not bind a security group to the instance. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
|
|
26
|
-
- **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
|
|
22
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the NLB instance to be associated with the security group.
|
|
23
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group to be disassociated.
|
|
24
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
27
25
|
"""
|
|
28
26
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
|
29
27
|
pulumi.set(__self__, "security_group_id", security_group_id)
|
|
@@ -34,7 +32,7 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
34
32
|
@pulumi.getter(name="loadBalancerId")
|
|
35
33
|
def load_balancer_id(self) -> pulumi.Input[str]:
|
|
36
34
|
"""
|
|
37
|
-
The ID of the
|
|
35
|
+
The ID of the NLB instance to be associated with the security group.
|
|
38
36
|
"""
|
|
39
37
|
return pulumi.get(self, "load_balancer_id")
|
|
40
38
|
|
|
@@ -46,7 +44,7 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
46
44
|
@pulumi.getter(name="securityGroupId")
|
|
47
45
|
def security_group_id(self) -> pulumi.Input[str]:
|
|
48
46
|
"""
|
|
49
|
-
The ID of the security group.
|
|
47
|
+
The ID of the security group to be disassociated.
|
|
50
48
|
"""
|
|
51
49
|
return pulumi.get(self, "security_group_id")
|
|
52
50
|
|
|
@@ -58,9 +56,7 @@ class LoadBalancerSecurityGroupAttachmentArgs:
|
|
|
58
56
|
@pulumi.getter(name="dryRun")
|
|
59
57
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
60
58
|
"""
|
|
61
|
-
|
|
62
|
-
- **true**: sends a check request and does not bind a security group to the instance. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
|
|
63
|
-
- **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
|
|
59
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
64
60
|
"""
|
|
65
61
|
return pulumi.get(self, "dry_run")
|
|
66
62
|
|
|
@@ -77,11 +73,9 @@ class _LoadBalancerSecurityGroupAttachmentState:
|
|
|
77
73
|
security_group_id: Optional[pulumi.Input[str]] = None):
|
|
78
74
|
"""
|
|
79
75
|
Input properties used for looking up and filtering LoadBalancerSecurityGroupAttachment resources.
|
|
80
|
-
:param pulumi.Input[bool] dry_run:
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the network-based server load balancer instance to be bound to the security group.
|
|
84
|
-
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
76
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
77
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the NLB instance to be associated with the security group.
|
|
78
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group to be disassociated.
|
|
85
79
|
"""
|
|
86
80
|
if dry_run is not None:
|
|
87
81
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
@@ -94,9 +88,7 @@ class _LoadBalancerSecurityGroupAttachmentState:
|
|
|
94
88
|
@pulumi.getter(name="dryRun")
|
|
95
89
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
96
90
|
"""
|
|
97
|
-
|
|
98
|
-
- **true**: sends a check request and does not bind a security group to the instance. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
|
|
99
|
-
- **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
|
|
91
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
100
92
|
"""
|
|
101
93
|
return pulumi.get(self, "dry_run")
|
|
102
94
|
|
|
@@ -108,7 +100,7 @@ class _LoadBalancerSecurityGroupAttachmentState:
|
|
|
108
100
|
@pulumi.getter(name="loadBalancerId")
|
|
109
101
|
def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
|
|
110
102
|
"""
|
|
111
|
-
The ID of the
|
|
103
|
+
The ID of the NLB instance to be associated with the security group.
|
|
112
104
|
"""
|
|
113
105
|
return pulumi.get(self, "load_balancer_id")
|
|
114
106
|
|
|
@@ -120,7 +112,7 @@ class _LoadBalancerSecurityGroupAttachmentState:
|
|
|
120
112
|
@pulumi.getter(name="securityGroupId")
|
|
121
113
|
def security_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
122
114
|
"""
|
|
123
|
-
The ID of the security group.
|
|
115
|
+
The ID of the security group to be disassociated.
|
|
124
116
|
"""
|
|
125
117
|
return pulumi.get(self, "security_group_id")
|
|
126
118
|
|
|
@@ -139,9 +131,11 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
139
131
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
140
132
|
__props__=None):
|
|
141
133
|
"""
|
|
142
|
-
Provides a
|
|
134
|
+
Provides a NLB Load Balancer Security Group Attachment resource.
|
|
143
135
|
|
|
144
|
-
|
|
136
|
+
Security Group mount.
|
|
137
|
+
|
|
138
|
+
For information about NLB Load Balancer Security Group Attachment and how to use it, see [What is Load Balancer Security Group Attachment](https://www.alibabacloud.com/help/en/server-load-balancer/latest/loadbalancerjoinsecuritygroup).
|
|
145
139
|
|
|
146
140
|
> **NOTE:** Available since v1.198.0.
|
|
147
141
|
|
|
@@ -211,11 +205,9 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
211
205
|
|
|
212
206
|
:param str resource_name: The name of the resource.
|
|
213
207
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
214
|
-
:param pulumi.Input[bool] dry_run:
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the network-based server load balancer instance to be bound to the security group.
|
|
218
|
-
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
208
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
209
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the NLB instance to be associated with the security group.
|
|
210
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group to be disassociated.
|
|
219
211
|
"""
|
|
220
212
|
...
|
|
221
213
|
@overload
|
|
@@ -224,9 +216,11 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
224
216
|
args: LoadBalancerSecurityGroupAttachmentArgs,
|
|
225
217
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
226
218
|
"""
|
|
227
|
-
Provides a
|
|
219
|
+
Provides a NLB Load Balancer Security Group Attachment resource.
|
|
220
|
+
|
|
221
|
+
Security Group mount.
|
|
228
222
|
|
|
229
|
-
For information about
|
|
223
|
+
For information about NLB Load Balancer Security Group Attachment and how to use it, see [What is Load Balancer Security Group Attachment](https://www.alibabacloud.com/help/en/server-load-balancer/latest/loadbalancerjoinsecuritygroup).
|
|
230
224
|
|
|
231
225
|
> **NOTE:** Available since v1.198.0.
|
|
232
226
|
|
|
@@ -348,11 +342,9 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
348
342
|
:param str resource_name: The unique name of the resulting resource.
|
|
349
343
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
350
344
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
351
|
-
:param pulumi.Input[bool] dry_run:
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the network-based server load balancer instance to be bound to the security group.
|
|
355
|
-
:param pulumi.Input[str] security_group_id: The ID of the security group.
|
|
345
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
346
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the NLB instance to be associated with the security group.
|
|
347
|
+
:param pulumi.Input[str] security_group_id: The ID of the security group to be disassociated.
|
|
356
348
|
"""
|
|
357
349
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
358
350
|
|
|
@@ -367,9 +359,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
367
359
|
@pulumi.getter(name="dryRun")
|
|
368
360
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
369
361
|
"""
|
|
370
|
-
|
|
371
|
-
- **true**: sends a check request and does not bind a security group to the instance. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
|
|
372
|
-
- **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
|
|
362
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
373
363
|
"""
|
|
374
364
|
return pulumi.get(self, "dry_run")
|
|
375
365
|
|
|
@@ -377,7 +367,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
377
367
|
@pulumi.getter(name="loadBalancerId")
|
|
378
368
|
def load_balancer_id(self) -> pulumi.Output[str]:
|
|
379
369
|
"""
|
|
380
|
-
The ID of the
|
|
370
|
+
The ID of the NLB instance to be associated with the security group.
|
|
381
371
|
"""
|
|
382
372
|
return pulumi.get(self, "load_balancer_id")
|
|
383
373
|
|
|
@@ -385,7 +375,7 @@ class LoadBalancerSecurityGroupAttachment(pulumi.CustomResource):
|
|
|
385
375
|
@pulumi.getter(name="securityGroupId")
|
|
386
376
|
def security_group_id(self) -> pulumi.Output[str]:
|
|
387
377
|
"""
|
|
388
|
-
The ID of the security group.
|
|
378
|
+
The ID of the security group to be disassociated.
|
|
389
379
|
"""
|
|
390
380
|
return pulumi.get(self, "security_group_id")
|
|
391
381
|
|
|
@@ -18,8 +18,8 @@ class LoadbalancerCommonBandwidthPackageAttachmentArgs:
|
|
|
18
18
|
load_balancer_id: pulumi.Input[str]):
|
|
19
19
|
"""
|
|
20
20
|
The set of arguments for constructing a LoadbalancerCommonBandwidthPackageAttachment resource.
|
|
21
|
-
:param pulumi.Input[str] bandwidth_package_id:
|
|
22
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the
|
|
21
|
+
:param pulumi.Input[str] bandwidth_package_id: Specifies whether only to precheck the request. Valid values:
|
|
22
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the EIP bandwidth plan.
|
|
23
23
|
"""
|
|
24
24
|
pulumi.set(__self__, "bandwidth_package_id", bandwidth_package_id)
|
|
25
25
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
|
@@ -28,7 +28,7 @@ class LoadbalancerCommonBandwidthPackageAttachmentArgs:
|
|
|
28
28
|
@pulumi.getter(name="bandwidthPackageId")
|
|
29
29
|
def bandwidth_package_id(self) -> pulumi.Input[str]:
|
|
30
30
|
"""
|
|
31
|
-
|
|
31
|
+
Specifies whether only to precheck the request. Valid values:
|
|
32
32
|
"""
|
|
33
33
|
return pulumi.get(self, "bandwidth_package_id")
|
|
34
34
|
|
|
@@ -40,7 +40,7 @@ class LoadbalancerCommonBandwidthPackageAttachmentArgs:
|
|
|
40
40
|
@pulumi.getter(name="loadBalancerId")
|
|
41
41
|
def load_balancer_id(self) -> pulumi.Input[str]:
|
|
42
42
|
"""
|
|
43
|
-
The ID of the
|
|
43
|
+
The ID of the EIP bandwidth plan.
|
|
44
44
|
"""
|
|
45
45
|
return pulumi.get(self, "load_balancer_id")
|
|
46
46
|
|
|
@@ -57,8 +57,8 @@ class _LoadbalancerCommonBandwidthPackageAttachmentState:
|
|
|
57
57
|
status: Optional[pulumi.Input[str]] = None):
|
|
58
58
|
"""
|
|
59
59
|
Input properties used for looking up and filtering LoadbalancerCommonBandwidthPackageAttachment resources.
|
|
60
|
-
:param pulumi.Input[str] bandwidth_package_id:
|
|
61
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the
|
|
60
|
+
:param pulumi.Input[str] bandwidth_package_id: Specifies whether only to precheck the request. Valid values:
|
|
61
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the EIP bandwidth plan.
|
|
62
62
|
:param pulumi.Input[str] status: Network-based load balancing instance status. Value:, indicating that the instance listener will no longer forward traffic.
|
|
63
63
|
"""
|
|
64
64
|
if bandwidth_package_id is not None:
|
|
@@ -72,7 +72,7 @@ class _LoadbalancerCommonBandwidthPackageAttachmentState:
|
|
|
72
72
|
@pulumi.getter(name="bandwidthPackageId")
|
|
73
73
|
def bandwidth_package_id(self) -> Optional[pulumi.Input[str]]:
|
|
74
74
|
"""
|
|
75
|
-
|
|
75
|
+
Specifies whether only to precheck the request. Valid values:
|
|
76
76
|
"""
|
|
77
77
|
return pulumi.get(self, "bandwidth_package_id")
|
|
78
78
|
|
|
@@ -84,7 +84,7 @@ class _LoadbalancerCommonBandwidthPackageAttachmentState:
|
|
|
84
84
|
@pulumi.getter(name="loadBalancerId")
|
|
85
85
|
def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
|
|
86
86
|
"""
|
|
87
|
-
The ID of the
|
|
87
|
+
The ID of the EIP bandwidth plan.
|
|
88
88
|
"""
|
|
89
89
|
return pulumi.get(self, "load_balancer_id")
|
|
90
90
|
|
|
@@ -114,7 +114,9 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
114
114
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
|
115
115
|
__props__=None):
|
|
116
116
|
"""
|
|
117
|
-
Provides a NLB Loadbalancer Common Bandwidth Package Attachment resource.
|
|
117
|
+
Provides a NLB Loadbalancer Common Bandwidth Package Attachment resource.
|
|
118
|
+
|
|
119
|
+
Bandwidth Package Operation.
|
|
118
120
|
|
|
119
121
|
For information about NLB Loadbalancer Common Bandwidth Package Attachment and how to use it, see [What is Loadbalancer Common Bandwidth Package Attachment](https://www.alibabacloud.com/help/en/server-load-balancer/latest/nlb-instances-change).
|
|
120
122
|
|
|
@@ -173,7 +175,7 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
173
175
|
])
|
|
174
176
|
default_common_bandwith_package = alicloud.vpc.CommonBandwithPackage("default",
|
|
175
177
|
bandwidth="2",
|
|
176
|
-
internet_charge_type="
|
|
178
|
+
internet_charge_type="PayByTraffic",
|
|
177
179
|
bandwidth_package_name=name,
|
|
178
180
|
description=name)
|
|
179
181
|
default_loadbalancer_common_bandwidth_package_attachment = alicloud.nlb.LoadbalancerCommonBandwidthPackageAttachment("default",
|
|
@@ -191,8 +193,8 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
191
193
|
|
|
192
194
|
:param str resource_name: The name of the resource.
|
|
193
195
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
194
|
-
:param pulumi.Input[str] bandwidth_package_id:
|
|
195
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the
|
|
196
|
+
:param pulumi.Input[str] bandwidth_package_id: Specifies whether only to precheck the request. Valid values:
|
|
197
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the EIP bandwidth plan.
|
|
196
198
|
"""
|
|
197
199
|
...
|
|
198
200
|
@overload
|
|
@@ -201,7 +203,9 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
201
203
|
args: LoadbalancerCommonBandwidthPackageAttachmentArgs,
|
|
202
204
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
203
205
|
"""
|
|
204
|
-
Provides a NLB Loadbalancer Common Bandwidth Package Attachment resource.
|
|
206
|
+
Provides a NLB Loadbalancer Common Bandwidth Package Attachment resource.
|
|
207
|
+
|
|
208
|
+
Bandwidth Package Operation.
|
|
205
209
|
|
|
206
210
|
For information about NLB Loadbalancer Common Bandwidth Package Attachment and how to use it, see [What is Loadbalancer Common Bandwidth Package Attachment](https://www.alibabacloud.com/help/en/server-load-balancer/latest/nlb-instances-change).
|
|
207
211
|
|
|
@@ -260,7 +264,7 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
260
264
|
])
|
|
261
265
|
default_common_bandwith_package = alicloud.vpc.CommonBandwithPackage("default",
|
|
262
266
|
bandwidth="2",
|
|
263
|
-
internet_charge_type="
|
|
267
|
+
internet_charge_type="PayByTraffic",
|
|
264
268
|
bandwidth_package_name=name,
|
|
265
269
|
description=name)
|
|
266
270
|
default_loadbalancer_common_bandwidth_package_attachment = alicloud.nlb.LoadbalancerCommonBandwidthPackageAttachment("default",
|
|
@@ -329,8 +333,8 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
329
333
|
:param str resource_name: The unique name of the resulting resource.
|
|
330
334
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
331
335
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
332
|
-
:param pulumi.Input[str] bandwidth_package_id:
|
|
333
|
-
:param pulumi.Input[str] load_balancer_id: The ID of the
|
|
336
|
+
:param pulumi.Input[str] bandwidth_package_id: Specifies whether only to precheck the request. Valid values:
|
|
337
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the EIP bandwidth plan.
|
|
334
338
|
:param pulumi.Input[str] status: Network-based load balancing instance status. Value:, indicating that the instance listener will no longer forward traffic.
|
|
335
339
|
"""
|
|
336
340
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -346,7 +350,7 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
346
350
|
@pulumi.getter(name="bandwidthPackageId")
|
|
347
351
|
def bandwidth_package_id(self) -> pulumi.Output[str]:
|
|
348
352
|
"""
|
|
349
|
-
|
|
353
|
+
Specifies whether only to precheck the request. Valid values:
|
|
350
354
|
"""
|
|
351
355
|
return pulumi.get(self, "bandwidth_package_id")
|
|
352
356
|
|
|
@@ -354,7 +358,7 @@ class LoadbalancerCommonBandwidthPackageAttachment(pulumi.CustomResource):
|
|
|
354
358
|
@pulumi.getter(name="loadBalancerId")
|
|
355
359
|
def load_balancer_id(self) -> pulumi.Output[str]:
|
|
356
360
|
"""
|
|
357
|
-
The ID of the
|
|
361
|
+
The ID of the EIP bandwidth plan.
|
|
358
362
|
"""
|
|
359
363
|
return pulumi.get(self, "load_balancer_id")
|
|
360
364
|
|