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
@@ -16,6 +16,8 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'AntiBruteForceRuleProtocolType',
20
+ 'AttackPathSensitiveAssetConfigAttackPathAssetList',
19
21
  'HoneypotPresetMeta',
20
22
  'HoneypotProbeHoneypotBindList',
21
23
  'HoneypotProbeHoneypotBindListBindPortList',
@@ -37,6 +39,151 @@ __all__ = [
37
39
  'GetWebLockConfigsConfigResult',
38
40
  ]
39
41
 
42
+ @pulumi.output_type
43
+ class AntiBruteForceRuleProtocolType(dict):
44
+ @staticmethod
45
+ def __key_warning(key: str):
46
+ suggest = None
47
+ if key == "sqlServer":
48
+ suggest = "sql_server"
49
+
50
+ if suggest:
51
+ pulumi.log.warn(f"Key '{key}' not found in AntiBruteForceRuleProtocolType. Access the value via the '{suggest}' property getter instead.")
52
+
53
+ def __getitem__(self, key: str) -> Any:
54
+ AntiBruteForceRuleProtocolType.__key_warning(key)
55
+ return super().__getitem__(key)
56
+
57
+ def get(self, key: str, default = None) -> Any:
58
+ AntiBruteForceRuleProtocolType.__key_warning(key)
59
+ return super().get(key, default)
60
+
61
+ def __init__(__self__, *,
62
+ rdp: Optional[_builtins.str] = None,
63
+ sql_server: Optional[_builtins.str] = None,
64
+ ssh: Optional[_builtins.str] = None):
65
+ """
66
+ :param _builtins.str rdp: Whether to enable RDP interception. Default value: `on`. Valid values: `on`, `off`.
67
+ :param _builtins.str sql_server: Whether to enable the SqlServer interception method. Default value: `off`. Valid values: `on`, `off`.
68
+ :param _builtins.str ssh: Whether to enable SSH interception. Default value: `on`. Valid values: `on`, `off`.
69
+ """
70
+ if rdp is not None:
71
+ pulumi.set(__self__, "rdp", rdp)
72
+ if sql_server is not None:
73
+ pulumi.set(__self__, "sql_server", sql_server)
74
+ if ssh is not None:
75
+ pulumi.set(__self__, "ssh", ssh)
76
+
77
+ @_builtins.property
78
+ @pulumi.getter
79
+ def rdp(self) -> Optional[_builtins.str]:
80
+ """
81
+ Whether to enable RDP interception. Default value: `on`. Valid values: `on`, `off`.
82
+ """
83
+ return pulumi.get(self, "rdp")
84
+
85
+ @_builtins.property
86
+ @pulumi.getter(name="sqlServer")
87
+ def sql_server(self) -> Optional[_builtins.str]:
88
+ """
89
+ Whether to enable the SqlServer interception method. Default value: `off`. Valid values: `on`, `off`.
90
+ """
91
+ return pulumi.get(self, "sql_server")
92
+
93
+ @_builtins.property
94
+ @pulumi.getter
95
+ def ssh(self) -> Optional[_builtins.str]:
96
+ """
97
+ Whether to enable SSH interception. Default value: `on`. Valid values: `on`, `off`.
98
+ """
99
+ return pulumi.get(self, "ssh")
100
+
101
+
102
+ @pulumi.output_type
103
+ class AttackPathSensitiveAssetConfigAttackPathAssetList(dict):
104
+ @staticmethod
105
+ def __key_warning(key: str):
106
+ suggest = None
107
+ if key == "assetSubType":
108
+ suggest = "asset_sub_type"
109
+ elif key == "assetType":
110
+ suggest = "asset_type"
111
+ elif key == "instanceId":
112
+ suggest = "instance_id"
113
+ elif key == "regionId":
114
+ suggest = "region_id"
115
+
116
+ if suggest:
117
+ pulumi.log.warn(f"Key '{key}' not found in AttackPathSensitiveAssetConfigAttackPathAssetList. Access the value via the '{suggest}' property getter instead.")
118
+
119
+ def __getitem__(self, key: str) -> Any:
120
+ AttackPathSensitiveAssetConfigAttackPathAssetList.__key_warning(key)
121
+ return super().__getitem__(key)
122
+
123
+ def get(self, key: str, default = None) -> Any:
124
+ AttackPathSensitiveAssetConfigAttackPathAssetList.__key_warning(key)
125
+ return super().get(key, default)
126
+
127
+ def __init__(__self__, *,
128
+ asset_sub_type: _builtins.int,
129
+ asset_type: _builtins.int,
130
+ instance_id: _builtins.str,
131
+ region_id: _builtins.str,
132
+ vendor: _builtins.int):
133
+ """
134
+ :param _builtins.int asset_sub_type: Cloud product asset subtype.
135
+ :param _builtins.int asset_type: The asset type of the cloud product asset.
136
+ :param _builtins.str instance_id: The ID of the cloud product instance.
137
+ :param _builtins.str region_id: The region ID of the cloud product.
138
+ :param _builtins.int vendor: Cloud product asset vendor. Valid values: `0`.
139
+ """
140
+ pulumi.set(__self__, "asset_sub_type", asset_sub_type)
141
+ pulumi.set(__self__, "asset_type", asset_type)
142
+ pulumi.set(__self__, "instance_id", instance_id)
143
+ pulumi.set(__self__, "region_id", region_id)
144
+ pulumi.set(__self__, "vendor", vendor)
145
+
146
+ @_builtins.property
147
+ @pulumi.getter(name="assetSubType")
148
+ def asset_sub_type(self) -> _builtins.int:
149
+ """
150
+ Cloud product asset subtype.
151
+ """
152
+ return pulumi.get(self, "asset_sub_type")
153
+
154
+ @_builtins.property
155
+ @pulumi.getter(name="assetType")
156
+ def asset_type(self) -> _builtins.int:
157
+ """
158
+ The asset type of the cloud product asset.
159
+ """
160
+ return pulumi.get(self, "asset_type")
161
+
162
+ @_builtins.property
163
+ @pulumi.getter(name="instanceId")
164
+ def instance_id(self) -> _builtins.str:
165
+ """
166
+ The ID of the cloud product instance.
167
+ """
168
+ return pulumi.get(self, "instance_id")
169
+
170
+ @_builtins.property
171
+ @pulumi.getter(name="regionId")
172
+ def region_id(self) -> _builtins.str:
173
+ """
174
+ The region ID of the cloud product.
175
+ """
176
+ return pulumi.get(self, "region_id")
177
+
178
+ @_builtins.property
179
+ @pulumi.getter
180
+ def vendor(self) -> _builtins.int:
181
+ """
182
+ Cloud product asset vendor. Valid values: `0`.
183
+ """
184
+ return pulumi.get(self, "vendor")
185
+
186
+
40
187
  @pulumi.output_type
