pulumi-alicloud 3.67.0__py3-none-any.whl → 3.67.0a1731734345__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.

Files changed (44) hide show
  1. pulumi_alicloud/__init__.py +0 -16
  2. pulumi_alicloud/cen/flow_log.py +58 -373
  3. pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
  4. pulumi_alicloud/cr/registry_enterprise_instance.py +90 -474
  5. pulumi_alicloud/ecs/ecs_image_component.py +48 -221
  6. pulumi_alicloud/ess/_inputs.py +0 -94
  7. pulumi_alicloud/ess/eci_scaling_configuration.py +14 -42
  8. pulumi_alicloud/ess/outputs.py +0 -79
  9. pulumi_alicloud/ess/scaling_configuration.py +0 -47
  10. pulumi_alicloud/expressconnect/router_vbr_child_instance.py +25 -86
  11. pulumi_alicloud/kms/key.py +1 -1
  12. pulumi_alicloud/kvstore/account.py +24 -24
  13. pulumi_alicloud/kvstore/audit_log_config.py +4 -4
  14. pulumi_alicloud/kvstore/backup_policy.py +2 -2
  15. pulumi_alicloud/kvstore/connection.py +8 -8
  16. pulumi_alicloud/kvstore/get_accounts.py +4 -4
  17. pulumi_alicloud/kvstore/get_connections.py +5 -5
  18. pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
  19. pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
  20. pulumi_alicloud/kvstore/get_permission.py +10 -10
  21. pulumi_alicloud/kvstore/get_zones.py +4 -4
  22. pulumi_alicloud/kvstore/outputs.py +2 -2
  23. pulumi_alicloud/mongodb/instance.py +0 -47
  24. pulumi_alicloud/mongodb/sharding_instance.py +0 -47
  25. pulumi_alicloud/polardb/cluster.py +7 -7
  26. pulumi_alicloud/privatelink/vpc_endpoint_service.py +91 -42
  27. pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +23 -27
  28. pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +37 -34
  29. pulumi_alicloud/privatelink/vpc_endpoint_zone.py +0 -28
  30. pulumi_alicloud/pulumi-plugin.json +1 -1
  31. pulumi_alicloud/rds/__init__.py +0 -2
  32. pulumi_alicloud/rds/_inputs.py +0 -146
  33. pulumi_alicloud/rds/outputs.py +0 -105
  34. pulumi_alicloud/redis/tair_instance.py +1 -76
  35. pulumi_alicloud/vpc/_inputs.py +0 -54
  36. pulumi_alicloud/vpc/nat_gateway.py +14 -175
  37. pulumi_alicloud/vpc/outputs.py +0 -51
  38. pulumi_alicloud/vpn/gateway_vco_route.py +21 -68
  39. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/METADATA +5 -5
  40. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/RECORD +42 -44
  41. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/WHEEL +1 -1
  42. pulumi_alicloud/rds/custom.py +0 -1630
  43. pulumi_alicloud/rds/custom_deployment_set.py +0 -525
  44. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/top_level.txt +0 -0
@@ -111,7 +111,7 @@ class ClusterArgs:
111
111
  :param pulumi.Input[int] db_node_count: Number of the PolarDB cluster nodes, default is 2(Each cluster must contain at least a primary node and a read-only node). Add/remove nodes by modifying this parameter, valid values: [2~16].
112
112
  > **NOTE:** To avoid adding or removing multiple read-only nodes by mistake, the system allows you to add or remove one read-only node at a time.
113
113
  :param pulumi.Input[str] db_node_id: The ID of the node or node subscript. Node subscript values: 1 to 15.
114
- :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
114
+ :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
115
115
  :param pulumi.Input[str] default_time_zone: The time zone of the cluster. You can set the parameter to a value that is on the hour from -12:00 to +13:00 based on UTC. Example: 00:00. Default value: SYSTEM. This value indicates that the time zone of the cluster is the same as the time zone of the region.
116
116
  > **NOTE:** This parameter is valid only when the DBType parameter is set to MySQL.
117
117
  :param pulumi.Input[int] deletion_lock: turn on table deletion_lock. Valid values are 0, 1. 1 means to open the cluster protection lock, 0 means to close the cluster protection lock
