pulumi-alicloud 3.84.0a1757017465__py3-none-any.whl → 3.85.0a1757389637__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 (54) hide show
  1. pulumi_alicloud/__init__.py +64 -0
  2. pulumi_alicloud/amqp/get_instances.py +49 -20
  3. pulumi_alicloud/amqp/outputs.py +20 -20
  4. pulumi_alicloud/amqp/virtual_host.py +46 -20
  5. pulumi_alicloud/cloudsso/__init__.py +1 -0
  6. pulumi_alicloud/cloudsso/delegate_account.py +218 -0
  7. pulumi_alicloud/cs/node_pool.py +7 -0
  8. pulumi_alicloud/ddos/bgp_ip.py +57 -48
  9. pulumi_alicloud/ddos/ddos_bgp_instance.py +246 -106
  10. pulumi_alicloud/dms/__init__.py +1 -0
  11. pulumi_alicloud/dms/enterprise_workspace.py +354 -0
  12. pulumi_alicloud/dns/ddos_bgp_instance.py +246 -106
  13. pulumi_alicloud/eflo/node.py +54 -7
  14. pulumi_alicloud/esa/__init__.py +3 -0
  15. pulumi_alicloud/esa/kv_account.py +145 -0
  16. pulumi_alicloud/esa/routine_related_record.py +226 -0
  17. pulumi_alicloud/esa/url_observation.py +352 -0
  18. pulumi_alicloud/fc/get_service.py +2 -2
  19. pulumi_alicloud/hologram/instance.py +35 -0
  20. pulumi_alicloud/kms/instance.py +47 -0
  21. pulumi_alicloud/log/oss_export.py +6 -0
  22. pulumi_alicloud/message/service_subscription.py +48 -1
  23. pulumi_alicloud/mongodb/sharding_instance.py +338 -0
  24. pulumi_alicloud/nlb/server_group.py +28 -21
  25. pulumi_alicloud/oss/bucket.py +56 -0
  26. pulumi_alicloud/privatelink/vpc_endpoint.py +21 -7
  27. pulumi_alicloud/pulumi-plugin.json +1 -1
  28. pulumi_alicloud/resourcemanager/__init__.py +1 -0
  29. pulumi_alicloud/resourcemanager/delegated_administrator.py +22 -50
  30. pulumi_alicloud/resourcemanager/folder.py +106 -29
  31. pulumi_alicloud/resourcemanager/get_accounts.py +35 -18
  32. pulumi_alicloud/resourcemanager/message_contact.py +572 -0
  33. pulumi_alicloud/resourcemanager/outputs.py +31 -20
  34. pulumi_alicloud/resourcemanager/resource_directory.py +137 -46
  35. pulumi_alicloud/resourcemanager/shared_resource.py +81 -45
  36. pulumi_alicloud/resourcemanager/shared_target.py +60 -24
  37. pulumi_alicloud/sls/__init__.py +4 -0
  38. pulumi_alicloud/sls/_inputs.py +128 -0
  39. pulumi_alicloud/sls/get_logtail_configs.py +395 -0
  40. pulumi_alicloud/sls/get_machine_groups.py +229 -0
  41. pulumi_alicloud/sls/logtail_config.py +692 -0
  42. pulumi_alicloud/sls/machine_group.py +502 -0
  43. pulumi_alicloud/sls/outputs.py +172 -0
  44. pulumi_alicloud/vpc/_inputs.py +87 -54
  45. pulumi_alicloud/vpc/dhcp_options_set.py +97 -58
  46. pulumi_alicloud/vpc/flow_log.py +25 -25
  47. pulumi_alicloud/vpc/ha_vip_attachment.py +41 -60
  48. pulumi_alicloud/vpc/ha_vipv2.py +100 -88
  49. pulumi_alicloud/vpc/network_acl.py +34 -23
  50. pulumi_alicloud/vpc/outputs.py +58 -36
  51. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/METADATA +1 -1
  52. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/RECORD +54 -44
  53. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/WHEEL +0 -0
  54. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/top_level.txt +0 -0
