pulumi-alicloud 3.61.0__py3-none-any.whl → 3.61.0a1723820875__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 (29) hide show
  1. pulumi_alicloud/__init__.py +0 -27
  2. pulumi_alicloud/_inputs.py +0 -16
  3. pulumi_alicloud/alikafka/instance.py +14 -21
  4. pulumi_alicloud/amqp/binding.py +0 -7
  5. pulumi_alicloud/config/outputs.py +0 -12
  6. pulumi_alicloud/cs/_inputs.py +2 -50
  7. pulumi_alicloud/cs/node_pool.py +42 -42
  8. pulumi_alicloud/cs/outputs.py +3 -45
  9. pulumi_alicloud/dataworks/__init__.py +0 -1
  10. pulumi_alicloud/elasticsearch/instance.py +14 -296
  11. pulumi_alicloud/log/store.py +10 -91
  12. pulumi_alicloud/mongodb/_inputs.py +12 -12
  13. pulumi_alicloud/mongodb/instance.py +7 -54
  14. pulumi_alicloud/mongodb/outputs.py +12 -12
  15. pulumi_alicloud/mongodb/sharding_instance.py +7 -54
  16. pulumi_alicloud/mongodb/sharding_network_private_address.py +39 -145
  17. pulumi_alicloud/pulumi-plugin.json +1 -1
  18. {pulumi_alicloud-3.61.0.dist-info → pulumi_alicloud-3.61.0a1723820875.dist-info}/METADATA +1 -1
  19. {pulumi_alicloud-3.61.0.dist-info → pulumi_alicloud-3.61.0a1723820875.dist-info}/RECORD +21 -29
  20. {pulumi_alicloud-3.61.0.dist-info → pulumi_alicloud-3.61.0a1723820875.dist-info}/WHEEL +1 -1
  21. pulumi_alicloud/dataworks/project.py +0 -450
  22. pulumi_alicloud/selectdb/__init__.py +0 -13
  23. pulumi_alicloud/selectdb/_inputs.py +0 -446
  24. pulumi_alicloud/selectdb/db_cluster.py +0 -830
  25. pulumi_alicloud/selectdb/db_instance.py +0 -1368
  26. pulumi_alicloud/selectdb/get_db_clusters.py +0 -184
  27. pulumi_alicloud/selectdb/get_db_instances.py +0 -191
  28. pulumi_alicloud/selectdb/outputs.py +0 -1122
  29. {pulumi_alicloud-3.61.0.dist-info → pulumi_alicloud-3.61.0a1723820875.dist-info}/top_level.txt +0 -0
@@ -21,7 +21,6 @@ class StoreArgs:
21
21
  enable_web_tracking: Optional[pulumi.Input[bool]] = None,
22
22
  encrypt_conf: Optional[pulumi.Input['StoreEncryptConfArgs']] = None,
23
23
  hot_ttl: Optional[pulumi.Input[int]] = None,
24
- infrequent_access_ttl: Optional[pulumi.Input[int]] = None,
25
24
  logstore_name: Optional[pulumi.Input[str]] = None,
26
25
  max_split_shard_count: Optional[pulumi.Input[int]] = None,
27
26
  metering_mode: Optional[pulumi.Input[str]] = None,
@@ -39,7 +38,6 @@ class StoreArgs:
39
38
  :param pulumi.Input[bool] enable_web_tracking: Whether open webtracking. webtracking network tracing, support the collection of HTML log, H5, Ios and android platforms.
40
39
  :param pulumi.Input['StoreEncryptConfArgs'] encrypt_conf: Encrypted storage of data, providing data static protection capability, encrypt_conf can be updated since 1.188.0 (only enable change is supported when updating logstore). See `encrypt_conf` below.
41
40
  :param pulumi.Input[int] hot_ttl: The ttl of hot storage. Default to 30, at least 30, hot storage ttl must be less than ttl.
42
- :param pulumi.Input[int] infrequent_access_ttl: Low frequency storage time
43
41
  :param pulumi.Input[str] logstore_name: The log store, which is unique in the same project. You need to specify one of the attributes: `logstore_name`, `name`.
44
42
  :param pulumi.Input[int] max_split_shard_count: The maximum number of shards for automatic split, which is in the range of 1 to 256. You must specify this parameter when autoSplit is true.
45
43
  :param pulumi.Input[str] metering_mode: Metering mode. The default metering mode of ChargeByFunction, ChargeByDataIngest traffic mode.
@@ -63,8 +61,6 @@ class StoreArgs:
63
61
  pulumi.set(__self__, "encrypt_conf", encrypt_conf)
64
62
  if hot_ttl is not None:
65
63
  pulumi.set(__self__, "hot_ttl", hot_ttl)
66
- if infrequent_access_ttl is not None:
67
- pulumi.set(__self__, "infrequent_access_ttl", infrequent_access_ttl)
68
64
  if logstore_name is not None:
69
65
  pulumi.set(__self__, "logstore_name", logstore_name)
70
66
  if max_split_shard_count is not None:
@@ -152,18 +148,6 @@ class StoreArgs:
152
148
  def hot_ttl(self, value: Optional[pulumi.Input[int]]):
153
149
  pulumi.set(self, "hot_ttl", value)
154
150
 
