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,15 +35,20 @@ class DhcpOptionsSetArgs:
35
35
  The set of arguments for constructing a DhcpOptionsSet resource.
36
36
  :param pulumi.Input[Sequence[pulumi.Input['DhcpOptionsSetAssociateVpcArgs']]] associate_vpcs: Field 'associate_vpcs' has been deprecated from provider version 1.153.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_dhcp_options_set_attachment' to attach DhcpOptionsSet and Vpc. See `associate_vpcs` below.
37
37
  :param pulumi.Input[_builtins.str] dhcp_options_set_description: The description can be blank or contain 1 to 256 characters. It must start with a letter or Chinese character but cannot start with http:// or https://.
38
- :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
39
- :param pulumi.Input[_builtins.str] domain_name: The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
40
- :param pulumi.Input[_builtins.str] domain_name_servers: The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
38
+ :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name of the DHCP options set.
39
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
40
+ :param pulumi.Input[_builtins.str] domain_name: The root domain. For example, you can set the value to example.com.
41
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
42
+ :param pulumi.Input[_builtins.str] domain_name_servers: The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
43
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
41
44
  :param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request, value:
42
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
43
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
44
- :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
45
- :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
46
- :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group.
45
+ :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.
46
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
47
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
48
+ :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 addresses for the DHCP options set.
49
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
50
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
51
+ :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the DHCP options set belongs.
47
52
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Tags of the current resource.
48
53
  """
49
54
  if associate_vpcs is not None:
@@ -99,7 +104,8 @@ class DhcpOptionsSetArgs:
99
104
  @pulumi.getter(name="dhcpOptionsSetName")
100
105
  def dhcp_options_set_name(self) -> Optional[pulumi.Input[_builtins.str]]:
101
106
  """
102
- The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
107
+ The name of the DHCP options set.
108
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
103
109
  """
104
110
  return pulumi.get(self, "dhcp_options_set_name")
105
111
 
@@ -111,7 +117,8 @@ class DhcpOptionsSetArgs:
111
117
  @pulumi.getter(name="domainName")
112
118
  def domain_name(self) -> Optional[pulumi.Input[_builtins.str]]:
113
119
  """
114
- The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
120
+ The root domain. For example, you can set the value to example.com.
121
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
115
122
  """
116
123
  return pulumi.get(self, "domain_name")
117
124
 
@@ -123,7 +130,8 @@ class DhcpOptionsSetArgs:
123
130
  @pulumi.getter(name="domainNameServers")
124
131
  def domain_name_servers(self) -> Optional[pulumi.Input[_builtins.str]]:
125
132
  """
126
- The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
133
+ The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
134
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
127
135
  """
128
136
  return pulumi.get(self, "domain_name_servers")
129
137
 
@@ -136,8 +144,6 @@ class DhcpOptionsSetArgs:
136
144
  def dry_run(self) -> Optional[pulumi.Input[_builtins.bool]]:
137
145
  """
138
146
  Whether to PreCheck only this request, value:
139
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
140
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
141
147
  """
142
148
  return pulumi.get(self, "dry_run")
143
149
 
@@ -149,7 +155,9 @@ class DhcpOptionsSetArgs:
149
155
  @pulumi.getter(name="ipv6LeaseTime")
150
156
  def ipv6_lease_time(self) -> Optional[pulumi.Input[_builtins.str]]:
151
157
  """
152
- The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
158
+ The lease time of the IPv6 DHCP option set.
159
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
160
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
153
161
  """
154
162
  return pulumi.get(self, "ipv6_lease_time")
155
163
 
@@ -161,7 +169,9 @@ class DhcpOptionsSetArgs:
161
169
  @pulumi.getter(name="leaseTime")
162
170
  def lease_time(self) -> Optional[pulumi.Input[_builtins.str]]:
163
171
  """
164
- The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
172
+ The lease time of the IPv4 addresses for the DHCP options set.
173
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
174
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
165
175
  """
166
176
  return pulumi.get(self, "lease_time")
167
177
 
@@ -173,7 +183,7 @@ class DhcpOptionsSetArgs:
173
183
  @pulumi.getter(name="resourceGroupId")
174
184
  def resource_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
175
185
  """
