pulumi-alicloud 3.66.0a1731648019__py3-none-any.whl → 3.67.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 (81) hide show
  1. pulumi_alicloud/__init__.py +110 -0
  2. pulumi_alicloud/alikafka/instance.py +112 -0
  3. pulumi_alicloud/cen/flow_log.py +373 -58
  4. pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
  5. pulumi_alicloud/cloudsso/_inputs.py +9 -9
  6. pulumi_alicloud/cloudsso/access_configuration.py +100 -34
  7. pulumi_alicloud/cloudsso/outputs.py +6 -6
  8. pulumi_alicloud/cr/registry_enterprise_instance.py +474 -90
  9. pulumi_alicloud/ecs/ecs_image_component.py +221 -48
  10. pulumi_alicloud/esa/__init__.py +9 -0
  11. pulumi_alicloud/esa/rate_plan_instance.py +626 -0
  12. pulumi_alicloud/esa/site.py +533 -0
  13. pulumi_alicloud/ess/_inputs.py +94 -0
  14. pulumi_alicloud/ess/eci_scaling_configuration.py +42 -14
  15. pulumi_alicloud/ess/outputs.py +79 -0
  16. pulumi_alicloud/ess/scaling_configuration.py +47 -0
  17. pulumi_alicloud/expressconnect/router_vbr_child_instance.py +86 -25
  18. pulumi_alicloud/fc/_inputs.py +243 -135
  19. pulumi_alicloud/fc/outputs.py +173 -90
  20. pulumi_alicloud/fc/v3_alias.py +28 -0
  21. pulumi_alicloud/fc/v3_async_invoke_config.py +56 -0
  22. pulumi_alicloud/fc/v3_concurrency_config.py +28 -0
  23. pulumi_alicloud/fc/v3_custom_domain.py +118 -6
  24. pulumi_alicloud/fc/v3_function.py +308 -0
  25. pulumi_alicloud/fc/v3_function_version.py +30 -2
  26. pulumi_alicloud/fc/v3_layer_version.py +104 -1
  27. pulumi_alicloud/fc/v3_provision_config.py +86 -2
  28. pulumi_alicloud/fc/v3_trigger.py +114 -0
  29. pulumi_alicloud/gwlb/__init__.py +12 -0
  30. pulumi_alicloud/gwlb/_inputs.py +673 -0
  31. pulumi_alicloud/gwlb/listener.py +434 -0
  32. pulumi_alicloud/gwlb/load_balancer.py +537 -0
  33. pulumi_alicloud/gwlb/outputs.py +533 -0
  34. pulumi_alicloud/gwlb/server_group.py +780 -0
  35. pulumi_alicloud/kms/key.py +1 -1
  36. pulumi_alicloud/kvstore/account.py +24 -24
  37. pulumi_alicloud/kvstore/audit_log_config.py +4 -4
  38. pulumi_alicloud/kvstore/backup_policy.py +2 -2
  39. pulumi_alicloud/kvstore/connection.py +8 -8
  40. pulumi_alicloud/kvstore/get_accounts.py +4 -4
  41. pulumi_alicloud/kvstore/get_connections.py +5 -5
  42. pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
  43. pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
  44. pulumi_alicloud/kvstore/get_permission.py +10 -10
  45. pulumi_alicloud/kvstore/get_zones.py +4 -4
  46. pulumi_alicloud/kvstore/outputs.py +2 -2
  47. pulumi_alicloud/mongodb/instance.py +47 -0
  48. pulumi_alicloud/mongodb/sharding_instance.py +47 -0
  49. pulumi_alicloud/oss/__init__.py +2 -0
  50. pulumi_alicloud/oss/_inputs.py +194 -0
  51. pulumi_alicloud/oss/bucket_cname.py +509 -0
  52. pulumi_alicloud/oss/bucket_cname_token.py +239 -0
  53. pulumi_alicloud/oss/outputs.py +141 -0
  54. pulumi_alicloud/polardb/cluster.py +7 -7
  55. pulumi_alicloud/privatelink/vpc_endpoint_service.py +42 -91
  56. pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +27 -23
  57. pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +34 -37
  58. pulumi_alicloud/privatelink/vpc_endpoint_zone.py +28 -0
  59. pulumi_alicloud/pulumi-plugin.json +1 -1
  60. pulumi_alicloud/quotas/_inputs.py +6 -6
  61. pulumi_alicloud/quotas/outputs.py +4 -4
  62. pulumi_alicloud/quotas/quota_application.py +21 -28
  63. pulumi_alicloud/rds/__init__.py +2 -0
  64. pulumi_alicloud/rds/_inputs.py +146 -0
  65. pulumi_alicloud/rds/custom.py +1630 -0
  66. pulumi_alicloud/rds/custom_deployment_set.py +525 -0
  67. pulumi_alicloud/rds/outputs.py +105 -0
  68. pulumi_alicloud/redis/tair_instance.py +97 -78
  69. pulumi_alicloud/vpc/__init__.py +4 -0
  70. pulumi_alicloud/vpc/_inputs.py +54 -0
  71. pulumi_alicloud/vpc/ipam_ipam.py +531 -0
  72. pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
  73. pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
  74. pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
  75. pulumi_alicloud/vpc/nat_gateway.py +175 -14
  76. pulumi_alicloud/vpc/outputs.py +51 -0
  77. pulumi_alicloud/vpn/gateway_vco_route.py +68 -21
  78. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/METADATA +5 -5
  79. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/RECORD +81 -64
  80. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/WHEEL +1 -1
  81. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/top_level.txt +0 -0
@@ -1041,7 +1041,7 @@ class Key(pulumi.CustomResource):
1041
1041
 
1042
1042
  @property
1043
1043
  @pulumi.getter(name="dkmsInstanceId")
1044
- def dkms_instance_id(self) -> pulumi.Output[Optional[str]]:
1044
+ def dkms_instance_id(self) -> pulumi.Output[str]:
1045
1045
  """
1046
1046
  The ID of the KMS instance.
1047
1047
  """
@@ -42,8 +42,8 @@ class AccountArgs:
42
42
  - Normal: Common privilege.
43
43
  Default to Normal.
44
44
  :param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
45
- :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
46
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
45
+ :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
46
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
47
47
  """
48
48
  pulumi.set(__self__, "account_name", account_name)
49
49
  pulumi.set(__self__, "instance_id", instance_id)
@@ -143,7 +143,7 @@ class AccountArgs:
143
143
  @pulumi.getter(name="kmsEncryptedPassword")
144
144
  def kms_encrypted_password(self) -> Optional[pulumi.Input[str]]:
145
145
  """
146
- An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
146
+ An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
147
147
  """
148
148
  return pulumi.get(self, "kms_encrypted_password")
149
149
 
@@ -155,7 +155,7 @@ class AccountArgs:
155
155
  @pulumi.getter(name="kmsEncryptionContext")
156
156
  def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
157
157
  """
158
- An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
158
+ An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
159
159
  """
160
160
  return pulumi.get(self, "kms_encryption_context")
161
161
 
@@ -191,9 +191,9 @@ class _AccountState:
191
191
  Default to Normal.
192
192
  :param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
193
193
  :param pulumi.Input[str] instance_id: The Id of instance in which account belongs (The engine version of instance must be 4.0 or 4.0+).
194
- :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
195
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
196
- :param pulumi.Input[str] status: The status of KVStore Account.
194
+ :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
195
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
196
+ :param pulumi.Input[str] status: The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account.
197
197
  """
198
198
  if account_name is not None:
199
199
  pulumi.set(__self__, "account_name", account_name)
@@ -297,7 +297,7 @@ class _AccountState:
297
297
  @pulumi.getter(name="kmsEncryptedPassword")
298
298
  def kms_encrypted_password(self) -> Optional[pulumi.Input[str]]:
299
299
  """
300
- An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
300
+ An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
301
301
  """
302
302
  return pulumi.get(self, "kms_encrypted_password")
303
303
 
@@ -309,7 +309,7 @@ class _AccountState:
309
309
  @pulumi.getter(name="kmsEncryptionContext")
310
310
  def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
311
311
  """
312
- An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
312
+ An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
313
313
  """
314
314
  return pulumi.get(self, "kms_encryption_context")
315
315
 
@@ -321,7 +321,7 @@ class _AccountState:
321
321
  @pulumi.getter
322
322
  def status(self) -> Optional[pulumi.Input[str]]:
323
323
  """
324
- The status of KVStore Account.
324
+ The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account.
325
325
  """
326
326
  return pulumi.get(self, "status")
327
327
 
@@ -345,9 +345,9 @@ class Account(pulumi.CustomResource):
345
345
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
346
346
  __props__=None):
347
347
  """
348
- Provides a KVStore Account resource.
348
+ Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Account resource.
349
349
 
350
- For information about KVStore Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
350
+ For information about Tair (Redis OSS-Compatible) And Memcache (KVStore) Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
351
351
 
352
352
  > **NOTE:** Available since v1.66.0.
353
353
 
@@ -398,7 +398,7 @@ class Account(pulumi.CustomResource):
398
398
 
399
399
  ## Import
400
400
 
401
- KVStore account can be imported using the id, e.g.
401
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) account can be imported using the id, e.g.
402
402
 
403
403
  ```sh
404
404
  $ pulumi import alicloud:kvstore/account:Account example <instance_id>:<account_name>
@@ -419,8 +419,8 @@ class Account(pulumi.CustomResource):
419
419
  Default to Normal.
420
420
  :param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
421
421
  :param pulumi.Input[str] instance_id: The Id of instance in which account belongs (The engine version of instance must be 4.0 or 4.0+).
422
- :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
423
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
422
+ :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
423
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
424
424
  """
425
425
  ...
426
426
  @overload
@@ -429,9 +429,9 @@ class Account(pulumi.CustomResource):
429
429
  args: AccountArgs,
430
430
  opts: Optional[pulumi.ResourceOptions] = None):
431
431
  """
432
- Provides a KVStore Account resource.
432
+ Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Account resource.
433
433
 
434
- For information about KVStore Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
434
+ For information about Tair (Redis OSS-Compatible) And Memcache (KVStore) Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
435
435
 
436
436
  > **NOTE:** Available since v1.66.0.
437
437
 
@@ -482,7 +482,7 @@ class Account(pulumi.CustomResource):
482
482
 
483
483
  ## Import
484
484
 
485
- KVStore account can be imported using the id, e.g.
485
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) account can be imported using the id, e.g.
486
486
 
487
487
  ```sh
488
488
  $ pulumi import alicloud:kvstore/account:Account example <instance_id>:<account_name>
@@ -574,9 +574,9 @@ class Account(pulumi.CustomResource):
574
574
  Default to Normal.
575
575
  :param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
576
576
  :param pulumi.Input[str] instance_id: The Id of instance in which account belongs (The engine version of instance must be 4.0 or 4.0+).
577
- :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
578
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
579
- :param pulumi.Input[str] status: The status of KVStore Account.
577
+ :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
578
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
579
+ :param pulumi.Input[str] status: The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account.
580
580
  """
581
581
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
582
582
 
@@ -652,7 +652,7 @@ class Account(pulumi.CustomResource):
652
652
  @pulumi.getter(name="kmsEncryptedPassword")
653
653
  def kms_encrypted_password(self) -> pulumi.Output[Optional[str]]:
654
654
  """
655
- An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
655
+ An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (KVStore) account. If the `account_password` is filled in, this field will be ignored.
656
656
  """
657
657
  return pulumi.get(self, "kms_encrypted_password")
658
658
 
@@ -660,7 +660,7 @@ class Account(pulumi.CustomResource):
660
660
  @pulumi.getter(name="kmsEncryptionContext")
661
661
  def kms_encryption_context(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
662
662
  """
663
- An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
663
+ An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (KVStore) account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
664
664
  """
665
665
  return pulumi.get(self, "kms_encryption_context")
666
666
 
@@ -668,7 +668,7 @@ class Account(pulumi.CustomResource):
668
668
  @pulumi.getter
669
669
  def status(self) -> pulumi.Output[str]:
670
670
  """
671
- The status of KVStore Account.
671
+ The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account.
672
672
  """
673
673
  return pulumi.get(self, "status")
674
674
 
@@ -193,7 +193,7 @@ class AuditLogConfig(pulumi.CustomResource):
193
193
  retention: Optional[pulumi.Input[int]] = None,
194
194
  __props__=None):
195
195
  """
196
- Provides a Redis And Memcache (KVStore) Audit Log Config resource.
196
+ Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Audit Log Config resource.
197
197
 
198
198
  > **NOTE:** Available since v1.130.0.
199
199
 
@@ -244,7 +244,7 @@ class AuditLogConfig(pulumi.CustomResource):
244
244
 
245
245
  ## Import
246
246
 
247
- Redis And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
247
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
248
248
 
249
249
  ```sh
250
250
  $ pulumi import alicloud:kvstore/auditLogConfig:AuditLogConfig example <instance_id>
@@ -269,7 +269,7 @@ class AuditLogConfig(pulumi.CustomResource):
269
269
  args: AuditLogConfigArgs,
270
270
  opts: Optional[pulumi.ResourceOptions] = None):
271
271
  """
272
- Provides a Redis And Memcache (KVStore) Audit Log Config resource.
272
+ Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Audit Log Config resource.
273
273
 
274
274
  > **NOTE:** Available since v1.130.0.
275
275
 
@@ -320,7 +320,7 @@ class AuditLogConfig(pulumi.CustomResource):
320
320
 
321
321
  ## Import
322
322
 
323
- Redis And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
323
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
324
324
 
325
325
  ```sh
326
326
  $ pulumi import alicloud:kvstore/auditLogConfig:AuditLogConfig example <instance_id>
@@ -139,7 +139,7 @@ class BackupPolicy(pulumi.CustomResource):
139
139
  """
140
140
  > **DEPRECATED:** This resource has been deprecated from version `1.104.0`. Please use resource alicloud_kvstore_instance.
141
141
 
142
- Provides a backup policy for ApsaraDB Redis / Memcache instance resource.
142
+ Provides a backup policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) resource.
143
143
 
144
144
  ## Example Usage
145
145
 
@@ -210,7 +210,7 @@ class BackupPolicy(pulumi.CustomResource):
210
210
  """
211
211
  > **DEPRECATED:** This resource has been deprecated from version `1.104.0`. Please use resource alicloud_kvstore_instance.
212
212
 
213
- Provides a backup policy for ApsaraDB Redis / Memcache instance resource.
213
+ Provides a backup policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) resource.
214
214
 
215
215
  ## Example Usage
216
216
 
@@ -78,7 +78,7 @@ class _ConnectionState:
78
78
  port: Optional[pulumi.Input[str]] = None):
79
79
  """
80
80
  Input properties used for looking up and filtering Connection resources.
81
- :param pulumi.Input[str] connection_string: The public connection string of KVStore DBInstance.
81
+ :param pulumi.Input[str] connection_string: The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
82
82
  :param pulumi.Input[str] connection_string_prefix: The prefix of the public endpoint. The prefix can be 8 to 64 characters in length, and can contain lowercase letters and digits. It must start with a lowercase letter.
83
83
  :param pulumi.Input[str] instance_id: The ID of the instance.
84
84
  :param pulumi.Input[str] port: The service port number of the instance.
@@ -96,7 +96,7 @@ class _ConnectionState:
96
96
  @pulumi.getter(name="connectionString")
97
97
  def connection_string(self) -> Optional[pulumi.Input[str]]:
98
98
  """
99
- The public connection string of KVStore DBInstance.
99
+ The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
100
100
  """
101
101
  return pulumi.get(self, "connection_string")
102
102
 
@@ -151,7 +151,7 @@ class Connection(pulumi.CustomResource):
151
151
  port: Optional[pulumi.Input[str]] = None,
152
152
  __props__=None):
153
153
  """
154
- Operate the public network ip of the specified resource. How to use it, see [What is Resource Alicloud KVStore Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
154
+ Operate the public network ip of the specified resource. How to use it, see [What is Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
155
155
 
156
156
  > **NOTE:** Available since v1.101.0.
157
157
 
@@ -202,7 +202,7 @@ class Connection(pulumi.CustomResource):
202
202
 
203
203
  ## Import
204
204
 
205
- KVStore connection can be imported using the id, e.g.
205
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) connection can be imported using the id, e.g.
206
206
 
207
207
  ```sh
208
208
  $ pulumi import alicloud:kvstore/connection:Connection example r-abc12345678
@@ -221,7 +221,7 @@ class Connection(pulumi.CustomResource):
221
221
  args: ConnectionArgs,
222
222
  opts: Optional[pulumi.ResourceOptions] = None):
223
223
  """
224
- Operate the public network ip of the specified resource. How to use it, see [What is Resource Alicloud KVStore Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
224
+ Operate the public network ip of the specified resource. How to use it, see [What is Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
225
225
 
226
226
  > **NOTE:** Available since v1.101.0.
227
227
 
@@ -272,7 +272,7 @@ class Connection(pulumi.CustomResource):
272
272
 
273
273
  ## Import
274
274
 
275
- KVStore connection can be imported using the id, e.g.
275
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) connection can be imported using the id, e.g.
276
276
 
277
277
  ```sh
278
278
  $ pulumi import alicloud:kvstore/connection:Connection example r-abc12345678
@@ -336,7 +336,7 @@ class Connection(pulumi.CustomResource):
336
336
  :param str resource_name: The unique name of the resulting resource.
337
337
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
338
338
  :param pulumi.ResourceOptions opts: Options for the resource.
339
- :param pulumi.Input[str] connection_string: The public connection string of KVStore DBInstance.
339
+ :param pulumi.Input[str] connection_string: The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
340
340
  :param pulumi.Input[str] connection_string_prefix: The prefix of the public endpoint. The prefix can be 8 to 64 characters in length, and can contain lowercase letters and digits. It must start with a lowercase letter.
341
341
  :param pulumi.Input[str] instance_id: The ID of the instance.
342
342
  :param pulumi.Input[str] port: The service port number of the instance.
@@ -355,7 +355,7 @@ class Connection(pulumi.CustomResource):
355
355
  @pulumi.getter(name="connectionString")
356
356
  def connection_string(self) -> pulumi.Output[str]:
357
357
  """
358
- The public connection string of KVStore DBInstance.
358
+ The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
359
359
  """
360
360
  return pulumi.get(self, "connection_string")
361
361
 
@@ -129,7 +129,7 @@ def get_accounts(account_name: Optional[str] = None,
129
129
  status: Optional[str] = None,
130
130
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountsResult:
131
131
  """
132
- This data source provides the KVStore Accounts of the current Alibaba Cloud user.
132
+ This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Accounts of the current Alibaba Cloud user.
133
133
 
134
134
  > **NOTE:** Available in v1.102.0+.
135
135
 
@@ -149,7 +149,7 @@ def get_accounts(account_name: Optional[str] = None,
149
149
  :param str account_name: The name of the account.
150
150
  :param str instance_id: The Id of instance in which account belongs.
151
151
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
152
- :param str status: The status of KVStore Account. Valid Values: `"Available` `Unavailable`
152
+ :param str status: The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account. Valid Values: `"Available` `Unavailable`
153
153
  """
154
154
  __args__ = dict()
155
155
  __args__['accountName'] = account_name
@@ -177,7 +177,7 @@ def get_accounts_output(account_name: Optional[pulumi.Input[Optional[str]]] = No
177
177
  status: Optional[pulumi.Input[Optional[str]]] = None,
178
178
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAccountsResult]:
179
179
  """
180
- This data source provides the KVStore Accounts of the current Alibaba Cloud user.
180
+ This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Accounts of the current Alibaba Cloud user.
181
181
 
182
182
  > **NOTE:** Available in v1.102.0+.
183
183
 
@@ -197,7 +197,7 @@ def get_accounts_output(account_name: Optional[pulumi.Input[Optional[str]]] = No
197
197
  :param str account_name: The name of the account.
198
198
  :param str instance_id: The Id of instance in which account belongs.
199
199
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
200
- :param str status: The status of KVStore Account. Valid Values: `"Available` `Unavailable`
200
+ :param str status: The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account. Valid Values: `"Available` `Unavailable`
201
201
  """
202
202
  __args__ = dict()
203
203
  __args__['accountName'] = account_name
@@ -61,7 +61,7 @@ class GetConnectionsResult:
61
61
  @pulumi.getter
62
62
  def ids(self) -> str:
63
63
  """
64
- A list of KVStore DBInstance ids.
64
+ A list of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance ids.
65
65
  """
66
66
  return pulumi.get(self, "ids")
67
67
 
@@ -87,7 +87,7 @@ def get_connections(ids: Optional[str] = None,
87
87
  output_file: Optional[str] = None,
88
88
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConnectionsResult:
89
89
  """
90
- This data source can query the public IP of the specified KVStore DBInstance.
90
+ This data source can query the public IP of the specified Tair (Redis OSS-Compatible) And Memcache (KVStore).
91
91
 
92
92
  > **NOTE:** Available in v1.101.0+.
93
93
 
@@ -103,7 +103,7 @@ def get_connections(ids: Optional[str] = None,
103
103
  ```
104
104
 
105
105
 
106
- :param str ids: A list of KVStore DBInstance ids, only support one item.
106
+ :param str ids: A list of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance ids, only support one item.
107
107
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
108
108
  """
109
109
  __args__ = dict()
@@ -121,7 +121,7 @@ def get_connections_output(ids: Optional[pulumi.Input[str]] = None,
121
121
  output_file: Optional[pulumi.Input[Optional[str]]] = None,
122
122
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConnectionsResult]:
123
123
  """
124
- This data source can query the public IP of the specified KVStore DBInstance.
124
+ This data source can query the public IP of the specified Tair (Redis OSS-Compatible) And Memcache (KVStore).
125
125
 
126
126
  > **NOTE:** Available in v1.101.0+.
127
127
 
@@ -137,7 +137,7 @@ def get_connections_output(ids: Optional[pulumi.Input[str]] = None,
137
137
  ```
138
138
 
139
139
 
140
- :param str ids: A list of KVStore DBInstance ids, only support one item.
140
+ :param str ids: A list of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance ids, only support one item.
141
141
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
142
142
  """
143
143
  __args__ = dict()
@@ -229,7 +229,7 @@ def get_instance_classes(architecture: Optional[str] = None,
229
229
  zone_id: Optional[str] = None,
230
230
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInstanceClassesResult:
231
231
  """
232
- This data source provides the KVStore instance classes resource available info of Alibaba Cloud.
232
+ This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance classes resource available info of Alibaba Cloud.
233
233
 
234
234
  > **NOTE:** Available since v1.49.0+
235
235
 
@@ -249,22 +249,22 @@ def get_instance_classes(architecture: Optional[str] = None,
249
249
  ```
250
250
 
251
251
 
252
- :param str architecture: The KVStore instance system architecture required by the user. Valid values: `standard`, `cluster` and `rwsplit`.
253
- :param str edition_type: The KVStore instance edition type required by the user. Valid values: `Community` and `Enterprise`.
252
+ :param str architecture: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values: `standard`, `cluster` and `rwsplit`.
253
+ :param str edition_type: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values: `Community` and `Enterprise`.
254
254
  :param str engine: Database type. Options are `Redis`, `Memcache`. Default to `Redis`.
255
255
  :param str engine_version: Database version required by the user. Value options of Redis can refer to the latest docs [detail info](https://www.alibabacloud.com/help/doc-detail/60873.htm) `EngineVersion`. Value of Memcache should be empty.
256
256
  :param str instance_charge_type: Filter the results by charge type. Valid values: `PrePaid` and `PostPaid`. Default to `PrePaid`.
257
- :param str node_type: The KVStore instance node type required by the user. Valid values: `double`, `single`, `readone`, `readthree` and `readfive`.
257
+ :param str node_type: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values: `double`, `single`, `readone`, `readthree` and `readfive`.
258
258
  :param str output_file: File name where to save data source results (after running `pulumi up`).
259
259
  :param str package_type: It has been deprecated from 1.68.0.
260
260
  :param str performance_type: It has been deprecated from 1.68.0.
261
- :param str series_type: The KVStore instance series type required by the user. Valid values: `enhanced_performance_type` and `hybrid_storage`.
261
+ :param str series_type: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values: `enhanced_performance_type` and `hybrid_storage`.
262
262
  :param int shard_number: The number of shard.Valid values: `1`, `2`, `4`, `8`, `16`, `32`, `64`, `128`, `256`.
263
263
  * product_type - (Optional, Available since 1.130.0) The type of the service. Valid values:
264
264
  * Local: an ApsaraDB for Redis instance with a local disk.
265
265
  * OnECS: an ApsaraDB for Redis instance with a standard disk. This type is available only on the Alibaba Cloud China site.
266
266
  :param str storage_type: It has been deprecated from 1.68.0.
267
- :param str zone_id: The Zone to launch the KVStore instance.
267
+ :param str zone_id: The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
268
268
  """
269
269
  __args__ = dict()
270
270
  __args__['architecture'] = architecture
@@ -321,7 +321,7 @@ def get_instance_classes_output(architecture: Optional[pulumi.Input[Optional[str
321
321
  zone_id: Optional[pulumi.Input[str]] = None,
322
322
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetInstanceClassesResult]:
323
323
  """
324
- This data source provides the KVStore instance classes resource available info of Alibaba Cloud.
324
+ This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance classes resource available info of Alibaba Cloud.
325
325
 
326
326
  > **NOTE:** Available since v1.49.0+
327
327
 
@@ -341,22 +341,22 @@ def get_instance_classes_output(architecture: Optional[pulumi.Input[Optional[str
341
341
  ```
342
342
 
343
343
 
344
- :param str architecture: The KVStore instance system architecture required by the user. Valid values: `standard`, `cluster` and `rwsplit`.
345
- :param str edition_type: The KVStore instance edition type required by the user. Valid values: `Community` and `Enterprise`.
344
+ :param str architecture: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values: `standard`, `cluster` and `rwsplit`.
345
+ :param str edition_type: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values: `Community` and `Enterprise`.
346
346
  :param str engine: Database type. Options are `Redis`, `Memcache`. Default to `Redis`.
347
347
  :param str engine_version: Database version required by the user. Value options of Redis can refer to the latest docs [detail info](https://www.alibabacloud.com/help/doc-detail/60873.htm) `EngineVersion`. Value of Memcache should be empty.
348
348
  :param str instance_charge_type: Filter the results by charge type. Valid values: `PrePaid` and `PostPaid`. Default to `PrePaid`.
349
- :param str node_type: The KVStore instance node type required by the user. Valid values: `double`, `single`, `readone`, `readthree` and `readfive`.
349
+ :param str node_type: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values: `double`, `single`, `readone`, `readthree` and `readfive`.
350
350
  :param str output_file: File name where to save data source results (after running `pulumi up`).
351
351
  :param str package_type: It has been deprecated from 1.68.0.
352
352
  :param str performance_type: It has been deprecated from 1.68.0.
353
- :param str series_type: The KVStore instance series type required by the user. Valid values: `enhanced_performance_type` and `hybrid_storage`.
353
+ :param str series_type: The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values: `enhanced_performance_type` and `hybrid_storage`.
354
354
  :param int shard_number: The number of shard.Valid values: `1`, `2`, `4`, `8`, `16`, `32`, `64`, `128`, `256`.
355
355
  * product_type - (Optional, Available since 1.130.0) The type of the service. Valid values:
356
356
  * Local: an ApsaraDB for Redis instance with a local disk.
357
357
  * OnECS: an ApsaraDB for Redis instance with a standard disk. This type is available only on the Alibaba Cloud China site.
358
358
  :param str storage_type: It has been deprecated from 1.68.0.
359
- :param str zone_id: The Zone to launch the KVStore instance.
359
+ :param str zone_id: The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
360
360
  """
361
361
  __args__ = dict()
362
362
  __args__['architecture'] = architecture
@@ -62,7 +62,7 @@ class GetInstanceEnginesResult:
62
62
  @pulumi.getter(name="engineVersion")
63
63
  def engine_version(self) -> Optional[str]:
64
64
  """
65
- KVStore Instance version.
65
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance version.
66
66
  """
67
67
  return pulumi.get(self, "engine_version")
68
68
 
@@ -83,7 +83,7 @@ class GetInstanceEnginesResult:
83
83
  @pulumi.getter(name="instanceEngines")
84
84
  def instance_engines(self) -> Sequence['outputs.GetInstanceEnginesInstanceEngineResult']:
85
85
  """
86
- A list of KVStore available instance engines. Each element contains the following attributes:
86
+ A list of Tair (Redis OSS-Compatible) And Memcache (KVStore) available instance engines. Each element contains the following attributes:
87
87
  """
88
88
  return pulumi.get(self, "instance_engines")
89
89
 
@@ -96,7 +96,7 @@ class GetInstanceEnginesResult:
96
96
  @pulumi.getter(name="zoneId")
97
97
  def zone_id(self) -> str:
98
98
  """
99
- The Zone to launch the KVStore instance.
99
+ The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
100
100
  """
101
101
  return pulumi.get(self, "zone_id")
102
102
 
@@ -123,7 +123,7 @@ def get_instance_engines(engine: Optional[str] = None,
123
123
  zone_id: Optional[str] = None,
124
124
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInstanceEnginesResult:
125
125
  """
126
- This data source provides the KVStore instance engines resource available info of Alibaba Cloud.
126
+ This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance engines resource available info of Alibaba Cloud.
127
127
 
128
128
  > **NOTE:** Available since v1.51.0
129
129
 
@@ -147,7 +147,7 @@ def get_instance_engines(engine: Optional[str] = None,
147
147
  :param str engine_version: Database version required by the user. Value options of Redis can refer to the latest docs [detail info](https://www.alibabacloud.com/help/doc-detail/60873.htm) `EngineVersion`. Value of Memcache should be empty.
148
148
  :param str instance_charge_type: Filter the results by charge type. Valid values: `PrePaid` and `PostPaid`. Default to `PrePaid`.
149
149
  :param str output_file: File name where to save data source results (after running `pulumi up`).
150
- :param str zone_id: The Zone to launch the KVStore instance.
150
+ :param str zone_id: The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
151
151
  """
152
152
  __args__ = dict()
153
153
  __args__['engine'] = engine
@@ -173,7 +173,7 @@ def get_instance_engines_output(engine: Optional[pulumi.Input[Optional[str]]] =
173
173
  zone_id: Optional[pulumi.Input[str]] = None,
174
174
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetInstanceEnginesResult]:
175
175
  """
176
- This data source provides the KVStore instance engines resource available info of Alibaba Cloud.
176
+ This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance engines resource available info of Alibaba Cloud.
177
177
 
178
178
  > **NOTE:** Available since v1.51.0
179
179
 
@@ -197,7 +197,7 @@ def get_instance_engines_output(engine: Optional[pulumi.Input[Optional[str]]] =
197
197
  :param str engine_version: Database version required by the user. Value options of Redis can refer to the latest docs [detail info](https://www.alibabacloud.com/help/doc-detail/60873.htm) `EngineVersion`. Value of Memcache should be empty.
198
198
  :param str instance_charge_type: Filter the results by charge type. Valid values: `PrePaid` and `PostPaid`. Default to `PrePaid`.
199
199
  :param str output_file: File name where to save data source results (after running `pulumi up`).
200
- :param str zone_id: The Zone to launch the KVStore instance.
200
+ :param str zone_id: The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
201
201
  """
202
202
  __args__ = dict()
203
203
  __args__['engine'] = engine
@@ -73,11 +73,11 @@ class AwaitableGetPermissionResult(GetPermissionResult):
73
73
  def get_permission(enable: Optional[str] = None,
74
74
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPermissionResult:
75
75
  """
76
- Assigns a RAM role to ApsaraDB for Redis.
76
+ Assigns a RAM role to Tair (Redis OSS-Compatible) And Memcache (KVStore).
77
77
 
78
- The log management feature of ApsaraDB for Redis requires the resources of [Log Service](https://www.alibabacloud.com/help/doc-detail/48869.htm).
79
- To use the log management feature of ApsaraDB for Redis, you can call this operation to associate the RAM role named AliyunServiceRoleForKvstore with the ApsaraDB for Redis instance.
80
- For more information, see [Associated RAM roles of ApsaraDB for Redis](https://www.alibabacloud.com/help/doc-detail/184337.htm)
78
+ The log management feature of Tair (Redis OSS-Compatible) And Memcache (KVStore) requires the resources of [Log Service](https://www.alibabacloud.com/help/doc-detail/48869.htm).
79
+ To use the log management feature of Tair (Redis OSS-Compatible) And Memcache (KVStore), you can call this operation to associate the RAM role named AliyunServiceRoleForKvstore with the Tair (Redis OSS-Compatible) And Memcache (KVStore) instance.
80
+ For more information, see [Associated RAM roles of Tair (Redis OSS-Compatible) And Memcache (KVStore)](https://www.alibabacloud.com/help/doc-detail/184337.htm)
81
81
 
82
82
  > **NOTE:** Available since v1.128.0
83
83
 
@@ -91,7 +91,7 @@ def get_permission(enable: Optional[str] = None,
91
91
  ```
92
92
 
93
93
 
94
- :param str enable: Setting the value to `On` to assigns a RAM role to ApsaraDB for Redis. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
94
+ :param str enable: Setting the value to `On` to assigns a RAM role to Tair (Redis OSS-Compatible) And Memcache (KVStore). If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
95
95
  """
96
96
  __args__ = dict()
97
97
  __args__['enable'] = enable
@@ -105,11 +105,11 @@ def get_permission(enable: Optional[str] = None,
105
105
  def get_permission_output(enable: Optional[pulumi.Input[Optional[str]]] = None,
106
106
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPermissionResult]:
107
107
  """
108
- Assigns a RAM role to ApsaraDB for Redis.
108
+ Assigns a RAM role to Tair (Redis OSS-Compatible) And Memcache (KVStore).
109
109
 
110
- The log management feature of ApsaraDB for Redis requires the resources of [Log Service](https://www.alibabacloud.com/help/doc-detail/48869.htm).
111
- To use the log management feature of ApsaraDB for Redis, you can call this operation to associate the RAM role named AliyunServiceRoleForKvstore with the ApsaraDB for Redis instance.
112
- For more information, see [Associated RAM roles of ApsaraDB for Redis](https://www.alibabacloud.com/help/doc-detail/184337.htm)
110
+ The log management feature of Tair (Redis OSS-Compatible) And Memcache (KVStore) requires the resources of [Log Service](https://www.alibabacloud.com/help/doc-detail/48869.htm).
111
+ To use the log management feature of Tair (Redis OSS-Compatible) And Memcache (KVStore), you can call this operation to associate the RAM role named AliyunServiceRoleForKvstore with the Tair (Redis OSS-Compatible) And Memcache (KVStore) instance.
112
+ For more information, see [Associated RAM roles of Tair (Redis OSS-Compatible) And Memcache (KVStore)](https://www.alibabacloud.com/help/doc-detail/184337.htm)
113
113
 
114
114
  > **NOTE:** Available since v1.128.0
115
115
 
@@ -123,7 +123,7 @@ def get_permission_output(enable: Optional[pulumi.Input[Optional[str]]] = None,
123
123
  ```
124
124
 
125
125
 
126
- :param str enable: Setting the value to `On` to assigns a RAM role to ApsaraDB for Redis. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
126
+ :param str enable: Setting the value to `On` to assigns a RAM role to Tair (Redis OSS-Compatible) And Memcache (KVStore). If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
127
127
  """
128
128
  __args__ = dict()
129
129
  __args__['enable'] = enable
@@ -126,7 +126,7 @@ def get_zones(engine: Optional[str] = None,
126
126
  product_type: Optional[str] = None,
127
127
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetZonesResult:
128
128
  """
129
- This data source provides availability zones for KVStore that can be accessed by an Alibaba Cloud account within the region configured in the provider.
129
+ This data source provides availability zones for Tair (Redis OSS-Compatible) And Memcache (KVStore) that can be accessed by an Alibaba Cloud account within the region configured in the provider.
130
130
 
131
131
  > **NOTE:** Available since v1.73.0.
132
132
 
@@ -144,7 +144,7 @@ def get_zones(engine: Optional[str] = None,
144
144
  :param str engine: Database type. Options are `Redis`, `Memcache`. Default to `Redis`.
145
145
  * product_type - (Optional, Available since v1.130.0+) The type of the service. Valid values: `Local`, `Tair_rdb`, `Tair_scm`, `Tair_essd`, `OnECS`.
146
146
  :param str instance_charge_type: Filter the results by a specific instance charge type. Valid values: `PrePaid` and `PostPaid`. Default to `PostPaid`.
147
- :param bool multi: Indicate whether the zones can be used in a multi AZ configuration. Default to `false`. Multi AZ is usually used to launch KVStore instances.
147
+ :param bool multi: Indicate whether the zones can be used in a multi AZ configuration. Default to `false`. Multi AZ is usually used to launch Tair (Redis OSS-Compatible) And Memcache (KVStore) instances.
148
148
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
149
149
  """
150
150
  __args__ = dict()
@@ -172,7 +172,7 @@ def get_zones_output(engine: Optional[pulumi.Input[Optional[str]]] = None,
172
172
  product_type: Optional[pulumi.Input[Optional[str]]] = None,
173
173
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetZonesResult]:
174
174
  """
175
- This data source provides availability zones for KVStore that can be accessed by an Alibaba Cloud account within the region configured in the provider.
175
+ This data source provides availability zones for Tair (Redis OSS-Compatible) And Memcache (KVStore) that can be accessed by an Alibaba Cloud account within the region configured in the provider.
176
176
 
177
177
  > **NOTE:** Available since v1.73.0.
178
178
 
@@ -190,7 +190,7 @@ def get_zones_output(engine: Optional[pulumi.Input[Optional[str]]] = None,
190
190
  :param str engine: Database type. Options are `Redis`, `Memcache`. Default to `Redis`.
191
191
  * product_type - (Optional, Available since v1.130.0+) The type of the service. Valid values: `Local`, `Tair_rdb`, `Tair_scm`, `Tair_essd`, `OnECS`.
192
192
  :param str instance_charge_type: Filter the results by a specific instance charge type. Valid values: `PrePaid` and `PostPaid`. Default to `PostPaid`.
193
- :param bool multi: Indicate whether the zones can be used in a multi AZ configuration. Default to `false`. Multi AZ is usually used to launch KVStore instances.
193
+ :param bool multi: Indicate whether the zones can be used in a multi AZ configuration. Default to `false`. Multi AZ is usually used to launch Tair (Redis OSS-Compatible) And Memcache (KVStore) instances.
194
194
  :param str output_file: File name where to save data source results (after running `pulumi preview`).
195
195
  """
196
196
  __args__ = dict()
@@ -295,7 +295,7 @@ class GetInstanceEnginesInstanceEngineResult(dict):
295
295
  """
296
296
  :param str engine: Database type. Options are `Redis`, `Memcache`. Default to `Redis`.
297
297
  :param str engine_version: Database version required by the user. Value options of Redis can refer to the latest docs [detail info](https://www.alibabacloud.com/help/doc-detail/60873.htm) `EngineVersion`. Value of Memcache should be empty.
298
- :param str zone_id: The Zone to launch the KVStore instance.
298
+ :param str zone_id: The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
299
299
  """
300
300
  pulumi.set(__self__, "engine", engine)
301
301
  pulumi.set(__self__, "engine_version", engine_version)
@@ -321,7 +321,7 @@ class GetInstanceEnginesInstanceEngineResult(dict):
321
321
  @pulumi.getter(name="zoneId")
322
322
  def zone_id(self) -> str:
323
323
  """
324
- The Zone to launch the KVStore instance.
324
+ The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
325
325
  """
326
326
  return pulumi.get(self, "zone_id")
327
327