155
- @property
156
- @pulumi.getter(name="infrequentAccessTtl")
157
- def infrequent_access_ttl(self) -> Optional[pulumi.Input[int]]:
158
- """
159
- Low frequency storage time
160
- """
161
- return pulumi.get(self, "infrequent_access_ttl")
162
-
163
- @infrequent_access_ttl.setter
164
- def infrequent_access_ttl(self, value: Optional[pulumi.Input[int]]):
165
- pulumi.set(self, "infrequent_access_ttl", value)
166
-
167
151
  @property
168
152
  @pulumi.getter(name="logstoreName")
169
153
  def logstore_name(self) -> Optional[pulumi.Input[str]]:
@@ -298,7 +282,6 @@ class _StoreState:
298
282
  enable_web_tracking: Optional[pulumi.Input[bool]] = None,
299
283
  encrypt_conf: Optional[pulumi.Input['StoreEncryptConfArgs']] = None,
300
284
  hot_ttl: Optional[pulumi.Input[int]] = None,
301
- infrequent_access_ttl: Optional[pulumi.Input[int]] = None,
302
285
  logstore_name: Optional[pulumi.Input[str]] = None,
303
286
  max_split_shard_count: Optional[pulumi.Input[int]] = None,
304
287
  metering_mode: Optional[pulumi.Input[str]] = None,
@@ -318,7 +301,6 @@ class _StoreState:
318
301
  :param pulumi.Input[bool] enable_web_tracking: Whether open webtracking. webtracking network tracing, support the collection of HTML log, H5, Ios and android platforms.
319
302
  :param pulumi.Input['StoreEncryptConfArgs'] encrypt_conf: Encrypted storage of data, providing data static protection capability, encrypt_conf can be updated since 1.188.0 (only enable change is supported when updating logstore). See `encrypt_conf` below.
320
303
  :param pulumi.Input[int] hot_ttl: The ttl of hot storage. Default to 30, at least 30, hot storage ttl must be less than ttl.
321
- :param pulumi.Input[int] infrequent_access_ttl: Low frequency storage time
322
304
  :param pulumi.Input[str] logstore_name: The log store, which is unique in the same project. You need to specify one of the attributes: `logstore_name`, `name`.
323
305
  :param pulumi.Input[int] max_split_shard_count: The maximum number of shards for automatic split, which is in the range of 1 to 256. You must specify this parameter when autoSplit is true.
324
306
  :param pulumi.Input[str] metering_mode: Metering mode. The default metering mode of ChargeByFunction, ChargeByDataIngest traffic mode.
@@ -345,8 +327,6 @@ class _StoreState:
345
327
  pulumi.set(__self__, "encrypt_conf", encrypt_conf)
346
328
  if hot_ttl is not None:
347
329
  pulumi.set(__self__, "hot_ttl", hot_ttl)
348
- if infrequent_access_ttl is not None:
349
- pulumi.set(__self__, "infrequent_access_ttl", infrequent_access_ttl)
350
330
  if logstore_name is not None:
351
331
  pulumi.set(__self__, "logstore_name", logstore_name)
352
332
  if max_split_shard_count is not None:
@@ -448,18 +428,6 @@ class _StoreState:
448
428
  def hot_ttl(self, value: Optional[pulumi.Input[int]]):
449
429
  pulumi.set(self, "hot_ttl", value)
450
430
 
451
- @property
452
- @pulumi.getter(name="infrequentAccessTtl")
453
- def infrequent_access_ttl(self) -> Optional[pulumi.Input[int]]:
454
- """
455
- Low frequency storage time
456
- """
457
- return pulumi.get(self, "infrequent_access_ttl")
458
-
459
- @infrequent_access_ttl.setter
460
- def infrequent_access_ttl(self, value: Optional[pulumi.Input[int]]):
461
- pulumi.set(self, "infrequent_access_ttl", value)
462
-
463
431
  @property
464
432
  @pulumi.getter(name="logstoreName")
465
433
  def logstore_name(self) -> Optional[pulumi.Input[str]]:
@@ -607,7 +575,6 @@ class Store(pulumi.CustomResource):
607
575
  enable_web_tracking: Optional[pulumi.Input[bool]] = None,
608
576
  encrypt_conf: Optional[pulumi.Input[Union['StoreEncryptConfArgs', 'StoreEncryptConfArgsDict']]] = None,
609
577
  hot_ttl: Optional[pulumi.Input[int]] = None,
610
- infrequent_access_ttl: Optional[pulumi.Input[int]] = None,
611
578
  logstore_name: Optional[pulumi.Input[str]] = None,
612
579
  max_split_shard_count: Optional[pulumi.Input[int]] = None,
613
580
  metering_mode: Optional[pulumi.Input[str]] = None,
@@ -663,36 +630,19 @@ class Store(pulumi.CustomResource):
663
630
  if region is None:
664
631
  region = "cn-hangzhou"
665
632
  example = alicloud.get_account()
666
- default_integer = random.index.Integer("default",
633
+ default = random.index.Integer("default",
667
634
  max=99999,
668
635
  min=10000)
669
- default = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
670
- default_get_switches = alicloud.vpc.get_switches(vpc_id=default.ids[0])
671
- default_instance = alicloud.kms.Instance("default",
672
- product_version="3",
673
- vpc_id=default.ids[0],
674
- zone_ids=[
675
- default_get_switches.vswitches[0].zone_id,
676
- default_get_switches.vswitches[1].zone_id,
677
- ],
678
- vswitch_ids=[default_get_switches.ids[0]],
679
- vpc_num=1,
680
- key_num=1000,
681
- secret_num=0,
682
- spec=1000,
683
- force_delete_without_backup="true",
684
- payment_type="PayAsYouGo")
685
636
  example_key = alicloud.kms.Key("example",
686
637
  description="terraform-example",
687
638
  pending_window_in_days=7,
688
- status="Enabled",
689
- dkms_instance_id=default_instance.id)
639
+ status="Enabled")
690
640
  example_project = alicloud.log.Project("example",
691
- project_name=f"terraform-example-{default_integer['result']}",
641
+ name=f"terraform-example-{default['result']}",
692
642
  description="terraform-example")