@@ -500,7 +500,7 @@ class ClusterArgs:
500
500
  @pulumi.getter(name="dbNodeNum")
501
501
  def db_node_num(self) -> Optional[pulumi.Input[int]]:
502
502
  """
503
- The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
503
+ The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
504
504
  """
505
505
  return pulumi.get(self, "db_node_num")
506
506
 
@@ -1246,7 +1246,7 @@ class _ClusterState:
1246
1246
  :param pulumi.Input[int] db_node_count: Number of the PolarDB cluster nodes, default is 2(Each cluster must contain at least a primary node and a read-only node). Add/remove nodes by modifying this parameter, valid values: [2~16].
1247
1247
  > **NOTE:** To avoid adding or removing multiple read-only nodes by mistake, the system allows you to add or remove one read-only node at a time.
1248
1248
  :param pulumi.Input[str] db_node_id: The ID of the node or node subscript. Node subscript values: 1 to 15.
1249
- :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
1249
+ :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
1250
1250
  :param pulumi.Input[Sequence[pulumi.Input['ClusterDbRevisionVersionListArgs']]] db_revision_version_lists: (Available since v1.216.0) The db_revision_version_list supports the following:
1251
1251
  :param pulumi.Input[str] db_type: Database type. Value options: MySQL, Oracle, PostgreSQL.
1252
1252
  :param pulumi.Input[str] db_version: Database version. Value options can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1) `DBVersion`.
@@ -1658,7 +1658,7 @@ class _ClusterState:
1658
1658
  @pulumi.getter(name="dbNodeNum")
1659
1659
  def db_node_num(self) -> Optional[pulumi.Input[int]]:
1660
1660
  """
1661
- The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
1661
+ The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
1662
1662
  """
1663
1663
  return pulumi.get(self, "db_node_num")
1664
1664
 
@@ -2482,7 +2482,7 @@ class Cluster(pulumi.CustomResource):
2482
2482
  :param pulumi.Input[int] db_node_count: Number of the PolarDB cluster nodes, default is 2(Each cluster must contain at least a primary node and a read-only node). Add/remove nodes by modifying this parameter, valid values: [2~16].
2483
2483
  > **NOTE:** To avoid adding or removing multiple read-only nodes by mistake, the system allows you to add or remove one read-only node at a time.
2484
2484
  :param pulumi.Input[str] db_node_id: The ID of the node or node subscript. Node subscript values: 1 to 15.
2485
- :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
2485
+ :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
2486
2486
  :param pulumi.Input[str] db_type: Database type. Value options: MySQL, Oracle, PostgreSQL.
2487
2487
  :param pulumi.Input[str] db_version: Database version. Value options can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1) `DBVersion`.
2488
2488
  :param pulumi.Input[str] default_time_zone: The time zone of the cluster. You can set the parameter to a value that is on the hour from -12:00 to +13:00 based on UTC. Example: 00:00. Default value: SYSTEM. This value indicates that the time zone of the cluster is the same as the time zone of the region.
@@ -2857,7 +2857,7 @@ class Cluster(pulumi.CustomResource):
2857
2857
  :param pulumi.Input[int] db_node_count: Number of the PolarDB cluster nodes, default is 2(Each cluster must contain at least a primary node and a read-only node). Add/remove nodes by modifying this parameter, valid values: [2~16].
2858
2858
  > **NOTE:** To avoid adding or removing multiple read-only nodes by mistake, the system allows you to add or remove one read-only node at a time.
2859
2859
  :param pulumi.Input[str] db_node_id: The ID of the node or node subscript. Node subscript values: 1 to 15.
2860
- :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
2860
+ :param pulumi.Input[int] db_node_num: The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
2861
2861
  :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterDbRevisionVersionListArgs', 'ClusterDbRevisionVersionListArgsDict']]]] db_revision_version_lists: (Available since v1.216.0) The db_revision_version_list supports the following:
2862
2862
  :param pulumi.Input[str] db_type: Database type. Value options: MySQL, Oracle, PostgreSQL.