176
- The ID of the resource group.
186
+ The ID of the resource group to which the DHCP options set belongs.
177
187
  """
178
188
  return pulumi.get(self, "resource_group_id")
179
189
 
@@ -213,16 +223,21 @@ class _DhcpOptionsSetState:
213
223
  Input properties used for looking up and filtering DhcpOptionsSet resources.
214
224
  :param pulumi.Input[Sequence[pulumi.Input['DhcpOptionsSetAssociateVpcArgs']]] associate_vpcs: Field 'associate_vpcs' has been deprecated from provider version 1.153.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_dhcp_options_set_attachment' to attach DhcpOptionsSet and Vpc. See `associate_vpcs` below.
215
225
  :param pulumi.Input[_builtins.str] dhcp_options_set_description: The description can be blank or contain 1 to 256 characters. It must start with a letter or Chinese character but cannot start with http:// or https://.
216
- :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
217
- :param pulumi.Input[_builtins.str] domain_name: The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
218
- :param pulumi.Input[_builtins.str] domain_name_servers: The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
226
+ :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name of the DHCP options set.
227
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
228
+ :param pulumi.Input[_builtins.str] domain_name: The root domain. For example, you can set the value to example.com.
229
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
230
+ :param pulumi.Input[_builtins.str] domain_name_servers: The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
231
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
219
232
  :param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request, value:
220
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
221
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
222
- :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
223
- :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
233
+ :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.
234
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
235
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
236
+ :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 addresses for the DHCP options set.
237
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
238
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
224
239
  :param pulumi.Input[_builtins.int] owner_id: The ID of the account to which the DHCP options set belongs.
225
- :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group.
240
+ :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the DHCP options set belongs.
226
241
  :param pulumi.Input[_builtins.str] status: The status of the resource.
227
242
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Tags of the current resource.
228
243
  """
@@ -283,7 +298,8 @@ class _DhcpOptionsSetState:
283
298
  @pulumi.getter(name="dhcpOptionsSetName")
284
299
  def dhcp_options_set_name(self) -> Optional[pulumi.Input[_builtins.str]]:
285
300
  """
286
- The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
301
+ The name of the DHCP options set.
302
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
287
303
  """
288
304
  return pulumi.get(self, "dhcp_options_set_name")
289
305
 
@@ -295,7 +311,8 @@ class _DhcpOptionsSetState:
295
311
  @pulumi.getter(name="domainName")
296
312
  def domain_name(self) -> Optional[pulumi.Input[_builtins.str]]:
297
313
  """
298
- The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
314
+ The root domain. For example, you can set the value to example.com.
315
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
299
316
  """
300
317
  return pulumi.get(self, "domain_name")
301
318
 
@@ -307,7 +324,8 @@ class _DhcpOptionsSetState:
307
324
  @pulumi.getter(name="domainNameServers")
308
325
  def domain_name_servers(self) -> Optional[pulumi.Input[_builtins.str]]:
309
326
  """
310
- The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
327
+ The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
328
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
311
329
  """
312
330
  return pulumi.get(self, "domain_name_servers")
313
331
 
@@ -320,8 +338,6 @@ class _DhcpOptionsSetState:
320
338
  def dry_run(self) -> Optional[pulumi.Input[_builtins.bool]]:
321
339
  """
322
340
  Whether to PreCheck only this request, value:
323
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
324
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
325
341
  """
326
342
  return pulumi.get(self, "dry_run")
327
343
 
@@ -333,7 +349,9 @@ class _DhcpOptionsSetState:
333
349
  @pulumi.getter(name="ipv6LeaseTime")
334
350
  def ipv6_lease_time(self) -> Optional[pulumi.Input[_builtins.str]]:
335
351
  """
336
- The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
352
+ The lease time of the IPv6 DHCP option set.
353
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
354
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
337
355
  """
338
356
  return pulumi.get(self, "ipv6_lease_time")
339
357
 
@@ -345,7 +363,9 @@ class _DhcpOptionsSetState:
345
363
  @pulumi.getter(name="leaseTime")
346
364
  def lease_time(self) -> Optional[pulumi.Input[_builtins.str]]:
347
365
  """
348
- The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
366
+ The lease time of the IPv4 addresses for the DHCP options set.
367
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
368
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
349
369
  """
350
370
  return pulumi.get(self, "lease_time")
351
371
 
@@ -369,7 +389,7 @@ class _DhcpOptionsSetState:
369
389
  @pulumi.getter(name="resourceGroupId")
370
390
  def resource_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
371
391
  """
372
- The ID of the resource group.
392
+ The ID of the resource group to which the DHCP options set belongs.
373
393
  """
374
394
  return pulumi.get(self, "resource_group_id")
375
395
 
@@ -420,7 +440,9 @@ class DhcpOptionsSet(pulumi.CustomResource):
420
440
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
421
441
  __props__=None):
