pulumi-alicloud 3.86.0a1758000634__py3-none-any.whl → 3.86.1__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 (51) hide show
  1. pulumi_alicloud/__init__.py +56 -0
  2. pulumi_alicloud/actiontrail/get_sasl_users.py +106 -21
  3. pulumi_alicloud/actiontrail/outputs.py +18 -0
  4. pulumi_alicloud/alikafka/instance.py +28 -28
  5. pulumi_alicloud/apig/_inputs.py +80 -6
  6. pulumi_alicloud/apig/gateway.py +111 -3
  7. pulumi_alicloud/apig/outputs.py +67 -4
  8. pulumi_alicloud/cas/certificate.py +248 -35
  9. pulumi_alicloud/cas/service_certificate.py +454 -168
  10. pulumi_alicloud/cen/transit_router_vpc_attachment.py +61 -29
  11. pulumi_alicloud/cloudfirewall/__init__.py +1 -0
  12. pulumi_alicloud/cloudfirewall/threat_intelligence_switch.py +257 -0
  13. pulumi_alicloud/cloudsso/__init__.py +1 -0
  14. pulumi_alicloud/cloudsso/_inputs.py +54 -0
  15. pulumi_alicloud/cloudsso/outputs.py +51 -0
  16. pulumi_alicloud/cloudsso/user_provisioning.py +723 -0
  17. pulumi_alicloud/dms/__init__.py +1 -0
  18. pulumi_alicloud/dms/airflow.py +990 -0
  19. pulumi_alicloud/ecs/ecs_launch_template.py +21 -7
  20. pulumi_alicloud/ecs/instance.py +7 -7
  21. pulumi_alicloud/esa/__init__.py +2 -0
  22. pulumi_alicloud/esa/_inputs.py +189 -0
  23. pulumi_alicloud/esa/outputs.py +137 -0
  24. pulumi_alicloud/esa/transport_layer_application.py +459 -0
  25. pulumi_alicloud/esa/waf_ruleset.py +437 -0
  26. pulumi_alicloud/fc/_inputs.py +13 -0
  27. pulumi_alicloud/fc/function.py +0 -156
  28. pulumi_alicloud/fc/outputs.py +8 -0
  29. pulumi_alicloud/fc/v3_function.py +54 -7
  30. pulumi_alicloud/hbr/policy_binding.py +7 -0
  31. pulumi_alicloud/kvstore/account.py +4 -4
  32. pulumi_alicloud/lindorm/__init__.py +2 -0
  33. pulumi_alicloud/lindorm/_inputs.py +459 -0
  34. pulumi_alicloud/lindorm/instance_v2.py +1119 -0
  35. pulumi_alicloud/lindorm/outputs.py +319 -0
  36. pulumi_alicloud/log/etl.py +6 -0
  37. pulumi_alicloud/mongodb/sharding_instance.py +235 -0
  38. pulumi_alicloud/pulumi-plugin.json +1 -1
  39. pulumi_alicloud/pvtz/get_service.py +12 -8
  40. pulumi_alicloud/resourcemanager/control_policy.py +169 -31
  41. pulumi_alicloud/resourcemanager/control_policy_attachment.py +39 -7
  42. pulumi_alicloud/resourcemanager/handshake.py +118 -56
  43. pulumi_alicloud/sls/__init__.py +1 -0
  44. pulumi_alicloud/sls/_inputs.py +111 -0
  45. pulumi_alicloud/sls/index.py +646 -0
  46. pulumi_alicloud/sls/outputs.py +86 -0
  47. pulumi_alicloud/vpc/bgp_network.py +83 -36
  48. {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.86.1.dist-info}/METADATA +1 -1
  49. {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.86.1.dist-info}/RECORD +51 -43
  50. {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.86.1.dist-info}/WHEEL +0 -0
  51. {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.86.1.dist-info}/top_level.txt +0 -0
@@ -37,6 +37,7 @@ __all__ = [
37
37
  'CollectionPolicyResourceDirectory',
38
38
  'EtlConfiguration',
39
39
  'EtlConfigurationSink',
40
+ 'IndexLine',
40
41
  'LogtailConfigOutputDetail',
41
42
  'MachineGroupGroupAttribute',
42
43
  'OssExportSinkConfiguration',
@@ -1678,6 +1679,91 @@ class EtlConfigurationSink(dict):
1678
1679
  return pulumi.get(self, "role_arn")
1679
1680
 
1680
1681
 
1682
+ @pulumi.output_type
1683
+ class IndexLine(dict):
1684
+ @staticmethod
1685
+ def __key_warning(key: str):
1686
+ suggest = None
1687
+ if key == "caseSensitive":
1688
+ suggest = "case_sensitive"
1689
+ elif key == "excludeKeys":
1690
+ suggest = "exclude_keys"
1691
+ elif key == "includeKeys":
1692
+ suggest = "include_keys"
1693
+
1694
+ if suggest:
1695
+ pulumi.log.warn(f"Key '{key}' not found in IndexLine. Access the value via the '{suggest}' property getter instead.")
1696
+
1697
+ def __getitem__(self, key: str) -> Any:
1698
+ IndexLine.__key_warning(key)
1699
+ return super().__getitem__(key)
1700
+
1701
+ def get(self, key: str, default = None) -> Any:
1702
+ IndexLine.__key_warning(key)
1703
+ return super().get(key, default)
1704
+
1705
+ def __init__(__self__, *,
1706
+ case_sensitive: _builtins.bool,
1707
+ chn: _builtins.bool,
1708
+ tokens: Sequence[_builtins.str],
1709
+ exclude_keys: Optional[Sequence[_builtins.str]] = None,
1710
+ include_keys: Optional[Sequence[_builtins.str]] = None):
1711
+ """
1712
+ :param _builtins.bool case_sensitive: Is case sensitive
1713
+ :param _builtins.bool chn: Does it include Chinese
1714
+ :param Sequence[_builtins.str] tokens: Delimiter
1715
+ :param Sequence[_builtins.str] exclude_keys: List of excluded fields
1716
+ :param Sequence[_builtins.str] include_keys: Include field list
1717
+ """
1718
+ pulumi.set(__self__, "case_sensitive", case_sensitive)
1719
+ pulumi.set(__self__, "chn", chn)
1720
+ pulumi.set(__self__, "tokens", tokens)
1721
+ if exclude_keys is not None:
1722
+ pulumi.set(__self__, "exclude_keys", exclude_keys)
1723
+ if include_keys is not None:
1724
+ pulumi.set(__self__, "include_keys", include_keys)
1725
+
1726
+ @_builtins.property
1727
+ @pulumi.getter(name="caseSensitive")
1728
+ def case_sensitive(self) -> _builtins.bool:
1729
+ """
1730
+ Is case sensitive
1731
+ """
1732
+ return pulumi.get(self, "case_sensitive")
1733
+
1734
+ @_builtins.property
1735
+ @pulumi.getter
1736
+ def chn(self) -> _builtins.bool:
1737
+ """
1738
+ Does it include Chinese
1739
+ """
1740
+ return pulumi.get(self, "chn")
1741
+
1742
+ @_builtins.property
1743
+ @pulumi.getter
1744
+ def tokens(self) -> Sequence[_builtins.str]:
1745
+ """
1746
+ Delimiter
1747
+ """
1748
+ return pulumi.get(self, "tokens")
1749
+
1750
+ @_builtins.property
1751
+ @pulumi.getter(name="excludeKeys")
1752
+ def exclude_keys(self) -> Optional[Sequence[_builtins.str]]:
1753
+ """
1754
+ List of excluded fields
1755
+ """
1756
+ return pulumi.get(self, "exclude_keys")
1757
+
1758
+ @_builtins.property
1759
+ @pulumi.getter(name="includeKeys")
1760
+ def include_keys(self) -> Optional[Sequence[_builtins.str]]:
1761
+ """
1762
+ Include field list
1763
+ """
1764
+ return pulumi.get(self, "include_keys")
1765
+
1766
+
1681
1767
  @pulumi.output_type
1682
1768
  class LogtailConfigOutputDetail(dict):
1683
1769
  @staticmethod
@@ -20,14 +20,18 @@ __all__ = ['BgpNetworkArgs', 'BgpNetwork']
20
20
  class BgpNetworkArgs:
21
21
  def __init__(__self__, *,
22
22
  dst_cidr_block: pulumi.Input[_builtins.str],
23
- router_id: pulumi.Input[_builtins.str]):
23
+ router_id: pulumi.Input[_builtins.str],
24
+ vpc_id: Optional[pulumi.Input[_builtins.str]] = None):
24
25
  """
25
26
  The set of arguments for constructing a BgpNetwork resource.
26
27
  :param pulumi.Input[_builtins.str] dst_cidr_block: The CIDR block of the virtual private cloud (VPC) or vSwitch that you want to connect to a data center.
27
- :param pulumi.Input[_builtins.str] router_id: The ID of the vRouter associated with the router interface.
28
+ :param pulumi.Input[_builtins.str] router_id: The region ID of the virtual border router (VBR) group.
29
+ :param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC.
28
30
  """
