pulumi-alicloud 3.71.0__py3-none-any.whl → 3.71.0a1735017309__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.

@@ -193,14 +193,12 @@ class SnapshotArgs:
193
193
  class _SnapshotState:
194
194
  def __init__(__self__, *,
195
195
  category: Optional[pulumi.Input[str]] = None,
196
- create_time: Optional[pulumi.Input[str]] = None,
197
196
  description: Optional[pulumi.Input[str]] = None,
198
197
  disk_id: Optional[pulumi.Input[str]] = None,
199
198
  force: Optional[pulumi.Input[bool]] = None,
200
199
  instant_access: Optional[pulumi.Input[bool]] = None,
201
200
  instant_access_retention_days: Optional[pulumi.Input[int]] = None,
202
201
  name: Optional[pulumi.Input[str]] = None,
203
- region_id: Optional[pulumi.Input[str]] = None,
204
202
  resource_group_id: Optional[pulumi.Input[str]] = None,
205
203
  retention_days: Optional[pulumi.Input[int]] = None,
206
204
  snapshot_name: Optional[pulumi.Input[str]] = None,
@@ -217,8 +215,6 @@ class _SnapshotState:
217
215
  """
218
216
  if category is not None:
219
217
  pulumi.set(__self__, "category", category)
220
- if create_time is not None:
221
- pulumi.set(__self__, "create_time", create_time)
222
218
  if description is not None:
223
219
  pulumi.set(__self__, "description", description)
224
220
  if disk_id is not None:
@@ -240,8 +236,6 @@ class _SnapshotState:
240
236
  pulumi.log.warn("""name is deprecated: Field `name` has been deprecated from provider version 1.120.0. New field `snapshot_name` instead.""")
241
237
  if name is not None:
242
238
  pulumi.set(__self__, "name", name)
243
- if region_id is not None:
244
- pulumi.set(__self__, "region_id", region_id)
245
239
  if resource_group_id is not None:
246
240
  pulumi.set(__self__, "resource_group_id", resource_group_id)
247
241
  if retention_days is not None:
@@ -262,15 +256,6 @@ class _SnapshotState:
262
256
  def category(self, value: Optional[pulumi.Input[str]]):
263
257
  pulumi.set(self, "category", value)
264
258
 
265
- @property
266
- @pulumi.getter(name="createTime")
267
- def create_time(self) -> Optional[pulumi.Input[str]]:
268
- return pulumi.get(self, "create_time")
269
-
270
- @create_time.setter
271
- def create_time(self, value: Optional[pulumi.Input[str]]):
272
- pulumi.set(self, "create_time", value)
273
-
274
259
  @property
275
260
  @pulumi.getter
276
261
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -338,15 +323,6 @@ class _SnapshotState:
338
323
  def name(self, value: Optional[pulumi.Input[str]]):
339
324
  pulumi.set(self, "name", value)
340
325
 
341
- @property
342
- @pulumi.getter(name="regionId")
343
- def region_id(self) -> Optional[pulumi.Input[str]]:
344
- return pulumi.get(self, "region_id")
345
-
346
- @region_id.setter
347
- def region_id(self, value: Optional[pulumi.Input[str]]):
348
- pulumi.set(self, "region_id", value)
349
-
350
326
  @property
351
327
  @pulumi.getter(name="resourceGroupId")
352
328
  def resource_group_id(self) -> Optional[pulumi.Input[str]]:
@@ -539,8 +515,6 @@ class Snapshot(pulumi.CustomResource):
539
515
  __props__.__dict__["retention_days"] = retention_days
540
516
  __props__.__dict__["snapshot_name"] = snapshot_name
541
517
  __props__.__dict__["tags"] = tags
542
- __props__.__dict__["create_time"] = None
543
- __props__.__dict__["region_id"] = None
544
518
  __props__.__dict__["status"] = None
545
519
  super(Snapshot, __self__).__init__(
546
520
  'alicloud:ecs/snapshot:Snapshot',
@@ -553,14 +527,12 @@ class Snapshot(pulumi.CustomResource):
553
527
  id: pulumi.Input[str],
554
528
  opts: Optional[pulumi.ResourceOptions] = None,
555
529
  category: Optional[pulumi.Input[str]] = None,
556
- create_time: Optional[pulumi.Input[str]] = None,
557
530
  description: Optional[pulumi.Input[str]] = None,
558
531
  disk_id: Optional[pulumi.Input[str]] = None,
559
532
  force: Optional[pulumi.Input[bool]] = None,
560
533
  instant_access: Optional[pulumi.Input[bool]] = None,
561
534
  instant_access_retention_days: Optional[pulumi.Input[int]] = None,
562
535
  name: Optional[pulumi.Input[str]] = None,
563
- region_id: Optional[pulumi.Input[str]] = None,
564
536
  resource_group_id: Optional[pulumi.Input[str]] = None,
565
537
  retention_days: Optional[pulumi.Input[int]] = None,
566
538
  snapshot_name: Optional[pulumi.Input[str]] = None,
@@ -585,14 +557,12 @@ class Snapshot(pulumi.CustomResource):
585
557
  __props__ = _SnapshotState.__new__(_SnapshotState)
586
558
 
587
559
  __props__.__dict__["category"] = category
588
- __props__.__dict__["create_time"] = create_time
589
560
  __props__.__dict__["description"] = description
590
561
  __props__.__dict__["disk_id"] = disk_id
591
562
  __props__.__dict__["force"] = force
592
563
  __props__.__dict__["instant_access"] = instant_access
593
564
  __props__.__dict__["instant_access_retention_days"] = instant_access_retention_days
594
565
  __props__.__dict__["name"] = name
595
- __props__.__dict__["region_id"] = region_id
596
566
  __props__.__dict__["resource_group_id"] = resource_group_id
597
567
  __props__.__dict__["retention_days"] = retention_days
598
568
  __props__.__dict__["snapshot_name"] = snapshot_name
@@ -605,11 +575,6 @@ class Snapshot(pulumi.CustomResource):
605
575
  def category(self) -> pulumi.Output[str]:
606
576
  return pulumi.get(self, "category")
607
577
 
608
- @property
609
- @pulumi.getter(name="createTime")
610
- def create_time(self) -> pulumi.Output[str]:
611
- return pulumi.get(self, "create_time")
612
-
613
578
  @property
614
579
  @pulumi.getter
615
580
  def description(self) -> pulumi.Output[Optional[str]]:
@@ -653,11 +618,6 @@ class Snapshot(pulumi.CustomResource):
653
618
  """
654
619
  return pulumi.get(self, "name")
655
620
 
656
- @property
657
- @pulumi.getter(name="regionId")
658
- def region_id(self) -> pulumi.Output[str]:
659
- return pulumi.get(self, "region_id")
660
-
661
621
  @property
662
622
  @pulumi.getter(name="resourceGroupId")
663
623
  def resource_group_id(self) -> pulumi.Output[Optional[str]]:
@@ -224,8 +224,6 @@ class RamDirectory(pulumi.CustomResource):
224
224
 
225
225
  > **NOTE:** Available since v1.174.0.
226
226
 
227
- > **DEPRECATED:** This resource has been deprecated from version `1.239.0`.
228
-
229
227
  ## Example Usage
230
228
 
231
229
  Basic Usage
@@ -283,8 +281,6 @@ class RamDirectory(pulumi.CustomResource):
283
281
 
284
282
  > **NOTE:** Available since v1.174.0.
285
283
 
286
- > **DEPRECATED:** This resource has been deprecated from version `1.239.0`.
287
-
288
284
  ## Example Usage
289
285
 
290
286
  Basic Usage
@@ -17,7 +17,6 @@ from .get_virtual_physical_connections import *
17
17
  from .grant_rule_to_cen import *
18
18
  from .physical_connection import *
19
19
  from .router_express_connect_router import *
20
- from .router_grant_association import *
21
20
  from .router_interface import *
22
21
  from .router_tr_association import *
23
22
  from .router_vbr_child_instance import *
@@ -25,8 +25,8 @@ class BackupPolicyArgs:
25
25
  """
26
26
  The set of arguments for constructing a BackupPolicy resource.
27
27
  :param pulumi.Input[str] instance_id: The id of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
28
- :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
29
- :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z.
28
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
29
+ :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z
30
30
  """
31
31
  pulumi.set(__self__, "instance_id", instance_id)
32
32
  if backup_periods is not None:
@@ -50,7 +50,7 @@ class BackupPolicyArgs:
50
50
  @pulumi.getter(name="backupPeriods")
51
51
  def backup_periods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
52
52
  """
53
- Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
53
+ Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
54
54
  """
55
55
  return pulumi.get(self, "backup_periods")
56
56
 
@@ -62,7 +62,7 @@ class BackupPolicyArgs:
62
62
  @pulumi.getter(name="backupTime")
63
63
  def backup_time(self) -> Optional[pulumi.Input[str]]:
64
64
  """
65
- Backup time, in the format of HH:mmZ- HH:mm Z.
65
+ Backup time, in the format of HH:mmZ- HH:mm Z
66
66
  """
67
67
  return pulumi.get(self, "backup_time")
68
68
 
@@ -79,8 +79,8 @@ class _BackupPolicyState:
79
79
  instance_id: Optional[pulumi.Input[str]] = None):
80
80
  """
81
81
  Input properties used for looking up and filtering BackupPolicy resources.
82
- :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
83
- :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z.
82
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
83
+ :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z
84
84
  :param pulumi.Input[str] instance_id: The id of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
85
85
  """
86
86
  if backup_periods is not None:
@@ -94,7 +94,7 @@ class _BackupPolicyState:
94
94
  @pulumi.getter(name="backupPeriods")
95
95
  def backup_periods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
96
96
  """
97
- Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
97
+ Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
98
98
  """
99
99
  return pulumi.get(self, "backup_periods")
100
100
 
@@ -106,7 +106,7 @@ class _BackupPolicyState:
106
106
  @pulumi.getter(name="backupTime")
107
107
  def backup_time(self) -> Optional[pulumi.Input[str]]:
108
108
  """
109
- Backup time, in the format of HH:mmZ- HH:mm Z.
109
+ Backup time, in the format of HH:mmZ- HH:mm Z
110
110
  """
111
111
  return pulumi.get(self, "backup_time")
112
112
 
@@ -137,14 +137,10 @@ class BackupPolicy(pulumi.CustomResource):
137
137
  instance_id: Optional[pulumi.Input[str]] = None,
138
138
  __props__=None):
139
139
  """
140
- Provides a Backup Policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) resource.
141
-
142
- For information about Backup Policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) and how to use it, see [What is Backup Policy](https://www.alibabacloud.com/help/en/redis/developer-reference/api-r-kvstore-2015-01-01-modifybackuppolicy-redis).
143
-
144
- > **NOTE:** Available since v1.15.0.
145
-
146
140
  > **DEPRECATED:** This resource has been deprecated from version `1.104.0`. Please use resource alicloud_kvstore_instance.
147
141
 
142
+ Provides a backup policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) resource.
143
+
148
144
  ## Example Usage
149
145
 
150
146
  Basic Usage
@@ -156,7 +152,7 @@ class BackupPolicy(pulumi.CustomResource):
156
152
  config = pulumi.Config()
157
153
  name = config.get("name")
158
154
  if name is None:
159
- name = "terraform-example"
155
+ name = "kvstorebackuppolicyvpc"
160
156
  default = alicloud.kvstore.get_zones()
161
157
  default_network = alicloud.vpc.Network("default",
162
158
  vpc_name=name,
@@ -193,16 +189,16 @@ class BackupPolicy(pulumi.CustomResource):
193
189
 
194
190
  ## Import
195
191
 
196
- Tair (Redis OSS-Compatible) And Memcache (KVStore) Backup Policy can be imported using the id, e.g.
192
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) backup policy can be imported using the id, e.g.
197
193
 
198
194
  ```sh
199
- $ pulumi import alicloud:kvstore/backupPolicy:BackupPolicy example <id>
195
+ $ pulumi import alicloud:kvstore/backupPolicy:BackupPolicy example r-abc12345678
200
196
  ```
201
197
 
202
198
  :param str resource_name: The name of the resource.
203
199
  :param pulumi.ResourceOptions opts: Options for the resource.
204
- :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
205
- :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z.
200
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
201
+ :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z
206
202
  :param pulumi.Input[str] instance_id: The id of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
207
203
  """
208
204
  ...
@@ -212,14 +208,10 @@ class BackupPolicy(pulumi.CustomResource):
212
208
  args: BackupPolicyArgs,
213
209
  opts: Optional[pulumi.ResourceOptions] = None):
214
210
  """
215
- Provides a Backup Policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) resource.
216
-
217
- For information about Backup Policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) and how to use it, see [What is Backup Policy](https://www.alibabacloud.com/help/en/redis/developer-reference/api-r-kvstore-2015-01-01-modifybackuppolicy-redis).
218
-
219
- > **NOTE:** Available since v1.15.0.
220
-
221
211
  > **DEPRECATED:** This resource has been deprecated from version `1.104.0`. Please use resource alicloud_kvstore_instance.
222
212
 
213
+ Provides a backup policy for Tair (Redis OSS-Compatible) And Memcache (KVStore) resource.
214
+
223
215
  ## Example Usage
224
216
 
225
217
  Basic Usage
@@ -231,7 +223,7 @@ class BackupPolicy(pulumi.CustomResource):
231
223
  config = pulumi.Config()
232
224
  name = config.get("name")
233
225
  if name is None:
234
- name = "terraform-example"
226
+ name = "kvstorebackuppolicyvpc"
235
227
  default = alicloud.kvstore.get_zones()
236
228
  default_network = alicloud.vpc.Network("default",
237
229
  vpc_name=name,
@@ -268,10 +260,10 @@ class BackupPolicy(pulumi.CustomResource):
268
260
 
269
261
  ## Import
270
262
 
271
- Tair (Redis OSS-Compatible) And Memcache (KVStore) Backup Policy can be imported using the id, e.g.
263
+ Tair (Redis OSS-Compatible) And Memcache (KVStore) backup policy can be imported using the id, e.g.
272
264
 
273
265
  ```sh
274
- $ pulumi import alicloud:kvstore/backupPolicy:BackupPolicy example <id>
266
+ $ pulumi import alicloud:kvstore/backupPolicy:BackupPolicy example r-abc12345678
275
267
  ```
276
268
 
277
269
  :param str resource_name: The name of the resource.
@@ -326,8 +318,8 @@ class BackupPolicy(pulumi.CustomResource):
326
318
  :param str resource_name: The unique name of the resulting resource.
327
319
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
328
320
  :param pulumi.ResourceOptions opts: Options for the resource.
329
- :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
330
- :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z.
321
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backup_periods: Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
322
+ :param pulumi.Input[str] backup_time: Backup time, in the format of HH:mmZ- HH:mm Z
331
323
  :param pulumi.Input[str] instance_id: The id of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
332
324
  """
333
325
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -343,7 +335,7 @@ class BackupPolicy(pulumi.CustomResource):
343
335
  @pulumi.getter(name="backupPeriods")
344
336
  def backup_periods(self) -> pulumi.Output[Sequence[str]]:
345
337
  """
346
- Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
338
+ Backup Cycle. Allowed values: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
347
339
  """
348
340
  return pulumi.get(self, "backup_periods")
349
341
 
@@ -351,7 +343,7 @@ class BackupPolicy(pulumi.CustomResource):
351
343
  @pulumi.getter(name="backupTime")
352
344
  def backup_time(self) -> pulumi.Output[Optional[str]]:
353
345
  """
354
- Backup time, in the format of HH:mmZ- HH:mm Z.
346
+ Backup time, in the format of HH:mmZ- HH:mm Z
355
347
  """
356
348
  return pulumi.get(self, "backup_time")
357
349
 
@@ -79,7 +79,6 @@ class ClusterArgs:
79
79
  storage_pay_type: Optional[pulumi.Input[str]] = None,
80
80
  storage_space: Optional[pulumi.Input[int]] = None,
81
81
  storage_type: Optional[pulumi.Input[str]] = None,
82
- strict_consistency: Optional[pulumi.Input[str]] = None,
83
82
  sub_category: Optional[pulumi.Input[str]] = None,