2863
2863
  :param pulumi.Input[str] db_version: Database version. Value options can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1) `DBVersion`.
@@ -3146,7 +3146,7 @@ class Cluster(pulumi.CustomResource):
3146
3146
  @pulumi.getter(name="dbNodeNum")
3147
3147
  def db_node_num(self) -> pulumi.Output[Optional[int]]:
3148
3148
  """
3149
- The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`. From version 1.235.0, Valid values for PolarDB for MySQL Standard Edition: `1` to `8`. Valid values for PolarDB for MySQL Enterprise Edition: `1` to `16`.
3149
+ The number of Standard Edition nodes. Default value: `1`. Valid values are `1`, `2`.
3150
3150
  """
3151
3151
  return pulumi.get(self, "db_node_num")
3152
3152
 
@@ -32,17 +32,28 @@ class VpcEndpointServiceArgs:
32
32
  """
33
33
  The set of arguments for constructing a VpcEndpointService resource.
34
34
  :param pulumi.Input[bool] auto_accept_connection: Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
35
+ - **true**
36
+ - **false**.
35
37
  :param pulumi.Input[int] connect_bandwidth: The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
36
38
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
39
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
40
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
37
41
  :param pulumi.Input[str] payer: The payer of the endpoint service. Valid values:
38
- - `Endpoint`: the service consumer.
39
- - `EndpointService`: the service provider.
42
+ - **Endpoint**: the service consumer.
43
+ - **EndpointService**: the service provider.
40
44
  :param pulumi.Input[str] resource_group_id: The resource group ID.
41
45
  :param pulumi.Input[str] service_description: The description of the endpoint service.
42
46
  :param pulumi.Input[str] service_resource_type: Service resource type, value:
47
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
48
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
49
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
43
50
  :param pulumi.Input[bool] service_support_ipv6: Specifies whether to enable IPv6 for the endpoint service. Valid values:
51
+ - **true**
52
+ - **false (default)**.
44
53
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
45
54
  :param pulumi.Input[bool] zone_affinity_enabled: Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
55
+ - **true**
56
+ - **false (default)**.
46
57
  """
47
58
  if auto_accept_connection is not None:
48
59
  pulumi.set(__self__, "auto_accept_connection", auto_accept_connection)
@@ -70,6 +81,8 @@ class VpcEndpointServiceArgs:
70
81
  def auto_accept_connection(self) -> Optional[pulumi.Input[bool]]:
71
82
  """
72
83
  Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
84
+ - **true**
85
+ - **false**.
73
86
  """
74
87
  return pulumi.get(self, "auto_accept_connection")
75
88
 
@@ -94,6 +107,8 @@ class VpcEndpointServiceArgs:
94
107
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
95
108
  """
96
109
  Specifies whether to perform only a dry run, without performing the actual request.
110
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
111
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
97
112
  """
98
113
  return pulumi.get(self, "dry_run")
99
114
 
@@ -106,8 +121,8 @@ class VpcEndpointServiceArgs:
106
121
  def payer(self) -> Optional[pulumi.Input[str]]:
107
122
  """
108
123
  The payer of the endpoint service. Valid values:
109
- - `Endpoint`: the service consumer.
110
- - `EndpointService`: the service provider.
124
+ - **Endpoint**: the service consumer.
125
+ - **EndpointService**: the service provider.
111
126
  """
112
127
  return pulumi.get(self, "payer")
113
128
 
@@ -144,6 +159,9 @@ class VpcEndpointServiceArgs:
144
159
  def service_resource_type(self) -> Optional[pulumi.Input[str]]:
145
160
  """
146
161
  Service resource type, value:
162
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
163
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
164
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
147
165
  """
148
166
  return pulumi.get(self, "service_resource_type")
149
167
 
@@ -156,6 +174,8 @@ class VpcEndpointServiceArgs:
156
174
  def service_support_ipv6(self) -> Optional[pulumi.Input[bool]]:
157
175
  """
158
176
  Specifies whether to enable IPv6 for the endpoint service. Valid values:
177
+ - **true**
178
+ - **false (default)**.
159
179
  """
160
180
  return pulumi.get(self, "service_support_ipv6")