422
442
  """
423
- Provides a VPC Dhcp Options Set resource. DHCP option set.
443
+ Provides a VPC Dhcp Options Set resource.
444
+
445
+ DHCP option set.
424
446
 
425
447
  For information about VPC Dhcp Options Set and how to use it, see [What is Dhcp Options Set](https://www.alibabacloud.com/help/en/virtual-private-cloud/latest/dhcp-options-sets-overview).
426
448
 
@@ -460,15 +482,20 @@ class DhcpOptionsSet(pulumi.CustomResource):
460
482
  :param pulumi.ResourceOptions opts: Options for the resource.
461
483
  :param pulumi.Input[Sequence[pulumi.Input[Union['DhcpOptionsSetAssociateVpcArgs', 'DhcpOptionsSetAssociateVpcArgsDict']]]] associate_vpcs: Field 'associate_vpcs' has been deprecated from provider version 1.153.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_dhcp_options_set_attachment' to attach DhcpOptionsSet and Vpc. See `associate_vpcs` below.
462
484
  :param pulumi.Input[_builtins.str] dhcp_options_set_description: The description can be blank or contain 1 to 256 characters. It must start with a letter or Chinese character but cannot start with http:// or https://.
463
- :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
464
- :param pulumi.Input[_builtins.str] domain_name: The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
465
- :param pulumi.Input[_builtins.str] domain_name_servers: The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
485
+ :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name of the DHCP options set.
486
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
487
+ :param pulumi.Input[_builtins.str] domain_name: The root domain. For example, you can set the value to example.com.
488
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
489
+ :param pulumi.Input[_builtins.str] domain_name_servers: The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
490
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
466
491
  :param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request, value:
467
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
468
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
469
- :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
470
- :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
471
- :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group.
492
+ :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.
493
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
494
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
495
+ :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 addresses for the DHCP options set.
496
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
497
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
498
+ :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the DHCP options set belongs.
472
499
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Tags of the current resource.
473
500
  """
474
501
  ...
@@ -478,7 +505,9 @@ class DhcpOptionsSet(pulumi.CustomResource):
478
505
  args: Optional[DhcpOptionsSetArgs] = None,
479
506
  opts: Optional[pulumi.ResourceOptions] = None):
480
507
  """
481
- Provides a VPC Dhcp Options Set resource. DHCP option set.
508
+ Provides a VPC Dhcp Options Set resource.
509
+
510
+ DHCP option set.
482
511
 
483
512
  For information about VPC Dhcp Options Set and how to use it, see [What is Dhcp Options Set](https://www.alibabacloud.com/help/en/virtual-private-cloud/latest/dhcp-options-sets-overview).
484
513
 
@@ -591,16 +620,21 @@ class DhcpOptionsSet(pulumi.CustomResource):
591
620
  :param pulumi.ResourceOptions opts: Options for the resource.
592
621
  :param pulumi.Input[Sequence[pulumi.Input[Union['DhcpOptionsSetAssociateVpcArgs', 'DhcpOptionsSetAssociateVpcArgsDict']]]] associate_vpcs: Field 'associate_vpcs' has been deprecated from provider version 1.153.0 and it will be removed in the future version. Please use the new resource 'alicloud_vpc_dhcp_options_set_attachment' to attach DhcpOptionsSet and Vpc. See `associate_vpcs` below.
593
622
  :param pulumi.Input[_builtins.str] dhcp_options_set_description: The description can be blank or contain 1 to 256 characters. It must start with a letter or Chinese character but cannot start with http:// or https://.
594
- :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
595
- :param pulumi.Input[_builtins.str] domain_name: The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
596
- :param pulumi.Input[_builtins.str] domain_name_servers: The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
623
+ :param pulumi.Input[_builtins.str] dhcp_options_set_name: The name of the DHCP options set.
624
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
625
+ :param pulumi.Input[_builtins.str] domain_name: The root domain. For example, you can set the value to example.com.
626
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
627
+ :param pulumi.Input[_builtins.str] domain_name_servers: The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
628
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
597
629
  :param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request, value:
598
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
599
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
600
- :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
601
- :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
630
+ :param pulumi.Input[_builtins.str] ipv6_lease_time: The lease time of the IPv6 DHCP option set.
631
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
632
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
633
+ :param pulumi.Input[_builtins.str] lease_time: The lease time of the IPv4 addresses for the DHCP options set.
634
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
635
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
602
636
  :param pulumi.Input[_builtins.int] owner_id: The ID of the account to which the DHCP options set belongs.
603
- :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group.
637
+ :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which the DHCP options set belongs.
604
638
  :param pulumi.Input[_builtins.str] status: The status of the resource.
605
639
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Tags of the current resource.
606
640
  """
@@ -643,7 +677,8 @@ class DhcpOptionsSet(pulumi.CustomResource):
643
677
  @pulumi.getter(name="dhcpOptionsSetName")
644
678
  def dhcp_options_set_name(self) -> pulumi.Output[Optional[_builtins.str]]:
645
679
  """
646
- The name must be 2 to 128 characters in length and can contain letters, Chinese characters, digits, underscores (_), and hyphens (-). It must start with a letter or a Chinese character.
680
+ The name of the DHCP options set.
681
+ The name must be 1 to 128 characters in length and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
647
682
  """
648
683
  return pulumi.get(self, "dhcp_options_set_name")
649
684
 
@@ -651,7 +686,8 @@ class DhcpOptionsSet(pulumi.CustomResource):
651
686
  @pulumi.getter(name="domainName")
652
687
  def domain_name(self) -> pulumi.Output[Optional[_builtins.str]]:
653
688
  """
654
- The root domain, for example, example.com. After a DHCP options set is associated with a Virtual Private Cloud (VPC) network, the root domain in the DHCP options set is automatically synchronized to the ECS instances in the VPC network.
689
+ The root domain. For example, you can set the value to example.com.
690
+ After a DHCP options set is associated with a virtual private cloud (VPC), the root domain in the DHCP options set is automatically synchronized with the ECS instances in the VPC.
655
691
  """
656
692
  return pulumi.get(self, "domain_name")
657
693
 
@@ -659,7 +695,8 @@ class DhcpOptionsSet(pulumi.CustomResource):
659
695
  @pulumi.getter(name="domainNameServers")
660
696
  def domain_name_servers(self) -> pulumi.Output[Optional[_builtins.str]]:
661
697
  """
662
- The DNS server IP addresses. Up to four DNS server IP addresses can be specified. IP addresses must be separated with commas (,).Before you specify any DNS server IP address, all ECS instances in the associated VPC network use the IP addresses of the Alibaba Cloud DNS servers, which are 100.100.2.136 and 100.100.2.138.
698
+ The IP address of the DNS server. You can enter at most four DNS server IP addresses. Separate IP addresses with commas (,).
699
+ If no IP address is specified, the Elastic Compute Service (ECS) instance uses the IP addresses 100.100.2.136 and 100.100.2.138, which are provided by Alibaba Cloud by default.
663
700
  """
664
701
  return pulumi.get(self, "domain_name_servers")
665
702
 
@@ -668,8 +705,6 @@ class DhcpOptionsSet(pulumi.CustomResource):
668
705
  def dry_run(self) -> pulumi.Output[Optional[_builtins.bool]]:
669
706
  """
670
707
  Whether to PreCheck only this request, value:
671
- - **true**: sends a check request and does not delete the DHCP option set. Check items include whether required parameters are filled in, request format, and restrictions. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '.
672
- - **false** (default): Sends a normal request and directly deletes the DHCP option set after checking.
673
708
  """
674
709
  return pulumi.get(self, "dry_run")
675
710
 
@@ -677,7 +712,9 @@ class DhcpOptionsSet(pulumi.CustomResource):
677
712
  @pulumi.getter(name="ipv6LeaseTime")
678
713
  def ipv6_lease_time(self) -> pulumi.Output[_builtins.str]:
679
714
  """
680
- The lease time of the IPv6 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
715
+ The lease time of the IPv6 DHCP option set.
716
+ When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.
717
+ When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 1d.
681
718
  """
682
719
  return pulumi.get(self, "ipv6_lease_time")
683
720
 
@@ -685,7 +722,9 @@ class DhcpOptionsSet(pulumi.CustomResource):
685
722
  @pulumi.getter(name="leaseTime")
686
723
  def lease_time(self) -> pulumi.Output[_builtins.str]:
687
724
  """
688
- The lease time of the IPv4 DHCP option set.When the lease time is set to hours: Unit: h. Value range: 24h ~ 1176h,87600h ~ 175200h. Default value: 87600h.When the lease time is set to day: Unit: d. Value range: 1d ~ 49d,3650d ~ 7300d. Default value: 3650d.
725
+ The lease time of the IPv4 addresses for the DHCP options set.
726
+ If you use hours as the unit, valid values are 24h to 1176h and 87600h to 175200h. Default value: 87600h.
727
+ If you use days as the unit, valid values are 1d to 49d and 3650d to 7300d. Default value: 3650d.
689
728
  """
690
729
  return pulumi.get(self, "lease_time")
691
730
 
@@ -701,7 +740,7 @@ class DhcpOptionsSet(pulumi.CustomResource):
701
740
  @pulumi.getter(name="resourceGroupId")
702
741
  def resource_group_id(self) -> pulumi.Output[_builtins.str]:
703
742
  """
704
- The ID of the resource group.
743
+ The ID of the resource group to which the DHCP options set belongs.
705
744
  """
706
745
  return pulumi.get(self, "resource_group_id")
707
746