84
83
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
85
84
  target_db_revision_version_code: Optional[pulumi.Input[str]] = None,
@@ -178,7 +177,6 @@ class ClusterArgs:
178
177
  > **NOTE:** Valid values for PolarDB for MySQL Standard Edition: 20 to 32000. It is valid when pay_type are `PrePaid` ,`PostPaid`.
179
178
  > **NOTE:** Valid values for PolarDB for MySQL Enterprise Edition: 50 to 100000.It is valid when pay_type is `PrePaid`.
180
179
  :param pulumi.Input[str] storage_type: The storage type of the cluster. Enterprise storage type values are `PSL5`, `PSL4`. The standard version storage type values are `ESSDPL1`, `ESSDPL2`, `ESSDPL3`, `ESSDPL0`, `ESSDAUTOPL`. The standard version only supports MySQL and PostgreSQL.
181
- :param pulumi.Input[str] strict_consistency: Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
182
180
  :param pulumi.Input[str] sub_category: The category of the cluster. Valid values are `Exclusive`, `General`. Only MySQL supports.
183
181
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
184
182
  - Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
@@ -305,8 +303,6 @@ class ClusterArgs:
305
303
  pulumi.set(__self__, "storage_space", storage_space)
306
304
  if storage_type is not None:
307
305
  pulumi.set(__self__, "storage_type", storage_type)
308
- if strict_consistency is not None:
309
- pulumi.set(__self__, "strict_consistency", strict_consistency)
310
306
  if sub_category is not None:
311
307
  pulumi.set(__self__, "sub_category", sub_category)
312
308
  if tags is not None:
@@ -1050,18 +1046,6 @@ class ClusterArgs:
1050
1046
  def storage_type(self, value: Optional[pulumi.Input[str]]):
1051
1047
  pulumi.set(self, "storage_type", value)
1052
1048
 
1053
- @property
1054
- @pulumi.getter(name="strictConsistency")
1055
- def strict_consistency(self) -> Optional[pulumi.Input[str]]:
1056
- """
1057
- Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
1058
- """
1059
- return pulumi.get(self, "strict_consistency")
1060
-
1061
- @strict_consistency.setter
1062
- def strict_consistency(self, value: Optional[pulumi.Input[str]]):
1063
- pulumi.set(self, "strict_consistency", value)
1064
-
1065
1049
  @property
1066
1050
  @pulumi.getter(name="subCategory")
1067
1051
  def sub_category(self) -> Optional[pulumi.Input[str]]:
@@ -1229,7 +1213,6 @@ class _ClusterState:
1229
1213
  storage_pay_type: Optional[pulumi.Input[str]] = None,
1230
1214
  storage_space: Optional[pulumi.Input[int]] = None,
1231
1215
  storage_type: Optional[pulumi.Input[str]] = None,
1232
- strict_consistency: Optional[pulumi.Input[str]] = None,
1233
1216
  sub_category: Optional[pulumi.Input[str]] = None,
1234
1217
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1235
1218
  target_db_revision_version_code: Optional[pulumi.Input[str]] = None,
@@ -1334,7 +1317,6 @@ class _ClusterState:
1334
1317
  > **NOTE:** Valid values for PolarDB for MySQL Standard Edition: 20 to 32000. It is valid when pay_type are `PrePaid` ,`PostPaid`.
1335
1318
  > **NOTE:** Valid values for PolarDB for MySQL Enterprise Edition: 50 to 100000.It is valid when pay_type is `PrePaid`.