693
643
  example_store = alicloud.log.Store("example",
694
- project_name=example_project.project_name,
695
- logstore_name="example-store",
644
+ project=example_project.name,
645
+ name="example-store",
696
646
  shard_count=1,
697
647
  auto_split=True,
698
648
  max_split_shard_count=60,
@@ -727,7 +677,6 @@ class Store(pulumi.CustomResource):
727
677
  :param pulumi.Input[bool] enable_web_tracking: Whether open webtracking. webtracking network tracing, support the collection of HTML log, H5, Ios and android platforms.
728
678
  :param pulumi.Input[Union['StoreEncryptConfArgs', 'StoreEncryptConfArgsDict']] encrypt_conf: Encrypted storage of data, providing data static protection capability, encrypt_conf can be updated since 1.188.0 (only enable change is supported when updating logstore). See `encrypt_conf` below.
729
679
  :param pulumi.Input[int] hot_ttl: The ttl of hot storage. Default to 30, at least 30, hot storage ttl must be less than ttl.
730
- :param pulumi.Input[int] infrequent_access_ttl: Low frequency storage time
731
680
  :param pulumi.Input[str] logstore_name: The log store, which is unique in the same project. You need to specify one of the attributes: `logstore_name`, `name`.
732
681
  :param pulumi.Input[int] max_split_shard_count: The maximum number of shards for automatic split, which is in the range of 1 to 256. You must specify this parameter when autoSplit is true.
733
682
  :param pulumi.Input[str] metering_mode: Metering mode. The default metering mode of ChargeByFunction, ChargeByDataIngest traffic mode.
@@ -791,36 +740,19 @@ class Store(pulumi.CustomResource):
791
740
  if region is None:
792
741
  region = "cn-hangzhou"
793
742
  example = alicloud.get_account()
794
- default_integer = random.index.Integer("default",
743
+ default = random.index.Integer("default",
795
744
  max=99999,
796
745
  min=10000)
797
- default = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
798
- default_get_switches = alicloud.vpc.get_switches(vpc_id=default.ids[0])
799
- default_instance = alicloud.kms.Instance("default",
800
- product_version="3",
801
- vpc_id=default.ids[0],
802
- zone_ids=[
803
- default_get_switches.vswitches[0].zone_id,
804
- default_get_switches.vswitches[1].zone_id,
805
- ],
806
- vswitch_ids=[default_get_switches.ids[0]],
807
- vpc_num=1,
808
- key_num=1000,
809
- secret_num=0,
810
- spec=1000,
811
- force_delete_without_backup="true",
812
- payment_type="PayAsYouGo")
813
746
  example_key = alicloud.kms.Key("example",
814
747
  description="terraform-example",
815
748
  pending_window_in_days=7,
816
- status="Enabled",
817
- dkms_instance_id=default_instance.id)
749
+ status="Enabled")
818
750
  example_project = alicloud.log.Project("example",
819
- project_name=f"terraform-example-{default_integer['result']}",
751
+ name=f"terraform-example-{default['result']}",
820
752
  description="terraform-example")
821
753
  example_store = alicloud.log.Store("example",
822
- project_name=example_project.project_name,
823
- logstore_name="example-store",
754
+ project=example_project.name,
755
+ name="example-store",
824
756
  shard_count=1,
825
757
  auto_split=True,
826
758
  max_split_shard_count=60,
@@ -868,7 +800,6 @@ class Store(pulumi.CustomResource):
868
800
  enable_web_tracking: Optional[pulumi.Input[bool]] = None,
869
801
  encrypt_conf: Optional[pulumi.Input[Union['StoreEncryptConfArgs', 'StoreEncryptConfArgsDict']]] = None,
870
802
  hot_ttl: Optional[pulumi.Input[int]] = None,
871
- infrequent_access_ttl: Optional[pulumi.Input[int]] = None,
872
803
  logstore_name: Optional[pulumi.Input[str]] = None,
873
804
  max_split_shard_count: Optional[pulumi.Input[int]] = None,
874
805
  metering_mode: Optional[pulumi.Input[str]] = None,
@@ -893,7 +824,6 @@ class Store(pulumi.CustomResource):
893
824
  __props__.__dict__["enable_web_tracking"] = enable_web_tracking
894
825
  __props__.__dict__["encrypt_conf"] = encrypt_conf
895
826
  __props__.__dict__["hot_ttl"] = hot_ttl
896
- __props__.__dict__["infrequent_access_ttl"] = infrequent_access_ttl
897
827
  __props__.__dict__["logstore_name"] = logstore_name
898
828
  __props__.__dict__["max_split_shard_count"] = max_split_shard_count
899
829
  __props__.__dict__["metering_mode"] = metering_mode
@@ -922,7 +852,6 @@ class Store(pulumi.CustomResource):
922
852
  enable_web_tracking: Optional[pulumi.Input[bool]] = None,
923
853
  encrypt_conf: Optional[pulumi.Input[Union['StoreEncryptConfArgs', 'StoreEncryptConfArgsDict']]] = None,
924
854
  hot_ttl: Optional[pulumi.Input[int]] = None,
925
- infrequent_access_ttl: Optional[pulumi.Input[int]] = None,
926
855
  logstore_name: Optional[pulumi.Input[str]] = None,
927
856
  max_split_shard_count: Optional[pulumi.Input[int]] = None,
928
857
  metering_mode: Optional[pulumi.Input[str]] = None,
@@ -947,7 +876,6 @@ class Store(pulumi.CustomResource):
947
876
  :param pulumi.Input[bool] enable_web_tracking: Whether open webtracking. webtracking network tracing, support the collection of HTML log, H5, Ios and android platforms.
948
877
  :param pulumi.Input[Union['StoreEncryptConfArgs', 'StoreEncryptConfArgsDict']] encrypt_conf: Encrypted storage of data, providing data static protection capability, encrypt_conf can be updated since 1.188.0 (only enable change is supported when updating logstore). See `encrypt_conf` below.
949
878
  :param pulumi.Input[int] hot_ttl: The ttl of hot storage. Default to 30, at least 30, hot storage ttl must be less than ttl.
950
- :param pulumi.Input[int] infrequent_access_ttl: Low frequency storage time
951
879
  :param pulumi.Input[str] logstore_name: The log store, which is unique in the same project. You need to specify one of the attributes: `logstore_name`, `name`.
952
880
  :param pulumi.Input[int] max_split_shard_count: The maximum number of shards for automatic split, which is in the range of 1 to 256. You must specify this parameter when autoSplit is true.
953
881
  :param pulumi.Input[str] metering_mode: Metering mode. The default metering mode of ChargeByFunction, ChargeByDataIngest traffic mode.
@@ -972,7 +900,6 @@ class Store(pulumi.CustomResource):
972
900
  __props__.__dict__["enable_web_tracking"] = enable_web_tracking
973
901
  __props__.__dict__["encrypt_conf"] = encrypt_conf
974
902
  __props__.__dict__["hot_ttl"] = hot_ttl
975
- __props__.__dict__["infrequent_access_ttl"] = infrequent_access_ttl
976
903
  __props__.__dict__["logstore_name"] = logstore_name
977
904
  __props__.__dict__["max_split_shard_count"] = max_split_shard_count
978
905
  __props__.__dict__["metering_mode"] = metering_mode
@@ -1034,14 +961,6 @@ class Store(pulumi.CustomResource):
1034
961
  """
1035
962
  return pulumi.get(self, "hot_ttl")
1036
963
 
1037
- @property
1038
- @pulumi.getter(name="infrequentAccessTtl")
1039
- def infrequent_access_ttl(self) -> pulumi.Output[Optional[int]]:
1040
- """
1041
- Low frequency storage time
1042
- """
1043
- return pulumi.get(self, "infrequent_access_ttl")
1044
-
1045
964
  @property
1046
965
  @pulumi.getter(name="logstoreName")
1047
966
  def logstore_name(self) -> pulumi.Output[str]:
@@ -523,16 +523,16 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
523
523
  vpc_id: Optional[pulumi.Input[str]] = None,
524
524
  vswitch_id: Optional[pulumi.Input[str]] = None):
525
525
  """
526
- :param pulumi.Input[str] expired_time: The remaining duration of the classic network endpoint.
526
+ :param pulumi.Input[str] expired_time: The remaining duration of the classic network address. Unit: `seconds`.
527
527
  :param pulumi.Input[str] ip_address: The IP address of the instance.
528
- :param pulumi.Input[str] network_address: The connection string of the instance.
529
- :param pulumi.Input[str] network_type: The network type of the instance.
530
- :param pulumi.Input[str] node_id: The ID of the Shard node or ConfigServer node.
528
+ :param pulumi.Input[str] network_address: The endpoint of the instance.
529
+ :param pulumi.Input[str] network_type: The network type.
530
+ :param pulumi.Input[str] node_id: The ID of the Shard node or the ConfigServer node.
531
531
  :param pulumi.Input[str] node_type: The type of the node.
532
- :param pulumi.Input[str] port: The port that is used to connect to the instance.
532
+ :param pulumi.Input[str] port: The port number.
533
533
  :param pulumi.Input[str] role: The role of the node.
534
534
  :param pulumi.Input[str] vpc_id: The ID of the VPC.
535
- :param pulumi.Input[str] vswitch_id: The ID of the vSwitch in the VPC.
535
+ :param pulumi.Input[str] vswitch_id: The vSwitch ID of the VPC.
536
536
  """
537
537
  if expired_time is not None:
538
538
  pulumi.set(__self__, "expired_time", expired_time)
@@ -559,7 +559,7 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
559
559
  @pulumi.getter(name="expiredTime")
560
560
  def expired_time(self) -> Optional[pulumi.Input[str]]:
561
561
  """
562
- The remaining duration of the classic network endpoint.
562
+ The remaining duration of the classic network address. Unit: `seconds`.
563
563
  """
564
564
  return pulumi.get(self, "expired_time")
565
565
 
@@ -583,7 +583,7 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
583
583
  @pulumi.getter(name="networkAddress")
584
584
  def network_address(self) -> Optional[pulumi.Input[str]]:
585
585
  """
586
- The connection string of the instance.
586
+ The endpoint of the instance.
587
587
  """
588
588
  return pulumi.get(self, "network_address")
589
589
 
@@ -595,7 +595,7 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
595
595
  @pulumi.getter(name="networkType")
596
596
  def network_type(self) -> Optional[pulumi.Input[str]]:
597
597
  """
598
- The network type of the instance.
598
+ The network type.
599
599
  """
600
600
  return pulumi.get(self, "network_type")
601
601
 
@@ -607,7 +607,7 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
607
607
  @pulumi.getter(name="nodeId")
608
608
  def node_id(self) -> Optional[pulumi.Input[str]]:
609
609
  """
610
- The ID of the Shard node or ConfigServer node.
610
+ The ID of the Shard node or the ConfigServer node.
611
611
  """
612
612
  return pulumi.get(self, "node_id")
613
613
 
@@ -631,7 +631,7 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
631
631
  @pulumi.getter
632
632
  def port(self) -> Optional[pulumi.Input[str]]:
633
633
  """
634
- The port that is used to connect to the instance.
634
+ The port number.
635
635
  """
636
636
  return pulumi.get(self, "port")
637
637
 
@@ -667,7 +667,7 @@ class ShardingNetworkPrivateAddressNetworkAddressArgs:
667
667
  @pulumi.getter(name="vswitchId")
668
668
  def vswitch_id(self) -> Optional[pulumi.Input[str]]:
669
669
  """
670
- The ID of the vSwitch in the VPC.
670
+ The vSwitch ID of the VPC.
671
671
  """
672
672
  return pulumi.get(self, "vswitch_id")
673
673
 
@@ -41,7 +41,6 @@ class InstanceArgs:
41
41
  order_type: Optional[pulumi.Input[str]] = None,
42
42
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceParameterArgs']]]] = None,
43
43
  period: Optional[pulumi.Input[int]] = None,
44
- provisioned_iops: Optional[pulumi.Input[int]] = None,
45
44
  readonly_replicas: Optional[pulumi.Input[int]] = None,
46
45
  replication_factor: Optional[pulumi.Input[int]] = None,
47
46
  resource_group_id: Optional[pulumi.Input[str]] = None,
@@ -91,7 +90,6 @@ class InstanceArgs:
91
90
  **NOTE:** `order_type` is only applicable to instances when `instance_charge_type` is `PrePaid`.
92
91
  :param pulumi.Input[Sequence[pulumi.Input['InstanceParameterArgs']]] parameters: Set of parameters needs to be set after mongodb instance was launched. See `parameters` below.
93
92
  :param pulumi.Input[int] period: The duration that you will buy DB instance (in month). It is valid when `instance_charge_type` is `PrePaid`. Default value: `1`. Valid values: [1~9], 12, 24, 36.
94
- :param pulumi.Input[int] provisioned_iops: The provisioned IOPS. Valid values: `0` to `50000`.
95
93
  :param pulumi.Input[int] readonly_replicas: The number of read-only nodes in the replica set instance. Default value: 0. Valid values: 0 to 5.
96
94
  :param pulumi.Input[int] replication_factor: Number of replica set nodes. Valid values: `1`, `3`, `5`, `7`.
97
95
  :param pulumi.Input[str] resource_group_id: The ID of the Resource Group.
@@ -107,7 +105,7 @@ class InstanceArgs:
107
105
  - `Close`: turn off SSL encryption.
108
106
  - `Update`: update SSL certificate.
109
107
  :param pulumi.Input[str] storage_engine: The storage engine of the instance. Default value: `WiredTiger`. Valid values: `WiredTiger`, `RocksDB`.
110
- :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
108
+ :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
111
109
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
112
110
  :param pulumi.Input[str] tde_status: The TDE(Transparent Data Encryption) status. Valid values: `enabled`.
113
111
  :param pulumi.Input[str] vpc_id: The ID of the VPC. > **NOTE:** `vpc_id` is valid only when `network_type` is set to `VPC`.
@@ -163,8 +161,6 @@ class InstanceArgs:
163
161
  pulumi.set(__self__, "parameters", parameters)
164
162
  if period is not None:
165
163
  pulumi.set(__self__, "period", period)
166
- if provisioned_iops is not None:
167
- pulumi.set(__self__, "provisioned_iops", provisioned_iops)
168
164
  if readonly_replicas is not None:
169
165
  pulumi.set(__self__, "readonly_replicas", readonly_replicas)
170
166
  if replication_factor is not None:
@@ -504,18 +500,6 @@ class InstanceArgs:
504
500
  def period(self, value: Optional[pulumi.Input[int]]):
505
501
  pulumi.set(self, "period", value)
506
502
 
507
- @property
508
- @pulumi.getter(name="provisionedIops")
509
- def provisioned_iops(self) -> Optional[pulumi.Input[int]]:
510
- """
511
- The provisioned IOPS. Valid values: `0` to `50000`.
512
- """
513
- return pulumi.get(self, "provisioned_iops")
514
-
515
- @provisioned_iops.setter
516
- def provisioned_iops(self, value: Optional[pulumi.Input[int]]):
517
- pulumi.set(self, "provisioned_iops", value)
518
-
519
503
  @property
520
504
  @pulumi.getter(name="readonlyReplicas")
521
505
  def readonly_replicas(self) -> Optional[pulumi.Input[int]]:
@@ -645,7 +629,7 @@ class InstanceArgs:
645
629
  @pulumi.getter(name="storageType")
646
630
  def storage_type(self) -> Optional[pulumi.Input[str]]:
647
631
  """
648
- The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
632
+ The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
649
633
  """
650
634
  return pulumi.get(self, "storage_type")
651
635
 
@@ -744,7 +728,6 @@ class _InstanceState:
744
728
  order_type: Optional[pulumi.Input[str]] = None,
745
729
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceParameterArgs']]]] = None,
746
730
  period: Optional[pulumi.Input[int]] = None,
747
- provisioned_iops: Optional[pulumi.Input[int]] = None,
748
731
  readonly_replicas: Optional[pulumi.Input[int]] = None,
749
732
  replica_set_name: Optional[pulumi.Input[str]] = None,
750
733
  replica_sets: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceReplicaSetArgs']]]] = None,
@@ -798,7 +781,6 @@ class _InstanceState:
798
781
  **NOTE:** `order_type` is only applicable to instances when `instance_charge_type` is `PrePaid`.
799
782
  :param pulumi.Input[Sequence[pulumi.Input['InstanceParameterArgs']]] parameters: Set of parameters needs to be set after mongodb instance was launched. See `parameters` below.
800
783
  :param pulumi.Input[int] period: The duration that you will buy DB instance (in month). It is valid when `instance_charge_type` is `PrePaid`. Default value: `1`. Valid values: [1~9], 12, 24, 36.
801
- :param pulumi.Input[int] provisioned_iops: The provisioned IOPS. Valid values: `0` to `50000`.
802
784
  :param pulumi.Input[int] readonly_replicas: The number of read-only nodes in the replica set instance. Default value: 0. Valid values: 0 to 5.
803
785
  :param pulumi.Input[str] replica_set_name: The name of the mongo replica set.
804
786
  :param pulumi.Input[Sequence[pulumi.Input['InstanceReplicaSetArgs']]] replica_sets: Replica set instance information.
@@ -818,7 +800,7 @@ class _InstanceState:
818
800
  - `Update`: update SSL certificate.
819
801
  :param pulumi.Input[str] ssl_status: Status of the SSL feature.
820
802
  :param pulumi.Input[str] storage_engine: The storage engine of the instance. Default value: `WiredTiger`. Valid values: `WiredTiger`, `RocksDB`.
821
- :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
803
+ :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
822
804
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
823
805
  :param pulumi.Input[str] tde_status: The TDE(Transparent Data Encryption) status. Valid values: `enabled`.
824
806
  :param pulumi.Input[str] vpc_id: The ID of the VPC. > **NOTE:** `vpc_id` is valid only when `network_type` is set to `VPC`.
@@ -877,8 +859,6 @@ class _InstanceState:
877
859
  pulumi.set(__self__, "parameters", parameters)
878
860
  if period is not None:
879
861
  pulumi.set(__self__, "period", period)
880
- if provisioned_iops is not None:
881
- pulumi.set(__self__, "provisioned_iops", provisioned_iops)
882
862
  if readonly_replicas is not None:
883
863
  pulumi.set(__self__, "readonly_replicas", readonly_replicas)
884
864
  if replica_set_name is not None:
@@ -1226,18 +1206,6 @@ class _InstanceState:
1226
1206
  def period(self, value: Optional[pulumi.Input[int]]):
1227
1207
  pulumi.set(self, "period", value)
1228
1208
 
1229
- @property
1230
- @pulumi.getter(name="provisionedIops")
1231
- def provisioned_iops(self) -> Optional[pulumi.Input[int]]:
1232
- """
1233
- The provisioned IOPS. Valid values: `0` to `50000`.
1234
- """
1235
- return pulumi.get(self, "provisioned_iops")
1236
-
1237
- @provisioned_iops.setter
1238
- def provisioned_iops(self, value: Optional[pulumi.Input[int]]):
1239
- pulumi.set(self, "provisioned_iops", value)
1240
-
1241
1209
  @property
1242
1210
  @pulumi.getter(name="readonlyReplicas")
1243
1211
  def readonly_replicas(self) -> Optional[pulumi.Input[int]]:
@@ -1415,7 +1383,7 @@ class _InstanceState:
1415
1383
  @pulumi.getter(name="storageType")
1416
1384
  def storage_type(self) -> Optional[pulumi.Input[str]]:
1417
1385
  """
1418
- The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
1386
+ The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
1419
1387
  """
1420
1388
  return pulumi.get(self, "storage_type")
1421
1389
 
@@ -1516,7 +1484,6 @@ class Instance(pulumi.CustomResource):
1516
1484
  order_type: Optional[pulumi.Input[str]] = None,
1517
1485
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceParameterArgs', 'InstanceParameterArgsDict']]]]] = None,
1518
1486
  period: Optional[pulumi.Input[int]] = None,
1519
- provisioned_iops: Optional[pulumi.Input[int]] = None,
1520
1487
  readonly_replicas: Optional[pulumi.Input[int]] = None,
1521
1488
  replication_factor: Optional[pulumi.Input[int]] = None,
1522
1489
  resource_group_id: Optional[pulumi.Input[str]] = None,
@@ -1631,7 +1598,6 @@ class Instance(pulumi.CustomResource):
1631
1598
  **NOTE:** `order_type` is only applicable to instances when `instance_charge_type` is `PrePaid`.
1632
1599
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceParameterArgs', 'InstanceParameterArgsDict']]]] parameters: Set of parameters needs to be set after mongodb instance was launched. See `parameters` below.
1633
1600
  :param pulumi.Input[int] period: The duration that you will buy DB instance (in month). It is valid when `instance_charge_type` is `PrePaid`. Default value: `1`. Valid values: [1~9], 12, 24, 36.
1634
- :param pulumi.Input[int] provisioned_iops: The provisioned IOPS. Valid values: `0` to `50000`.
1635
1601
  :param pulumi.Input[int] readonly_replicas: The number of read-only nodes in the replica set instance. Default value: 0. Valid values: 0 to 5.
1636
1602
  :param pulumi.Input[int] replication_factor: Number of replica set nodes. Valid values: `1`, `3`, `5`, `7`.
1637
1603
  :param pulumi.Input[str] resource_group_id: The ID of the Resource Group.
@@ -1647,7 +1613,7 @@ class Instance(pulumi.CustomResource):
1647
1613
  - `Close`: turn off SSL encryption.
1648
1614
  - `Update`: update SSL certificate.
1649
1615
  :param pulumi.Input[str] storage_engine: The storage engine of the instance. Default value: `WiredTiger`. Valid values: `WiredTiger`, `RocksDB`.
1650
- :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
1616
+ :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
1651
1617
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
1652
1618
  :param pulumi.Input[str] tde_status: The TDE(Transparent Data Encryption) status. Valid values: `enabled`.
1653
1619
  :param pulumi.Input[str] vpc_id: The ID of the VPC. > **NOTE:** `vpc_id` is valid only when `network_type` is set to `VPC`.
@@ -1766,7 +1732,6 @@ class Instance(pulumi.CustomResource):
1766
1732
  order_type: Optional[pulumi.Input[str]] = None,
1767
1733
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceParameterArgs', 'InstanceParameterArgsDict']]]]] = None,
1768
1734
  period: Optional[pulumi.Input[int]] = None,
1769
- provisioned_iops: Optional[pulumi.Input[int]] = None,
1770
1735
  readonly_replicas: Optional[pulumi.Input[int]] = None,
1771
1736
  replication_factor: Optional[pulumi.Input[int]] = None,
1772
1737
  resource_group_id: Optional[pulumi.Input[str]] = None,
@@ -1823,7 +1788,6 @@ class Instance(pulumi.CustomResource):
1823
1788
  __props__.__dict__["order_type"] = order_type
1824
1789
  __props__.__dict__["parameters"] = parameters
1825
1790
  __props__.__dict__["period"] = period
1826
- __props__.__dict__["provisioned_iops"] = provisioned_iops
1827
1791
  __props__.__dict__["readonly_replicas"] = readonly_replicas
1828
1792
  __props__.__dict__["replication_factor"] = replication_factor
1829
1793
  __props__.__dict__["resource_group_id"] = resource_group_id
@@ -1881,7 +1845,6 @@ class Instance(pulumi.CustomResource):
1881
1845
  order_type: Optional[pulumi.Input[str]] = None,
1882
1846
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceParameterArgs', 'InstanceParameterArgsDict']]]]] = None,
1883
1847
  period: Optional[pulumi.Input[int]] = None,
1884
- provisioned_iops: Optional[pulumi.Input[int]] = None,
1885
1848
  readonly_replicas: Optional[pulumi.Input[int]] = None,
1886
1849
  replica_set_name: Optional[pulumi.Input[str]] = None,
1887
1850
  replica_sets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceReplicaSetArgs', 'InstanceReplicaSetArgsDict']]]]] = None,
@@ -1940,7 +1903,6 @@ class Instance(pulumi.CustomResource):
1940
1903
  **NOTE:** `order_type` is only applicable to instances when `instance_charge_type` is `PrePaid`.
1941
1904
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceParameterArgs', 'InstanceParameterArgsDict']]]] parameters: Set of parameters needs to be set after mongodb instance was launched. See `parameters` below.
1942
1905
  :param pulumi.Input[int] period: The duration that you will buy DB instance (in month). It is valid when `instance_charge_type` is `PrePaid`. Default value: `1`. Valid values: [1~9], 12, 24, 36.
1943
- :param pulumi.Input[int] provisioned_iops: The provisioned IOPS. Valid values: `0` to `50000`.
1944
1906
  :param pulumi.Input[int] readonly_replicas: The number of read-only nodes in the replica set instance. Default value: 0. Valid values: 0 to 5.
1945
1907
  :param pulumi.Input[str] replica_set_name: The name of the mongo replica set.
1946
1908
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceReplicaSetArgs', 'InstanceReplicaSetArgsDict']]]] replica_sets: Replica set instance information.
@@ -1960,7 +1922,7 @@ class Instance(pulumi.CustomResource):
1960
1922
  - `Update`: update SSL certificate.
1961
1923
  :param pulumi.Input[str] ssl_status: Status of the SSL feature.
1962
1924
  :param pulumi.Input[str] storage_engine: The storage engine of the instance. Default value: `WiredTiger`. Valid values: `WiredTiger`, `RocksDB`.
1963
- :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
1925
+ :param pulumi.Input[str] storage_type: The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
1964
1926
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
1965
1927
  :param pulumi.Input[str] tde_status: The TDE(Transparent Data Encryption) status. Valid values: `enabled`.
1966
1928
  :param pulumi.Input[str] vpc_id: The ID of the VPC. > **NOTE:** `vpc_id` is valid only when `network_type` is set to `VPC`.
@@ -1998,7 +1960,6 @@ class Instance(pulumi.CustomResource):
1998
1960
  __props__.__dict__["order_type"] = order_type
1999
1961
  __props__.__dict__["parameters"] = parameters
2000
1962
  __props__.__dict__["period"] = period
2001
- __props__.__dict__["provisioned_iops"] = provisioned_iops
2002
1963
  __props__.__dict__["readonly_replicas"] = readonly_replicas
2003
1964
  __props__.__dict__["replica_set_name"] = replica_set_name
2004
1965
  __props__.__dict__["replica_sets"] = replica_sets
@@ -2227,14 +2188,6 @@ class Instance(pulumi.CustomResource):
2227
2188
  """
2228
2189
  return pulumi.get(self, "period")
2229
2190
 
2230
- @property
2231
- @pulumi.getter(name="provisionedIops")
2232
- def provisioned_iops(self) -> pulumi.Output[Optional[int]]:
2233
- """
2234
- The provisioned IOPS. Valid values: `0` to `50000`.
2235
- """
2236
- return pulumi.get(self, "provisioned_iops")
2237
-
2238
2191
  @property
2239
2192
  @pulumi.getter(name="readonlyReplicas")
2240
2193
  def readonly_replicas(self) -> pulumi.Output[int]:
@@ -2356,7 +2309,7 @@ class Instance(pulumi.CustomResource):
2356
2309
  @pulumi.getter(name="storageType")
2357
2310
  def storage_type(self) -> pulumi.Output[str]:
2358
2311
  """
2359
- The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `cloud_auto`, `local_ssd`. **NOTE:** From version 1.229.0, `storage_type` can be modified. However, `storage_type` can only be modified to `cloud_auto`.
2312
+ The storage type of the instance. Valid values: `cloud_essd1`, `cloud_essd2`, `cloud_essd3`, `local_ssd`.
2360
2313
  """
2361
2314
  return pulumi.get(self, "storage_type")
2362
2315
 
@@ -576,16 +576,16 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
576
576
  vpc_id: Optional[str] = None,
577
577
  vswitch_id: Optional[str] = None):
578
578
  """
579
- :param str expired_time: The remaining duration of the classic network endpoint.
579
+ :param str expired_time: The remaining duration of the classic network address. Unit: `seconds`.
580
580
  :param str ip_address: The IP address of the instance.
581
- :param str network_address: The connection string of the instance.
582
- :param str network_type: The network type of the instance.
583
- :param str node_id: The ID of the Shard node or ConfigServer node.
581
+ :param str network_address: The endpoint of the instance.
582
+ :param str network_type: The network type.
583
+ :param str node_id: The ID of the Shard node or the ConfigServer node.
584
584
  :param str node_type: The type of the node.
585
- :param str port: The port that is used to connect to the instance.
585
+ :param str port: The port number.
586
586
  :param str role: The role of the node.
587
587
  :param str vpc_id: The ID of the VPC.
588
- :param str vswitch_id: The ID of the vSwitch in the VPC.
588
+ :param str vswitch_id: The vSwitch ID of the VPC.
589
589
  """
590
590
  if expired_time is not None:
591
591
  pulumi.set(__self__, "expired_time", expired_time)
@@ -612,7 +612,7 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
612
612
  @pulumi.getter(name="expiredTime")
613
613
  def expired_time(self) -> Optional[str]:
614
614
  """
615
- The remaining duration of the classic network endpoint.
615
+ The remaining duration of the classic network address. Unit: `seconds`.
616
616
  """
617
617
  return pulumi.get(self, "expired_time")
618
618
 
@@ -628,7 +628,7 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
628
628
  @pulumi.getter(name="networkAddress")
629
629
  def network_address(self) -> Optional[str]:
630
630
  """
631
- The connection string of the instance.
631
+ The endpoint of the instance.
632
632
  """
633
633
  return pulumi.get(self, "network_address")
634
634
 
@@ -636,7 +636,7 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
636
636
  @pulumi.getter(name="networkType")
637
637
  def network_type(self) -> Optional[str]:
638
638
  """
639
- The network type of the instance.
639
+ The network type.
640
640
  """
641
641
  return pulumi.get(self, "network_type")
642
642
 
@@ -644,7 +644,7 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
644
644
  @pulumi.getter(name="nodeId")
645
645
  def node_id(self) -> Optional[str]:
646
646
  """
647
- The ID of the Shard node or ConfigServer node.
647
+ The ID of the Shard node or the ConfigServer node.
648
648
  """
649
649
  return pulumi.get(self, "node_id")
650
650
 
@@ -660,7 +660,7 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
660
660
  @pulumi.getter
661
661
  def port(self) -> Optional[str]:
662
662
  """
663
- The port that is used to connect to the instance.
663
+ The port number.
664
664
  """
665
665
  return pulumi.get(self, "port")
666
666
 
@@ -684,7 +684,7 @@ class ShardingNetworkPrivateAddressNetworkAddress(dict):
684
684
  @pulumi.getter(name="vswitchId")
685
685
  def vswitch_id(self) -> Optional[str]:
686
686
  """
687
- The ID of the vSwitch in the VPC.
687
+ The vSwitch ID of the VPC.
688
688
  """
689
689
  return pulumi.get(self, "vswitch_id")
690
690