@@ -37,6 +37,8 @@ __all__ = [
37
37
  'CollectionPolicyResourceDirectory',
38
38
  'EtlConfiguration',
39
39
  'EtlConfigurationSink',
40
+ 'LogtailConfigOutputDetail',
41
+ 'MachineGroupGroupAttribute',
40
42
  'OssExportSinkConfiguration',
41
43
  'OssExportSinkConfigurationSink',
42
44
  'ScheduledSqlSchedule',
@@ -60,6 +62,8 @@ __all__ = [
60
62
  'GetEtlsEtlResult',
61
63
  'GetEtlsEtlConfigurationResult',
62
64
  'GetEtlsEtlConfigurationSinkResult',
65
+ 'GetLogtailConfigsConfigResult',
66
+ 'GetMachineGroupsGroupResult',
63
67
  ]
64
68
 
65
69
  @pulumi.output_type
@@ -1674,6 +1678,116 @@ class EtlConfigurationSink(dict):
1674
1678
  return pulumi.get(self, "role_arn")
1675
1679
 
1676
1680
 
1681
+ @pulumi.output_type
1682
+ class LogtailConfigOutputDetail(dict):
1683
+ @staticmethod
1684
+ def __key_warning(key: str):
1685
+ suggest = None
1686
+ if key == "logstoreName":
1687
+ suggest = "logstore_name"
1688
+
1689
+ if suggest:
1690
+ pulumi.log.warn(f"Key '{key}' not found in LogtailConfigOutputDetail. Access the value via the '{suggest}' property getter instead.")
1691
+
1692
+ def __getitem__(self, key: str) -> Any:
1693
+ LogtailConfigOutputDetail.__key_warning(key)
1694
+ return super().__getitem__(key)
1695
+
1696
+ def get(self, key: str, default = None) -> Any:
1697
+ LogtailConfigOutputDetail.__key_warning(key)
1698
+ return super().get(key, default)
1699
+
1700
+ def __init__(__self__, *,
1701
+ endpoint: Optional[_builtins.str] = None,
1702
+ logstore_name: Optional[_builtins.str] = None,
1703
+ region: Optional[_builtins.str] = None):
1704
+ """
1705
+ :param _builtins.str endpoint: The endpoint of the log project.
1706
+ :param _builtins.str logstore_name: The name of the output target logstore.
1707
+ :param _builtins.str region: Region
1708
+ """
1709
+ if endpoint is not None:
1710
+ pulumi.set(__self__, "endpoint", endpoint)
1711
+ if logstore_name is not None:
1712
+ pulumi.set(__self__, "logstore_name", logstore_name)
1713
+ if region is not None:
1714
+ pulumi.set(__self__, "region", region)
1715
+
1716
+ @_builtins.property
1717
+ @pulumi.getter
1718
+ def endpoint(self) -> Optional[_builtins.str]:
1719
+ """
1720
+ The endpoint of the log project.
1721
+ """
1722
+ return pulumi.get(self, "endpoint")
1723
+
1724
+ @_builtins.property
1725
+ @pulumi.getter(name="logstoreName")
1726
+ def logstore_name(self) -> Optional[_builtins.str]:
1727
+ """
1728
+ The name of the output target logstore.
1729
+ """
1730
+ return pulumi.get(self, "logstore_name")
1731
+
1732
+ @_builtins.property
1733
+ @pulumi.getter
1734
+ def region(self) -> Optional[_builtins.str]:
1735
+ """
1736
+ Region
1737
+ """
1738
+ return pulumi.get(self, "region")
1739
+
1740
+
1741
+ @pulumi.output_type
1742
+ class MachineGroupGroupAttribute(dict):
1743
+ @staticmethod
1744
+ def __key_warning(key: str):
1745
+ suggest = None
1746
+ if key == "externalName":
1747
+ suggest = "external_name"
1748
+ elif key == "groupTopic":
1749
+ suggest = "group_topic"
1750
+
1751
+ if suggest:
1752
+ pulumi.log.warn(f"Key '{key}' not found in MachineGroupGroupAttribute. Access the value via the '{suggest}' property getter instead.")
1753
+
1754
+ def __getitem__(self, key: str) -> Any:
1755
+ MachineGroupGroupAttribute.__key_warning(key)
1756
+ return super().__getitem__(key)
1757
+
1758
+ def get(self, key: str, default = None) -> Any:
1759
+ MachineGroupGroupAttribute.__key_warning(key)
1760
+ return super().get(key, default)
1761
+
1762
+ def __init__(__self__, *,
1763
+ external_name: Optional[_builtins.str] = None,
1764
+ group_topic: Optional[_builtins.str] = None):
1765
+ """
1766
+ :param _builtins.str external_name: The external management system identification on which the machine group depends.
1767
+ :param _builtins.str group_topic: The log topic of the machine group.
1768
+ """
1769
+ if external_name is not None:
1770
+ pulumi.set(__self__, "external_name", external_name)
1771
+ if group_topic is not None:
1772
+ pulumi.set(__self__, "group_topic", group_topic)
1773
+
1774
+ @_builtins.property
1775
+ @pulumi.getter(name="externalName")
1776
+ def external_name(self) -> Optional[_builtins.str]:
1777
+ """
1778
+ The external management system identification on which the machine group depends.
1779
+ """
1780
+ return pulumi.get(self, "external_name")
1781
+
1782
+ @_builtins.property
1783
+ @pulumi.getter(name="groupTopic")
1784
+ def group_topic(self) -> Optional[_builtins.str]:
1785
+ """
1786
+ The log topic of the machine group.
1787
+ """
1788
+ return pulumi.get(self, "group_topic")
1789
+
1790
+
1677
1791
  @pulumi.output_type
1678
1792
  class OssExportSinkConfiguration(dict):
1679
1793
  @staticmethod
@@ -3607,3 +3721,61 @@ class GetEtlsEtlConfigurationSinkResult(dict):
3607
3721
  return pulumi.get(self, "role_arn")
3608
3722
 
3609
3723
 
3724
+ @pulumi.output_type
3725
+ class GetLogtailConfigsConfigResult(dict):
3726
+ def __init__(__self__, *,
3727
+ id: _builtins.str,
3728
+ logtail_config_name: _builtins.str):
3729
+ """
3730
+ :param _builtins.str id: The ID of the resource supplied above.
3731
+ :param _builtins.str logtail_config_name: The name of the resource
3732
+ """
3733
+ pulumi.set(__self__, "id", id)
3734
+ pulumi.set(__self__, "logtail_config_name", logtail_config_name)
3735
+
3736
+ @_builtins.property
3737
+ @pulumi.getter
3738
+ def id(self) -> _builtins.str:
3739
+ """
3740
+ The ID of the resource supplied above.
3741
+ """
3742
+ return pulumi.get(self, "id")
3743
+
3744
+ @_builtins.property
3745
+ @pulumi.getter(name="logtailConfigName")
3746
+ def logtail_config_name(self) -> _builtins.str:
3747
+ """
3748
+ The name of the resource
3749
+ """
3750
+ return pulumi.get(self, "logtail_config_name")
3751
+
3752
+
3753
+ @pulumi.output_type
3754
+ class GetMachineGroupsGroupResult(dict):
3755
+ def __init__(__self__, *,
3756
+ group_name: _builtins.str,
3757
+ id: _builtins.str):
3758
+ """
3759
+ :param _builtins.str group_name: Machine Group name
3760
+ :param _builtins.str id: The ID of the resource supplied above.
3761
+ """
3762
+ pulumi.set(__self__, "group_name", group_name)
3763
+ pulumi.set(__self__, "id", id)
3764
+
3765
+ @_builtins.property
3766
+ @pulumi.getter(name="groupName")
3767
+ def group_name(self) -> _builtins.str:
3768
+ """
3769
+ Machine Group name
3770
+ """
3771
+ return pulumi.get(self, "group_name")
3772
+
3773
+ @_builtins.property
3774
+ @pulumi.getter
3775
+ def id(self) -> _builtins.str:
3776
+ """
3777
+ The ID of the resource supplied above.
3778
+ """
3779
+ return pulumi.get(self, "id")
3780
+
3781
+
@@ -208,33 +208,40 @@ if not MYPY:
208
208
  class NetworkAclEgressAclEntryArgsDict(TypedDict):
209
209
  description: NotRequired[pulumi.Input[_builtins.str]]
210
210
  """
211
- The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
211
+ The description of the outbound rule.
212
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
212
213
  """
213
214
  destination_cidr_ip: NotRequired[pulumi.Input[_builtins.str]]
214
215
  """
215
- The network of the destination address.
216
+ The destination CIDR block.
216
217
  """
217
218
  entry_type: NotRequired[pulumi.Input[_builtins.str]]
218
219
  """
219
- The route entry type. The value can be `custom`, indicating custom.
220
+ The route entry type. Value
221
+ custom custom rule
222
+ system system rules
223
+ service Cloud service rules
220
224
  """
221
225
  ip_version: NotRequired[pulumi.Input[_builtins.str]]
222
226
  """
223
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
227
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
224
228
  """
225
229
  network_acl_entry_name: NotRequired[pulumi.Input[_builtins.str]]
226
230
  """
227
- Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
231
+ Name of the outbound rule entry.
232
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
228
233
  """
229
234
  policy: NotRequired[pulumi.Input[_builtins.str]]
230
235
  """
231
- Authorization policy. Value:
232
- - accept: Allow.
233
- - drop: Refused.
236
+ The action to be performed on network traffic that matches the rule. Valid values:
237
+ - accept
238
+ - drop
234
239
  """
235
240
  port: NotRequired[pulumi.Input[_builtins.str]]
236
241
  """
237
- The destination port range of the outbound rule. When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
242
+ The destination port range of the outbound rule.
243
+ When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
244
+ When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
238
245
  """
239
246
  protocol: NotRequired[pulumi.Input[_builtins.str]]
240
247
  """
@@ -260,15 +267,22 @@ class NetworkAclEgressAclEntryArgs:
260
267
  port: Optional[pulumi.Input[_builtins.str]] = None,
261
268
  protocol: Optional[pulumi.Input[_builtins.str]] = None):
262
269
  """
263
- :param pulumi.Input[_builtins.str] description: The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
264
- :param pulumi.Input[_builtins.str] destination_cidr_ip: The network of the destination address.
265
- :param pulumi.Input[_builtins.str] entry_type: The route entry type. The value can be `custom`, indicating custom.
266
- :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
267
- :param pulumi.Input[_builtins.str] network_acl_entry_name: Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
268
- :param pulumi.Input[_builtins.str] policy: Authorization policy. Value:
269
- - accept: Allow.
270
- - drop: Refused.
271
- :param pulumi.Input[_builtins.str] port: The destination port range of the outbound rule. When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
270
+ :param pulumi.Input[_builtins.str] description: The description of the outbound rule.
271
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
272
+ :param pulumi.Input[_builtins.str] destination_cidr_ip: The destination CIDR block.
273
+ :param pulumi.Input[_builtins.str] entry_type: The route entry type. Value
274
+ custom custom rule
275
+ system system rules
276
+ service Cloud service rules
277
+ :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
278
+ :param pulumi.Input[_builtins.str] network_acl_entry_name: Name of the outbound rule entry.
279
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
280
+ :param pulumi.Input[_builtins.str] policy: The action to be performed on network traffic that matches the rule. Valid values:
281
+ - accept
282
+ - drop
283
+ :param pulumi.Input[_builtins.str] port: The destination port range of the outbound rule.
284
+ When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
285
+ When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
272
286
  :param pulumi.Input[_builtins.str] protocol: The protocol type. Value:
273
287
  - icmp: Network Control Message Protocol.
274
288
  - gre: Generic Routing Encapsulation Protocol.
@@ -297,7 +311,8 @@ class NetworkAclEgressAclEntryArgs:
297
311
  @pulumi.getter
298
312
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
299
313
  """
300
- The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
314
+ The description of the outbound rule.
315
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
301
316
  """
302
317
  return pulumi.get(self, "description")
303
318
 
@@ -309,7 +324,7 @@ class NetworkAclEgressAclEntryArgs:
309
324
  @pulumi.getter(name="destinationCidrIp")
310
325
  def destination_cidr_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
311
326
  """
312
- The network of the destination address.
327
+ The destination CIDR block.
313
328
  """
314
329
  return pulumi.get(self, "destination_cidr_ip")
315
330
 
@@ -321,7 +336,10 @@ class NetworkAclEgressAclEntryArgs:
321
336
  @pulumi.getter(name="entryType")
322
337
  def entry_type(self) -> Optional[pulumi.Input[_builtins.str]]:
323
338
  """
324
- The route entry type. The value can be `custom`, indicating custom.
339
+ The route entry type. Value
340
+ custom custom rule
341
+ system system rules
342
+ service Cloud service rules
325
343
  """
326
344
  return pulumi.get(self, "entry_type")
327
345
 
@@ -333,7 +351,7 @@ class NetworkAclEgressAclEntryArgs:
333
351
  @pulumi.getter(name="ipVersion")
334
352
  def ip_version(self) -> Optional[pulumi.Input[_builtins.str]]:
335
353
  """
336
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
354
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
337
355
  """
338
356
  return pulumi.get(self, "ip_version")
339
357
 
@@ -345,7 +363,8 @@ class NetworkAclEgressAclEntryArgs:
345
363
  @pulumi.getter(name="networkAclEntryName")
346
364
  def network_acl_entry_name(self) -> Optional[pulumi.Input[_builtins.str]]:
347
365
  """
348
- Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
366
+ Name of the outbound rule entry.
367
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
349
368
  """
350
369
  return pulumi.get(self, "network_acl_entry_name")
351
370
 
@@ -357,9 +376,9 @@ class NetworkAclEgressAclEntryArgs:
357
376
  @pulumi.getter
358
377
  def policy(self) -> Optional[pulumi.Input[_builtins.str]]:
359
378
  """
360
- Authorization policy. Value:
361
- - accept: Allow.
362
- - drop: Refused.
379
+ The action to be performed on network traffic that matches the rule. Valid values:
380
+ - accept
381
+ - drop
363
382
  """
364
383
  return pulumi.get(self, "policy")
365
384
 
@@ -371,7 +390,9 @@ class NetworkAclEgressAclEntryArgs:
371
390
  @pulumi.getter
372
391
  def port(self) -> Optional[pulumi.Input[_builtins.str]]:
373
392
  """
374
- The destination port range of the outbound rule. When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
393
+ The destination port range of the outbound rule.
394
+ When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
395
+ When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
375
396
  """
376
397
  return pulumi.get(self, "port")
377
398
 
@@ -621,29 +642,33 @@ if not MYPY:
621
642
  class NetworkAclIngressAclEntryArgsDict(TypedDict):
622
643
  description: NotRequired[pulumi.Input[_builtins.str]]
623
644
  """
624
- Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
645
+ Description of the inbound rule.
646
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
625
647
  """
626
648
  entry_type: NotRequired[pulumi.Input[_builtins.str]]
627
649
  """
628
- The route entry type. The value can be `custom`, indicating custom.
650
+ The route entry type. Value
629
651
  """
630
652
  ip_version: NotRequired[pulumi.Input[_builtins.str]]
631
653
  """
632
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
654
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
633
655
  """
634
656
  network_acl_entry_name: NotRequired[pulumi.Input[_builtins.str]]
635
657
  """
636
- The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
658
+ The name of the inbound rule entry.
659
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
637
660
  """
638
661
  policy: NotRequired[pulumi.Input[_builtins.str]]
639
662
  """
640
- Authorization policy. Value:
641
- - accept: Allow.
642
- - drop: Refused.
663
+ The action to be performed on network traffic that matches the rule. Valid values:
664
+ - accept
665
+ - drop
643
666
  """
644
667
  port: NotRequired[pulumi.Input[_builtins.str]]
645
668
  """
646
- The source port range of the inbound rule. When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
669
+ The source port range of the inbound rule.
670
+ When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
671
+ When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
647
672
  """
648
673
  protocol: NotRequired[pulumi.Input[_builtins.str]]
649
674
  """
@@ -656,7 +681,7 @@ if not MYPY:
656
681
  """
657
682
  source_cidr_ip: NotRequired[pulumi.Input[_builtins.str]]
658
683
  """
659
- Source address network segment.
684
+ The source CIDR block.
660
685
  """
661
686
  elif False:
662
687
  NetworkAclIngressAclEntryArgsDict: TypeAlias = Mapping[str, Any]
@@ -673,21 +698,25 @@ class NetworkAclIngressAclEntryArgs:
673
698
  protocol: Optional[pulumi.Input[_builtins.str]] = None,
674
699
  source_cidr_ip: Optional[pulumi.Input[_builtins.str]] = None):