29
31
  pulumi.set(__self__, "dst_cidr_block", dst_cidr_block)
30
32
  pulumi.set(__self__, "router_id", router_id)
33
+ if vpc_id is not None:
34
+ pulumi.set(__self__, "vpc_id", vpc_id)
31
35
 
32
36
  @_builtins.property
33
37
  @pulumi.getter(name="dstCidrBlock")
@@ -45,7 +49,7 @@ class BgpNetworkArgs:
45
49
  @pulumi.getter(name="routerId")
46
50
  def router_id(self) -> pulumi.Input[_builtins.str]:
47
51
  """
48
- The ID of the vRouter associated with the router interface.
52
+ The region ID of the virtual border router (VBR) group.
49
53
  """
50
54
  return pulumi.get(self, "router_id")
51
55
 
@@ -53,18 +57,32 @@ class BgpNetworkArgs:
53
57
  def router_id(self, value: pulumi.Input[_builtins.str]):
54
58
  pulumi.set(self, "router_id", value)
55
59
 
60
+ @_builtins.property
61
+ @pulumi.getter(name="vpcId")
62
+ def vpc_id(self) -> Optional[pulumi.Input[_builtins.str]]:
63
+ """
64
+ The ID of the VPC.
65
+ """
66
+ return pulumi.get(self, "vpc_id")
67
+
68
+ @vpc_id.setter
69
+ def vpc_id(self, value: Optional[pulumi.Input[_builtins.str]]):
70
+ pulumi.set(self, "vpc_id", value)
71
+
56
72
 
57
73
  @pulumi.input_type
58
74
  class _BgpNetworkState:
59
75
  def __init__(__self__, *,
60
76
  dst_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
61
77
  router_id: Optional[pulumi.Input[_builtins.str]] = None,
62
- status: Optional[pulumi.Input[_builtins.str]] = None):
78
+ status: Optional[pulumi.Input[_builtins.str]] = None,
79
+ vpc_id: Optional[pulumi.Input[_builtins.str]] = None):
63
80
  """
64
81
  Input properties used for looking up and filtering BgpNetwork resources.
65
82
  :param pulumi.Input[_builtins.str] dst_cidr_block: The CIDR block of the virtual private cloud (VPC) or vSwitch that you want to connect to a data center.
66
- :param pulumi.Input[_builtins.str] router_id: The ID of the vRouter associated with the router interface.
83
+ :param pulumi.Input[_builtins.str] router_id: The region ID of the virtual border router (VBR) group.
67
84
  :param pulumi.Input[_builtins.str] status: The state of the advertised BGP network.
85
+ :param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC.
68
86
  """
69
87
  if dst_cidr_block is not None:
70
88
  pulumi.set(__self__, "dst_cidr_block", dst_cidr_block)
