pulumi-alicloud 3.69.0a1733375908__py3-none-any.whl → 3.69.0a1733740345__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 (47) hide show
  1. pulumi_alicloud/__init__.py +56 -0
  2. pulumi_alicloud/adb/db_cluster.py +7 -0
  3. pulumi_alicloud/arms/__init__.py +2 -0
  4. pulumi_alicloud/arms/_inputs.py +42 -4
  5. pulumi_alicloud/arms/alert_robot.py +421 -0
  6. pulumi_alicloud/arms/dispatch_rule.py +4 -0
  7. pulumi_alicloud/arms/get_alert_robots.py +230 -0
  8. pulumi_alicloud/arms/get_dispatch_rules.py +99 -6
  9. pulumi_alicloud/arms/outputs.py +154 -13
  10. pulumi_alicloud/cfg/rule.py +4 -4
  11. pulumi_alicloud/cs/autoscaling_config.py +51 -0
  12. pulumi_alicloud/dataworks/__init__.py +4 -0
  13. pulumi_alicloud/dataworks/_inputs.py +95 -0
  14. pulumi_alicloud/dataworks/data_source.py +686 -0
  15. pulumi_alicloud/dataworks/data_source_shared_rule.py +378 -0
  16. pulumi_alicloud/dataworks/outputs.py +44 -0
  17. pulumi_alicloud/dataworks/project.py +294 -140
  18. pulumi_alicloud/dataworks/project_member.py +380 -0
  19. pulumi_alicloud/ecs/__init__.py +1 -0
  20. pulumi_alicloud/ecs/_inputs.py +34 -0
  21. pulumi_alicloud/ecs/disk.py +156 -14
  22. pulumi_alicloud/ecs/ecs_disk.py +308 -97
  23. pulumi_alicloud/ecs/ecs_key_pair.py +77 -49
  24. pulumi_alicloud/ecs/image_pipeline_execution.py +245 -0
  25. pulumi_alicloud/ecs/instance.py +145 -0
  26. pulumi_alicloud/ecs/key_pair.py +27 -7
  27. pulumi_alicloud/ecs/outputs.py +37 -0
  28. pulumi_alicloud/oss/__init__.py +1 -0
  29. pulumi_alicloud/oss/_inputs.py +1750 -0
  30. pulumi_alicloud/oss/bucket_website.py +416 -0
  31. pulumi_alicloud/oss/outputs.py +1338 -0
  32. pulumi_alicloud/polardb/cluster.py +7 -7
  33. pulumi_alicloud/polardb/get_clusters.py +1 -1
  34. pulumi_alicloud/polardb/outputs.py +2 -2
  35. pulumi_alicloud/pulumi-plugin.json +1 -1
  36. pulumi_alicloud/redis/tair_instance.py +63 -30
  37. pulumi_alicloud/sae/application.py +1 -1
  38. pulumi_alicloud/slb/attachment.py +2 -6
  39. pulumi_alicloud/sls/__init__.py +1 -0
  40. pulumi_alicloud/sls/_inputs.py +484 -0
  41. pulumi_alicloud/sls/oss_export_sink.py +428 -0
  42. pulumi_alicloud/sls/outputs.py +346 -0
  43. pulumi_alicloud/vpc/network.py +7 -7
  44. {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/METADATA +1 -1
  45. {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/RECORD +47 -38
  46. {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/WHEEL +0 -0
  47. {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/top_level.txt +0 -0
@@ -124,7 +124,7 @@ class ClusterArgs:
124
124
  :param pulumi.Input[str] gdn_id: The ID of the global database network (GDN).
125
125
  > **NOTE:** This parameter is required if CreationOption is set to CreateGdnStandby.
126
126
  :param pulumi.Input[str] hot_replica_mode: Indicates whether the hot standby feature is enabled. Valid values are `ON`, `OFF`. Only MySQL supports.
127
- :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
127
+ :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
128
128
  :param pulumi.Input[str] imci_switch: Specifies whether to enable the In-Memory Column Index (IMCI) feature. Valid values are `ON`, `OFF`.
129
129
  > **NOTE:** Only polardb MySQL Cluster version is available. The cluster with minor version number of 8.0.1 supports the column index feature, and the specific kernel version must be 8.0.1.1.22 or above.
130
130
  > **NOTE:** The single node, the single node version of the history library, and the cluster version of the history library do not support column save indexes.
@@ -612,7 +612,7 @@ class ClusterArgs:
612
612
  @pulumi.getter(name="hotStandbyCluster")
613
613
  def hot_standby_cluster(self) -> Optional[pulumi.Input[str]]:
614
614
  """
615
- Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
615
+ Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
616
616
  """
617
617
  return pulumi.get(self, "hot_standby_cluster")
618
618
 
@@ -1262,7 +1262,7 @@ class _ClusterState:
1262
1262
  :param pulumi.Input[str] gdn_id: The ID of the global database network (GDN).
1263
1263
  > **NOTE:** This parameter is required if CreationOption is set to CreateGdnStandby.
1264
1264
  :param pulumi.Input[str] hot_replica_mode: Indicates whether the hot standby feature is enabled. Valid values are `ON`, `OFF`. Only MySQL supports.
1265
- :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
1265
+ :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
1266
1266
  :param pulumi.Input[str] imci_switch: Specifies whether to enable the In-Memory Column Index (IMCI) feature. Valid values are `ON`, `OFF`.
1267
1267
  > **NOTE:** Only polardb MySQL Cluster version is available. The cluster with minor version number of 8.0.1 supports the column index feature, and the specific kernel version must be 8.0.1.1.22 or above.
1268
1268
  > **NOTE:** The single node, the single node version of the history library, and the cluster version of the history library do not support column save indexes.
@@ -1806,7 +1806,7 @@ class _ClusterState:
1806
1806
  @pulumi.getter(name="hotStandbyCluster")
1807
1807
  def hot_standby_cluster(self) -> Optional[pulumi.Input[str]]:
1808
1808
  """
1809
- Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
1809
+ Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
1810
1810
  """
1811
1811
  return pulumi.get(self, "hot_standby_cluster")
1812
1812
 
@@ -2497,7 +2497,7 @@ class Cluster(pulumi.CustomResource):
2497
2497
  :param pulumi.Input[str] gdn_id: The ID of the global database network (GDN).
2498
2498
  > **NOTE:** This parameter is required if CreationOption is set to CreateGdnStandby.
2499
2499
  :param pulumi.Input[str] hot_replica_mode: Indicates whether the hot standby feature is enabled. Valid values are `ON`, `OFF`. Only MySQL supports.
2500
- :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
2500
+ :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
2501
2501
  :param pulumi.Input[str] imci_switch: Specifies whether to enable the In-Memory Column Index (IMCI) feature. Valid values are `ON`, `OFF`.
2502
2502
  > **NOTE:** Only polardb MySQL Cluster version is available. The cluster with minor version number of 8.0.1 supports the column index feature, and the specific kernel version must be 8.0.1.1.22 or above.
2503
2503
  > **NOTE:** The single node, the single node version of the history library, and the cluster version of the history library do not support column save indexes.
@@ -2873,7 +2873,7 @@ class Cluster(pulumi.CustomResource):
2873
2873
  :param pulumi.Input[str] gdn_id: The ID of the global database network (GDN).
2874
2874
  > **NOTE:** This parameter is required if CreationOption is set to CreateGdnStandby.
2875
2875
  :param pulumi.Input[str] hot_replica_mode: Indicates whether the hot standby feature is enabled. Valid values are `ON`, `OFF`. Only MySQL supports.
2876
- :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
2876
+ :param pulumi.Input[str] hot_standby_cluster: Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
2877
2877
  :param pulumi.Input[str] imci_switch: Specifies whether to enable the In-Memory Column Index (IMCI) feature. Valid values are `ON`, `OFF`.
2878
2878
  > **NOTE:** Only polardb MySQL Cluster version is available. The cluster with minor version number of 8.0.1 supports the column index feature, and the specific kernel version must be 8.0.1.1.22 or above.
2879
2879
  > **NOTE:** The single node, the single node version of the history library, and the cluster version of the history library do not support column save indexes.
@@ -3246,7 +3246,7 @@ class Cluster(pulumi.CustomResource):
3246
3246
  @pulumi.getter(name="hotStandbyCluster")
3247
3247
  def hot_standby_cluster(self) -> pulumi.Output[str]:
3248
3248
  """
3249
- Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`. Only MySQL supports.
3249
+ Whether to enable the hot standby cluster. Valid values are `ON`, `OFF`.
3250
3250
  """
3251
3251
  return pulumi.get(self, "hot_standby_cluster")
3252
3252
 
@@ -68,7 +68,7 @@ class GetClustersResult:
68
68
  @pulumi.getter(name="dbType")
69
69
  def db_type(self) -> Optional[str]:
70
70
  """
71
- `Primary` for primary cluster, `ReadOnly` for read-only cluster, `Guard` for disaster recovery cluster, and `Temp` for temporary cluster.
71
+ Database type. Value options: MySQL, PostgreSQL and Oracle.
72
72
  """
73
73
  return pulumi.get(self, "db_type")
74
74
 
@@ -398,7 +398,7 @@ class GetClustersClusterResult(dict):
398
398
  :param str db_version: The DBVersion of the PolarDB cluster.
399
399
  :param int delete_lock: The DeleteLock of the PolarDB cluster.
400
400
  :param str description: The description of the PolarDB cluster.
401
- :param str engine: Database type. Options are `MySQL`, `Oracle` and `PostgreSQL`. If no value is specified, all types are returned.
401
+ :param str engine: The database engine of the cluster, example: POLARDB.
402
402
  :param str expire_time: Expiration time. Pay-As-You-Go clusters never expire.
403
403
  :param str expired: The expired of the PolarDB cluster.
404
404
  :param str id: The ID of the PolarDB cluster.
@@ -518,7 +518,7 @@ class GetClustersClusterResult(dict):
518
518
  @pulumi.getter
519
519
  def engine(self) -> str:
520
520
  """
521
- Database type. Options are `MySQL`, `Oracle` and `PostgreSQL`. If no value is specified, all types are returned.
521
+ The database engine of the cluster, example: POLARDB.
522
522
  """
523
523
  return pulumi.get(self, "engine")
524
524
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "alicloud",
4
- "version": "3.69.0-alpha.1733375908"
4
+ "version": "3.69.0-alpha.1733740345"
5
5
  }
@@ -37,6 +37,7 @@ class TairInstanceArgs:
37
37
  modify_mode: Optional[pulumi.Input[str]] = None,
38
38
  node_type: Optional[pulumi.Input[str]] = None,
39
39
  param_no_loose_sentinel_enabled: Optional[pulumi.Input[str]] = None,
40
+ param_no_loose_sentinel_password_free_access: Optional[pulumi.Input[str]] = None,
40
41
  param_repl_mode: Optional[pulumi.Input[str]] = None,
41
42
  param_semisync_repl_timeout: Optional[pulumi.Input[str]] = None,
42
43
  param_sentinel_compat_enable: Optional[pulumi.Input[str]] = None,
@@ -94,10 +95,9 @@ class TairInstanceArgs:
94
95
  3. Not as a distributed instance, you do not need to enter any values.
95
96
  :param pulumi.Input[int] intranet_bandwidth: Instance intranet bandwidth
96
97
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
97
- :param pulumi.Input[str] node_type: Node type, value:
98
- - `MASTER_SLAVE`: high availability (dual copy)
99
- - `STAND_ALONE`: single copy
100
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
98
+ :param pulumi.Input[str] node_type: The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
99
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
100
+ :param pulumi.Input[str] param_no_loose_sentinel_password_free_access: Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
101
101
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
102
102
 
103
103
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -167,6 +167,8 @@ class TairInstanceArgs:
167
167
  pulumi.set(__self__, "node_type", node_type)
168
168
  if param_no_loose_sentinel_enabled is not None:
169
169
  pulumi.set(__self__, "param_no_loose_sentinel_enabled", param_no_loose_sentinel_enabled)
170
+ if param_no_loose_sentinel_password_free_access is not None:
171
+ pulumi.set(__self__, "param_no_loose_sentinel_password_free_access", param_no_loose_sentinel_password_free_access)
170
172
  if param_repl_mode is not None:
171
173
  pulumi.set(__self__, "param_repl_mode", param_repl_mode)
172
174
  if param_semisync_repl_timeout is not None:
@@ -426,9 +428,7 @@ class TairInstanceArgs:
426
428
  @pulumi.getter(name="nodeType")
427
429
  def node_type(self) -> Optional[pulumi.Input[str]]:
428
430
  """
429
- Node type, value:
430
- - `MASTER_SLAVE`: high availability (dual copy)
431
- - `STAND_ALONE`: single copy
431
+ The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
432
432
  """
433
433
  return pulumi.get(self, "node_type")
434
434
 
@@ -440,7 +440,7 @@ class TairInstanceArgs:
440
440
  @pulumi.getter(name="paramNoLooseSentinelEnabled")
441
441
  def param_no_loose_sentinel_enabled(self) -> Optional[pulumi.Input[str]]:
442
442
  """
443
- sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
443
+ sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
444
444
  """
445
445
  return pulumi.get(self, "param_no_loose_sentinel_enabled")
446
446
 
@@ -448,6 +448,18 @@ class TairInstanceArgs:
448
448
  def param_no_loose_sentinel_enabled(self, value: Optional[pulumi.Input[str]]):
449
449
  pulumi.set(self, "param_no_loose_sentinel_enabled", value)
450
450
 
451
+ @property
452
+ @pulumi.getter(name="paramNoLooseSentinelPasswordFreeAccess")
453
+ def param_no_loose_sentinel_password_free_access(self) -> Optional[pulumi.Input[str]]:
454
+ """
455
+ Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
456
+ """
457
+ return pulumi.get(self, "param_no_loose_sentinel_password_free_access")
458
+
459
+ @param_no_loose_sentinel_password_free_access.setter
460
+ def param_no_loose_sentinel_password_free_access(self, value: Optional[pulumi.Input[str]]):
461
+ pulumi.set(self, "param_no_loose_sentinel_password_free_access", value)
462
+
451
463
  @property
452
464
  @pulumi.getter(name="paramReplMode")
453
465
  def param_repl_mode(self) -> Optional[pulumi.Input[str]]:
@@ -762,6 +774,7 @@ class _TairInstanceState:
762
774
  network_type: Optional[pulumi.Input[str]] = None,
763
775
  node_type: Optional[pulumi.Input[str]] = None,
764
776
  param_no_loose_sentinel_enabled: Optional[pulumi.Input[str]] = None,
777
+ param_no_loose_sentinel_password_free_access: Optional[pulumi.Input[str]] = None,
765
778
  param_repl_mode: Optional[pulumi.Input[str]] = None,
766
779
  param_semisync_repl_timeout: Optional[pulumi.Input[str]] = None,
767
780
  param_sentinel_compat_enable: Optional[pulumi.Input[str]] = None,
@@ -827,10 +840,9 @@ class _TairInstanceState:
827
840
  :param pulumi.Input[int] max_connections: The maximum number of connections supported by the instance.
828
841
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
829
842
  :param pulumi.Input[str] network_type: The network type of the instance. CLASSIC(classic network), VPC.
830
- :param pulumi.Input[str] node_type: Node type, value:
831
- - `MASTER_SLAVE`: high availability (dual copy)
832
- - `STAND_ALONE`: single copy
833
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
843
+ :param pulumi.Input[str] node_type: The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
844
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
845
+ :param pulumi.Input[str] param_no_loose_sentinel_password_free_access: Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
834
846
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
835
847
 
836
848
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -915,6 +927,8 @@ class _TairInstanceState:
915
927
  pulumi.set(__self__, "node_type", node_type)
916
928
  if param_no_loose_sentinel_enabled is not None:
917
929
  pulumi.set(__self__, "param_no_loose_sentinel_enabled", param_no_loose_sentinel_enabled)
930
+ if param_no_loose_sentinel_password_free_access is not None:
931
+ pulumi.set(__self__, "param_no_loose_sentinel_password_free_access", param_no_loose_sentinel_password_free_access)
918
932
  if param_repl_mode is not None:
919
933
  pulumi.set(__self__, "param_repl_mode", param_repl_mode)
920
934
  if param_semisync_repl_timeout is not None:
@@ -1210,9 +1224,7 @@ class _TairInstanceState:
1210
1224
  @pulumi.getter(name="nodeType")
1211
1225
  def node_type(self) -> Optional[pulumi.Input[str]]:
1212
1226
  """
1213
- Node type, value:
1214
- - `MASTER_SLAVE`: high availability (dual copy)
1215
- - `STAND_ALONE`: single copy
1227
+ The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
1216
1228
  """
1217
1229
  return pulumi.get(self, "node_type")
1218
1230
 
@@ -1224,7 +1236,7 @@ class _TairInstanceState:
1224
1236
  @pulumi.getter(name="paramNoLooseSentinelEnabled")
1225
1237
  def param_no_loose_sentinel_enabled(self) -> Optional[pulumi.Input[str]]:
1226
1238
  """
1227
- sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
1239
+ sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
1228
1240
  """
1229
1241
  return pulumi.get(self, "param_no_loose_sentinel_enabled")
1230
1242
 
@@ -1232,6 +1244,18 @@ class _TairInstanceState:
1232
1244
  def param_no_loose_sentinel_enabled(self, value: Optional[pulumi.Input[str]]):
1233
1245
  pulumi.set(self, "param_no_loose_sentinel_enabled", value)
1234
1246
 
1247
+ @property
1248
+ @pulumi.getter(name="paramNoLooseSentinelPasswordFreeAccess")
1249
+ def param_no_loose_sentinel_password_free_access(self) -> Optional[pulumi.Input[str]]:
1250
+ """
1251
+ Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
1252
+ """
1253
+ return pulumi.get(self, "param_no_loose_sentinel_password_free_access")
1254
+
1255
+ @param_no_loose_sentinel_password_free_access.setter
1256
+ def param_no_loose_sentinel_password_free_access(self, value: Optional[pulumi.Input[str]]):
1257
+ pulumi.set(self, "param_no_loose_sentinel_password_free_access", value)
1258
+
1235
1259
  @property
1236
1260
  @pulumi.getter(name="paramReplMode")
1237
1261
  def param_repl_mode(self) -> Optional[pulumi.Input[str]]:
@@ -1615,6 +1639,7 @@ class TairInstance(pulumi.CustomResource):
1615
1639
  modify_mode: Optional[pulumi.Input[str]] = None,
1616
1640
  node_type: Optional[pulumi.Input[str]] = None,
1617
1641
  param_no_loose_sentinel_enabled: Optional[pulumi.Input[str]] = None,
1642
+ param_no_loose_sentinel_password_free_access: Optional[pulumi.Input[str]] = None,
1618
1643
  param_repl_mode: Optional[pulumi.Input[str]] = None,
1619
1644
  param_semisync_repl_timeout: Optional[pulumi.Input[str]] = None,
1620
1645
  param_sentinel_compat_enable: Optional[pulumi.Input[str]] = None,
@@ -1645,7 +1670,7 @@ class TairInstance(pulumi.CustomResource):
1645
1670
  """
1646
1671
  ## Import
1647
1672
 
1648
- Redis Tair Instance can be imported using the id, e.g.
1673
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) Tair Instance can be imported using the id, e.g.
1649
1674
 
1650
1675
  ```sh
1651
1676
  $ pulumi import alicloud:redis/tairInstance:TairInstance example <id>
@@ -1682,10 +1707,9 @@ class TairInstance(pulumi.CustomResource):
1682
1707
  :param pulumi.Input[str] instance_type: The storage medium of the instance. Valid values: tair_rdb, tair_scm, tair_essd.
1683
1708
  :param pulumi.Input[int] intranet_bandwidth: Instance intranet bandwidth
1684
1709
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
1685
- :param pulumi.Input[str] node_type: Node type, value:
1686
- - `MASTER_SLAVE`: high availability (dual copy)
1687
- - `STAND_ALONE`: single copy
1688
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
1710
+ :param pulumi.Input[str] node_type: The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
1711
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
1712
+ :param pulumi.Input[str] param_no_loose_sentinel_password_free_access: Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
1689
1713
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
1690
1714
 
1691
1715
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -1736,7 +1760,7 @@ class TairInstance(pulumi.CustomResource):
1736
1760
  """
1737
1761
  ## Import
1738
1762
 
1739
- Redis Tair Instance can be imported using the id, e.g.
1763
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) Tair Instance can be imported using the id, e.g.
1740
1764
 
1741
1765
  ```sh
1742
1766
  $ pulumi import alicloud:redis/tairInstance:TairInstance example <id>
@@ -1772,6 +1796,7 @@ class TairInstance(pulumi.CustomResource):
1772
1796
  modify_mode: Optional[pulumi.Input[str]] = None,
1773
1797
  node_type: Optional[pulumi.Input[str]] = None,
1774
1798
  param_no_loose_sentinel_enabled: Optional[pulumi.Input[str]] = None,
1799
+ param_no_loose_sentinel_password_free_access: Optional[pulumi.Input[str]] = None,
1775
1800
  param_repl_mode: Optional[pulumi.Input[str]] = None,
1776
1801
  param_semisync_repl_timeout: Optional[pulumi.Input[str]] = None,
1777
1802
  param_sentinel_compat_enable: Optional[pulumi.Input[str]] = None,
@@ -1826,6 +1851,7 @@ class TairInstance(pulumi.CustomResource):
1826
1851
  __props__.__dict__["modify_mode"] = modify_mode
1827
1852
  __props__.__dict__["node_type"] = node_type
1828
1853
  __props__.__dict__["param_no_loose_sentinel_enabled"] = param_no_loose_sentinel_enabled
1854
+ __props__.__dict__["param_no_loose_sentinel_password_free_access"] = param_no_loose_sentinel_password_free_access
1829
1855
  __props__.__dict__["param_repl_mode"] = param_repl_mode
1830
1856
  __props__.__dict__["param_semisync_repl_timeout"] = param_semisync_repl_timeout
1831
1857
  __props__.__dict__["param_sentinel_compat_enable"] = param_sentinel_compat_enable
@@ -1898,6 +1924,7 @@ class TairInstance(pulumi.CustomResource):
1898
1924
  network_type: Optional[pulumi.Input[str]] = None,
1899
1925
  node_type: Optional[pulumi.Input[str]] = None,
1900
1926
  param_no_loose_sentinel_enabled: Optional[pulumi.Input[str]] = None,
1927
+ param_no_loose_sentinel_password_free_access: Optional[pulumi.Input[str]] = None,
1901
1928
  param_repl_mode: Optional[pulumi.Input[str]] = None,
1902
1929
  param_semisync_repl_timeout: Optional[pulumi.Input[str]] = None,
1903
1930
  param_sentinel_compat_enable: Optional[pulumi.Input[str]] = None,
@@ -1968,10 +1995,9 @@ class TairInstance(pulumi.CustomResource):
1968
1995
  :param pulumi.Input[int] max_connections: The maximum number of connections supported by the instance.
1969
1996
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
1970
1997
  :param pulumi.Input[str] network_type: The network type of the instance. CLASSIC(classic network), VPC.
1971
- :param pulumi.Input[str] node_type: Node type, value:
1972
- - `MASTER_SLAVE`: high availability (dual copy)
1973
- - `STAND_ALONE`: single copy
1974
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
1998
+ :param pulumi.Input[str] node_type: The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
1999
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
2000
+ :param pulumi.Input[str] param_no_loose_sentinel_password_free_access: Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
1975
2001
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
1976
2002
 
1977
2003
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -2040,6 +2066,7 @@ class TairInstance(pulumi.CustomResource):
2040
2066
  __props__.__dict__["network_type"] = network_type
2041
2067
  __props__.__dict__["node_type"] = node_type
2042
2068
  __props__.__dict__["param_no_loose_sentinel_enabled"] = param_no_loose_sentinel_enabled
2069
+ __props__.__dict__["param_no_loose_sentinel_password_free_access"] = param_no_loose_sentinel_password_free_access
2043
2070
  __props__.__dict__["param_repl_mode"] = param_repl_mode
2044
2071
  __props__.__dict__["param_semisync_repl_timeout"] = param_semisync_repl_timeout
2045
2072
  __props__.__dict__["param_sentinel_compat_enable"] = param_sentinel_compat_enable
@@ -2235,9 +2262,7 @@ class TairInstance(pulumi.CustomResource):
2235
2262
  @pulumi.getter(name="nodeType")
2236
2263
  def node_type(self) -> pulumi.Output[str]:
2237
2264
  """
2238
- Node type, value:
2239
- - `MASTER_SLAVE`: high availability (dual copy)
2240
- - `STAND_ALONE`: single copy
2265
+ The node type. For cloud-native instances, input MASTER_SLAVE (master-replica) or STAND_ALONE (standalone). For classic instances, input double (master-replica) or single (standalone).
2241
2266
  """
2242
2267
  return pulumi.get(self, "node_type")
2243
2268
 
@@ -2245,10 +2270,18 @@ class TairInstance(pulumi.CustomResource):
2245
2270
  @pulumi.getter(name="paramNoLooseSentinelEnabled")
2246
2271
  def param_no_loose_sentinel_enabled(self) -> pulumi.Output[str]:
2247
2272
  """
2248
- sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
2273
+ sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes, no. The default value is no.
2249
2274
  """
2250
2275
  return pulumi.get(self, "param_no_loose_sentinel_enabled")
2251
2276
 
2277
+ @property
2278
+ @pulumi.getter(name="paramNoLooseSentinelPasswordFreeAccess")
2279
+ def param_no_loose_sentinel_password_free_access(self) -> pulumi.Output[str]:
2280
+ """
2281
+ Whether to allow Sentinel commands to be executed without secrets when Sentinel mode is enabled. Value: yes: enabled. After the command is enabled, you can directly run the Sentinel command in the VPC without enabling the password-free feature. no: the default value, disabled. For parameters, see https://help.aliyun.com/zh/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance
2282
+ """
2283
+ return pulumi.get(self, "param_no_loose_sentinel_password_free_access")
2284
+
2252
2285
  @property
2253
2286
  @pulumi.getter(name="paramReplMode")
2254
2287
  def param_repl_mode(self) -> pulumi.Output[str]:
@@ -3280,7 +3280,7 @@ class Application(pulumi.CustomResource):
3280
3280
 
3281
3281
  @property
3282
3282
  @pulumi.getter(name="microRegistration")
3283
- def micro_registration(self) -> pulumi.Output[Optional[str]]:
3283
+ def micro_registration(self) -> pulumi.Output[str]:
3284
3284
  """
3285
3285
  Select the Nacos registry. Valid values: `0`, `1`, `2`.
3286
3286
  """
@@ -235,12 +235,10 @@ class Attachment(pulumi.CustomResource):
235
235
  weight: Optional[pulumi.Input[int]] = None,
236
236
  __props__=None):
237
237
  """
238
- > **DEPRECATED:** This resource has been deprecated from v1.153.0 and using alicloud_backend_server instead.
238
+ > **DEPRECATED:** This resource has been deprecated from v1.153.0 and using slb.BackendServer instead.
239
239
 
240
240
  Add a group of backend servers (ECS instance) to the Server Load Balancer or remove them from it.
241
241
 
242
- > **NOTE:** Deprecated since v1.153.0+.
243
-
244
242
  ## Example Usage
245
243
 
246
244
  ```python
@@ -313,12 +311,10 @@ class Attachment(pulumi.CustomResource):
313
311
  args: AttachmentArgs,
314
312
  opts: Optional[pulumi.ResourceOptions] = None):
315
313
  """
316
- > **DEPRECATED:** This resource has been deprecated from v1.153.0 and using alicloud_backend_server instead.
314
+ > **DEPRECATED:** This resource has been deprecated from v1.153.0 and using slb.BackendServer instead.
317
315
 
318
316
  Add a group of backend servers (ECS instance) to the Server Load Balancer or remove them from it.
319
317
 
320
- > **NOTE:** Deprecated since v1.153.0+.
321
-
322
318
  ## Example Usage
323
319
 
324
320
  ```python
@@ -7,6 +7,7 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .alert import *
9
9
  from .collection_policy import *
10
+ from .oss_export_sink import *
10
11
  from .scheduled_sql import *
11
12
  from ._inputs import *
12
13
  from . import outputs