161
181
 
@@ -180,6 +200,8 @@ class VpcEndpointServiceArgs:
180
200
  def zone_affinity_enabled(self) -> Optional[pulumi.Input[bool]]:
181
201
  """
182
202
  Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
203
+ - **true**
204
+ - **false (default)**.
183
205
  """
184
206
  return pulumi.get(self, "zone_affinity_enabled")
185
207
 
@@ -196,7 +218,6 @@ class _VpcEndpointServiceState:
196
218
  create_time: Optional[pulumi.Input[str]] = None,
197
219
  dry_run: Optional[pulumi.Input[bool]] = None,
198
220
  payer: Optional[pulumi.Input[str]] = None,
199
- region_id: Optional[pulumi.Input[str]] = None,
200
221
  resource_group_id: Optional[pulumi.Input[str]] = None,
201
222
  service_business_status: Optional[pulumi.Input[str]] = None,
202
223
  service_description: Optional[pulumi.Input[str]] = None,
@@ -210,23 +231,33 @@ class _VpcEndpointServiceState:
210
231
  """
211
232
  Input properties used for looking up and filtering VpcEndpointService resources.
212
233
  :param pulumi.Input[bool] auto_accept_connection: Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
234
+ - **true**
235
+ - **false**.
213
236
  :param pulumi.Input[int] connect_bandwidth: The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
214
237
  :param pulumi.Input[str] create_time: The time when the endpoint service was created.
215
238
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
239
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
240
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
216
241
  :param pulumi.Input[str] payer: The payer of the endpoint service. Valid values:
217
- - `Endpoint`: the service consumer.
218
- - `EndpointService`: the service provider.
219
- :param pulumi.Input[str] region_id: (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
242
+ - **Endpoint**: the service consumer.
243
+ - **EndpointService**: the service provider.
220
244
  :param pulumi.Input[str] resource_group_id: The resource group ID.
221
245
  :param pulumi.Input[str] service_business_status: The service state of the endpoint service.
222
246
  :param pulumi.Input[str] service_description: The description of the endpoint service.
223
247
  :param pulumi.Input[str] service_domain: The domain name of the endpoint service.
224
248
  :param pulumi.Input[str] service_resource_type: Service resource type, value:
249
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
250
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
251
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
225
252
  :param pulumi.Input[bool] service_support_ipv6: Specifies whether to enable IPv6 for the endpoint service. Valid values:
253
+ - **true**
254
+ - **false (default)**.
226
255
  :param pulumi.Input[str] status: The state of the endpoint service.
227
256
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
228
257
  :param pulumi.Input[str] vpc_endpoint_service_name: The name of the endpoint service.
229
258
  :param pulumi.Input[bool] zone_affinity_enabled: Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
259
+ - **true**
260
+ - **false (default)**.
230
261
  """
231
262
  if auto_accept_connection is not None:
232
263
  pulumi.set(__self__, "auto_accept_connection", auto_accept_connection)
@@ -238,8 +269,6 @@ class _VpcEndpointServiceState:
238
269
  pulumi.set(__self__, "dry_run", dry_run)
239
270
  if payer is not None:
240
271
  pulumi.set(__self__, "payer", payer)
241
- if region_id is not None:
242
- pulumi.set(__self__, "region_id", region_id)
243
272
  if resource_group_id is not None:
244
273
  pulumi.set(__self__, "resource_group_id", resource_group_id)
245
274
  if service_business_status is not None:
@@ -266,6 +295,8 @@ class _VpcEndpointServiceState:
266
295
  def auto_accept_connection(self) -> Optional[pulumi.Input[bool]]:
267
296
  """
268
297
  Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
298
+ - **true**
299
+ - **false**.
269
300
  """
270
301
  return pulumi.get(self, "auto_accept_connection")
271
302
 
@@ -302,6 +333,8 @@ class _VpcEndpointServiceState:
302
333
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
303
334
  """
304
335
  Specifies whether to perform only a dry run, without performing the actual request.
336
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
337
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
305
338
  """
306
339
  return pulumi.get(self, "dry_run")
307
340
 