@@ -72,6 +90,8 @@ class _BgpNetworkState:
72
90
  pulumi.set(__self__, "router_id", router_id)
73
91
  if status is not None:
74
92
  pulumi.set(__self__, "status", status)
93
+ if vpc_id is not None:
94
+ pulumi.set(__self__, "vpc_id", vpc_id)
75
95
 
76
96
  @_builtins.property
77
97
  @pulumi.getter(name="dstCidrBlock")
@@ -89,7 +109,7 @@ class _BgpNetworkState:
89
109
  @pulumi.getter(name="routerId")
90
110
  def router_id(self) -> Optional[pulumi.Input[_builtins.str]]:
91
111
  """
92
- The ID of the vRouter associated with the router interface.
112
+ The region ID of the virtual border router (VBR) group.
93
113
  """
94
114
  return pulumi.get(self, "router_id")
95
115
 
@@ -109,6 +129,18 @@ class _BgpNetworkState:
109
129
  def status(self, value: Optional[pulumi.Input[_builtins.str]]):
110
130
  pulumi.set(self, "status", value)
111
131
 
132
+ @_builtins.property
133
+ @pulumi.getter(name="vpcId")
134
+ def vpc_id(self) -> Optional[pulumi.Input[_builtins.str]]:
135
+ """
136
+ The ID of the VPC.
137
+ """
138
+ return pulumi.get(self, "vpc_id")
139
+
140
+ @vpc_id.setter
141
+ def vpc_id(self, value: Optional[pulumi.Input[_builtins.str]]):
142
+ pulumi.set(self, "vpc_id", value)
143
+
112
144
 
113
145
  @pulumi.type_token("alicloud:vpc/bgpNetwork:BgpNetwork")
114
146
  class BgpNetwork(pulumi.CustomResource):
@@ -118,11 +150,12 @@ class BgpNetwork(pulumi.CustomResource):
118
150
  opts: Optional[pulumi.ResourceOptions] = None,
119
151
  dst_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
120
152
  router_id: Optional[pulumi.Input[_builtins.str]] = None,
153
+ vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
121
154
  __props__=None):
122
155
  """
123
- Provides a VPC Bgp Network resource.
156
+ Provides a Express Connect Bgp Network resource.
124
157
 
125
- For information about VPC Bgp Network and how to use it, see [What is Bgp Network](https://www.alibabacloud.com/help/en/doc-detail/91267.html).
158
+ For information about Express Connect Bgp Network and how to use it, see [What is Bgp Network](https://www.alibabacloud.com/help/en/express-connect/developer-reference/api-vpc-2016-04-28-addbgpnetwork-express-connect).
126
159
 
127
160
  > **NOTE:** Available since v1.153.0.
128
161
 
@@ -138,29 +171,29 @@ class BgpNetwork(pulumi.CustomResource):
138
171
  config = pulumi.Config()
139
172
  name = config.get("name")
140
173
  if name is None:
141
- name = "tf-example"
142
- example = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
143
- vlan_id = random.index.Integer("vlan_id",
144
- max=2999,
145
- min=1)
146
- example_virtual_border_router = alicloud.expressconnect.VirtualBorderRouter("example",
174
+ name = "terraform-example"
175
+ default = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
176
+ default_integer = random.index.Integer("default",
177
+ min=1,
178
+ max=2999)
179
+ default_virtual_border_router = alicloud.expressconnect.VirtualBorderRouter("default",
147
180
  local_gateway_ip="10.0.0.1",
148
181
  peer_gateway_ip="10.0.0.2",
149
182
  peering_subnet_mask="255.255.255.252",
150
- physical_connection_id=example.connections[0].id,
183
+ physical_connection_id=default.connections[0].id,
151
184
  virtual_border_router_name=name,
152
- vlan_id=vlan_id["id"],
185
+ vlan_id=default_integer["id"],
153
186
  min_rx_interval=1000,
154
187
  min_tx_interval=1000,
155
188
  detect_multiplier=10)
156
- example_bgp_network = alicloud.vpc.BgpNetwork("example",
189
+ default_bgp_network = alicloud.vpc.BgpNetwork("default",
157
190
  dst_cidr_block="192.168.0.0/24",
158
- router_id=example_virtual_border_router.id)
191
+ router_id=default_virtual_border_router.id)
159
192
  ```
160
193
 
161
194
  ## Import
162
195
 
163
- VPC Bgp Network can be imported using the id, e.g.
196
+ Express Connect Bgp Network can be imported using the id, e.g.
164
197
 
165
198
  ```sh
166
199
  $ pulumi import alicloud:vpc/bgpNetwork:BgpNetwork example <router_id>:<dst_cidr_block>
@@ -169,7 +202,8 @@ class BgpNetwork(pulumi.CustomResource):
169
202
  :param str resource_name: The name of the resource.
170
203
  :param pulumi.ResourceOptions opts: Options for the resource.
171
204
  :param pulumi.Input[_builtins.str] dst_cidr_block: The CIDR block of the virtual private cloud (VPC) or vSwitch that you want to connect to a data center.
172
- :param pulumi.Input[_builtins.str] router_id: The ID of the vRouter associated with the router interface.
205
+ :param pulumi.Input[_builtins.str] router_id: The region ID of the virtual border router (VBR) group.
206
+ :param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC.
173
207
  """
