pulumi-alicloud 3.58.0a1719292463__py3-none-any.whl → 3.58.0a1719465542__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 (29) hide show
  1. pulumi_alicloud/_inputs.py +9 -9
  2. pulumi_alicloud/cddc/dedicated_host_account.py +4 -0
  3. pulumi_alicloud/cddc/dedicated_host_group.py +4 -0
  4. pulumi_alicloud/config/outputs.py +6 -6
  5. pulumi_alicloud/cs/kubernetes_addon.py +2 -2
  6. pulumi_alicloud/cs/node_pool.py +7 -7
  7. pulumi_alicloud/ddos/bgp_ip.py +53 -2
  8. pulumi_alicloud/eci/_inputs.py +12 -0
  9. pulumi_alicloud/eci/outputs.py +8 -0
  10. pulumi_alicloud/ecs/ecs_disk.py +7 -7
  11. pulumi_alicloud/ecs/eip.py +1 -1
  12. pulumi_alicloud/ecs/eip_address.py +495 -299
  13. pulumi_alicloud/ecs/eip_association.py +205 -58
  14. pulumi_alicloud/ecs/eip_segment_address.py +311 -133
  15. pulumi_alicloud/ecs/instance.py +20 -6
  16. pulumi_alicloud/ess/_inputs.py +88 -0
  17. pulumi_alicloud/ess/alarm.py +132 -38
  18. pulumi_alicloud/ess/outputs.py +87 -0
  19. pulumi_alicloud/ess/scaling_group.py +148 -7
  20. pulumi_alicloud/log/oss_shipper.py +4 -0
  21. pulumi_alicloud/mongodb/sharding_instance.py +54 -7
  22. pulumi_alicloud/pulumi-plugin.json +1 -1
  23. pulumi_alicloud/rds/instance.py +21 -0
  24. pulumi_alicloud/vpc/common_bandwith_package.py +197 -120
  25. pulumi_alicloud/vpc/common_bandwith_package_attachment.py +58 -30
  26. {pulumi_alicloud-3.58.0a1719292463.dist-info → pulumi_alicloud-3.58.0a1719465542.dist-info}/METADATA +1 -1
  27. {pulumi_alicloud-3.58.0a1719292463.dist-info → pulumi_alicloud-3.58.0a1719465542.dist-info}/RECORD +29 -29
  28. {pulumi_alicloud-3.58.0a1719292463.dist-info → pulumi_alicloud-3.58.0a1719465542.dist-info}/WHEEL +1 -1
  29. {pulumi_alicloud-3.58.0a1719292463.dist-info → pulumi_alicloud-3.58.0a1719465542.dist-info}/top_level.txt +0 -0
@@ -21,11 +21,15 @@ class CommonBandwithPackageAttachmentArgs:
21
21
  ip_type: Optional[pulumi.Input[str]] = None):
22
22
  """
23
23
  The set of arguments for constructing a CommonBandwithPackageAttachment resource.
24
- :param pulumi.Input[str] bandwidth_package_id: The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
25
- :param pulumi.Input[str] instance_id: The instance_id of the common bandwidth package attachment, the field can't be changed.
26
- :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
24
+ :param pulumi.Input[str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
25
+ :param pulumi.Input[str] instance_id: The ID of the EIP that you want to query.
26
+
27
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
28
+
29
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
30
+ :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
27
31
  :param pulumi.Input[bool] cancel_common_bandwidth_package_ip_bandwidth: Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
28
- :param pulumi.Input[str] ip_type: IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
32
+ :param pulumi.Input[str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
29
33
  """
30
34
  pulumi.set(__self__, "bandwidth_package_id", bandwidth_package_id)
31
35
  pulumi.set(__self__, "instance_id", instance_id)
@@ -40,7 +44,7 @@ class CommonBandwithPackageAttachmentArgs:
40
44
  @pulumi.getter(name="bandwidthPackageId")
41
45
  def bandwidth_package_id(self) -> pulumi.Input[str]:
42
46
  """
43
- The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
47
+ The ID of the Internet Shared Bandwidth instance.
44
48
  """
45
49
  return pulumi.get(self, "bandwidth_package_id")
46
50
 
@@ -52,7 +56,11 @@ class CommonBandwithPackageAttachmentArgs:
52
56
  @pulumi.getter(name="instanceId")
53
57
  def instance_id(self) -> pulumi.Input[str]:
54
58
  """
55
- The instance_id of the common bandwidth package attachment, the field can't be changed.
59
+ The ID of the EIP that you want to query.
60
+
61
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
62
+
63
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
56
64
  """
57
65
  return pulumi.get(self, "instance_id")
58
66
 
@@ -64,7 +72,7 @@ class CommonBandwithPackageAttachmentArgs:
64
72
  @pulumi.getter(name="bandwidthPackageBandwidth")
65
73
  def bandwidth_package_bandwidth(self) -> Optional[pulumi.Input[str]]:
66
74
  """
67
- The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
75
+ The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
68
76
  """
69
77
  return pulumi.get(self, "bandwidth_package_bandwidth")
70
78
 
@@ -88,7 +96,7 @@ class CommonBandwithPackageAttachmentArgs:
88
96
  @pulumi.getter(name="ipType")
89
97
  def ip_type(self) -> Optional[pulumi.Input[str]]:
90
98
  """
91
- IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
99
+ The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
92
100
  """
93
101
  return pulumi.get(self, "ip_type")
94
102
 
@@ -108,11 +116,15 @@ class _CommonBandwithPackageAttachmentState:
108
116
  status: Optional[pulumi.Input[str]] = None):