675
700
  """
676
- :param pulumi.Input[_builtins.str] description: Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
677
- :param pulumi.Input[_builtins.str] entry_type: The route entry type. The value can be `custom`, indicating custom.
678
- :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
679
- :param pulumi.Input[_builtins.str] network_acl_entry_name: The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
680
- :param pulumi.Input[_builtins.str] policy: Authorization policy. Value:
681
- - accept: Allow.
682
- - drop: Refused.
683
- :param pulumi.Input[_builtins.str] port: The source port range of the inbound rule. When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
701
+ :param pulumi.Input[_builtins.str] description: Description of the inbound rule.
702
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
703
+ :param pulumi.Input[_builtins.str] entry_type: The route entry type. Value
704
+ :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
705
+ :param pulumi.Input[_builtins.str] network_acl_entry_name: The name of the inbound rule entry.
706
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
707
+ :param pulumi.Input[_builtins.str] policy: The action to be performed on network traffic that matches the rule. Valid values:
708
+ - accept
709
+ - drop
710
+ :param pulumi.Input[_builtins.str] port: The source port range of the inbound rule.
711
+ When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
712
+ When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
684
713
  :param pulumi.Input[_builtins.str] protocol: The protocol type. Value:
685
714
  - icmp: Network Control Message Protocol.
686
715
  - gre: Generic Routing Encapsulation Protocol.
687
716
  - tcp: Transmission Control Protocol.
688
717
  - udp: User Datagram Protocol.
689
718
  - all: Supports all protocols.
690
- :param pulumi.Input[_builtins.str] source_cidr_ip: Source address network segment.
719
+ :param pulumi.Input[_builtins.str] source_cidr_ip: The source CIDR block.
691
720
  """