@@ -314,8 +347,8 @@ class _VpcEndpointServiceState:
314
347
  def payer(self) -> Optional[pulumi.Input[str]]:
315
348
  """
316
349
  The payer of the endpoint service. Valid values:
317
- - `Endpoint`: the service consumer.
318
- - `EndpointService`: the service provider.
350
+ - **Endpoint**: the service consumer.
351
+ - **EndpointService**: the service provider.
319
352
  """
320
353
  return pulumi.get(self, "payer")
321
354
 
@@ -323,18 +356,6 @@ class _VpcEndpointServiceState:
323
356
  def payer(self, value: Optional[pulumi.Input[str]]):
324
357
  pulumi.set(self, "payer", value)
325
358
 
326
- @property
327
- @pulumi.getter(name="regionId")
328
- def region_id(self) -> Optional[pulumi.Input[str]]:
329
- """
330
- (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
331
- """
332
- return pulumi.get(self, "region_id")
333
-
334
- @region_id.setter
335
- def region_id(self, value: Optional[pulumi.Input[str]]):
336
- pulumi.set(self, "region_id", value)
337
-
338
359
  @property
339
360
  @pulumi.getter(name="resourceGroupId")
340
361
  def resource_group_id(self) -> Optional[pulumi.Input[str]]:
@@ -388,6 +409,9 @@ class _VpcEndpointServiceState:
388
409
  def service_resource_type(self) -> Optional[pulumi.Input[str]]:
389
410
  """
390
411
  Service resource type, value:
412
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
413
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
414
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
391
415
  """
392
416
  return pulumi.get(self, "service_resource_type")
393
417
 
@@ -400,6 +424,8 @@ class _VpcEndpointServiceState:
400
424
  def service_support_ipv6(self) -> Optional[pulumi.Input[bool]]:
401
425
  """
402
426
  Specifies whether to enable IPv6 for the endpoint service. Valid values:
427
+ - **true**
428
+ - **false (default)**.
403
429
  """
404
430
  return pulumi.get(self, "service_support_ipv6")
405
431
 
@@ -448,6 +474,8 @@ class _VpcEndpointServiceState:
448
474
  def zone_affinity_enabled(self) -> Optional[pulumi.Input[bool]]:
449
475
  """
450
476
  Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
477
+ - **true**
478
+ - **false (default)**.
451
479
  """
452
480
  return pulumi.get(self, "zone_affinity_enabled")
453
481
 
@@ -508,17 +536,28 @@ class VpcEndpointService(pulumi.CustomResource):
508
536
  :param str resource_name: The name of the resource.
509
537
  :param pulumi.ResourceOptions opts: Options for the resource.
510
538
  :param pulumi.Input[bool] auto_accept_connection: Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
539
+ - **true**
540
+ - **false**.
511
541
  :param pulumi.Input[int] connect_bandwidth: The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
512
542
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
543
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
544
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
513
545
  :param pulumi.Input[str] payer: The payer of the endpoint service. Valid values:
514
- - `Endpoint`: the service consumer.
515
- - `EndpointService`: the service provider.
546
+ - **Endpoint**: the service consumer.
547
+ - **EndpointService**: the service provider.
516
548
  :param pulumi.Input[str] resource_group_id: The resource group ID.
517
549
  :param pulumi.Input[str] service_description: The description of the endpoint service.
518
550
  :param pulumi.Input[str] service_resource_type: Service resource type, value:
551
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
552
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
553
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
519
554
  :param pulumi.Input[bool] service_support_ipv6: Specifies whether to enable IPv6 for the endpoint service. Valid values:
555
+ - **true**
556
+ - **false (default)**.
520
557
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
521
558
  :param pulumi.Input[bool] zone_affinity_enabled: Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
559
+ - **true**
560
+ - **false (default)**.
522
561
  """
523
562
  ...
524
563
  @overload
@@ -604,7 +643,6 @@ class VpcEndpointService(pulumi.CustomResource):
604
643
  __props__.__dict__["tags"] = tags
605
644
  __props__.__dict__["zone_affinity_enabled"] = zone_affinity_enabled
606
645
  __props__.__dict__["create_time"] = None
607
- __props__.__dict__["region_id"] = None
608
646
  __props__.__dict__["service_business_status"] = None
609
647
  __props__.__dict__["service_domain"] = None
610
648
  __props__.__dict__["status"] = None
@@ -624,7 +662,6 @@ class VpcEndpointService(pulumi.CustomResource):
624
662
  create_time: Optional[pulumi.Input[str]] = None,
625
663
  dry_run: Optional[pulumi.Input[bool]] = None,
626
664
  payer: Optional[pulumi.Input[str]] = None,
627
- region_id: Optional[pulumi.Input[str]] = None,
628
665
  resource_group_id: Optional[pulumi.Input[str]] = None,
629
666
  service_business_status: Optional[pulumi.Input[str]] = None,
630
667
  service_description: Optional[pulumi.Input[str]] = None,
@@ -643,23 +680,33 @@ class VpcEndpointService(pulumi.CustomResource):
643
680
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
644
681
  :param pulumi.ResourceOptions opts: Options for the resource.
645
682
  :param pulumi.Input[bool] auto_accept_connection: Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
683
+ - **true**
684
+ - **false**.
646
685
  :param pulumi.Input[int] connect_bandwidth: The default bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.
647
686
  :param pulumi.Input[str] create_time: The time when the endpoint service was created.
648
687
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
688
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
689
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
649
690
  :param pulumi.Input[str] payer: The payer of the endpoint service. Valid values:
650
- - `Endpoint`: the service consumer.
651
- - `EndpointService`: the service provider.
652
- :param pulumi.Input[str] region_id: (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
691
+ - **Endpoint**: the service consumer.
692
+ - **EndpointService**: the service provider.
653
693
  :param pulumi.Input[str] resource_group_id: The resource group ID.
654
694
  :param pulumi.Input[str] service_business_status: The service state of the endpoint service.
655
695
  :param pulumi.Input[str] service_description: The description of the endpoint service.
656
696
  :param pulumi.Input[str] service_domain: The domain name of the endpoint service.
657
697
  :param pulumi.Input[str] service_resource_type: Service resource type, value:
698
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
699
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
700
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
658
701
  :param pulumi.Input[bool] service_support_ipv6: Specifies whether to enable IPv6 for the endpoint service. Valid values:
702
+ - **true**
703
+ - **false (default)**.
659
704
  :param pulumi.Input[str] status: The state of the endpoint service.
660
705
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
661
706
  :param pulumi.Input[str] vpc_endpoint_service_name: The name of the endpoint service.
662
707
  :param pulumi.Input[bool] zone_affinity_enabled: Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
708
+ - **true**
709
+ - **false (default)**.
663
710
  """
664
711
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
665
712
 
@@ -670,7 +717,6 @@ class VpcEndpointService(pulumi.CustomResource):
670
717
  __props__.__dict__["create_time"] = create_time
671
718
  __props__.__dict__["dry_run"] = dry_run
672
719
  __props__.__dict__["payer"] = payer
673
- __props__.__dict__["region_id"] = region_id
674
720
  __props__.__dict__["resource_group_id"] = resource_group_id
675
721
  __props__.__dict__["service_business_status"] = service_business_status
676
722
  __props__.__dict__["service_description"] = service_description
@@ -688,6 +734,8 @@ class VpcEndpointService(pulumi.CustomResource):
688
734
  def auto_accept_connection(self) -> pulumi.Output[Optional[bool]]:
689
735
  """
690
736
  Indicates whether the endpoint service automatically accepts endpoint connection requests. Valid values:
737
+ - **true**
738
+ - **false**.
691
739
  """
692
740
  return pulumi.get(self, "auto_accept_connection")
693
741
 
@@ -712,6 +760,8 @@ class VpcEndpointService(pulumi.CustomResource):
712
760
  def dry_run(self) -> pulumi.Output[Optional[bool]]:
713
761
  """
714
762
  Specifies whether to perform only a dry run, without performing the actual request.
763
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
764
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
715
765
  """
716
766
  return pulumi.get(self, "dry_run")
717
767
 
@@ -720,19 +770,11 @@ class VpcEndpointService(pulumi.CustomResource):
720
770
  def payer(self) -> pulumi.Output[str]:
721
771
  """
722
772
  The payer of the endpoint service. Valid values:
723
- - `Endpoint`: the service consumer.
724
- - `EndpointService`: the service provider.
773
+ - **Endpoint**: the service consumer.
774
+ - **EndpointService**: the service provider.
725
775
  """
726
776
  return pulumi.get(self, "payer")
727
777
 
728
- @property
729
- @pulumi.getter(name="regionId")
730
- def region_id(self) -> pulumi.Output[str]:
731
- """
732
- (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
733
- """
734
- return pulumi.get(self, "region_id")
735
-
736
778
  @property
737
779
  @pulumi.getter(name="resourceGroupId")
738
780
  def resource_group_id(self) -> pulumi.Output[str]:
@@ -770,6 +812,9 @@ class VpcEndpointService(pulumi.CustomResource):
770
812
  def service_resource_type(self) -> pulumi.Output[str]:
771
813
  """
772
814
  Service resource type, value:
815
+ - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
816
+ - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
817
+ - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
773
818
  """
774
819
  return pulumi.get(self, "service_resource_type")
775
820
 
@@ -778,6 +823,8 @@ class VpcEndpointService(pulumi.CustomResource):
778
823
  def service_support_ipv6(self) -> pulumi.Output[bool]:
779
824
  """
780
825
  Specifies whether to enable IPv6 for the endpoint service. Valid values:
826
+ - **true**
827
+ - **false (default)**.
781
828
  """
782
829
  return pulumi.get(self, "service_support_ipv6")
783
830
 
@@ -810,6 +857,8 @@ class VpcEndpointService(pulumi.CustomResource):
810
857
  def zone_affinity_enabled(self) -> pulumi.Output[bool]:
811
858
  """
812
859
  Specifies whether to first resolve the domain name of the nearest endpoint that is associated with the endpoint service. Valid values:
860
+ - **true**
861
+ - **false (default)**.
813
862
  """
814
863
  return pulumi.get(self, "zone_affinity_enabled")
815
864
 
@@ -27,10 +27,10 @@ class VpcEndpointServiceConnectionArgs:
27
27
  The set of arguments for constructing a VpcEndpointServiceConnection resource.
28
28
  :param pulumi.Input[str] endpoint_id: The endpoint ID.
29
29
  :param pulumi.Input[str] service_id: The endpoint service ID.
30
- :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
31
-
32
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
30
+ :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
33
31
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
32
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
33
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
34
34
  """
35
35
  pulumi.set(__self__, "endpoint_id", endpoint_id)
36
36
  pulumi.set(__self__, "service_id", service_id)
@@ -67,9 +67,7 @@ class VpcEndpointServiceConnectionArgs:
67
67
  @pulumi.getter
68
68
  def bandwidth(self) -> Optional[pulumi.Input[int]]:
69
69
  """
70
- The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
71
-
72
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
70
+ The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
73
71
  """
74
72
  return pulumi.get(self, "bandwidth")
75
73
 
@@ -82,6 +80,8 @@ class VpcEndpointServiceConnectionArgs:
82
80
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
83
81
  """
84
82
  Specifies whether to perform only a dry run, without performing the actual request. Valid values:
83
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
84
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
85
85
  """
86
86
  return pulumi.get(self, "dry_run")
87
87
 
@@ -100,10 +100,10 @@ class _VpcEndpointServiceConnectionState:
100
100
  status: Optional[pulumi.Input[str]] = None):
101
101
  """
102
102
  Input properties used for looking up and filtering VpcEndpointServiceConnection resources.
103
- :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
104
-
105
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
103
+ :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
106
104
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
105
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
106
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
107
107
  :param pulumi.Input[str] endpoint_id: The endpoint ID.
108
108
  :param pulumi.Input[str] service_id: The endpoint service ID.
109
109
  :param pulumi.Input[str] status: The state of the endpoint connection.
@@ -123,9 +123,7 @@ class _VpcEndpointServiceConnectionState:
123
123
  @pulumi.getter
124
124
  def bandwidth(self) -> Optional[pulumi.Input[int]]:
125
125
  """
126
- The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
127
-
128
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
126
+ The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
129
127
  """
130
128
  return pulumi.get(self, "bandwidth")
131
129
 
@@ -138,6 +136,8 @@ class _VpcEndpointServiceConnectionState:
138
136
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
139
137
  """
140
138
  Specifies whether to perform only a dry run, without performing the actual request. Valid values:
139
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
140
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
141
141
  """
142
142
  return pulumi.get(self, "dry_run")
143
143
 
@@ -193,9 +193,7 @@ class VpcEndpointServiceConnection(pulumi.CustomResource):
193
193
  service_id: Optional[pulumi.Input[str]] = None,
194
194
  __props__=None):
195
195
  """
196
- Provides a Private Link Vpc Endpoint Connection resource.
197
-
198
- vpc endpoint connection.
196
+ Provides a Private Link Vpc Endpoint Connection resource. vpc endpoint connection.
199
197
 
200
198
  For information about Private Link Vpc Endpoint Connection and how to use it, see [What is Vpc Endpoint Connection](https://www.alibabacloud.com/help/en/privatelink/latest/api-privatelink-2020-04-15-enablevpcendpointzoneconnection).
201
199
 
@@ -259,10 +257,10 @@ class VpcEndpointServiceConnection(pulumi.CustomResource):
259
257
 
260
258
  :param str resource_name: The name of the resource.
261
259
  :param pulumi.ResourceOptions opts: Options for the resource.
262
- :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
263
-
264
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
260
+ :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
265
261
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
262
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
263
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
266
264
  :param pulumi.Input[str] endpoint_id: The endpoint ID.
267
265
  :param pulumi.Input[str] service_id: The endpoint service ID.
268
266
  """
@@ -273,9 +271,7 @@ class VpcEndpointServiceConnection(pulumi.CustomResource):
273
271
  args: VpcEndpointServiceConnectionArgs,
274
272
  opts: Optional[pulumi.ResourceOptions] = None):
275
273
  """
276
- Provides a Private Link Vpc Endpoint Connection resource.
277
-
278
- vpc endpoint connection.
274
+ Provides a Private Link Vpc Endpoint Connection resource. vpc endpoint connection.
279
275
 
280
276
  For information about Private Link Vpc Endpoint Connection and how to use it, see [What is Vpc Endpoint Connection](https://www.alibabacloud.com/help/en/privatelink/latest/api-privatelink-2020-04-15-enablevpcendpointzoneconnection).
281
277
 
@@ -396,10 +392,10 @@ class VpcEndpointServiceConnection(pulumi.CustomResource):
396
392
  :param str resource_name: The unique name of the resulting resource.
397
393
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
398
394
  :param pulumi.ResourceOptions opts: Options for the resource.
399
- :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
400
-
401
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
395
+ :param pulumi.Input[int] bandwidth: The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
402
396
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
397
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
398
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
403
399
  :param pulumi.Input[str] endpoint_id: The endpoint ID.
404
400
  :param pulumi.Input[str] service_id: The endpoint service ID.
405
401
  :param pulumi.Input[str] status: The state of the endpoint connection.
@@ -419,9 +415,7 @@ class VpcEndpointServiceConnection(pulumi.CustomResource):
419
415
  @pulumi.getter
420
416
  def bandwidth(self) -> pulumi.Output[int]:
421
417
  """
422
- The bandwidth of the endpoint connection. Valid values: 1024 to 10240. Unit: Mbit/s.
423
-
424
- Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
418
+ The bandwidth of the endpoint connection. Valid values: 100 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
425
419
  """
426
420
  return pulumi.get(self, "bandwidth")
427
421
 
@@ -430,6 +424,8 @@ class VpcEndpointServiceConnection(pulumi.CustomResource):
430
424
  def dry_run(self) -> pulumi.Output[Optional[bool]]:
431
425
  """
432
426
  Specifies whether to perform only a dry run, without performing the actual request. Valid values:
427
+ - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the DryRunOperation error code is returned.
428
+ - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
433
429
  """
434
430
  return pulumi.get(self, "dry_run")
435
431