109
117
  """
110
118
  Input properties used for looking up and filtering CommonBandwithPackageAttachment resources.
111
- :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
112
- :param pulumi.Input[str] bandwidth_package_id: The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
119
+ :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
120
+ :param pulumi.Input[str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
113
121
  :param pulumi.Input[bool] cancel_common_bandwidth_package_ip_bandwidth: Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
114
- :param pulumi.Input[str] instance_id: The instance_id of the common bandwidth package attachment, the field can't be changed.
115
- :param pulumi.Input[str] ip_type: IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
122
+ :param pulumi.Input[str] instance_id: The ID of the EIP that you want to query.
123
+
124
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
125
+
126
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
127
+ :param pulumi.Input[str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
116
128
  :param pulumi.Input[str] status: The status of the Internet Shared Bandwidth instance.
117
129
  """
118
130
  if bandwidth_package_bandwidth is not None:
@@ -132,7 +144,7 @@ class _CommonBandwithPackageAttachmentState:
132
144
  @pulumi.getter(name="bandwidthPackageBandwidth")
133
145
  def bandwidth_package_bandwidth(self) -> Optional[pulumi.Input[str]]:
134
146
  """
135
- The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
147
+ The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
136
148
  """
137
149
  return pulumi.get(self, "bandwidth_package_bandwidth")
138
150
 
@@ -144,7 +156,7 @@ class _CommonBandwithPackageAttachmentState:
144
156
  @pulumi.getter(name="bandwidthPackageId")
145
157
  def bandwidth_package_id(self) -> Optional[pulumi.Input[str]]:
146
158
  """
147
- The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
159
+ The ID of the Internet Shared Bandwidth instance.
148
160
  """
149
161
  return pulumi.get(self, "bandwidth_package_id")
150
162
 
@@ -168,7 +180,11 @@ class _CommonBandwithPackageAttachmentState:
168
180
  @pulumi.getter(name="instanceId")
169
181
  def instance_id(self) -> Optional[pulumi.Input[str]]:
170
182
  """
171
- The instance_id of the common bandwidth package attachment, the field can't be changed.
183
+ The ID of the EIP that you want to query.
184
+
185
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
186
+
187
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
172
188
  """
173
189
  return pulumi.get(self, "instance_id")
174
190
 
@@ -180,7 +196,7 @@ class _CommonBandwithPackageAttachmentState:
180
196
  @pulumi.getter(name="ipType")
181
197
  def ip_type(self) -> Optional[pulumi.Input[str]]:
182
198
  """
183
- IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
199
+ The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
184
200
  """
185
201
  return pulumi.get(self, "ip_type")
186
202
 
@@ -240,7 +256,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
240
256
 
241
257
  ## Import
242
258
 
243
- cbwp Common Bandwidth Package Attachment can be imported using the id, e.g.
259
+ CBWP Common Bandwidth Package Attachment can be imported using the id, e.g.
244
260
 
245
261
  ```sh
246
262
  $ pulumi import alicloud:vpc/commonBandwithPackageAttachment:CommonBandwithPackageAttachment example <bandwidth_package_id>:<instance_id>
@@ -248,11 +264,15 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
248
264
 
249
265
  :param str resource_name: The name of the resource.
250
266
  :param pulumi.ResourceOptions opts: Options for the resource.
251
- :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
252
- :param pulumi.Input[str] bandwidth_package_id: The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
267
+ :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
268
+ :param pulumi.Input[str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
253
269
  :param pulumi.Input[bool] cancel_common_bandwidth_package_ip_bandwidth: Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
254
- :param pulumi.Input[str] instance_id: The instance_id of the common bandwidth package attachment, the field can't be changed.
255
- :param pulumi.Input[str] ip_type: IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
270
+ :param pulumi.Input[str] instance_id: The ID of the EIP that you want to query.
271
+
272
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
273
+
274
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
275
+ :param pulumi.Input[str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
256
276
  """
257
277
  ...
258
278
  @overload
@@ -288,7 +308,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
288
308
 
289
309
  ## Import
290
310
 
291
- cbwp Common Bandwidth Package Attachment can be imported using the id, e.g.
311
+ CBWP Common Bandwidth Package Attachment can be imported using the id, e.g.
292
312
 
293
313
  ```sh
294
314
  $ pulumi import alicloud:vpc/commonBandwithPackageAttachment:CommonBandwithPackageAttachment example <bandwidth_package_id>:<instance_id>
@@ -356,11 +376,15 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
356
376
  :param str resource_name: The unique name of the resulting resource.
357
377
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
358
378
  :param pulumi.ResourceOptions opts: Options for the resource.