174
208
  ...
175
209
  @overload
@@ -178,9 +212,9 @@ class BgpNetwork(pulumi.CustomResource):
178
212
  args: BgpNetworkArgs,
179
213
  opts: Optional[pulumi.ResourceOptions] = None):
180
214
  """
181
- Provides a VPC Bgp Network resource.
215
+ Provides a Express Connect Bgp Network resource.
182
216
 
183
- For information about VPC Bgp Network and how to use it, see [What is Bgp Network](https://www.alibabacloud.com/help/en/doc-detail/91267.html).
217
+ For information about Express Connect Bgp Network and how to use it, see [What is Bgp Network](https://www.alibabacloud.com/help/en/express-connect/developer-reference/api-vpc-2016-04-28-addbgpnetwork-express-connect).
184
218
 
185
219
  > **NOTE:** Available since v1.153.0.
186
220
 
@@ -196,29 +230,29 @@ class BgpNetwork(pulumi.CustomResource):
196
230
  config = pulumi.Config()
197
231
  name = config.get("name")
198
232
  if name is None:
199
- name = "tf-example"
200
- example = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
201
- vlan_id = random.index.Integer("vlan_id",
202
- max=2999,
203
- min=1)
204
- example_virtual_border_router = alicloud.expressconnect.VirtualBorderRouter("example",
233
+ name = "terraform-example"
234
+ default = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
235
+ default_integer = random.index.Integer("default",
236
+ min=1,
237
+ max=2999)
238
+ default_virtual_border_router = alicloud.expressconnect.VirtualBorderRouter("default",
205
239
  local_gateway_ip="10.0.0.1",
206
240
  peer_gateway_ip="10.0.0.2",
207
241
  peering_subnet_mask="255.255.255.252",
208
- physical_connection_id=example.connections[0].id,
242
+ physical_connection_id=default.connections[0].id,
209
243
  virtual_border_router_name=name,
210
- vlan_id=vlan_id["id"],
244
+ vlan_id=default_integer["id"],
211
245
  min_rx_interval=1000,
212
246
  min_tx_interval=1000,
213
247
  detect_multiplier=10)
214
- example_bgp_network = alicloud.vpc.BgpNetwork("example",
248
+ default_bgp_network = alicloud.vpc.BgpNetwork("default",
215
249
  dst_cidr_block="192.168.0.0/24",
216
- router_id=example_virtual_border_router.id)
250
+ router_id=default_virtual_border_router.id)
217
251
  ```
218
252
 
219
253
  ## Import
220
254
 
221
- VPC Bgp Network can be imported using the id, e.g.
255
+ Express Connect Bgp Network can be imported using the id, e.g.
222
256
 
223
257
  ```sh
224
258
  $ pulumi import alicloud:vpc/bgpNetwork:BgpNetwork example <router_id>:<dst_cidr_block>
@@ -241,6 +275,7 @@ class BgpNetwork(pulumi.CustomResource):
241
275
  opts: Optional[pulumi.ResourceOptions] = None,
242
276
  dst_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
243
277
  router_id: Optional[pulumi.Input[_builtins.str]] = None,
278
+ vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
244
279
  __props__=None):
245
280
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
246
281
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -256,6 +291,7 @@ class BgpNetwork(pulumi.CustomResource):
256
291
  if router_id is None and not opts.urn:
257
292
  raise TypeError("Missing required property 'router_id'")
258
293
  __props__.__dict__["router_id"] = router_id
294
+ __props__.__dict__["vpc_id"] = vpc_id
259
295
  __props__.__dict__["status"] = None
260
296
  super(BgpNetwork, __self__).__init__(
261
297
  'alicloud:vpc/bgpNetwork:BgpNetwork',
@@ -269,7 +305,8 @@ class BgpNetwork(pulumi.CustomResource):
269
305
  opts: Optional[pulumi.ResourceOptions] = None,
270
306
  dst_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
271
307
  router_id: Optional[pulumi.Input[_builtins.str]] = None,
272
- status: Optional[pulumi.Input[_builtins.str]] = None) -> 'BgpNetwork':
308
+ status: Optional[pulumi.Input[_builtins.str]] = None,
309
+ vpc_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'BgpNetwork':
273
310
  """
274
311
  Get an existing BgpNetwork resource's state with the given name, id, and optional extra
275
312
  properties used to qualify the lookup.
@@ -278,8 +315,9 @@ class BgpNetwork(pulumi.CustomResource):
278
315
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
279
316
  :param pulumi.ResourceOptions opts: Options for the resource.
280
317
  :param pulumi.Input[_builtins.str] dst_cidr_block: The CIDR block of the virtual private cloud (VPC) or vSwitch that you want to connect to a data center.
281
- :param pulumi.Input[_builtins.str] router_id: The ID of the vRouter associated with the router interface.
318
+ :param pulumi.Input[_builtins.str] router_id: The region ID of the virtual border router (VBR) group.
282
319
  :param pulumi.Input[_builtins.str] status: The state of the advertised BGP network.
320
+ :param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC.
283
321
  """
284
322
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
285
323
 
@@ -288,6 +326,7 @@ class BgpNetwork(pulumi.CustomResource):
288
326
  __props__.__dict__["dst_cidr_block"] = dst_cidr_block
289
327
  __props__.__dict__["router_id"] = router_id
290
328
  __props__.__dict__["status"] = status
329
+ __props__.__dict__["vpc_id"] = vpc_id
291
330
  return BgpNetwork(resource_name, opts=opts, __props__=__props__)
292
331
 
293
332
  @_builtins.property
@@ -302,7 +341,7 @@ class BgpNetwork(pulumi.CustomResource):
302
341
  @pulumi.getter(name="routerId")
303
342
  def router_id(self) -> pulumi.Output[_builtins.str]:
304
343
  """
305
- The ID of the vRouter associated with the router interface.
344
+ The region ID of the virtual border router (VBR) group.
306
345
  """
307
346
  return pulumi.get(self, "router_id")
308
347
 
@@ -314,3 +353,11 @@ class BgpNetwork(pulumi.CustomResource):
314
353
  """
315
354
  return pulumi.get(self, "status")
316
355
 
356
+ @_builtins.property
357
+ @pulumi.getter(name="vpcId")
358
+ def vpc_id(self) -> pulumi.Output[Optional[_builtins.str]]:
359
+ """
360
+ The ID of the VPC.
361
+ """
362
+ return pulumi.get(self, "vpc_id")
363
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_alicloud
3
- Version: 3.86.0a1758000634
3
+ Version: 3.86.1
4
4
  Summary: A Pulumi package for creating and managing AliCloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io