692
721
  if description is not None:
693
722
  pulumi.set(__self__, "description", description)
@@ -710,7 +739,8 @@ class NetworkAclIngressAclEntryArgs:
710
739
  @pulumi.getter
711
740
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
712
741
  """
713
- Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
742
+ Description of the inbound rule.
743
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
714
744
  """
715
745
  return pulumi.get(self, "description")
716
746
 
@@ -722,7 +752,7 @@ class NetworkAclIngressAclEntryArgs:
722
752
  @pulumi.getter(name="entryType")
723
753
  def entry_type(self) -> Optional[pulumi.Input[_builtins.str]]:
724
754
  """
725
- The route entry type. The value can be `custom`, indicating custom.
755
+ The route entry type. Value
726
756
  """
727
757
  return pulumi.get(self, "entry_type")
728
758
 
@@ -734,7 +764,7 @@ class NetworkAclIngressAclEntryArgs:
734
764
  @pulumi.getter(name="ipVersion")
735
765
  def ip_version(self) -> Optional[pulumi.Input[_builtins.str]]:
736
766
  """
737
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
767
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
738
768
  """
739
769
  return pulumi.get(self, "ip_version")
740
770
 
@@ -746,7 +776,8 @@ class NetworkAclIngressAclEntryArgs:
746
776
  @pulumi.getter(name="networkAclEntryName")