359
- :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
360
- :param pulumi.Input[str] bandwidth_package_id: The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
379
+ :param pulumi.Input[str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
380
+ :param pulumi.Input[str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
361
381
  :param pulumi.Input[bool] cancel_common_bandwidth_package_ip_bandwidth: Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
362
- :param pulumi.Input[str] instance_id: The instance_id of the common bandwidth package attachment, the field can't be changed.
363
- :param pulumi.Input[str] ip_type: IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
382
+ :param pulumi.Input[str] instance_id: The ID of the EIP that you want to query.
383
+
384
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
385
+
386
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
387
+ :param pulumi.Input[str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
364
388
  :param pulumi.Input[str] status: The status of the Internet Shared Bandwidth instance.
365
389
  """
366
390
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -379,7 +403,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
379
403
  @pulumi.getter(name="bandwidthPackageBandwidth")
380
404
  def bandwidth_package_bandwidth(self) -> pulumi.Output[str]:
381
405
  """
382
- The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
406
+ The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
383
407
  """
384
408
  return pulumi.get(self, "bandwidth_package_bandwidth")
385
409
 
@@ -387,7 +411,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
387
411
  @pulumi.getter(name="bandwidthPackageId")
388
412
  def bandwidth_package_id(self) -> pulumi.Output[str]:
389
413
  """
390
- The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
414
+ The ID of the Internet Shared Bandwidth instance.
391
415
  """
392
416
  return pulumi.get(self, "bandwidth_package_id")
393
417
 
@@ -403,7 +427,11 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
403
427
  @pulumi.getter(name="instanceId")
404
428
  def instance_id(self) -> pulumi.Output[str]:
405
429
  """
406
- The instance_id of the common bandwidth package attachment, the field can't be changed.
430
+ The ID of the EIP that you want to query.
431
+
432
+ You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
433
+
434
+ > **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
407
435
  """
408
436
  return pulumi.get(self, "instance_id")
409
437
 
@@ -411,7 +439,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
411
439
  @pulumi.getter(name="ipType")
412
440
  def ip_type(self) -> pulumi.Output[Optional[str]]:
413
441
  """
414
- IP type. Set the value to **EIP**, which indicates that the EIP is added to the Internet shared bandwidth.
442
+ The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
415
443
  """
416
444
  return pulumi.get(self, "ip_type")
417
445
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_alicloud
3
- Version: 3.58.0a1719292463
3
+ Version: 3.58.0a1719465542
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
@@ -1,5 +1,5 @@
1
1
  pulumi_alicloud/__init__.py,sha256=oEmDr4Nfrbz-gAQ0YO25EtoVS0jiieymHGxUjWao2xM,174022
2
- pulumi_alicloud/_inputs.py,sha256=slv9kPVOJulPlpgmQOr7h3sig71bV74_W36FH_EctoE,104929
2
+ pulumi_alicloud/_inputs.py,sha256=k6EG3tqxkzfbDODEMlFrlho9JcmKVEA6G-R7yawFvFo,104879
3
3
  pulumi_alicloud/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
4
4
  pulumi_alicloud/get_account.py,sha256=iyDs5_sdayTZoogYI71qgrD_8WOP-EpsKpMW_AuzPsc,2284
5
5
  pulumi_alicloud/get_caller_identity.py,sha256=GhpQuN05MNbpJIl4F62iRitCVWkpChw-pJH4FP1c_X0,3929
@@ -15,7 +15,7 @@ pulumi_alicloud/msc_sub_subscription.py,sha256=oNxqSPb0yCHcXQAvFyk3W_7LcZW-qzcE6
15
15
  pulumi_alicloud/msc_sub_webhook.py,sha256=Te0q3CzX4VM6ZN0tlGRW0AQILD_GC4IqZsnX4OSgqkQ,9303
16
16
  pulumi_alicloud/outputs.py,sha256=Y4GI2tDCrUQxSoIMrqHUOIF3YROUqhnuptvQ5QN40Ws,17778
17
17
  pulumi_alicloud/provider.py,sha256=-KVdaWVguWTA9jgd6ym_CyX9Fd3KlOHxBqb27COowaU,36758
18
- pulumi_alicloud/pulumi-plugin.json,sha256=K_JcFFe6Wbrju3fS2_UHHr-4sCF4J8J7Bf5dxoh9MiU,85
18
+ pulumi_alicloud/pulumi-plugin.json,sha256=qOqZB2mfBRoVm3LVDMuol483clI8pSyA5j0PZTFCRXk,85
19
19
  pulumi_alicloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  pulumi_alicloud/ackone/__init__.py,sha256=mxlpat-GXfINngjl5TQN27S3HQtTmRaroFpyxP5TgWc,337
21
21
  pulumi_alicloud/ackone/_inputs.py,sha256=9ECkCthg-GngG8U_PVmUX8sBmOSJ-JULs_Nnup75WS4,2353
@@ -209,8 +209,8 @@ pulumi_alicloud/cassandra/outputs.py,sha256=-J3QzKvNOOmKrTasD_XMQi1JhPjk0kFMnNv4
209
209
  pulumi_alicloud/cddc/__init__.py,sha256=cAGgzDUraHAlZ4gtdUsSgT7zBusb_BIjROpeL9tryTU,639
210
210
  pulumi_alicloud/cddc/_inputs.py,sha256=pScDAYBDxvnSNjPMll4kVAO8ShI9xTHOIL8iWK2hIio,6242
211
211
  pulumi_alicloud/cddc/dedicated_host.py,sha256=aK1VPZDJqcoh8a9TWkSSQ8Nv37SHZ-SKdn2Q0qjsr7U,40550
212
- pulumi_alicloud/cddc/dedicated_host_account.py,sha256=pwriNtbeWiM4YWFyYWQ-i8fqoMbjWTCNsRP0VMID5Ag,20281
213
- pulumi_alicloud/cddc/dedicated_host_group.py,sha256=DP6kp01208953e9SShF0jg621U3wyA4r2DuWb6aw1e8,31304
212
+ pulumi_alicloud/cddc/dedicated_host_account.py,sha256=yVEp4ff0-GN7cHhrNIEz2dR0pQX-Xw5PjP0gxegqC-g,20715
213
+ pulumi_alicloud/cddc/dedicated_host_group.py,sha256=q-sjnbF8YO9OqyprVFxmEKH5rM_2s6p3_Kk0lTE7iyw,31738
214
214
  pulumi_alicloud/cddc/dedicated_propre_host.py,sha256=vlUQEO69rSAz3TZGpcVUxPLz7mPsfMG2InaBY4mhAdI,76361
215
215
  pulumi_alicloud/cddc/get_dedicated_host_accounts.py,sha256=BUGhlDYrbFZhBjqV8d7w2F4vF7vyL41xnRyzXz5ZOLI,8100
216
216
  pulumi_alicloud/cddc/get_dedicated_host_groups.py,sha256=2eT1XtiMamnoEz3o4K1AsKY3x0lW1GZuv2SBldYkR3Q,6688
@@ -455,7 +455,7 @@ pulumi_alicloud/compute/nest_service_instance.py,sha256=FiOBEt08Ey8kfsqPUhhHqeaV
455
455
  pulumi_alicloud/compute/outputs.py,sha256=Fs7v2Cb-C89a5Bo7QSieH_b57ADjYFZIprEY3XkjY9Y,17105
456
456
  pulumi_alicloud/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
457
457
  pulumi_alicloud/config/__init__.pyi,sha256=LN1ZBvK6W3DqzVrZsCYigNI6IjCr9D0rptR5CorMkdk,2629
458
- pulumi_alicloud/config/outputs.py,sha256=5aXJ4zMyhi3cwyzz_48T45S_SgZMrKM5xs1GCjrX250,81626
458
+ pulumi_alicloud/config/outputs.py,sha256=xg9QA9DnBxnfjKGxwmMAEiku7QyxOhwf_MYwBG3dM9Y,81591
459
459
  pulumi_alicloud/config/vars.py,sha256=ncFdF45-paozurufq3EsWUwwEs1dq9ILcXBzJG-QgFo,5320
460
460
  pulumi_alicloud/cr/__init__.py,sha256=2PKfjKdGOJ8jWxO8-Wk3bmfKK8yAWple6aPDGBv9zkA,868
461
461
  pulumi_alicloud/cr/_inputs.py,sha256=9H8r1zxaHadqqSl38dgBPoUD2lAfKjo5uwVb4A0360w,14565
@@ -498,11 +498,11 @@ pulumi_alicloud/cs/get_registry_enterprise_repos.py,sha256=N3quDvna69PPvbzgejr94
498
498
  pulumi_alicloud/cs/get_registry_enterprise_sync_rules.py,sha256=38GmI4ejS1QN6IkTKIzHQFs6JE7yJpRi5BxWApgXISA,10737
499
499
  pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py,sha256=_VKLtAkqNL0O8v7i2nZgIAvt9N2rlFuHO4aiIfXM_uA,9171
500
500
  pulumi_alicloud/cs/kubernetes.py,sha256=Y5a6OXI69BYsw00vlH25u4GOd7uUMfodqNQDfPm67i4,172287
501
- pulumi_alicloud/cs/kubernetes_addon.py,sha256=7FfukbK8ACA6_SSd1gQY8FCSMjsBuJ2b6TJMCBtr7pg,22658
501
+ pulumi_alicloud/cs/kubernetes_addon.py,sha256=l953qsAQs8QaJd6ZdcQ9i3DgTBQxfRfW4xu7p4g68tU,22386
502
502
  pulumi_alicloud/cs/kubernetes_autoscaler.py,sha256=dxiJ458I057HQ-3CALVve-GPCK7CUZ2DTLFGncpNCS0,18074
503
503
  pulumi_alicloud/cs/kubernetes_permission.py,sha256=9JpMTsvQNKBSHys_O48HaAdWxsngpmRdQ6DBD8mXC-I,11748
504
504
  pulumi_alicloud/cs/managed_kubernetes.py,sha256=-cQeebY1GVXLO7CfEwcFcfpszRHWIYz_fFesv7PdXvI,82799
505
- pulumi_alicloud/cs/node_pool.py,sha256=FFXRas7SBceuWXQWqBQCwR5Pg1yGi0-Ri9_uIC15Hdc,239343
505
+ pulumi_alicloud/cs/node_pool.py,sha256=EikiJLWKKIFt1pPtLCbkGMH8qCCGoMMOTWPmqcTsrlc,239350
506
506
  pulumi_alicloud/cs/outputs.py,sha256=lXGbMuOq14GGK2TgzeMGRZ-FqgxtwQEFrpZ50ldStz0,195779
507
507
  pulumi_alicloud/cs/registry_enterprise_namespace.py,sha256=e0wce-fWFrEFZ6WijtrQ8oEARfXJjCWAF-fXOW5A088,16450
508
508
  pulumi_alicloud/cs/registry_enterprise_repo.py,sha256=NHgV_pVrm8FWDS-cAwIpCW1UVIyC3ajosZBzgTnnz-g,21360
@@ -564,7 +564,7 @@ pulumi_alicloud/ddos/__init__.py,sha256=fmahpCUkJ3oWlavAgu0qSy5xU4fx8ZkpbtvJGD04
564
564
  pulumi_alicloud/ddos/_inputs.py,sha256=QTncZJ5RO9zXFUGFPXFPlOK57lAfghF5qzHI9jEkB0A,6860
565
565
  pulumi_alicloud/ddos/basic_defense_threshold.py,sha256=tHnBCM-gs8f7Pxixfg9NAWikOMLTfNZHgzLm6trqGb0,22814
566
566
  pulumi_alicloud/ddos/basic_threshold.py,sha256=FYs0SBWqzsuP93HxpDhK61vcZizn01G_TKMqZVPW7sk,21351
567
- pulumi_alicloud/ddos/bgp_ip.py,sha256=8J_bpcieM-xO7_LYIeEzV3l4eGBQ-kpkrMVy2DkNO8M,12863
567
+ pulumi_alicloud/ddos/bgp_ip.py,sha256=tl4Cb-0KvBvuLtSY60c-BjfSUuRATZd8hcd80E7KnHI,14928
568
568
  pulumi_alicloud/ddos/ddos_bgp_instance.py,sha256=vwZpmPZq-7B30aPee-NscETHtA-gDbXCKbgK0UOHRUM,23498
569
569
  pulumi_alicloud/ddos/ddos_coo_instance.py,sha256=zUjE-XwM2Y0HTsOhBh0MsAPdf6E4Sybhg4tvTtxYeU4,47473
570
570
  pulumi_alicloud/ddos/domain_resource.py,sha256=4btHqfbylB168Tmkr0xeU3THmhq4m1CLdqis5_p57vs,40089
@@ -694,7 +694,7 @@ pulumi_alicloud/ebs/replica_group_drill.py,sha256=5veMnalQJf4yYTmhaLQfMvBJLQixDv
694
694
  pulumi_alicloud/ebs/replica_pair_drill.py,sha256=OKPnRs0s1j8XjAlqO8Vls7wjfJYUzAGMzQ-ncZKs13g,10310
695
695
  pulumi_alicloud/ebs/solution_instance.py,sha256=G6v39zw2ZX3IijzImn9-TEh-DV6j5SJIH0eBOsXqFF4,24235
696
696
  pulumi_alicloud/eci/__init__.py,sha256=WXmtQFDNtbhs1L4Sf3lu0fzz86qv1WJRTOtd1ZpxoyM,562
697
- pulumi_alicloud/eci/_inputs.py,sha256=eD9zXuGJW-J177fbLLR_jxMOCCfTCcGB6WpBnrxaBGQ,77455
697
+ pulumi_alicloud/eci/_inputs.py,sha256=28Lvj2lKXp6wRDUkg64nccDaZDDdJ9_js6pJmyOSdoU,77886
698
698
  pulumi_alicloud/eci/container_group.py,sha256=QU-tyCE8pMUhPQzaFl0giJMs4yWfwSII1VESZ54wRZA,95063
699
699
  pulumi_alicloud/eci/get_container_groups.py,sha256=2g3qHtdcRbM1VOD3tAUMO-rYVHLbxKH8Z7O8l3NlVmk,13530
700
700
  pulumi_alicloud/eci/get_image_caches.py,sha256=tg7EbyIOWwuNgN38Th4szyG1OatgyCt0if-PBjHc878,8915
@@ -702,7 +702,7 @@ pulumi_alicloud/eci/get_virtual_nodes.py,sha256=8eTo2IzozYnvPdDKQjny8zeNigvJd6Bd
702
702
  pulumi_alicloud/eci/get_zones.py,sha256=H5jYksyAvwnzhKa-Mv36C2RMdFYxAnlLjUdH4Otuxug,3768
703
703
  pulumi_alicloud/eci/image_cache.py,sha256=i7j41a_1yJBxuRTiGwgXsD1E5A7x4g6acrsbfv9YxE4,37130
704
704
  pulumi_alicloud/eci/open_api_image_cache.py,sha256=8fqx9BbcpQEp8jESrUQvci_nRDuWwBr_AREK8YgsY0I,21366
705
- pulumi_alicloud/eci/outputs.py,sha256=PZkkH_nb_Mvkgp1b0EjAatuir7WBkUY35Sr8EVgjs34,127520
705
+ pulumi_alicloud/eci/outputs.py,sha256=NVaPMzx3JFpG6Y92_vTOVNFU8OC4t0alRY23xpdyOh0,127790
706
706
  pulumi_alicloud/eci/virtual_node.py,sha256=9Pr-88HWSbL-JrhZc2_yhyQ_MpbLDW7DTYakcFyQFg8,31952
707
707
  pulumi_alicloud/ecp/__init__.py,sha256=lWxVO5z52X2xpjlW0E_j1OIfFK3nVI_RUntFR0SVQWo,456
708
708
  pulumi_alicloud/ecp/get_instance_types.py,sha256=v3jiOfmTbYe8l69NpM4jZbLOrnyjOyuPNUXbjEd0-mA,4147
@@ -726,7 +726,7 @@ pulumi_alicloud/ecs/disk_attachment.py,sha256=7j4ADmFvuS3eXKAel2vNdtAc8-w6r1Dvgv
726
726
  pulumi_alicloud/ecs/ecs_auto_snapshot_policy_attachment.py,sha256=brV5Tc3gtwooAq6dGTnBMetNVls-jcsBj5krP0cbGL8,11812
727
727
  pulumi_alicloud/ecs/ecs_dedicated_host_cluster.py,sha256=uVUCsh04_n1ZQLbSPqPe6kfwNcvQ8Z1w81ENY1ci5JM,17989
728
728
  pulumi_alicloud/ecs/ecs_deployment_set.py,sha256=doH_33lMNW2Oz1Laiv4Kh-6F9QGmgVkAZAUPHEHPmRc,22706
729
- pulumi_alicloud/ecs/ecs_disk.py,sha256=aeYITVlZX7BNNSSnfnb1MjunVpYzA_F6szJBDEmU-L8,68231
729
+ pulumi_alicloud/ecs/ecs_disk.py,sha256=nZf6bvjOoAR6IEf-2gDbm5rFxUfN0KdcGXrGFE-IMW8,68714
730
730
  pulumi_alicloud/ecs/ecs_disk_attachment.py,sha256=6XhrepxCOD9TvqIzKlckMLCxRAjAYDUMbbjzbnYgbuw,23078
731
731
  pulumi_alicloud/ecs/ecs_image_component.py,sha256=PRLO0IVQYwjX3QhViQynO28q_JWW4Z3o0hUAOK0xBTk,23839
732
732
  pulumi_alicloud/ecs/ecs_image_pipeline.py,sha256=4UBSnaUBsjneRge9LhOB4TqZyTGBbU_yYGoKfxpTcpQ,51892
@@ -742,10 +742,10 @@ pulumi_alicloud/ecs/ecs_prefix_list.py,sha256=lwjo9A7BR_vaYExj8rVarVbcXcWIgvNwyC
742
742
  pulumi_alicloud/ecs/ecs_session_manager_status.py,sha256=cLJqGsZrPKDKYDeI_DUIkeJnbFwtUDvu_bonOXCFmkU,10122
743
743
  pulumi_alicloud/ecs/ecs_snapshot.py,sha256=rX43r8jNeyVHXW2K43cLIE0CVnsskMkZzRkzMO4J0VU,30264
744
744
  pulumi_alicloud/ecs/ecs_snapshot_group.py,sha256=HxlathkAmeTbm-tAyO2wLaf3DKYUxN-IQUBLEkoAeRo,34258
745
- pulumi_alicloud/ecs/eip.py,sha256=q6xZg2iOyFsU7_Od7tX86Pa41mqAO8RuzaKo964qPWY,64182
746
- pulumi_alicloud/ecs/eip_address.py,sha256=oMwxqHN-0nNf-W57Aqkps_TdEMYkElrCxZAtduqylhg,85809
747
- pulumi_alicloud/ecs/eip_association.py,sha256=zF5_0V-Nc-d9olXOkTrB-rCP7zfejB17bJhXHAk-w68,27918
748
- pulumi_alicloud/ecs/eip_segment_address.py,sha256=teiHCI68Ri8lzJ1fzgeFQQAlOPomjjOd3w-nq587MAE,30455
745
+ pulumi_alicloud/ecs/eip.py,sha256=VbqeDrxwfXR_PLWcycoXgHjKPwMDR3Bkw0meI4EV9FU,64172
746
+ pulumi_alicloud/ecs/eip_address.py,sha256=q7RoNxFh30KpKgblDuAzaIW9fRsYHfe19g1YkEDtNKE,92042
747
+ pulumi_alicloud/ecs/eip_association.py,sha256=eJ21pSOEUgSwdxgb-be4OpJJBndJ76XK0iF4O6D--pE,34122
748
+ pulumi_alicloud/ecs/eip_segment_address.py,sha256=4kuJsoj4VuOLAgCfHENpfYxWMzVn2MOswYMPjXCg2fY,33700
749
749
  pulumi_alicloud/ecs/elasticity_assurance.py,sha256=r89XLGl25tlN0hTwtwgbw-UrR-5yf5UFV3bIY5dfwWQ,46117
750
750
  pulumi_alicloud/ecs/get_activations.py,sha256=uMWa4uq4YabWFAcKSi_uNFDGDeTDE46v6qhY5lRhPow,6977
751
751
  pulumi_alicloud/ecs/get_auto_snapshot_policies.py,sha256=mzQVx0IcN0VQi1vfepAjXrSfaJEKzhJaxI1uTEYqExs,7548
@@ -787,7 +787,7 @@ pulumi_alicloud/ecs/image_copy.py,sha256=-MCBzM-jrANiNWL1ym9esgGjv-CrrFDlijczbdn
787
787
  pulumi_alicloud/ecs/image_export.py,sha256=1M8soFswXlSE7zTx6xZc4r5gJ2aQFHat4hzj1xtUQHQ,15014
788
788
  pulumi_alicloud/ecs/image_import.py,sha256=3buJHTmAyr9zd68h2BP5jNrEn-XKgx37mOr18oF5Ags,29556
789
789
  pulumi_alicloud/ecs/image_share_permission.py,sha256=1I-hkjCaBkAbV25swaffxxg8kdG16sNGM2v0Seb3RVY,13737
790
- pulumi_alicloud/ecs/instance.py,sha256=XN9kv1ZRsI9iecG44XHXWRZZI7KBuqYWrGj5otEphwg,274886
790
+ pulumi_alicloud/ecs/instance.py,sha256=3zpTgcQpu-pv3yYpgW4djjmg7cY-Sit6_E0_4wehhAk,275446
791
791
  pulumi_alicloud/ecs/key_pair.py,sha256=3e_O4UPew_Jbi30IjKOgT3v-ur7Juu7J3WIYHE_5cqQ,21153
792
792
  pulumi_alicloud/ecs/key_pair_attachment.py,sha256=raK4YWXj-QveLdrsWLZFtUlL1wuEs6TXapLt8sASFj8,13230
793
793
  pulumi_alicloud/ecs/launch_template.py,sha256=ZhG6cFiFqfo9fFpNhsw7l5EmEszEYGl9954mk8rzThk,125446
@@ -904,8 +904,8 @@ pulumi_alicloud/ens/security_group.py,sha256=AJBAuolf_QKOfJvgQkDZnGSzIP4rpgwsb-Q
904
904
  pulumi_alicloud/ens/snapshot.py,sha256=Ec5KBFguj1MnaDQPaaVtyY1sp9ar129iorDkKQDtw0g,15975
905
905
  pulumi_alicloud/ens/vswitch.py,sha256=Jm2ZZzq_ZHCtGbf9EBYBh8wo1hja76NC3VfBKnY_kxw,17518
906
906
  pulumi_alicloud/ess/__init__.py,sha256=-h2wKh4_SPyNnryknA6ihf1aas_Q0snAQPWSXuZVuKU,965
907
- pulumi_alicloud/ess/_inputs.py,sha256=wAbuobTPOSlg15r90C2xcQTb6pCiqxscbfiR6JLnSvg,99493
908
- pulumi_alicloud/ess/alarm.py,sha256=FkUXCeNXzrrxeV4pNkarrht7dPlzpMHEiVel3XvsfJA,48441
907
+ pulumi_alicloud/ess/_inputs.py,sha256=YZPHsyx4O73Phh9sXrOiLgb5luAVIoiFseg44aRgeYw,103410
908
+ pulumi_alicloud/ess/alarm.py,sha256=kU98ZTGQb7aTdi6-LwSPkBj0Y1A7jlFywjPA7h6i5uY,53775
909
909
  pulumi_alicloud/ess/alb_server_group_attachment.py,sha256=p3wBhTib1jmRcv4Hz-pX-dx3ZmthfrB9MWzgb51zYCg,22035
910
910
  pulumi_alicloud/ess/attachment.py,sha256=NZUd0oC6y7DBYU8gZk2TueLC09MUPBBsKTLRovPLC7E,32798
911
911
  pulumi_alicloud/ess/eci_scaling_configuration.py,sha256=DsvZnCRdbPPQsucZvw5atykyU58PBfn78edZmHgh_1o,100879
@@ -918,9 +918,9 @@ pulumi_alicloud/ess/get_scaling_rules.py,sha256=BFGEdlQcX7j4oOfkDTaKwjST0iieiodC
918
918
  pulumi_alicloud/ess/get_scheduled_tasks.py,sha256=zpUbCAueG82SpEI8nxvTiodcHLK2nnzfkKEx2zacAVc,7863
919
919
  pulumi_alicloud/ess/lifecycle_hook.py,sha256=6DjFfs5Iozhvf-htR5v4Nc88WyR5hz8hceyHLvPgEeo,28451
920
920
  pulumi_alicloud/ess/notification.py,sha256=DyG0RvUbOpxDvUICvVYu9xwm0T_xqKig8BrrEH3dpZg,20862
921
- pulumi_alicloud/ess/outputs.py,sha256=m0-a_wK_pqGRN7z1DRIw9wL1do-UfPzJlPDwnzodXdc,134361
921
+ pulumi_alicloud/ess/outputs.py,sha256=h6tUSOVHvQ-9nBofLVlnP8SqzdirdNi9ym0fAwdmIY8,138041
922
922
  pulumi_alicloud/ess/scaling_configuration.py,sha256=x24xqNiXtHkQaO1k3GGIroZfv0O7Vse9YFDjsYMUurE,145578
923
- pulumi_alicloud/ess/scaling_group.py,sha256=3BojmJjF2bfdn7GvWK25oG4JThNAVWOm_Jkado2WIVQ,96230
923
+ pulumi_alicloud/ess/scaling_group.py,sha256=vhXoQPx9v0nEao4iJkFg_c4ZXjBoc8jQpH9JMKYl1jM,106613
924
924
  pulumi_alicloud/ess/scaling_group_v_server_groups.py,sha256=qCW3vgCJ5FVUcf-9EpOa9QCefSc0SJ6ntY1NGNufC94,14247
925
925
  pulumi_alicloud/ess/scaling_rule.py,sha256=lYoygXMS8Eh-kv4Lh2lZ-btS2e-19zOqinA1dnEuj08,76858
926
926
  pulumi_alicloud/ess/schedule.py,sha256=4TZK_Vtp7SbQxDt3UGcbKf6GNLnqyisJvRmzSNniLn0,23054
@@ -1174,7 +1174,7 @@ pulumi_alicloud/log/log_tail_attachment.py,sha256=Mf_ZyejHd4kf9OHBS1wsYyIvQnDyiV
1174
1174
  pulumi_alicloud/log/log_tail_config.py,sha256=T56LMqlqzC1WhyVkpH6hzygPS_mV-R4nG7_v6AzST90,23945
1175
1175
  pulumi_alicloud/log/machine_group.py,sha256=9QjrghMauXyZwhEplgl8Pk0RQ2yEDCJItZU4FSRjhG0,17046
1176
1176
  pulumi_alicloud/log/oss_export.py,sha256=9wP2nr8Sv-ruFizFI8Na3AfjElU-SCj9DP2HG41VvMM,67423
1177
- pulumi_alicloud/log/oss_shipper.py,sha256=51sD_A39Z7AaDo5OV1oNAUGtckyr2hHIQIN8NPqpl0A,55018
1177
+ pulumi_alicloud/log/oss_shipper.py,sha256=Fq7hyRJXdWm3SZpfwXBcnMEoIRfTZLCZAM6_dh0zqpc,55288
1178
1178
  pulumi_alicloud/log/outputs.py,sha256=DLNvnkkYe6bQifLLXhHCDWR_iJAXI_s1U4c6hdagXoU,49080
1179
1179
  pulumi_alicloud/log/project.py,sha256=MIXpWgBh3dTw9Lvy77uj5tXKak5LZBGuYKlZsjZtFlU,25553
1180
1180
  pulumi_alicloud/log/resource.py,sha256=NtVeubBNv8l53PjbWLGbWoEtwP_c0Nth3cV8ex115VI,15566
@@ -1229,7 +1229,7 @@ pulumi_alicloud/mongodb/get_zones.py,sha256=YOZI4XTiZIafxsStpwaH6ThJ-gM2kYRI_IvG
1229
1229
  pulumi_alicloud/mongodb/instance.py,sha256=z2ZviFg4_O3XFVB_NahEEaYIpTMS0MHFzsXUK1HJwiY,125240
1230
1230
  pulumi_alicloud/mongodb/outputs.py,sha256=14sb4bcTB0q5XjHIL_uVVd2Rst8QVggWLzrd-L-Ezn4,64329
1231
1231
  pulumi_alicloud/mongodb/serverless_instance.py,sha256=ZfesNxPxTfLkX5lFpOKxV3HYRwPl0fdW7lWZK0DO6a0,53046
1232
- pulumi_alicloud/mongodb/sharding_instance.py,sha256=WfAv2bKmjhYPs42ANN0zhKcBZop-vP1W80UKn_-fYYk,81034
1232
+ pulumi_alicloud/mongodb/sharding_instance.py,sha256=3H3RMjlH7HoOHfnc1tLYiUWtz1X36ddlDbTdnLkDMAw,83922
1233
1233
  pulumi_alicloud/mongodb/sharding_network_private_address.py,sha256=tnkc_pV0WY9D--7oHc-s3uAqYd-36VJliEWJb1OjxzA,21720
1234
1234
  pulumi_alicloud/mongodb/sharding_network_public_address.py,sha256=xGdeT4BvWvhTtixzCVmAVvY-rh5y7Rhklap-uADs-ok,14840
1235
1235
  pulumi_alicloud/mse/__init__.py,sha256=Q6uJkzPQ3L6v-RqMIUhonqYHHhDMvKNtv2ZkUaYV_Og,532
@@ -1487,7 +1487,7 @@ pulumi_alicloud/rds/get_rds_backups.py,sha256=5sWWCH9-oLwdN4VqQCVQ9_SoWcBqzfnvH0
1487
1487
  pulumi_alicloud/rds/get_rds_parameter_groups.py,sha256=OZoDTuwAJnAesgTyRMT6BgdRPNqkeqso4PHX3kQd0uk,5436
1488
1488
  pulumi_alicloud/rds/get_slots.py,sha256=edgSnMa5dq4dKutobrH-E5lwjF66SdKJJdMXkaCiW2A,5450
1489
1489
  pulumi_alicloud/rds/get_zones.py,sha256=L4yhHTWbBGpRekVzFS3Lm1VNJQh_WZhNlBlh_aE4jN4,11485
1490
- pulumi_alicloud/rds/instance.py,sha256=VW40_SoRqUWXJyLg1izfNU-PoL18InQ17LQdiaHTkgM,314132
1490
+ pulumi_alicloud/rds/instance.py,sha256=SCknUXuhbjT7YcZJzhwZeKl8zO3IHU8KtV8m3O-gQrY,319526
1491
1491
  pulumi_alicloud/rds/outputs.py,sha256=wchJxCjS50Bs5RyzjYq9dL580r21OWXhBVs4lmQmLtg,141126
1492
1492
  pulumi_alicloud/rds/rds_account.py,sha256=ELaJG0NBKp1kn1GK5YEsuDvxgKTrLiD5PcpgyMvar0w,50200
1493
1493
  pulumi_alicloud/rds/rds_backup.py,sha256=Ze-Yx0glOVIrLAJVIuyC2Gdc-Qtiir9AV6vVPRlHHi0,23741
@@ -1759,8 +1759,8 @@ pulumi_alicloud/vpc/_inputs.py,sha256=7QGme24_HFAUeVanroZaC83uxQ0NJifpcNuYqk6flJ
1759
1759
  pulumi_alicloud/vpc/bgp_group.py,sha256=BaJWwOqFuFaXTuF4TP06hXLElD2kCenJ8PVE_j2vVNs,24309
1760
1760
  pulumi_alicloud/vpc/bgp_network.py,sha256=TSHUv_aMkhU-ogbOG5617rOf30gzAhudyxliUOgYi5w,12300
1761
1761
  pulumi_alicloud/vpc/bgp_peer.py,sha256=Dl1Mi66C_d0MgANFgyAsD-gBgWW7OxwpXWJjvTN-eAU,21272
1762
- pulumi_alicloud/vpc/common_bandwith_package.py,sha256=0Rb2D_gWpSpXVvGOidnHlqo4GUB0BhhCXzMzgUPO0tQ,46535
1763
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py,sha256=g1WJ291Rxmz95Ts0ZL_wHVrBHKTE8Ml64HOeKPX77kc,20991
1762
+ pulumi_alicloud/vpc/common_bandwith_package.py,sha256=vq-lQKYRLfpWn42b7Yak2L0_xz0GgdM4K--J0bZN7Z0,49757
1763
+ pulumi_alicloud/vpc/common_bandwith_package_attachment.py,sha256=JhdHIRdP4kH5uqyAnnKY6aIU_Alrf4e2b-Vs17jOSx0,22448
1764
1764
  pulumi_alicloud/vpc/dhcp_options_set.py,sha256=hJn4nRSIRFPV0G8_PkAatT8xb_jtxraEyHMeKHTNrb0,44599
1765
1765
  pulumi_alicloud/vpc/dhcp_options_set_attachment.py,sha256=xfiIaYDwow40n6-Wh2HdQsvp4LMo66JkfFch6BdpEeE,14166
1766
1766
  pulumi_alicloud/vpc/flow_log.py,sha256=9nrY2pcGz7YmNPR9NCF7TIUGuAvPy_58WGkJLqpGc-E,33813
@@ -1889,7 +1889,7 @@ pulumi_alicloud/yundun/db_audit_instance.py,sha256=koiBm6EGDEVed97xzLqmnJAP0iWJi
1889
1889
  pulumi_alicloud/yundun/get_bastion_host_instances.py,sha256=FU-j5Ymk_dTU80MAbqDhW5C_-xhLLqXh9tmRcD4jaxA,5593
1890
1890
  pulumi_alicloud/yundun/get_db_audit_instance.py,sha256=VvQ8uGQ6gOJVinFHHgF_dHx5SKyQAq9VwezXYASU1JY,5458
1891
1891
  pulumi_alicloud/yundun/outputs.py,sha256=RUtU8rizI_ZZDhuI4zNKJTRmwyMGo79B4qDWTkop-qY,13295
1892
- pulumi_alicloud-3.58.0a1719292463.dist-info/METADATA,sha256=FzFmx6Szn4rWGw8KdQ1eWX3Saita6Dpm1IQqrauQN1k,4348
1893
- pulumi_alicloud-3.58.0a1719292463.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
1894
- pulumi_alicloud-3.58.0a1719292463.dist-info/top_level.txt,sha256=U6LUZaKkW6MfUdVdxwspCksOWCBCMIWK24oo93s1Up8,16
1895
- pulumi_alicloud-3.58.0a1719292463.dist-info/RECORD,,
1892
+ pulumi_alicloud-3.58.0a1719465542.dist-info/METADATA,sha256=6uTmmDUbBbqy_ATOeD9--TU4ehIsTMvJcA0GRym-vGc,4348
1893
+ pulumi_alicloud-3.58.0a1719465542.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
1894
+ pulumi_alicloud-3.58.0a1719465542.dist-info/top_level.txt,sha256=U6LUZaKkW6MfUdVdxwspCksOWCBCMIWK24oo93s1Up8,16
1895
+ pulumi_alicloud-3.58.0a1719465542.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.0)
2
+ Generator: setuptools (70.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5