41
188
  class HoneypotPresetMeta(dict):
42
189
  @staticmethod
@@ -243,12 +243,12 @@ class EditingProject(pulumi.CustomResource):
243
243
  editing_project_name=name,
244
244
  title=name,
245
245
  timeline=\"\"\" {
246
- "VideoTracks":[
246
+ \\"VideoTracks\\":[
247
247
  {
248
- "VideoTrackClips":[
248
+ \\"VideoTrackClips\\":[
249
249
  {
250
- "MediaId":"0c60e6f02dae71edbfaa472190a90102",
251
- "In":2811
250
+ \\"MediaId\\":\\"0c60e6f02dae71edbfaa472190a90102\\",
251
+ \\"In\\":2811
252
252
  }
253
253
  ]
254
254
  }
@@ -305,12 +305,12 @@ class EditingProject(pulumi.CustomResource):
305
305
  editing_project_name=name,
306
306
  title=name,
307
307
  timeline=\"\"\" {
308
- "VideoTracks":[
308
+ \\"VideoTracks\\":[
309
309
  {
310
- "VideoTrackClips":[
310
+ \\"VideoTrackClips\\":[
311
311
  {
312
- "MediaId":"0c60e6f02dae71edbfaa472190a90102",
313
- "In":2811
312
+ \\"MediaId\\":\\"0c60e6f02dae71edbfaa472190a90102\\",
313
+ \\"In\\":2811
314
314
  }
315
315
  ]
316
316
  }
@@ -208,33 +208,40 @@ if not MYPY:
208
208
  class NetworkAclEgressAclEntryArgsDict(TypedDict):
209
209
  description: NotRequired[pulumi.Input[_builtins.str]]
210
210
  """
211
- The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
211
+ The description of the outbound rule.
212
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
212
213
  """
213
214
  destination_cidr_ip: NotRequired[pulumi.Input[_builtins.str]]
214
215
  """
215
- The network of the destination address.
216
+ The destination CIDR block.
216
217
  """
217
218
  entry_type: NotRequired[pulumi.Input[_builtins.str]]
218
219
  """
219
- The route entry type. The value can be `custom`, indicating custom.
220
+ The route entry type. Value
221
+ custom custom rule
222
+ system system rules
223
+ service Cloud service rules
220
224
  """
221
225
  ip_version: NotRequired[pulumi.Input[_builtins.str]]
222
226
  """
223
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
227
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
224
228
  """
225
229
  network_acl_entry_name: NotRequired[pulumi.Input[_builtins.str]]
226
230
  """
227
- Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
231
+ Name of the outbound rule entry.
232
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
228
233
  """
229
234
  policy: NotRequired[pulumi.Input[_builtins.str]]
230
235
  """
231
- Authorization policy. Value:
232
- - accept: Allow.
233
- - drop: Refused.
236
+ The action to be performed on network traffic that matches the rule. Valid values:
237
+ - accept
238
+ - drop
234
239
  """
235
240
  port: NotRequired[pulumi.Input[_builtins.str]]
236
241
  """
237
- The destination port range of the outbound rule. When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
242
+ The destination port range of the outbound rule.
243
+ When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
244
+ When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
238
245
  """
239
246
  protocol: NotRequired[pulumi.Input[_builtins.str]]
240
247
  """
@@ -260,15 +267,22 @@ class NetworkAclEgressAclEntryArgs:
260
267
  port: Optional[pulumi.Input[_builtins.str]] = None,
261
268
  protocol: Optional[pulumi.Input[_builtins.str]] = None):
262
269
  """
263
- :param pulumi.Input[_builtins.str] description: The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
264
- :param pulumi.Input[_builtins.str] destination_cidr_ip: The network of the destination address.
265
- :param pulumi.Input[_builtins.str] entry_type: The route entry type. The value can be `custom`, indicating custom.
266
- :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
267
- :param pulumi.Input[_builtins.str] network_acl_entry_name: Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
268
- :param pulumi.Input[_builtins.str] policy: Authorization policy. Value:
269
- - accept: Allow.
270
- - drop: Refused.
271
- :param pulumi.Input[_builtins.str] port: The destination port range of the outbound rule. When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
270
+ :param pulumi.Input[_builtins.str] description: The description of the outbound rule.
271
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
272
+ :param pulumi.Input[_builtins.str] destination_cidr_ip: The destination CIDR block.
273
+ :param pulumi.Input[_builtins.str] entry_type: The route entry type. Value
274
+ custom custom rule
275
+ system system rules
276
+ service Cloud service rules
277
+ :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
278
+ :param pulumi.Input[_builtins.str] network_acl_entry_name: Name of the outbound rule entry.
279
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
280
+ :param pulumi.Input[_builtins.str] policy: The action to be performed on network traffic that matches the rule. Valid values:
281
+ - accept
282
+ - drop
283
+ :param pulumi.Input[_builtins.str] port: The destination port range of the outbound rule.
284
+ When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
285
+ When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
272
286
  :param pulumi.Input[_builtins.str] protocol: The protocol type. Value:
273
287
  - icmp: Network Control Message Protocol.
274
288
  - gre: Generic Routing Encapsulation Protocol.
@@ -297,7 +311,8 @@ class NetworkAclEgressAclEntryArgs:
297
311
  @pulumi.getter
298
312
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
299
313
  """
300
- The description of the outbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
314
+ The description of the outbound rule.
315
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
301
316
  """
302
317
  return pulumi.get(self, "description")
303
318
 
@@ -309,7 +324,7 @@ class NetworkAclEgressAclEntryArgs:
309
324
  @pulumi.getter(name="destinationCidrIp")
310
325
  def destination_cidr_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
311
326
  """
312
- The network of the destination address.
327
+ The destination CIDR block.
313
328
  """
314
329
  return pulumi.get(self, "destination_cidr_ip")
315
330
 
@@ -321,7 +336,10 @@ class NetworkAclEgressAclEntryArgs:
321
336
  @pulumi.getter(name="entryType")
322
337
  def entry_type(self) -> Optional[pulumi.Input[_builtins.str]]:
323
338
  """
324
- The route entry type. The value can be `custom`, indicating custom.
339
+ The route entry type. Value
340
+ custom custom rule
341
+ system system rules
342
+ service Cloud service rules
325
343
  """
326
344
  return pulumi.get(self, "entry_type")
327
345
 
@@ -333,7 +351,7 @@ class NetworkAclEgressAclEntryArgs:
333
351
  @pulumi.getter(name="ipVersion")
334
352
  def ip_version(self) -> Optional[pulumi.Input[_builtins.str]]:
335
353
  """
336
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV4'.
354
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
337
355
  """
338
356
  return pulumi.get(self, "ip_version")
339
357
 
@@ -345,7 +363,8 @@ class NetworkAclEgressAclEntryArgs:
345
363
  @pulumi.getter(name="networkAclEntryName")
346
364
  def network_acl_entry_name(self) -> Optional[pulumi.Input[_builtins.str]]:
347
365
  """
348
- Name of the outbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
366
+ Name of the outbound rule entry.
367
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
349
368
  """
350
369
  return pulumi.get(self, "network_acl_entry_name")
351
370
 
@@ -357,9 +376,9 @@ class NetworkAclEgressAclEntryArgs:
357
376
  @pulumi.getter
358
377
  def policy(self) -> Optional[pulumi.Input[_builtins.str]]:
359
378
  """
360
- Authorization policy. Value:
361
- - accept: Allow.
362
- - drop: Refused.
379
+ The action to be performed on network traffic that matches the rule. Valid values:
380
+ - accept
381
+ - drop
363
382
  """
364
383
  return pulumi.get(self, "policy")
365
384
 
@@ -371,7 +390,9 @@ class NetworkAclEgressAclEntryArgs:
371
390
  @pulumi.getter
372
391
  def port(self) -> Optional[pulumi.Input[_builtins.str]]:
373
392
  """
374
- The destination port range of the outbound rule. When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
393
+ The destination port range of the outbound rule.
394
+ When the Protocol type of the outbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
395
+ When the Protocol type of the outbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
375
396
  """
376
397
  return pulumi.get(self, "port")
377
398
 
@@ -621,29 +642,33 @@ if not MYPY:
621
642
  class NetworkAclIngressAclEntryArgsDict(TypedDict):
622
643
  description: NotRequired[pulumi.Input[_builtins.str]]
623
644
  """
624
- Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
645
+ Description of the inbound rule.
646
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
625
647
  """
626
648
  entry_type: NotRequired[pulumi.Input[_builtins.str]]
627
649
  """
628
- The route entry type. The value can be `custom`, indicating custom.
650
+ The route entry type. Value
629
651
  """
630
652
  ip_version: NotRequired[pulumi.Input[_builtins.str]]
631
653
  """
632
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
654
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
633
655
  """
634
656
  network_acl_entry_name: NotRequired[pulumi.Input[_builtins.str]]
635
657
  """
636
- The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
658
+ The name of the inbound rule entry.
659
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
637
660
  """
638
661
  policy: NotRequired[pulumi.Input[_builtins.str]]
639
662
  """
640
- Authorization policy. Value:
641
- - accept: Allow.
642
- - drop: Refused.
663
+ The action to be performed on network traffic that matches the rule. Valid values:
664
+ - accept
665
+ - drop
643
666
  """
644
667
  port: NotRequired[pulumi.Input[_builtins.str]]
645
668
  """
646
- The source port range of the inbound rule. When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
669
+ The source port range of the inbound rule.
670
+ When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
671
+ When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
647
672
  """
648
673
  protocol: NotRequired[pulumi.Input[_builtins.str]]
649
674
  """
@@ -656,7 +681,7 @@ if not MYPY:
656
681
  """
657
682
  source_cidr_ip: NotRequired[pulumi.Input[_builtins.str]]
658
683
  """
659
- Source address network segment.
684
+ The source CIDR block.
660
685
  """
661
686
  elif False:
662
687
  NetworkAclIngressAclEntryArgsDict: TypeAlias = Mapping[str, Any]
@@ -673,21 +698,25 @@ class NetworkAclIngressAclEntryArgs:
673
698
  protocol: Optional[pulumi.Input[_builtins.str]] = None,
674
699
  source_cidr_ip: Optional[pulumi.Input[_builtins.str]] = None):
675
700
  """
676
- :param pulumi.Input[_builtins.str] description: Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
677
- :param pulumi.Input[_builtins.str] entry_type: The route entry type. The value can be `custom`, indicating custom.
678
- :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
679
- :param pulumi.Input[_builtins.str] network_acl_entry_name: The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
680
- :param pulumi.Input[_builtins.str] policy: Authorization policy. Value:
681
- - accept: Allow.
682
- - drop: Refused.
683
- :param pulumi.Input[_builtins.str] port: The source port range of the inbound rule. When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
701
+ :param pulumi.Input[_builtins.str] description: Description of the inbound rule.
702
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
703
+ :param pulumi.Input[_builtins.str] entry_type: The route entry type. Value
704
+ :param pulumi.Input[_builtins.str] ip_version: The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
705
+ :param pulumi.Input[_builtins.str] network_acl_entry_name: The name of the inbound rule entry.
706
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
707
+ :param pulumi.Input[_builtins.str] policy: The action to be performed on network traffic that matches the rule. Valid values:
708
+ - accept
709
+ - drop
710
+ :param pulumi.Input[_builtins.str] port: The source port range of the inbound rule.
711
+ When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
712
+ When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
684
713
  :param pulumi.Input[_builtins.str] protocol: The protocol type. Value:
685
714
  - icmp: Network Control Message Protocol.
686
715
  - gre: Generic Routing Encapsulation Protocol.
687
716
  - tcp: Transmission Control Protocol.
688
717
  - udp: User Datagram Protocol.
689
718
  - all: Supports all protocols.
690
- :param pulumi.Input[_builtins.str] source_cidr_ip: Source address network segment.
719
+ :param pulumi.Input[_builtins.str] source_cidr_ip: The source CIDR block.
691
720
  """
692
721
  if description is not None:
693
722
  pulumi.set(__self__, "description", description)
@@ -710,7 +739,8 @@ class NetworkAclIngressAclEntryArgs:
710
739
  @pulumi.getter
711
740
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
712
741
  """
713
- Description of the inbound rule. The description must be 1 to 256 characters in length and cannot start with http:// or https.
742
+ Description of the inbound rule.
743
+ The description must be 1 to 256 characters in length and cannot start with http:// or https.
714
744
  """
715
745
  return pulumi.get(self, "description")
716
746
 
@@ -722,7 +752,7 @@ class NetworkAclIngressAclEntryArgs:
722
752
  @pulumi.getter(name="entryType")
723
753
  def entry_type(self) -> Optional[pulumi.Input[_builtins.str]]:
724
754
  """
725
- The route entry type. The value can be `custom`, indicating custom.
755
+ The route entry type. Value
726
756
  """
727
757
  return pulumi.get(self, "entry_type")
728
758
 
@@ -734,7 +764,7 @@ class NetworkAclIngressAclEntryArgs:
734
764
  @pulumi.getter(name="ipVersion")
735
765
  def ip_version(self) -> Optional[pulumi.Input[_builtins.str]]:
736
766
  """
737
- The IP protocol version of the route entry. Valid values: "IPV4" and "IPV6'.
767
+ The IP protocol version of the route entry. Valid values: "Ipv4" and "ipv6'
738
768
  """
739
769
  return pulumi.get(self, "ip_version")
740
770
 
@@ -746,7 +776,8 @@ class NetworkAclIngressAclEntryArgs:
746
776
  @pulumi.getter(name="networkAclEntryName")
747
777
  def network_acl_entry_name(self) -> Optional[pulumi.Input[_builtins.str]]:
748
778
  """
749
- The name of the inbound rule entry. The name must be 1 to 128 characters in length and cannot start with http:// or https.
779
+ The name of the inbound rule entry.
780
+ The name must be 1 to 128 characters in length and cannot start with http:// or https.
750
781
  """
751
782
  return pulumi.get(self, "network_acl_entry_name")
752
783
 
@@ -758,9 +789,9 @@ class NetworkAclIngressAclEntryArgs:
758
789
  @pulumi.getter
759
790
  def policy(self) -> Optional[pulumi.Input[_builtins.str]]:
760
791
  """
761
- Authorization policy. Value:
762
- - accept: Allow.
763
- - drop: Refused.
792
+ The action to be performed on network traffic that matches the rule. Valid values:
793
+ - accept
794
+ - drop
764
795
  """
765
796
  return pulumi.get(self, "policy")
766
797
 
@@ -772,7 +803,9 @@ class NetworkAclIngressAclEntryArgs:
772
803
  @pulumi.getter
773
804
  def port(self) -> Optional[pulumi.Input[_builtins.str]]:
774
805
  """
775
- The source port range of the inbound rule. When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted. When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
806
+ The source port range of the inbound rule.
807
+ When the Protocol type of the inbound rule is all, icmp, or gre, the port range is - 1/-1, indicating that the port is not restricted.
808
+ When the Protocol type of the inbound rule is tcp or udp, the port range is 1 to 65535, and the format is 1/200 or 80/80, indicating port 1 to port 200 or port 80.
776
809
  """
777
810
  return pulumi.get(self, "port")
778
811
 
@@ -801,7 +834,7 @@ class NetworkAclIngressAclEntryArgs:
801
834
  @pulumi.getter(name="sourceCidrIp")
802
835
  def source_cidr_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
803
836
  """
804
- Source address network segment.
837
+ The source CIDR block.
805
838
  """
806
839
  return pulumi.get(self, "source_cidr_ip")
807
840
 
@@ -307,6 +307,7 @@ class _CommonBandwithPackageState:
307
307
  name: Optional[pulumi.Input[_builtins.str]] = None,
308
308
  payment_type: Optional[pulumi.Input[_builtins.str]] = None,
309
309
  ratio: Optional[pulumi.Input[_builtins.int]] = None,
310
+ region_id: Optional[pulumi.Input[_builtins.str]] = None,
310
311
  resource_group_id: Optional[pulumi.Input[_builtins.str]] = None,
311
312
  security_protection_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
312
313
  status: Optional[pulumi.Input[_builtins.str]] = None,
@@ -350,6 +351,7 @@ class _CommonBandwithPackageState:
350
351
  This parameter is required when the value of `InternetChargeType` is `PayBy95`.
351
352
 
352
353
  > **NOTE:** This parameter is available only on the Alibaba Cloud China site.
354
+ :param pulumi.Input[_builtins.str] region_id: The pagination token that is used in the next request to retrieve a new page of results.
353
355
  :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which you want to move the resource.
354
356
 
355
357
  > **NOTE:** You can use resource groups to facilitate resource grouping and permission management for an Alibaba Cloud. For more information, see [What is resource management?](https://www.alibabacloud.com/help/en/doc-detail/94475.html)
@@ -385,6 +387,8 @@ class _CommonBandwithPackageState:
385
387
  pulumi.set(__self__, "payment_type", payment_type)
386
388
  if ratio is not None:
387
389
  pulumi.set(__self__, "ratio", ratio)
390
+ if region_id is not None:
391
+ pulumi.set(__self__, "region_id", region_id)
388
392
  if resource_group_id is not None:
389
393
  pulumi.set(__self__, "resource_group_id", resource_group_id)
390
394
  if security_protection_types is not None:
@@ -554,6 +558,18 @@ class _CommonBandwithPackageState:
554
558
  def ratio(self, value: Optional[pulumi.Input[_builtins.int]]):
555
559
  pulumi.set(self, "ratio", value)
556
560
 
561
+ @_builtins.property
562
+ @pulumi.getter(name="regionId")
563
+ def region_id(self) -> Optional[pulumi.Input[_builtins.str]]:
564
+ """
565
+ The pagination token that is used in the next request to retrieve a new page of results.
566
+ """
567
+ return pulumi.get(self, "region_id")
568
+
569
+ @region_id.setter
570
+ def region_id(self, value: Optional[pulumi.Input[_builtins.str]]):
571
+ pulumi.set(self, "region_id", value)
572
+
557
573
  @_builtins.property
558
574
  @pulumi.getter(name="resourceGroupId")
559
575
  def resource_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -762,6 +778,7 @@ class CommonBandwithPackage(pulumi.CustomResource):
762
778
  __props__.__dict__["zone"] = zone
763
779
  __props__.__dict__["create_time"] = None
764
780
  __props__.__dict__["payment_type"] = None
781
+ __props__.__dict__["region_id"] = None
765
782
  __props__.__dict__["status"] = None
766
783
  super(CommonBandwithPackage, __self__).__init__(
767
784
  'alicloud:vpc/commonBandwithPackage:CommonBandwithPackage',
@@ -784,6 +801,7 @@ class CommonBandwithPackage(pulumi.CustomResource):
784
801
  name: Optional[pulumi.Input[_builtins.str]] = None,
785
802
  payment_type: Optional[pulumi.Input[_builtins.str]] = None,
786
803
  ratio: Optional[pulumi.Input[_builtins.int]] = None,
804
+ region_id: Optional[pulumi.Input[_builtins.str]] = None,
787
805
  resource_group_id: Optional[pulumi.Input[_builtins.str]] = None,
788
806
  security_protection_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
789
807
  status: Optional[pulumi.Input[_builtins.str]] = None,
@@ -832,6 +850,7 @@ class CommonBandwithPackage(pulumi.CustomResource):
832
850
  This parameter is required when the value of `InternetChargeType` is `PayBy95`.
833
851
 
834
852
  > **NOTE:** This parameter is available only on the Alibaba Cloud China site.
853
+ :param pulumi.Input[_builtins.str] region_id: The pagination token that is used in the next request to retrieve a new page of results.
835
854
  :param pulumi.Input[_builtins.str] resource_group_id: The ID of the resource group to which you want to move the resource.
836
855
 
837
856
  > **NOTE:** You can use resource groups to facilitate resource grouping and permission management for an Alibaba Cloud. For more information, see [What is resource management?](https://www.alibabacloud.com/help/en/doc-detail/94475.html)
@@ -857,6 +876,7 @@ class CommonBandwithPackage(pulumi.CustomResource):
857
876
  __props__.__dict__["name"] = name
858
877
  __props__.__dict__["payment_type"] = payment_type
859
878
  __props__.__dict__["ratio"] = ratio
879
+ __props__.__dict__["region_id"] = region_id
860
880
  __props__.__dict__["resource_group_id"] = resource_group_id
861
881
  __props__.__dict__["security_protection_types"] = security_protection_types
862
882
  __props__.__dict__["status"] = status
@@ -978,6 +998,14 @@ class CommonBandwithPackage(pulumi.CustomResource):
978
998
  """
979
999
  return pulumi.get(self, "ratio")
980
1000
 
1001
+ @_builtins.property
1002
+ @pulumi.getter(name="regionId")
1003
+ def region_id(self) -> pulumi.Output[_builtins.str]:
1004
+ """
1005
+ The pagination token that is used in the next request to retrieve a new page of results.
1006
+ """
1007
+ return pulumi.get(self, "region_id")
1008
+
981
1009
  @_builtins.property
982
1010
  @pulumi.getter(name="resourceGroupId")
983
1011
  def resource_group_id(self) -> pulumi.Output[_builtins.str]: