pulumi-alicloud 3.84.0a1756507491__py3-none-any.whl → 3.85.0__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 (283) hide show
  1. pulumi_alicloud/__init__.py +172 -0
  2. pulumi_alicloud/_inputs.py +635 -0
  3. pulumi_alicloud/ackone/membership_attachment.py +122 -0
  4. pulumi_alicloud/actiontrail/__init__.py +1 -0
  5. pulumi_alicloud/actiontrail/advanced_query_template.py +311 -0
  6. pulumi_alicloud/actiontrail/trail.py +303 -149
  7. pulumi_alicloud/actiontrail/trail_deprecated.py +131 -23
  8. pulumi_alicloud/alb/a_script.py +170 -0
  9. pulumi_alicloud/alb/get_rules.py +206 -0
  10. pulumi_alicloud/alb/listener.py +240 -0
  11. pulumi_alicloud/alb/listener_acl_attachment.py +180 -0
  12. pulumi_alicloud/alb/listener_additional_certificate_attachment.py +314 -0
  13. pulumi_alicloud/alb/load_balancer_access_log_config_attachment.py +136 -0
  14. pulumi_alicloud/alb/load_balancer_common_bandwidth_package_attachment.py +122 -0
  15. pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +124 -0
  16. pulumi_alicloud/alb/rule.py +202 -0
  17. pulumi_alicloud/alikafka/sasl_user.py +2 -2
  18. pulumi_alicloud/amqp/get_instances.py +49 -20
  19. pulumi_alicloud/amqp/outputs.py +20 -20
  20. pulumi_alicloud/amqp/virtual_host.py +46 -20
  21. pulumi_alicloud/apig/environment.py +86 -0
  22. pulumi_alicloud/arms/__init__.py +6 -0
  23. pulumi_alicloud/arms/addon_release.py +174 -0
  24. pulumi_alicloud/arms/env_feature.py +158 -0
  25. pulumi_alicloud/arms/env_pod_monitor.py +206 -0
  26. pulumi_alicloud/arms/env_service_monitor.py +204 -0
  27. pulumi_alicloud/arms/environment.py +150 -0
  28. pulumi_alicloud/arms/get_addon_releases.py +354 -0
  29. pulumi_alicloud/arms/get_env_custom_jobs.py +268 -0
  30. pulumi_alicloud/arms/get_env_features.py +342 -0
  31. pulumi_alicloud/arms/get_env_pod_monitors.py +390 -0
  32. pulumi_alicloud/arms/get_env_service_monitors.py +388 -0
  33. pulumi_alicloud/arms/get_environments.py +282 -0
  34. pulumi_alicloud/arms/outputs.py +620 -0
  35. pulumi_alicloud/arms/prometheus_monitoring.py +190 -0
  36. pulumi_alicloud/cen/transit_router_multicast_domain_member.py +118 -0
  37. pulumi_alicloud/cen/transit_router_multicast_domain_source.py +160 -0
  38. pulumi_alicloud/cfg/aggregate_delivery.py +100 -0
  39. pulumi_alicloud/cfg/delivery_channel.py +54 -0
  40. pulumi_alicloud/cloudauth/face_config.py +48 -0
  41. pulumi_alicloud/cloudfirewall/nat_firewall_control_policy.py +236 -0
  42. pulumi_alicloud/cloudmonitor/__init__.py +1 -0
  43. pulumi_alicloud/cloudmonitor/get_service_metric_alarm_rules.py +333 -0
  44. pulumi_alicloud/cloudmonitor/outputs.py +696 -0
  45. pulumi_alicloud/cloudsso/__init__.py +1 -0
  46. pulumi_alicloud/cloudsso/access_configuration.py +12 -12
  47. pulumi_alicloud/cloudsso/access_configuration_provisioning.py +84 -0
  48. pulumi_alicloud/cloudsso/access_management.py +90 -0
  49. pulumi_alicloud/cloudsso/delegate_account.py +218 -0
  50. pulumi_alicloud/cloudsso/group.py +60 -0
  51. pulumi_alicloud/cloudsso/user.py +66 -0
  52. pulumi_alicloud/cloudsso/user_attachment.py +82 -0
  53. pulumi_alicloud/cloudstoragegateway/express_sync.py +154 -0
  54. pulumi_alicloud/cloudstoragegateway/express_sync_share_attachment.py +160 -0
  55. pulumi_alicloud/cloudstoragegateway/gateway.py +0 -13
  56. pulumi_alicloud/cloudstoragegateway/gateway_block_volume.py +132 -0
  57. pulumi_alicloud/cloudstoragegateway/gateway_cache_disk.py +92 -0
  58. pulumi_alicloud/cloudstoragegateway/gateway_file_share.py +130 -0
  59. pulumi_alicloud/cloudstoragegateway/gateway_logging.py +120 -0
  60. pulumi_alicloud/cloudstoragegateway/gateway_smb_user.py +92 -0
  61. pulumi_alicloud/cms/alarm.py +4 -4
  62. pulumi_alicloud/cms/get_site_monitors.py +20 -20
  63. pulumi_alicloud/cms/hybrid_monitor_fc_task.py +24 -24
  64. pulumi_alicloud/cms/hybrid_monitor_sls_task.py +164 -0
  65. pulumi_alicloud/cms/site_monitor.py +20 -20
  66. pulumi_alicloud/cms/sls_group.py +80 -0
  67. pulumi_alicloud/compute/nest_service_instance.py +10 -10
  68. pulumi_alicloud/cs/_inputs.py +565 -0
  69. pulumi_alicloud/cs/autoscaling_config.py +260 -35
  70. pulumi_alicloud/cs/get_cluster_credential.py +30 -0
  71. pulumi_alicloud/cs/get_kubernetes_addon_metadata.py +78 -0
  72. pulumi_alicloud/cs/get_kubernetes_addons.py +72 -0
  73. pulumi_alicloud/cs/get_kubernetes_node_pools.py +124 -0
  74. pulumi_alicloud/cs/kubernetes.py +296 -0
  75. pulumi_alicloud/cs/kubernetes_addon.py +108 -0
  76. pulumi_alicloud/cs/kubernetes_permission.py +162 -0
  77. pulumi_alicloud/cs/managed_kubernetes.py +583 -14
  78. pulumi_alicloud/cs/node_pool.py +423 -0
  79. pulumi_alicloud/cs/outputs.py +374 -0
  80. pulumi_alicloud/dataworks/data_source_shared_rule.py +116 -0
  81. pulumi_alicloud/dataworks/dw_resource_group.py +82 -0
  82. pulumi_alicloud/dataworks/network.py +100 -0
  83. pulumi_alicloud/ddos/bgp_ip.py +57 -48
  84. pulumi_alicloud/ddos/ddos_bgp_instance.py +246 -106
  85. pulumi_alicloud/ddos/domain_resource.py +6 -6
  86. pulumi_alicloud/directmail/mail_address.py +62 -0
  87. pulumi_alicloud/directmail/receivers.py +40 -0
  88. pulumi_alicloud/dms/__init__.py +1 -0
  89. pulumi_alicloud/dms/enterprise_workspace.py +354 -0
  90. pulumi_alicloud/dns/access_strategy.py +152 -0
  91. pulumi_alicloud/dns/address_pool.py +4 -4
  92. pulumi_alicloud/dns/ddos_bgp_instance.py +246 -106
  93. pulumi_alicloud/dts/job_monitor_rule.py +228 -0
  94. pulumi_alicloud/dts/migration_job.py +238 -0
  95. pulumi_alicloud/dts/synchronization_job.py +266 -14
  96. pulumi_alicloud/ebs/disk_replica_pair.py +112 -0
  97. pulumi_alicloud/ecs/ecs_network_interface_permission.py +84 -0
  98. pulumi_alicloud/ecs/image_import.py +2 -2
  99. pulumi_alicloud/ecs/ram_role_attachment.py +28 -28
  100. pulumi_alicloud/edas/k8s_application.py +124 -0
  101. pulumi_alicloud/edas/k8s_cluster.py +104 -0
  102. pulumi_alicloud/edas/k8s_slb_attachment.py +152 -0
  103. pulumi_alicloud/eflo/__init__.py +2 -0
  104. pulumi_alicloud/eflo/_inputs.py +94 -0
  105. pulumi_alicloud/eflo/er.py +487 -0
  106. pulumi_alicloud/eflo/node.py +54 -7
  107. pulumi_alicloud/eflo/node_group_attachment.py +604 -0
  108. pulumi_alicloud/eflo/outputs.py +75 -0
  109. pulumi_alicloud/emr/cluster.py +64 -64
  110. pulumi_alicloud/emr/get_clusters.py +16 -16
  111. pulumi_alicloud/emrv2/cluster.py +16 -16
  112. pulumi_alicloud/emrv2/get_cluster_instances.py +16 -16
  113. pulumi_alicloud/esa/__init__.py +7 -0
  114. pulumi_alicloud/esa/kv_account.py +145 -0
  115. pulumi_alicloud/esa/origin_ca_certificate.py +441 -0
  116. pulumi_alicloud/esa/origin_client_certificate.py +564 -0
  117. pulumi_alicloud/esa/origin_protection.py +290 -0
  118. pulumi_alicloud/esa/routine_related_record.py +226 -0
  119. pulumi_alicloud/esa/site_origin_client_certificate.py +515 -0
  120. pulumi_alicloud/esa/url_observation.py +352 -0
  121. pulumi_alicloud/eventbridge/rule.py +102 -0
  122. pulumi_alicloud/fc/_inputs.py +77 -3
  123. pulumi_alicloud/fc/custom_domain.py +14 -14
  124. pulumi_alicloud/fc/function.py +14 -14
  125. pulumi_alicloud/fc/function_async_invoke_config.py +48 -48
  126. pulumi_alicloud/fc/get_service.py +2 -2
  127. pulumi_alicloud/fc/outputs.py +63 -2
  128. pulumi_alicloud/fc/trigger.py +100 -100
  129. pulumi_alicloud/fc/v3_async_invoke_config.py +154 -0
  130. pulumi_alicloud/fc/v3_function.py +189 -3
  131. pulumi_alicloud/fc/v3_function_version.py +30 -2
  132. pulumi_alicloud/fnf/execution.py +14 -14
  133. pulumi_alicloud/fnf/flow.py +14 -14
  134. pulumi_alicloud/ga/additional_certificate.py +236 -0
  135. pulumi_alicloud/gpdb/hadoop_data_source.py +16 -16
  136. pulumi_alicloud/gpdb/streaming_job.py +4 -4
  137. pulumi_alicloud/gwlb/listener.py +172 -0
  138. pulumi_alicloud/gwlb/load_balancer.py +96 -0
  139. pulumi_alicloud/gwlb/server_group.py +160 -0
  140. pulumi_alicloud/hbr/ecs_backup_plan.py +4 -4
  141. pulumi_alicloud/hbr/ots_backup_plan.py +28 -28
  142. pulumi_alicloud/hbr/restore_job.py +4 -4
  143. pulumi_alicloud/hologram/instance.py +35 -0
  144. pulumi_alicloud/imm/project.py +14 -14
  145. pulumi_alicloud/kms/get_aliases.py +6 -6
  146. pulumi_alicloud/kms/get_instances.py +178 -0
  147. pulumi_alicloud/kms/instance.py +470 -16
  148. pulumi_alicloud/kms/policy.py +96 -0
  149. pulumi_alicloud/log/dashboard.py +40 -40
  150. pulumi_alicloud/log/ingestion.py +38 -38
  151. pulumi_alicloud/log/log_tail_attachment.py +20 -20
  152. pulumi_alicloud/log/log_tail_config.py +20 -20
  153. pulumi_alicloud/log/oss_export.py +6 -0
  154. pulumi_alicloud/log/project.py +20 -20
  155. pulumi_alicloud/log/resource.py +22 -22
  156. pulumi_alicloud/log/resource_record.py +40 -40
  157. pulumi_alicloud/maxcompute/get_service.py +2 -2
  158. pulumi_alicloud/message/__init__.py +1 -0
  159. pulumi_alicloud/message/_inputs.py +141 -0
  160. pulumi_alicloud/message/outputs.py +120 -0
  161. pulumi_alicloud/message/service_event_rule.py +490 -0
  162. pulumi_alicloud/message/service_subscription.py +48 -1
  163. pulumi_alicloud/mongodb/__init__.py +1 -0
  164. pulumi_alicloud/mongodb/global_security_ip_group.py +304 -0
  165. pulumi_alicloud/mongodb/instance.py +47 -0
  166. pulumi_alicloud/mongodb/sharding_instance.py +385 -0
  167. pulumi_alicloud/msc_sub_webhook.py +44 -0
  168. pulumi_alicloud/mse/cluster.py +47 -0
  169. pulumi_alicloud/mse/gateway.py +62 -0
  170. pulumi_alicloud/nas/access_group.py +46 -18
  171. pulumi_alicloud/nas/access_rule.py +28 -0
  172. pulumi_alicloud/nas/data_flow.py +114 -0
  173. pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +328 -0
  174. pulumi_alicloud/nlb/server_group.py +28 -21
  175. pulumi_alicloud/oos/execution.py +30 -30
  176. pulumi_alicloud/oos/get_parameters.py +10 -10
  177. pulumi_alicloud/oos/get_secret_parameters.py +10 -10
  178. pulumi_alicloud/oos/template.py +28 -28
  179. pulumi_alicloud/oss/bucket.py +634 -0
  180. pulumi_alicloud/oss/bucket_replication.py +56 -56
  181. pulumi_alicloud/outputs.py +489 -0
  182. pulumi_alicloud/pai/flow_pipeline.py +70 -70
  183. pulumi_alicloud/pai/workspace_datasetversion.py +108 -0
  184. pulumi_alicloud/pai/workspace_run.py +62 -0
  185. pulumi_alicloud/polardb/cluster.py +7 -7
  186. pulumi_alicloud/privatelink/vpc_endpoint.py +21 -7
  187. pulumi_alicloud/privatelink/vpc_endpoint_service.py +11 -11
  188. pulumi_alicloud/pulumi-plugin.json +1 -1
  189. pulumi_alicloud/pvtz/endpoint.py +96 -0
  190. pulumi_alicloud/pvtz/rule.py +122 -0
  191. pulumi_alicloud/pvtz/rule_attachment.py +150 -0
  192. pulumi_alicloud/ram/get_policies.py +18 -18
  193. pulumi_alicloud/ram/get_policy_document.py +2 -2
  194. pulumi_alicloud/ram/get_role_policy_attachments.py +34 -34
  195. pulumi_alicloud/ram/get_users.py +32 -32
  196. pulumi_alicloud/ram/group_membership.py +74 -0
  197. pulumi_alicloud/ram/group_policy_attachment.py +18 -18
  198. pulumi_alicloud/ram/policy.py +18 -18
  199. pulumi_alicloud/ram/role.py +16 -16
  200. pulumi_alicloud/ram/role_attachment.py +14 -14
  201. pulumi_alicloud/ram/role_policy_attachment.py +34 -34
  202. pulumi_alicloud/ram/user_policy_attachment.py +18 -18
  203. pulumi_alicloud/rds/get_instance_classes.py +6 -4
  204. pulumi_alicloud/rds/outputs.py +4 -0
  205. pulumi_alicloud/rds/rds_clone_db_instance.py +8 -1
  206. pulumi_alicloud/resourcemanager/__init__.py +1 -0
  207. pulumi_alicloud/resourcemanager/auto_grouping_rule.py +24 -24
  208. pulumi_alicloud/resourcemanager/control_policy.py +18 -18
  209. pulumi_alicloud/resourcemanager/control_policy_attachment.py +18 -18
  210. pulumi_alicloud/resourcemanager/delegated_administrator.py +22 -50
  211. pulumi_alicloud/resourcemanager/folder.py +106 -29
  212. pulumi_alicloud/resourcemanager/get_accounts.py +35 -18
  213. pulumi_alicloud/resourcemanager/get_shared_resources.py +64 -0
  214. pulumi_alicloud/resourcemanager/message_contact.py +572 -0
  215. pulumi_alicloud/resourcemanager/outputs.py +31 -20
  216. pulumi_alicloud/resourcemanager/policy.py +16 -16
  217. pulumi_alicloud/resourcemanager/policy_attachment.py +82 -0
  218. pulumi_alicloud/resourcemanager/policy_version.py +32 -32
  219. pulumi_alicloud/resourcemanager/resource_directory.py +137 -46
  220. pulumi_alicloud/resourcemanager/role.py +14 -14
  221. pulumi_alicloud/resourcemanager/shared_resource.py +81 -45
  222. pulumi_alicloud/resourcemanager/shared_target.py +60 -24
  223. pulumi_alicloud/rocketmq/qos_policy.py +70 -0
  224. pulumi_alicloud/ros/_inputs.py +70 -18
  225. pulumi_alicloud/ros/outputs.py +59 -12
  226. pulumi_alicloud/ros/stack.py +14 -14
  227. pulumi_alicloud/ros/stack_group.py +342 -223
  228. pulumi_alicloud/ros/template.py +2 -2
  229. pulumi_alicloud/sag/qos_policy.py +70 -0
  230. pulumi_alicloud/sddp/data_limit.py +148 -0
  231. pulumi_alicloud/sddp/rule.py +10 -10
  232. pulumi_alicloud/servicecatalog/principal_portfolio_association.py +16 -16
  233. pulumi_alicloud/servicecatalog/product_portfolio_association.py +54 -0
  234. pulumi_alicloud/sls/__init__.py +5 -0
  235. pulumi_alicloud/sls/_inputs.py +128 -0
  236. pulumi_alicloud/sls/collection_policy.py +276 -0
  237. pulumi_alicloud/sls/get_etls.py +294 -0
  238. pulumi_alicloud/sls/get_logtail_configs.py +395 -0
  239. pulumi_alicloud/sls/get_machine_groups.py +229 -0
  240. pulumi_alicloud/sls/logtail_config.py +692 -0
  241. pulumi_alicloud/sls/machine_group.py +502 -0
  242. pulumi_alicloud/sls/oss_export_sink.py +134 -0
  243. pulumi_alicloud/sls/outputs.py +449 -0
  244. pulumi_alicloud/sslcertificatesservice/__init__.py +9 -0
  245. pulumi_alicloud/sslcertificatesservice/pca_certificate.py +646 -0
  246. pulumi_alicloud/star_rocks_instance.py +1425 -0
  247. pulumi_alicloud/tag/policy.py +2 -2
  248. pulumi_alicloud/tag/policy_attachment.py +2 -2
  249. pulumi_alicloud/threatdetection/__init__.py +1 -0
  250. pulumi_alicloud/threatdetection/_inputs.py +183 -0
  251. pulumi_alicloud/threatdetection/anti_brute_force_rule.py +50 -1
  252. pulumi_alicloud/threatdetection/attack_path_sensitive_asset_config.py +218 -0
  253. pulumi_alicloud/threatdetection/image_event_operation.py +191 -90
  254. pulumi_alicloud/threatdetection/oss_scan_config.py +257 -65
  255. pulumi_alicloud/threatdetection/outputs.py +147 -0
  256. pulumi_alicloud/vod/editing_project.py +8 -8
  257. pulumi_alicloud/vpc/_inputs.py +87 -54
  258. pulumi_alicloud/vpc/common_bandwith_package.py +28 -0
  259. pulumi_alicloud/vpc/dhcp_options_set.py +97 -58
  260. pulumi_alicloud/vpc/flow_log.py +117 -25
  261. pulumi_alicloud/vpc/gateway_endpoint.py +12 -12
  262. pulumi_alicloud/vpc/gateway_endpoint_route_table_attachment.py +12 -12
  263. pulumi_alicloud/vpc/ha_vip_attachment.py +41 -60
  264. pulumi_alicloud/vpc/ha_vipv2.py +100 -88
  265. pulumi_alicloud/vpc/ipam_ipam_pool.py +54 -0
  266. pulumi_alicloud/vpc/network_acl.py +34 -23
  267. pulumi_alicloud/vpc/outputs.py +58 -36
  268. pulumi_alicloud/vpc/route_entry.py +6 -2
  269. pulumi_alicloud/vpc/vbr_ha.py +100 -0
  270. pulumi_alicloud/vpc/vpc_network_acl_attachment.py +48 -0
  271. pulumi_alicloud/vpn/get_gateways.py +98 -0
  272. pulumi_alicloud/vpn/ssl_vpn_client_cert.py +82 -0
  273. pulumi_alicloud/vpn/ssl_vpn_server.py +76 -0
  274. pulumi_alicloud/wafv3/__init__.py +1 -0
  275. pulumi_alicloud/wafv3/_inputs.py +1318 -182
  276. pulumi_alicloud/wafv3/defense_rule.py +806 -0
  277. pulumi_alicloud/wafv3/defense_template.py +87 -124
  278. pulumi_alicloud/wafv3/domain.py +136 -35
  279. pulumi_alicloud/wafv3/outputs.py +925 -123
  280. {pulumi_alicloud-3.84.0a1756507491.dist-info → pulumi_alicloud-3.85.0.dist-info}/METADATA +1 -1
  281. {pulumi_alicloud-3.84.0a1756507491.dist-info → pulumi_alicloud-3.85.0.dist-info}/RECORD +283 -251
  282. {pulumi_alicloud-3.84.0a1756507491.dist-info → pulumi_alicloud-3.85.0.dist-info}/WHEEL +0 -0
  283. {pulumi_alicloud-3.84.0a1756507491.dist-info → pulumi_alicloud-3.85.0.dist-info}/top_level.txt +0 -0
@@ -35,13 +35,14 @@ class NetworkAclArgs:
35
35
  :param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
36
36
 
37
37
  The following arguments will be discarded. Please use new fields as soon as possible:
38
- :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
38
+ :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
39
39
  :param pulumi.Input[Sequence[pulumi.Input['NetworkAclEgressAclEntryArgs']]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
40
40
  :param pulumi.Input[Sequence[pulumi.Input['NetworkAclIngressAclEntryArgs']]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
41
41
  :param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
42
- :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
42
+ :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
43
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
43
44
  :param pulumi.Input[Sequence[pulumi.Input['NetworkAclResourceArgs']]] resources: The associated resource. See `resources` below.
44
- :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries.
45
+ :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
45
46
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
46
47
  """
47
48
  pulumi.set(__self__, "vpc_id", vpc_id)
@@ -83,7 +84,7 @@ class NetworkAclArgs:
83
84
  @pulumi.getter
84
85
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
85
86
  """
86
- The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
87
+ The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
87
88
  """
88
89
  return pulumi.get(self, "description")
89
90
 
@@ -132,7 +133,8 @@ class NetworkAclArgs:
132
133
  @pulumi.getter(name="networkAclName")
133
134
  def network_acl_name(self) -> Optional[pulumi.Input[_builtins.str]]:
134
135
  """
135
- The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
136
+ The name of the network ACL.
137
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
136
138
  """
137
139
  return pulumi.get(self, "network_acl_name")
138
140
 
@@ -156,7 +158,7 @@ class NetworkAclArgs:
156
158
  @pulumi.getter(name="sourceNetworkAclId")
157
159
  def source_network_acl_id(self) -> Optional[pulumi.Input[_builtins.str]]:
158
160
  """
159
- SOURCE NetworkAcl specified by CopyNetworkAclEntries.
161
+ SOURCE NetworkAcl specified by CopyNetworkAclEntries
160
162
  """
161
163
  return pulumi.get(self, "source_network_acl_id")
162
164
 
@@ -194,13 +196,14 @@ class _NetworkAclState:
194
196
  """
195
197
  Input properties used for looking up and filtering NetworkAcl resources.
196
198
  :param pulumi.Input[_builtins.str] create_time: The creation time of the resource.
197
- :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
199
+ :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
198
200
  :param pulumi.Input[Sequence[pulumi.Input['NetworkAclEgressAclEntryArgs']]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
199
201
  :param pulumi.Input[Sequence[pulumi.Input['NetworkAclIngressAclEntryArgs']]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
200
202
  :param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
201
- :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
203
+ :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
204
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
202
205
  :param pulumi.Input[Sequence[pulumi.Input['NetworkAclResourceArgs']]] resources: The associated resource. See `resources` below.
203
- :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries.
206
+ :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
204
207
  :param pulumi.Input[_builtins.str] status: The state of the network ACL.
205
208
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
206
209
  :param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
@@ -249,7 +252,7 @@ class _NetworkAclState:
249
252
  @pulumi.getter
250
253
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
251
254
  """
252
- The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
255
+ The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
253
256
  """
254
257
  return pulumi.get(self, "description")
255
258
 
@@ -298,7 +301,8 @@ class _NetworkAclState:
298
301
  @pulumi.getter(name="networkAclName")
299
302
  def network_acl_name(self) -> Optional[pulumi.Input[_builtins.str]]:
300
303
  """
301
- The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
304
+ The name of the network ACL.
305
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
302
306
  """
303
307
  return pulumi.get(self, "network_acl_name")
304
308
 
@@ -322,7 +326,7 @@ class _NetworkAclState:
322
326
  @pulumi.getter(name="sourceNetworkAclId")
323
327
  def source_network_acl_id(self) -> Optional[pulumi.Input[_builtins.str]]:
324
328
  """
325
- SOURCE NetworkAcl specified by CopyNetworkAclEntries.
329
+ SOURCE NetworkAcl specified by CopyNetworkAclEntries
326
330
  """
327
331
  return pulumi.get(self, "source_network_acl_id")
328
332
 
@@ -386,7 +390,9 @@ class NetworkAcl(pulumi.CustomResource):
386
390
  vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
387
391
  __props__=None):
388
392
  """
389
- Provides a VPC Network Acl resource. Network Access Control List (ACL) is a Network Access Control function in VPC. You can customize the network ACL rules and bind the network ACL to the switch to control the traffic of ECS instances in the switch.
393
+ Provides a VPC Network Acl resource.
394
+
395
+ Network Access Control List (ACL) is a Network Access Control function in VPC. You can customize the network ACL rules and bind the network ACL to the switch to control the traffic of ECS instances in the switch.
390
396
 
391
397
  For information about VPC Network Acl and how to use it, see [What is Network Acl](https://www.alibabacloud.com/help/en/ens/latest/createnetworkacl).
392
398
 
@@ -449,13 +455,14 @@ class NetworkAcl(pulumi.CustomResource):
449
455
 
450
456
  :param str resource_name: The name of the resource.
451
457
  :param pulumi.ResourceOptions opts: Options for the resource.
452
- :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
458
+ :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
453
459
  :param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEgressAclEntryArgs', 'NetworkAclEgressAclEntryArgsDict']]]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
454
460
  :param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclIngressAclEntryArgs', 'NetworkAclIngressAclEntryArgsDict']]]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
455
461
  :param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
456
- :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
462
+ :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
463
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
457
464
  :param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclResourceArgs', 'NetworkAclResourceArgsDict']]]] resources: The associated resource. See `resources` below.
458
- :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries.
465
+ :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
459
466
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
460
467
  :param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
461
468
 
@@ -468,7 +475,9 @@ class NetworkAcl(pulumi.CustomResource):
468
475
  args: NetworkAclArgs,
469
476
  opts: Optional[pulumi.ResourceOptions] = None):
470
477
  """
471
- Provides a VPC Network Acl resource. Network Access Control List (ACL) is a Network Access Control function in VPC. You can customize the network ACL rules and bind the network ACL to the switch to control the traffic of ECS instances in the switch.
478
+ Provides a VPC Network Acl resource.
479
+
480
+ Network Access Control List (ACL) is a Network Access Control function in VPC. You can customize the network ACL rules and bind the network ACL to the switch to control the traffic of ECS instances in the switch.
472
481
 
473
482
  For information about VPC Network Acl and how to use it, see [What is Network Acl](https://www.alibabacloud.com/help/en/ens/latest/createnetworkacl).
474
483
 
@@ -604,13 +613,14 @@ class NetworkAcl(pulumi.CustomResource):
604
613
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
605
614
  :param pulumi.ResourceOptions opts: Options for the resource.
606
615
  :param pulumi.Input[_builtins.str] create_time: The creation time of the resource.
607
- :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
616
+ :param pulumi.Input[_builtins.str] description: The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
608
617
  :param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclEgressAclEntryArgs', 'NetworkAclEgressAclEntryArgsDict']]]] egress_acl_entries: Out direction rule information. See `egress_acl_entries` below.
609
618
  :param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclIngressAclEntryArgs', 'NetworkAclIngressAclEntryArgsDict']]]] ingress_acl_entries: Inward direction rule information. See `ingress_acl_entries` below.
610
619
  :param pulumi.Input[_builtins.str] name: . Field 'name' has been deprecated from provider version 1.122.0. New field 'network_acl_name' instead.
611
- :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
620
+ :param pulumi.Input[_builtins.str] network_acl_name: The name of the network ACL.
621
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
612
622
  :param pulumi.Input[Sequence[pulumi.Input[Union['NetworkAclResourceArgs', 'NetworkAclResourceArgsDict']]]] resources: The associated resource. See `resources` below.
613
- :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries.
623
+ :param pulumi.Input[_builtins.str] source_network_acl_id: SOURCE NetworkAcl specified by CopyNetworkAclEntries
614
624
  :param pulumi.Input[_builtins.str] status: The state of the network ACL.
615
625
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: The tags of this resource.
616
626
  :param pulumi.Input[_builtins.str] vpc_id: The ID of the associated VPC.
@@ -646,7 +656,7 @@ class NetworkAcl(pulumi.CustomResource):
646
656
  @pulumi.getter
647
657
  def description(self) -> pulumi.Output[Optional[_builtins.str]]:
648
658
  """
649
- The description of the network ACL. The description must be 1 to 256 characters in length and cannot start with http:// or https.
659
+ The description of the network ACL. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
650
660
  """
651
661
  return pulumi.get(self, "description")
652
662
 
@@ -679,7 +689,8 @@ class NetworkAcl(pulumi.CustomResource):
679
689
  @pulumi.getter(name="networkAclName")
680
690
  def network_acl_name(self) -> pulumi.Output[_builtins.str]:
681
691
  """
682
- The name of the network ACL. The name must be 1 to 128 characters in length and cannot start with http:// or https.
692
+ The name of the network ACL.
693
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
683
694
  """
684
695
  return pulumi.get(self, "network_acl_name")
685
696
 
@@ -695,7 +706,7 @@ class NetworkAcl(pulumi.CustomResource):
695
706
  @pulumi.getter(name="sourceNetworkAclId")
696
707
  def source_network_acl_id(self) -> pulumi.Output[Optional[_builtins.str]]:
697
708
  """
698
- SOURCE NetworkAcl specified by CopyNetworkAclEntries.
709
+ SOURCE NetworkAcl specified by CopyNetworkAclEntries
699
710
  """
700
711
  return pulumi.get(self, "source_network_acl_id")
701
712
 
@@ -264,15 +264,22 @@ class NetworkAclEgressAclEntry(dict):
264
264
  port: Optional[_builtins.str] = None,
265
265
  protocol: Optional[_builtins.str] = None):
266
266
  """
267
- :param _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.
268
- :param _builtins.str destination_cidr_ip: The network of the destination address.
269
- :param _builtins.str entry_type: The route entry type. The value can be `custom`, indicating custom.
270
- :param _builtins.str ip_version: The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
271
- :param _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.
272
- :param _builtins.str policy: Authorization policy. Value:
273
- - accept: Allow.
274
- - drop: Refused.
275
- :param _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.
267
+ :param _builtins.str description: The description of the outbound rule.
268
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
269
+ :param _builtins.str destination_cidr_ip: The destination CIDR block.
270
+ :param _builtins.str entry_type: The route entry type. Value
271
+ custom custom rule
272
+ system system rules
273
+ service Cloud service rules
274
+ :param _builtins.str ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
275
+ :param _builtins.str network_acl_entry_name: Name of the outbound rule entry.
276
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
277
+ :param _builtins.str policy: The action to be performed on network traffic that matches the rule. Valid values:
278
+ - accept
279
+ - drop
280
+ :param _builtins.str port: The destination port range of the outbound rule.
281
+ 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.
282
+ 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.
276
283
  :param _builtins.str protocol: The protocol type. Value:
277
284
  - icmp: Network Control Message Protocol.
278
285
  - gre: Generic Routing Encapsulation Protocol.
@@ -301,7 +308,8 @@ class NetworkAclEgressAclEntry(dict):
301
308
  @pulumi.getter
302
309
  def description(self) -> Optional[_builtins.str]:
303
310
  """
304
- The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
311
+ The description of the outbound rule.
312
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
305
313
  """
306
314
  return pulumi.get(self, "description")
307
315
 
@@ -309,7 +317,7 @@ class NetworkAclEgressAclEntry(dict):
309
317
  @pulumi.getter(name="destinationCidrIp")
310
318
  def destination_cidr_ip(self) -> Optional[_builtins.str]:
311
319
  """
312
- The network of the destination address.
320
+ The destination CIDR block.
313
321
  """
314
322
  return pulumi.get(self, "destination_cidr_ip")
315
323
 
@@ -317,7 +325,10 @@ class NetworkAclEgressAclEntry(dict):
317
325
  @pulumi.getter(name="entryType")
318
326
  def entry_type(self) -> Optional[_builtins.str]:
319
327
  """
320
- The route entry type. The value can be `custom`, indicating custom.
328
+ The route entry type. Value
329
+ custom custom rule
330
+ system system rules
331
+ service Cloud service rules
321
332
  """
322
333
  return pulumi.get(self, "entry_type")
323
334
 
@@ -325,7 +336,7 @@ class NetworkAclEgressAclEntry(dict):
325
336
  @pulumi.getter(name="ipVersion")
326
337
  def ip_version(self) -> Optional[_builtins.str]:
327
338
  """
328
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
339
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
329
340
  """
330
341
  return pulumi.get(self, "ip_version")
331
342
 
@@ -333,7 +344,8 @@ class NetworkAclEgressAclEntry(dict):
333
344
  @pulumi.getter(name="networkAclEntryName")
334
345
  def network_acl_entry_name(self) -> Optional[_builtins.str]:
335
346
  """
336
- Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
347
+ Name of the outbound rule entry.
348
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
337
349
  """
338
350
  return pulumi.get(self, "network_acl_entry_name")
339
351
 
@@ -341,9 +353,9 @@ class NetworkAclEgressAclEntry(dict):
341
353
  @pulumi.getter
342
354
  def policy(self) -> Optional[_builtins.str]:
343
355
  """
344
- Authorization policy. Value:
345
- - accept: Allow.
346
- - drop: Refused.
356
+ The action to be performed on network traffic that matches the rule. Valid values:
357
+ - accept
358
+ - drop
347
359
  """
348
360
  return pulumi.get(self, "policy")
349
361
 
@@ -351,7 +363,9 @@ class NetworkAclEgressAclEntry(dict):
351
363
  @pulumi.getter
352
364
  def port(self) -> Optional[_builtins.str]:
353
365
  """
354
- 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.
366
+ The destination port range of the outbound rule.
367
+ 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.
368
+ 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.
355
369
  """
356
370
  return pulumi.get(self, "port")
357
371
 
@@ -576,21 +590,25 @@ class NetworkAclIngressAclEntry(dict):
576
590
  protocol: Optional[_builtins.str] = None,
577
591
  source_cidr_ip: Optional[_builtins.str] = None):
578
592
  """
579
- :param _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.
580
- :param _builtins.str entry_type: The route entry type. The value can be `custom`, indicating custom.
581
- :param _builtins.str ip_version: The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
582
- :param _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.
583
- :param _builtins.str policy: Authorization policy. Value:
584
- - accept: Allow.
585
- - drop: Refused.
586
- :param _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.
593
+ :param _builtins.str description: Description of the inbound rule.
594
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
595
+ :param _builtins.str entry_type: The route entry type. Value
596
+ :param _builtins.str ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
597
+ :param _builtins.str network_acl_entry_name: The name of the inbound rule entry.
598
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
599
+ :param _builtins.str policy: The action to be performed on network traffic that matches the rule. Valid values:
600
+ - accept
601
+ - drop
602
+ :param _builtins.str port: The source port range of the inbound rule.
603
+ 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.
604
+ 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.
587
605
  :param _builtins.str protocol: The protocol type. Value:
588
606
  - icmp: Network Control Message Protocol.
589
607
  - gre: Generic Routing Encapsulation Protocol.
590
608
  - tcp: Transmission Control Protocol.
591
609
  - udp: User Datagram Protocol.
592
610
  - all: Supports all protocols.
593
- :param _builtins.str source_cidr_ip: Source address network segment.
611
+ :param _builtins.str source_cidr_ip: The source CIDR block.
594
612
  """
595
613
  if description is not None:
596
614
  pulumi.set(__self__, "description", description)
@@ -613,7 +631,8 @@ class NetworkAclIngressAclEntry(dict):
613
631
  @pulumi.getter
614
632
  def description(self) -> Optional[_builtins.str]:
615
633
  """
616
- Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
634
+ Description of the inbound rule.
635
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
617
636
  """
618
637
  return pulumi.get(self, "description")
619
638
 
@@ -621,7 +640,7 @@ class NetworkAclIngressAclEntry(dict):
621
640
  @pulumi.getter(name="entryType")
622
641
  def entry_type(self) -> Optional[_builtins.str]:
623
642
  """
624
- The route entry type. The value can be `custom`, indicating custom.
643
+ The route entry type. Value
625
644
  """
626
645
  return pulumi.get(self, "entry_type")
627
646
 
@@ -629,7 +648,7 @@ class NetworkAclIngressAclEntry(dict):
629
648
  @pulumi.getter(name="ipVersion")
630
649
  def ip_version(self) -> Optional[_builtins.str]:
631
650
  """
632
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
651
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
633
652
  """
634
653
  return pulumi.get(self, "ip_version")
635
654
 
@@ -637,7 +656,8 @@ class NetworkAclIngressAclEntry(dict):
637
656
  @pulumi.getter(name="networkAclEntryName")
638
657
  def network_acl_entry_name(self) -> Optional[_builtins.str]:
639
658
  """
640
- The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
659
+ The name of the inbound rule entry.
660
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
641
661
  """
642
662
  return pulumi.get(self, "network_acl_entry_name")
643
663
 
@@ -645,9 +665,9 @@ class NetworkAclIngressAclEntry(dict):
645
665
  @pulumi.getter
646
666
  def policy(self) -> Optional[_builtins.str]:
647
667
  """
648
- Authorization policy. Value:
649
- - accept: Allow.
650
- - drop: Refused.
668
+ The action to be performed on network traffic that matches the rule. Valid values:
669
+ - accept
670
+ - drop
651
671
  """
652
672
  return pulumi.get(self, "policy")
653
673
 
@@ -655,7 +675,9 @@ class NetworkAclIngressAclEntry(dict):
655
675
  @pulumi.getter
656
676
  def port(self) -> Optional[_builtins.str]:
657
677
  """
658
- 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.
678
+ The source port range of the inbound rule.
679
+ 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.
680
+ 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.
659
681
  """
660
682
  return pulumi.get(self, "port")
661
683
 
@@ -676,7 +698,7 @@ class NetworkAclIngressAclEntry(dict):
676
698
  @pulumi.getter(name="sourceCidrIp")
677
699
  def source_cidr_ip(self) -> Optional[_builtins.str]:
678
700
  """
679
- Source address network segment.
701
+ The source CIDR block.
680
702
  """
681
703
  return pulumi.get(self, "source_cidr_ip")
682
704
 
@@ -353,7 +353,7 @@ class RouteEntry(pulumi.CustomResource):
353
353
  system_disk_category="cloud_efficiency",
354
354
  vswitch_id=default_switch.id,
355
355
  instance_name=name)
356
- foo = alicloud.vpc.RouteEntry("foo",
356
+ default_route_entry = alicloud.vpc.RouteEntry("default",
357
357
  route_table_id=default_network.route_table_id,
358
358
  destination_cidrblock="172.11.1.1/32",
359
359
  nexthop_type="Instance",
@@ -367,6 +367,8 @@ class RouteEntry(pulumi.CustomResource):
367
367
 
368
368
  ## Import
369
369
 
370
+ Route Entry can be imported using the id, e.g.
371
+
370
372
  ```sh
371
373
  $ pulumi import alicloud:vpc/routeEntry:RouteEntry example <route_table_id>:<router_id>:<destination_cidrblock>:<nexthop_type>:<nexthop_id>
372
374
  ```
@@ -447,7 +449,7 @@ class RouteEntry(pulumi.CustomResource):
447
449
  system_disk_category="cloud_efficiency",
448
450
  vswitch_id=default_switch.id,
449
451
  instance_name=name)
450
- foo = alicloud.vpc.RouteEntry("foo",
452
+ default_route_entry = alicloud.vpc.RouteEntry("default",
451
453
  route_table_id=default_network.route_table_id,
452
454
  destination_cidrblock="172.11.1.1/32",
453
455
  nexthop_type="Instance",
@@ -461,6 +463,8 @@ class RouteEntry(pulumi.CustomResource):
461
463
 
462
464
  ## Import
463
465
 
466
+ Route Entry can be imported using the id, e.g.
467
+
464
468
  ```sh
465
469
  $ pulumi import alicloud:vpc/routeEntry:RouteEntry example <route_table_id>:<router_id>:<destination_cidrblock>:<nexthop_type>:<nexthop_id>
466
470
  ```
@@ -225,6 +225,56 @@ class VbrHa(pulumi.CustomResource):
225
225
 
226
226
  > **NOTE:** Available since v1.151.0.
227
227
 
228
+ ## Example Usage
229
+
230
+ Basic Usage
231
+
232
+ ```python
233
+ import pulumi
234
+ import pulumi_alicloud as alicloud
235
+ import pulumi_random as random
236
+ import pulumi_std as std
237
+
238
+ config = pulumi.Config()
239
+ name = config.get("name")
240
+ if name is None:
241
+ name = "tf-example"
242
+ default = alicloud.get_regions(current=True)
243
+ example = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
244
+ vlan_id = random.index.Integer("vlan_id",
245
+ max=2999,
246
+ min=1)
247
+ example_virtual_border_router = []
248
+ for range in [{"value": i} for i in range(0, 2)]:
249
+ example_virtual_border_router.append(alicloud.expressconnect.VirtualBorderRouter(f"example-{range['value']}",
250
+ local_gateway_ip="10.0.0.1",
251
+ peer_gateway_ip="10.0.0.2",
252
+ peering_subnet_mask="255.255.255.252",
253
+ physical_connection_id=example.connections[range["value"]].id,
254
+ virtual_border_router_name=std.format(input=f"{name}-%d",
255
+ args=[range["value"] + 1]).result,
256
+ vlan_id=vlan_id["id"] + range["value"],
257
+ min_rx_interval=1000,
258
+ min_tx_interval=1000,
259
+ detect_multiplier=10))
260
+ example_instance = alicloud.cen.Instance("example",
261
+ cen_instance_name=name,
262
+ description=name,
263
+ protection_level="REDUCED")
264
+ example_instance_attachment = []
265
+ for range in [{"value": i} for i in range(0, 2)]:
266
+ example_instance_attachment.append(alicloud.cen.InstanceAttachment(f"example-{range['value']}",
267
+ instance_id=example_instance.id,
268
+ child_instance_id=example_virtual_border_router[range["value"]].id,
269
+ child_instance_type="VBR",
270
+ child_instance_region_id=default.regions[0].id))
271
+ example_vbr_ha = alicloud.vpc.VbrHa("example",
272
+ vbr_id=example_instance_attachment[0].child_instance_id,
273
+ peer_vbr_id=example_instance_attachment[1].child_instance_id,
274
+ vbr_ha_name=name,
275
+ description=name)
276
+ ```
277
+
228
278
  ## Import
229
279
 
230
280
  VPC Vbr Ha can be imported using the id, e.g.
@@ -254,6 +304,56 @@ class VbrHa(pulumi.CustomResource):
254
304
 
255
305
  > **NOTE:** Available since v1.151.0.
256
306
 
307
+ ## Example Usage
308
+
309
+ Basic Usage
310
+
311
+ ```python
312
+ import pulumi
313
+ import pulumi_alicloud as alicloud
314
+ import pulumi_random as random
315
+ import pulumi_std as std
316
+
317
+ config = pulumi.Config()
318
+ name = config.get("name")
319
+ if name is None:
320
+ name = "tf-example"
321
+ default = alicloud.get_regions(current=True)
322
+ example = alicloud.expressconnect.get_physical_connections(name_regex="^preserved-NODELETING")
323
+ vlan_id = random.index.Integer("vlan_id",
324
+ max=2999,
325
+ min=1)
326
+ example_virtual_border_router = []
327
+ for range in [{"value": i} for i in range(0, 2)]:
328
+ example_virtual_border_router.append(alicloud.expressconnect.VirtualBorderRouter(f"example-{range['value']}",
329
+ local_gateway_ip="10.0.0.1",
330
+ peer_gateway_ip="10.0.0.2",
331
+ peering_subnet_mask="255.255.255.252",
332
+ physical_connection_id=example.connections[range["value"]].id,
333
+ virtual_border_router_name=std.format(input=f"{name}-%d",
334
+ args=[range["value"] + 1]).result,
335
+ vlan_id=vlan_id["id"] + range["value"],
336
+ min_rx_interval=1000,
337
+ min_tx_interval=1000,
338
+ detect_multiplier=10))
339
+ example_instance = alicloud.cen.Instance("example",
340
+ cen_instance_name=name,
341
+ description=name,
342
+ protection_level="REDUCED")
343
+ example_instance_attachment = []
344
+ for range in [{"value": i} for i in range(0, 2)]:
345
+ example_instance_attachment.append(alicloud.cen.InstanceAttachment(f"example-{range['value']}",
346
+ instance_id=example_instance.id,
347
+ child_instance_id=example_virtual_border_router[range["value"]].id,
348
+ child_instance_type="VBR",
349
+ child_instance_region_id=default.regions[0].id))
350
+ example_vbr_ha = alicloud.vpc.VbrHa("example",
351
+ vbr_id=example_instance_attachment[0].child_instance_id,
352
+ peer_vbr_id=example_instance_attachment[1].child_instance_id,
353
+ vbr_ha_name=name,
354
+ description=name)
355
+ ```
356
+
257
357
  ## Import
258
358
 
259
359
  VPC Vbr Ha can be imported using the id, e.g.
@@ -158,6 +158,30 @@ class VpcNetworkAclAttachment(pulumi.CustomResource):
158
158
 
159
159
  > **NOTE:** Available since v1.193.0.
160
160
 
161
+ ## Example Usage
162
+
163
+ Basic Usage
164
+
165
+ ```python
166
+ import pulumi
167
+ import pulumi_alicloud as alicloud
168
+ import pulumi_std as std
169
+
170
+ default = alicloud.get_zones(available_resource_creation="VSwitch")
171
+ default_network = alicloud.vpc.Network("default", cidr_block="192.168.0.0/16")
172
+ default_switch = alicloud.vpc.Switch("default",
173
+ vpc_id=default_network.id,
174
+ cidr_block=default_network.cidr_block.apply(lambda cidr_block: std.cidrsubnet_output(input=cidr_block,
175
+ newbits=8,
176
+ netnum=2)).apply(lambda invoke: invoke.result),
177
+ zone_id=default.zones[0].id)
178
+ default_network_acl = alicloud.vpc.NetworkAcl("default", vpc_id=default_switch.vpc_id)
179
+ default_vpc_network_acl_attachment = alicloud.vpc.VpcNetworkAclAttachment("default",
180
+ network_acl_id=default_network_acl.id,
181
+ resource_id=default_switch.id,
182
+ resource_type="VSwitch")
183
+ ```
184
+
161
185
  ## Import
162
186
 
163
187
  VPC Network Acl Attachment can be imported using the id, e.g.
@@ -185,6 +209,30 @@ class VpcNetworkAclAttachment(pulumi.CustomResource):
185
209
 
186
210
  > **NOTE:** Available since v1.193.0.
187
211
 
212
+ ## Example Usage
213
+
214
+ Basic Usage
215
+
216
+ ```python
217
+ import pulumi
218
+ import pulumi_alicloud as alicloud
219
+ import pulumi_std as std
220
+
221
+ default = alicloud.get_zones(available_resource_creation="VSwitch")
222
+ default_network = alicloud.vpc.Network("default", cidr_block="192.168.0.0/16")
223
+ default_switch = alicloud.vpc.Switch("default",
224
+ vpc_id=default_network.id,
225
+ cidr_block=default_network.cidr_block.apply(lambda cidr_block: std.cidrsubnet_output(input=cidr_block,
226
+ newbits=8,
227
+ netnum=2)).apply(lambda invoke: invoke.result),
228
+ zone_id=default.zones[0].id)
229
+ default_network_acl = alicloud.vpc.NetworkAcl("default", vpc_id=default_switch.vpc_id)
230
+ default_vpc_network_acl_attachment = alicloud.vpc.VpcNetworkAclAttachment("default",
231
+ network_acl_id=default_network_acl.id,
232
+ resource_id=default_switch.id,
233
+ resource_type="VSwitch")
234
+ ```
235
+
188
236
  ## Import
189
237
 
190
238
  VPC Network Acl Attachment can be imported using the id, e.g.