1336
1319
  :param pulumi.Input[str] storage_type: The storage type of the cluster. Enterprise storage type values are `PSL5`, `PSL4`. The standard version storage type values are `ESSDPL1`, `ESSDPL2`, `ESSDPL3`, `ESSDPL0`, `ESSDAUTOPL`. The standard version only supports MySQL and PostgreSQL.
1337
- :param pulumi.Input[str] strict_consistency: Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
1338
1320
  :param pulumi.Input[str] sub_category: The category of the cluster. Valid values are `Exclusive`, `General`. Only MySQL supports.
1339
1321
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
1340
1322
  - Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
@@ -1477,8 +1459,6 @@ class _ClusterState:
1477
1459
  pulumi.set(__self__, "storage_space", storage_space)
1478
1460
  if storage_type is not None:
1479
1461
  pulumi.set(__self__, "storage_type", storage_type)
1480
- if strict_consistency is not None:
1481
- pulumi.set(__self__, "strict_consistency", strict_consistency)
1482
1462
  if sub_category is not None:
1483
1463
  pulumi.set(__self__, "sub_category", sub_category)
1484
1464
  if tags is not None:
@@ -2284,18 +2264,6 @@ class _ClusterState:
2284
2264
  def storage_type(self, value: Optional[pulumi.Input[str]]):
2285
2265
  pulumi.set(self, "storage_type", value)
2286
2266
 
2287
- @property
2288
- @pulumi.getter(name="strictConsistency")
2289
- def strict_consistency(self) -> Optional[pulumi.Input[str]]:
2290
- """
2291
- Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
2292
- """
2293
- return pulumi.get(self, "strict_consistency")
2294
-
2295
- @strict_consistency.setter
2296
- def strict_consistency(self, value: Optional[pulumi.Input[str]]):
2297
- pulumi.set(self, "strict_consistency", value)
2298
-
2299
2267
  @property
2300
2268
  @pulumi.getter(name="subCategory")
2301
2269
  def sub_category(self) -> Optional[pulumi.Input[str]]:
@@ -2474,7 +2442,6 @@ class Cluster(pulumi.CustomResource):
2474
2442
  storage_pay_type: Optional[pulumi.Input[str]] = None,
2475
2443
  storage_space: Optional[pulumi.Input[int]] = None,
2476
2444
  storage_type: Optional[pulumi.Input[str]] = None,
2477
- strict_consistency: Optional[pulumi.Input[str]] = None,
2478
2445
  sub_category: Optional[pulumi.Input[str]] = None,
2479
2446
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2480
2447
  target_db_revision_version_code: Optional[pulumi.Input[str]] = None,
@@ -2583,7 +2550,6 @@ class Cluster(pulumi.CustomResource):
2583
2550
  > **NOTE:** Valid values for PolarDB for MySQL Standard Edition: 20 to 32000. It is valid when pay_type are `PrePaid` ,`PostPaid`.
2584
2551
  > **NOTE:** Valid values for PolarDB for MySQL Enterprise Edition: 50 to 100000.It is valid when pay_type is `PrePaid`.
2585
2552
  :param pulumi.Input[str] storage_type: The storage type of the cluster. Enterprise storage type values are `PSL5`, `PSL4`. The standard version storage type values are `ESSDPL1`, `ESSDPL2`, `ESSDPL3`, `ESSDPL0`, `ESSDAUTOPL`. The standard version only supports MySQL and PostgreSQL.
2586
- :param pulumi.Input[str] strict_consistency: Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
2587
2553
  :param pulumi.Input[str] sub_category: The category of the cluster. Valid values are `Exclusive`, `General`. Only MySQL supports.
2588
2554
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
2589
2555
  - Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
@@ -2685,7 +2651,6 @@ class Cluster(pulumi.CustomResource):
2685
2651
  storage_pay_type: Optional[pulumi.Input[str]] = None,
2686
2652
  storage_space: Optional[pulumi.Input[int]] = None,
2687
2653
  storage_type: Optional[pulumi.Input[str]] = None,
2688
- strict_consistency: Optional[pulumi.Input[str]] = None,
2689
2654
  sub_category: Optional[pulumi.Input[str]] = None,
