pulumi-alicloud 3.87.0a1758777756__py3-none-any.whl → 3.87.0a1758950860__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.

@@ -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.87.0a1758777756
3
+ Version: 3.87.0a1758950860
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
@@ -15,7 +15,7 @@ pulumi_alicloud/msc_sub_subscription.py,sha256=Uea9uchAHxC8fkl0zYMWCScICSo4AoL39
15
15
  pulumi_alicloud/msc_sub_webhook.py,sha256=ZIQUo4l4RjKefMfQlheorgmo3v8jTeXBnvQnUJUh6lQ,11101
16
16
  pulumi_alicloud/outputs.py,sha256=XNCscS2YtPnRFReaPdFdX9nsZBoDjq70Ue4ieHS6gLs,39226
17
17
  pulumi_alicloud/provider.py,sha256=kI38bSYHQ6i5dyOebjcLQ7KQrltLvjuMM3sz0J65qHs,40728
18
- pulumi_alicloud/pulumi-plugin.json,sha256=Ps6ZVLRgUnm7m1Y0Uz56eHaL5IJDEngb5IAyXy_ssP4,85
18
+ pulumi_alicloud/pulumi-plugin.json,sha256=AKM9fPsj7s2IF1h39DUV8gQ2ck6nWvBXEfaAd51U-mM,85
19
19
  pulumi_alicloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  pulumi_alicloud/star_rocks_instance.py,sha256=AMjLOoV0n3QYGLu0HDsCPBwl1PM01urGPMuKaMjDyNo,64562
21
21
  pulumi_alicloud/ackone/__init__.py,sha256=gp6Vj2CMsmpVHb8sfRu5UMdpFrCR0nn4KwImkVmx0iU,385
@@ -114,11 +114,11 @@ pulumi_alicloud/amqp/queue.py,sha256=1uzqe4rOz0wzemGOXZYLs083tgy0oubcYE_SHxd15ZU
114
114
  pulumi_alicloud/amqp/static_account.py,sha256=PjqXGNFQsokUSIKqrWiOIEd7oobfjXLT3nqSOuEBFSs,17362
115
115
  pulumi_alicloud/amqp/virtual_host.py,sha256=BkDXA9ke1d-3ohVK68DfODxvPRtQdqvoD1HNUAiwGgc,11138
116
116
  pulumi_alicloud/apig/__init__.py,sha256=4exeTHWqCQJz4NF2jd9I-9GWnU4xCj6BNb4ILs4HWoY,399
117
- pulumi_alicloud/apig/_inputs.py,sha256=qeYELjH4HsBpt7dJaDaktmxYp1Okf_k2ok3_ya8Jc10,7740
117
+ pulumi_alicloud/apig/_inputs.py,sha256=sA9P8LKRg5DcIkTXPzyMZk71tYOUNJriuYtDFfVw4wo,9938
118
118
  pulumi_alicloud/apig/environment.py,sha256=s-t7rU50GiQ-s5B9Ijr4kQxIjt7aGdvp0PyIX1gNiYs,15763
119
- pulumi_alicloud/apig/gateway.py,sha256=CaWZI1rq2ZDL09f1ltlxo9KrX21mFR9kro_r9hJaxlo,29202
119
+ pulumi_alicloud/apig/gateway.py,sha256=DvoWytGNQW_5LiAygzOi1-BTEr5GoeMNVmYNVkwlDx4,34782
120
120
  pulumi_alicloud/apig/http_api.py,sha256=Y71-qJ7JFNoMU4fdxZgjgsqdZJFsJnXzP6O6Bsm175c,18008
121
- pulumi_alicloud/apig/outputs.py,sha256=YrOA5TYHCBmZbaJ_JtrVAVLLebetX4ZWgLt3YDViub0,6143
121
+ pulumi_alicloud/apig/outputs.py,sha256=mawOGgdXa1lDvxBb9ykRj8DG2dC-sfsTH8hZE2YE27c,7992
122
122
  pulumi_alicloud/apigateway/__init__.py,sha256=o882Bvqco5_43Xvr4uADUiS0UZii-NQwk9zjd9IsG1M,912
123
123
  pulumi_alicloud/apigateway/_inputs.py,sha256=F6sjVv1KRAdxVnB3_sYFqB367uvx1JmlYug48LsfAGI,55939
124
124
  pulumi_alicloud/apigateway/access_control_list.py,sha256=opNRpuHMg8w2c3tHfbMNoiHs5pSn95SQOcstPb8QlCc,19607
@@ -223,11 +223,11 @@ pulumi_alicloud/bss/get_open_api_pricing_modules.py,sha256=f3whaOMr6Qu_kmYsMELb3
223
223
  pulumi_alicloud/bss/get_open_api_products.py,sha256=H35lPI1Ey5vJPGJXk888-G1oVs46-QEJuvPuY3IVib0,6749
224
224
  pulumi_alicloud/bss/outputs.py,sha256=GWMR96d6wqssPJUvI6OQgD3BQOMraWUu7bEFwHClI68,8186
225
225
  pulumi_alicloud/cas/__init__.py,sha256=fANLQvxZtp-8z2PiyBs-g8Q2BiFGh9CTnY7IFp46N2k,436
226
- pulumi_alicloud/cas/certificate.py,sha256=VmLtt0O3xQGVQ28G0wQilfe0XBfNPy_elk9oCXvWA7g,24975
226
+ pulumi_alicloud/cas/certificate.py,sha256=hubeW2oaWWXsEhNtTGCEHj_zSKKMkR-4YM5583O99DE,35996
227
227
  pulumi_alicloud/cas/get_certificates.py,sha256=lOeS1dH9gXbt9c_cVhizHB4SjoynSz1k3cxgMo82ikA,9475
228
228
  pulumi_alicloud/cas/get_service_certificates.py,sha256=o6eSrLb4XrhUlkxrND8KLYTnNPBntfkOeuQ6seMgX1s,17330
229
229
  pulumi_alicloud/cas/outputs.py,sha256=gsH1qYaZAPOyh1rkz_wBw44itu8ZFrj2IBf2Fy8N50M,14383
230
- pulumi_alicloud/cas/service_certificate.py,sha256=_rHuUZHy20STN0kprmt4sesYgLw1WTWcHHh0w-_wyrQ,26141
230
+ pulumi_alicloud/cas/service_certificate.py,sha256=oj3ph-aYkZnxTibuiFZHT6BKRtijHU_41SGDima6lJQ,42001
231
231
  pulumi_alicloud/cassandra/__init__.py,sha256=f5v_NJ8e_Up3UI0cm5RIrV-HJZt0uuSY4vldHr-lqZM,496
232
232
  pulumi_alicloud/cassandra/backup_plan.py,sha256=8RPls_C9s0d__gmQSn7KxtSBoirsY4mxnOCfjdI280Y,19847
233
233
  pulumi_alicloud/cassandra/cluster.py,sha256=JER9t-Tx3b2ugfNJIA2psrpLTnvRGPS3x0SlC7__VUg,62530
@@ -867,7 +867,7 @@ pulumi_alicloud/ecs/image_export.py,sha256=NJhZmidt6JxmlQ-KQPs2s1IjPXHww6wO6J9Qj
867
867
  pulumi_alicloud/ecs/image_import.py,sha256=d5mI9gVJnd7zzA_g-n7I4C5g2uAgSmWwLuj8yb5-k68,31451
868
868
  pulumi_alicloud/ecs/image_pipeline_execution.py,sha256=Klu0GXtl2TeMzsPBrd-9X87oQ9unAXkTzEnnLM0l5W0,10461
869
869
  pulumi_alicloud/ecs/image_share_permission.py,sha256=uEBn7PjkJH3xrP1lSSqmdXVQ6tAttixj6ZevWUp0LMc,14303
870
- pulumi_alicloud/ecs/instance.py,sha256=X-HTScS3SIoct-K72Qrick1zVC2f3NMJ9EtlzH4kTGE,326076
870
+ pulumi_alicloud/ecs/instance.py,sha256=v0P_-5szKBgKqzc-bBTQCIrAi9ZyeMisXat8lWBitdw,326622
871
871
  pulumi_alicloud/ecs/key_pair.py,sha256=g07fbMdl4C7JnUu5AQob--qgkZU56-X1hJxghgkMLNg,23478
872
872
  pulumi_alicloud/ecs/key_pair_attachment.py,sha256=zkRUquGBdFnsTMIOc0KxBaQqnhWQV6H3oNFib1lu1aY,14114
873
873
  pulumi_alicloud/ecs/launch_template.py,sha256=CJbrNet9sCHyA8tflt2jRdmqKAp5fBlsjq5X7e40k7c,149235
@@ -1276,7 +1276,7 @@ pulumi_alicloud/hbr/oss_backup_plan.py,sha256=evAxdtl91qguCKzX1QpfaVPfiiIPDhR6HT
1276
1276
  pulumi_alicloud/hbr/ots_backup_plan.py,sha256=8WayPE3ZcMLZwR4nIIw9_hOg6EUsvtSD7YCbn2Hli74,44542
1277
1277
  pulumi_alicloud/hbr/outputs.py,sha256=XPLYbLYi1rtNEyBt2e3F95ciTTU-rnVjhnoKH6meWhE,171914
1278
1278
  pulumi_alicloud/hbr/policy.py,sha256=cQv3IceiaTAQojP8Ha73ru4W7Kqq9N7TmkMSSxfyfKw,18423
1279
- pulumi_alicloud/hbr/policy_binding.py,sha256=lz0XXrZ-Mn7EkY6KuqJ7LITWolO1m-niRZKkRZt4QRk,48171
1279
+ pulumi_alicloud/hbr/policy_binding.py,sha256=sQrpnfRQ46amO0CIyiVOPAxg3U3-vlSqlXl6p6tO0u8,48738
1280
1280
  pulumi_alicloud/hbr/replication_vault.py,sha256=LbE_q4_Md1uippNFHh52ueZz5G1a83qke04e2lBKPoA,25578
1281
1281
  pulumi_alicloud/hbr/restore_job.py,sha256=b54cHG1vxwbEaMBBycQFexak8myiYAl7NC6aOkFLDf8,84864
1282
1282
  pulumi_alicloud/hbr/server_backup_plan.py,sha256=n8mIxewb_NrpcWLqau5zl9oXBDtPLymBF1hYkBxoswg,32425
@@ -1327,7 +1327,7 @@ pulumi_alicloud/kms/policy.py,sha256=ornxZeegv2FFaDb-DiRpaTLwsZwgWMbK8ZNSzuulpdM
1327
1327
  pulumi_alicloud/kms/secret.py,sha256=h7bpa7bUHn6-GU-zQpVVVzV_GB5T6QpNJuq7R44JQRI,55045
1328
1328
  pulumi_alicloud/kvstore/__init__.py,sha256=2xVutA_FcYgCuJERj-mj0lb0VL2n__Mub_3AdifvXbY,674
1329
1329
  pulumi_alicloud/kvstore/_inputs.py,sha256=vIjSYgZ-wcyQOwRoMzBaa65-igzY7jwslhEgtdBTviQ,3412
1330
- pulumi_alicloud/kvstore/account.py,sha256=jmjSeROHF8XCdH5y2ORhVk0g3oEW5KJ4QGxORlTn6Jk,39409
1330
+ pulumi_alicloud/kvstore/account.py,sha256=147UiPU1D3U09sSj2NPrwa0G2Py1Aj2yvQtHHehTbmg,39389
1331
1331
  pulumi_alicloud/kvstore/audit_log_config.py,sha256=5CH10BK7859NLvPZvZg2Om6Fo8_emQuagH2o_zdEDyU,20081
1332
1332
  pulumi_alicloud/kvstore/backup_policy.py,sha256=ECQvnsOBXLOK5BALIslZhEGDeqN7zw7srkVC7DWqYpc,15809
1333
1333
  pulumi_alicloud/kvstore/connection.py,sha256=xTS1nPxppPQ-SavQEcHuxNblwX24faiC6hgsiPpKqr8,16920
@@ -1633,7 +1633,7 @@ pulumi_alicloud/pvtz/endpoint.py,sha256=js2tjUTKRny-weERX7mmFqzmWIrRRZOsEsHC1lIC
1633
1633
  pulumi_alicloud/pvtz/get_endpoints.py,sha256=WDHbtgqAvoXX0KAx-oI00qXR0vvgd3tZWA6ACMb3L1g,7913
1634
1634
  pulumi_alicloud/pvtz/get_resolver_zones.py,sha256=8Nd19VyPRa8XnEbXgdzx9BIGkyggz-kzNjJ7ECC-W_U,5552
1635
1635
  pulumi_alicloud/pvtz/get_rules.py,sha256=qGU6Ii9DaqjuUHbMgMhY9gTO7hm_c7vMMFjJeLQCcxc,7574
1636
- pulumi_alicloud/pvtz/get_service.py,sha256=V1zW3VKSrxDuWkR99k7Lcj5cFsKP7YlP7_sptFr7hh0,5219
1636
+ pulumi_alicloud/pvtz/get_service.py,sha256=GU6syjz5WDlh5XtDR7O7E6xpKaKXEpEluyUB0ebZ-x0,5275
1637
1637
  pulumi_alicloud/pvtz/get_zone_records.py,sha256=xXqRWhEsBOwQjlvsT8qoks04ACiLK7P2unGFKjSpB38,12752
1638
1638
  pulumi_alicloud/pvtz/get_zones.py,sha256=xzYpUJ_wC7kItRjLSK3wxLzv5ZHyKINf_0Ww77fKTas,14078
1639
1639
  pulumi_alicloud/pvtz/outputs.py,sha256=TkOapsQGIwxP0Rr1GSaKonklZozcdePsRxML6G337l8,33094
@@ -1749,7 +1749,7 @@ pulumi_alicloud/resourcemanager/__init__.py,sha256=BLnwdGtTHVpcgGWt7sHIaL-QjeCFA
1749
1749
  pulumi_alicloud/resourcemanager/_inputs.py,sha256=xDW2bWOhbBgHCW1XXBgVONG2H7qhAd6xqR5jS-zT3pE,4749
1750
1750
  pulumi_alicloud/resourcemanager/account.py,sha256=k1fRb2Vj2A-PnsjGNt_lMjv2k5ic1RA5gyWSstCI-Dc,47544
1751
1751
  pulumi_alicloud/resourcemanager/auto_grouping_rule.py,sha256=pjLMo0USN71sVcuEUHki1zdxlgLme_I3R1iQQr76aYA,39643
1752
- pulumi_alicloud/resourcemanager/control_policy.py,sha256=g6D6SNgvnXnhaBI8an5oPux3OnIYqqu0q8_hEWV5V_A,15776
1752
+ pulumi_alicloud/resourcemanager/control_policy.py,sha256=nSIT1o7S8fPQbtJUS6DVjJTi2_Te8brOZQPilSu79DA,26717
1753
1753
  pulumi_alicloud/resourcemanager/control_policy_attachment.py,sha256=9nmhNSDLWYQjAIE0D_jqui3XGS-oeEpfk2M-qJ__mA8,13968
1754
1754
  pulumi_alicloud/resourcemanager/delegated_administrator.py,sha256=pSu43Cb46YGdrH3eVTMfEyAXPexApnCm1bXoUnPl3bs,10972
1755
1755
  pulumi_alicloud/resourcemanager/folder.py,sha256=LiBVJeGT65vLSzXfZqzRrP5pM1DTRhrYuQDPWt9Nbyo,13625
@@ -2039,7 +2039,7 @@ pulumi_alicloud/vod/outputs.py,sha256=T3GGBFW0ad5IL7iOE9JYBne23sO6uoqoEqkthDtkGb
2039
2039
  pulumi_alicloud/vpc/__init__.py,sha256=codEg15kpixHRgBT-yFG4ygzgnIPhITOhIOKM08CUOs,3835
2040
2040
  pulumi_alicloud/vpc/_inputs.py,sha256=8wmWlB6gGPDWXepAvrb9mt07qkr18HfCQ4KTd8nTVDQ,69664
2041
2041
  pulumi_alicloud/vpc/bgp_group.py,sha256=MQQbk5CH3Q-PHtYh9PJ3e8vUYS8PlmB3Ns8AbNxgOwo,25815
2042
- pulumi_alicloud/vpc/bgp_network.py,sha256=TVPk0Z0deOeEGgarqMdEjnxaEuhHYXMjUGD3bwlpj5U,12960
2042
+ pulumi_alicloud/vpc/bgp_network.py,sha256=3X9bwSdvap1wCgB3m6yZnRCHKZJQfEO4HOOP2RgpjX4,14969
2043
2043
  pulumi_alicloud/vpc/bgp_peer.py,sha256=73KnaPDY6LiHzkSfAE1s-cHiNh7Fl_bcwIxDOer9NKQ,22516
2044
2044
  pulumi_alicloud/vpc/common_bandwith_package.py,sha256=-a2NUTNhCp6wbVPw4Db21G1wW3U_885FlgEP7nJ81QU,55664
2045
2045
  pulumi_alicloud/vpc/common_bandwith_package_attachment.py,sha256=FAzuM1cs0Yf7ExjWhb84kcNXqmMutf732gMP4vRh8Lo,23698
@@ -2185,7 +2185,7 @@ pulumi_alicloud/yundun/db_audit_instance.py,sha256=BnwovuiHe0CauSFejLTOeaJH6TVjN
2185
2185
  pulumi_alicloud/yundun/get_bastion_host_instances.py,sha256=d99EGuXUFxbDFbCum28gXTu6PI7X64RIL2hcH9B2KQo,6836
2186
2186
  pulumi_alicloud/yundun/get_db_audit_instance.py,sha256=sFV0aje7rROMEOYJaBi7SpRywVWLbF47xP8vKdVIOT4,6686
2187
2187
  pulumi_alicloud/yundun/outputs.py,sha256=h-m8n7o6hmP6FVBggACjoXVWxS4Au9c6IoQakud72h0,15270
2188
- pulumi_alicloud-3.87.0a1758777756.dist-info/METADATA,sha256=cFYowtHJUNpK1uy9FcLE1SQ00DcP2rvfWi0LYh5oK20,4414
2189
- pulumi_alicloud-3.87.0a1758777756.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2190
- pulumi_alicloud-3.87.0a1758777756.dist-info/top_level.txt,sha256=U6LUZaKkW6MfUdVdxwspCksOWCBCMIWK24oo93s1Up8,16
2191
- pulumi_alicloud-3.87.0a1758777756.dist-info/RECORD,,
2188
+ pulumi_alicloud-3.87.0a1758950860.dist-info/METADATA,sha256=nFujbSn6_2uk_ysF7cKwW_3X892n1Sx1A6qp398czek,4414
2189
+ pulumi_alicloud-3.87.0a1758950860.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2190
+ pulumi_alicloud-3.87.0a1758950860.dist-info/top_level.txt,sha256=U6LUZaKkW6MfUdVdxwspCksOWCBCMIWK24oo93s1Up8,16
2191
+ pulumi_alicloud-3.87.0a1758950860.dist-info/RECORD,,