747
777
  def network_acl_entry_name(self) -> Optional[pulumi.Input[_builtins.str]]:
748
778
  """
749
- The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
779
+ The name of the inbound rule entry.
780
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
750
781
  """
751
782
  return pulumi.get(self, "network_acl_entry_name")
752
783
 
@@ -758,9 +789,9 @@ class NetworkAclIngressAclEntryArgs:
758
789
  @pulumi.getter
759
790
  def policy(self) -> Optional[pulumi.Input[_builtins.str]]:
760
791
  """
761
- Authorization policy. Value:
762
- - accept: Allow.
763
- - drop: Refused.
792
+ The action to be performed on network traffic that matches the rule. Valid values:
793
+ - accept
794
+ - drop
764
795
  """
765
796
  return pulumi.get(self, "policy")
766
797
 
@@ -772,7 +803,9 @@ class NetworkAclIngressAclEntryArgs:
772
803
  @pulumi.getter
773
804
  def port(self) -> Optional[pulumi.Input[_builtins.str]]:
774
805
  """
775
- The source port range of the inbound rule. When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
806
+ The source port range of the inbound rule.
807
+ When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
808
+ When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
776
809
  """
777
810
  return pulumi.get(self, "port")
778
811
 
@@ -801,7 +834,7 @@ class NetworkAclIngressAclEntryArgs:
801
834
  @pulumi.getter(name="sourceCidrIp")
802
835
  def source_cidr_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
803
836
  """
804
- Source address network segment.
837
+ The source CIDR block.
805
838
  """
806
839
  return pulumi.get(self, "source_cidr_ip")
807
840