2690
2655
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2691
2656
  target_db_revision_version_code: Optional[pulumi.Input[str]] = None,
@@ -2767,7 +2732,6 @@ class Cluster(pulumi.CustomResource):
2767
2732
  __props__.__dict__["storage_pay_type"] = storage_pay_type
2768
2733
  __props__.__dict__["storage_space"] = storage_space
2769
2734
  __props__.__dict__["storage_type"] = storage_type
2770
- __props__.__dict__["strict_consistency"] = strict_consistency
2771
2735
  __props__.__dict__["sub_category"] = sub_category
2772
2736
  __props__.__dict__["tags"] = tags
2773
2737
  __props__.__dict__["target_db_revision_version_code"] = target_db_revision_version_code
@@ -2855,7 +2819,6 @@ class Cluster(pulumi.CustomResource):
2855
2819
  storage_pay_type: Optional[pulumi.Input[str]] = None,
2856
2820
  storage_space: Optional[pulumi.Input[int]] = None,
2857
2821
  storage_type: Optional[pulumi.Input[str]] = None,
2858
- strict_consistency: Optional[pulumi.Input[str]] = None,
2859
2822
  sub_category: Optional[pulumi.Input[str]] = None,
2860
2823
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2861
2824
  target_db_revision_version_code: Optional[pulumi.Input[str]] = None,
@@ -2965,7 +2928,6 @@ class Cluster(pulumi.CustomResource):
2965
2928
  > **NOTE:** Valid values for PolarDB for MySQL Standard Edition: 20 to 32000. It is valid when pay_type are `PrePaid` ,`PostPaid`.
2966
2929
  > **NOTE:** Valid values for PolarDB for MySQL Enterprise Edition: 50 to 100000.It is valid when pay_type is `PrePaid`.
2967
2930
  :param pulumi.Input[str] storage_type: The storage type of the cluster. Enterprise storage type values are `PSL5`, `PSL4`. The standard version storage type values are `ESSDPL1`, `ESSDPL2`, `ESSDPL3`, `ESSDPL0`, `ESSDAUTOPL`. The standard version only supports MySQL and PostgreSQL.
2968
- :param pulumi.Input[str] strict_consistency: Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
2969
2931
  :param pulumi.Input[str] sub_category: The category of the cluster. Valid values are `Exclusive`, `General`. Only MySQL supports.
2970
2932
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
2971
2933
  - Key: It can be up to 64 characters in length. It cannot begin with "aliyun", "acs:", "http://", or "https://". It cannot be a null string.
@@ -3049,7 +3011,6 @@ class Cluster(pulumi.CustomResource):
3049
3011
  __props__.__dict__["storage_pay_type"] = storage_pay_type
3050
3012
  __props__.__dict__["storage_space"] = storage_space
3051
3013
  __props__.__dict__["storage_type"] = storage_type
3052
- __props__.__dict__["strict_consistency"] = strict_consistency
3053
3014
  __props__.__dict__["sub_category"] = sub_category
3054
3015
  __props__.__dict__["tags"] = tags
3055
3016
  __props__.__dict__["target_db_revision_version_code"] = target_db_revision_version_code
@@ -3595,14 +3556,6 @@ class Cluster(pulumi.CustomResource):
3595
3556
  """
3596
3557
  return pulumi.get(self, "storage_type")
3597
3558
 
3598
- @property
3599
- @pulumi.getter(name="strictConsistency")
3600
- def strict_consistency(self) -> pulumi.Output[str]:
3601
- """
3602
- Whether the cluster has enabled strong data consistency across multiple zones. Valid values are `ON`, `OFF`. Available parameters can refer to the latest docs [CreateDBCluster](https://www.alibabacloud.com/help/en/polardb/latest/createdbcluster-1)
3603
- """
3604
- return pulumi.get(self, "strict_consistency")
3605
-
3606
3559
  @property
3607
3560
  @pulumi.getter(name="subCategory")
3608
3561
  def sub_category(self) -> pulumi.Output[str]: