pulumi-alicloud 3.67.0a1731734345__py3-none-any.whl → 3.67.0a1732274867__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.
- pulumi_alicloud/__init__.py +16 -0
- pulumi_alicloud/cen/flow_log.py +373 -58
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
- pulumi_alicloud/cr/registry_enterprise_instance.py +474 -90
- pulumi_alicloud/ecs/ecs_image_component.py +221 -48
- pulumi_alicloud/ess/_inputs.py +94 -0
- pulumi_alicloud/ess/eci_scaling_configuration.py +42 -14
- pulumi_alicloud/ess/outputs.py +79 -0
- pulumi_alicloud/ess/scaling_configuration.py +47 -0
- pulumi_alicloud/expressconnect/router_vbr_child_instance.py +86 -25
- pulumi_alicloud/kms/key.py +1 -1
- pulumi_alicloud/kvstore/account.py +24 -24
- pulumi_alicloud/kvstore/audit_log_config.py +4 -4
- pulumi_alicloud/kvstore/backup_policy.py +2 -2
- pulumi_alicloud/kvstore/connection.py +8 -8
- pulumi_alicloud/kvstore/get_accounts.py +4 -4
- pulumi_alicloud/kvstore/get_connections.py +5 -5
- pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
- pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
- pulumi_alicloud/kvstore/get_permission.py +10 -10
- pulumi_alicloud/kvstore/get_zones.py +4 -4
- pulumi_alicloud/kvstore/outputs.py +2 -2
- pulumi_alicloud/mongodb/instance.py +47 -0
- pulumi_alicloud/mongodb/sharding_instance.py +47 -0
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/privatelink/vpc_endpoint_service.py +42 -91
- pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +27 -23
- pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +34 -37
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +28 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/__init__.py +2 -0
- pulumi_alicloud/rds/_inputs.py +146 -0
- pulumi_alicloud/rds/custom.py +1630 -0
- pulumi_alicloud/rds/custom_deployment_set.py +525 -0
- pulumi_alicloud/rds/outputs.py +105 -0
- pulumi_alicloud/redis/tair_instance.py +76 -1
- pulumi_alicloud/vpc/_inputs.py +54 -0
- pulumi_alicloud/vpc/nat_gateway.py +175 -14
- pulumi_alicloud/vpc/outputs.py +51 -0
- pulumi_alicloud/vpn/gateway_vco_route.py +68 -21
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.67.0a1732274867.dist-info}/METADATA +5 -5
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.67.0a1732274867.dist-info}/RECORD +44 -42
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.67.0a1732274867.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.67.0a1731734345.dist-info → pulumi_alicloud-3.67.0a1732274867.dist-info}/top_level.txt +0 -0
|
@@ -28,6 +28,7 @@ class TairInstanceArgs:
|
|
|
28
28
|
auto_renew_period: Optional[pulumi.Input[str]] = None,
|
|
29
29
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
30
30
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
31
|
+
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
31
32
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
32
33
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
33
34
|
force_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
@@ -72,6 +73,7 @@ class TairInstanceArgs:
|
|
|
72
73
|
|
|
73
74
|
If your instance is a cloud-native cluster instance, we recommend that you use DescribeClusterBackupList to query the backup set ID of the cluster instance. Then, set the ClusterBackupId request parameter to the backup set ID to clone the cluster instance. This eliminates the need to specify the backup set ID of each shard.
|
|
74
75
|
:param pulumi.Input[str] cluster_backup_id: This parameter is supported for specific new cluster instances. You can query the backup set ID by calling the DescribeClusterBackupList operation. If this parameter is supported, you can specify the backup set ID. In this case, you do not need to specify the BackupId parameter. If this parameter is not supported, set the BackupId parameter to the IDs of backup sets in all shards of the source instance, separated by commas (,).
|
|
76
|
+
:param pulumi.Input[str] connection_string_prefix: The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
75
77
|
:param pulumi.Input[str] effective_time: The time when to change the configurations. Default value: Immediately. Valid values: Immediately (The configurations are immediately changed), MaintainTime (The configurations are changed within the maintenance window).
|
|
76
78
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
77
79
|
|
|
@@ -147,6 +149,8 @@ class TairInstanceArgs:
|
|
|
147
149
|
pulumi.set(__self__, "backup_id", backup_id)
|
|
148
150
|
if cluster_backup_id is not None:
|
|
149
151
|
pulumi.set(__self__, "cluster_backup_id", cluster_backup_id)
|
|
152
|
+
if connection_string_prefix is not None:
|
|
153
|
+
pulumi.set(__self__, "connection_string_prefix", connection_string_prefix)
|
|
150
154
|
if effective_time is not None:
|
|
151
155
|
pulumi.set(__self__, "effective_time", effective_time)
|
|
152
156
|
if engine_version is not None:
|
|
@@ -320,6 +324,18 @@ class TairInstanceArgs:
|
|
|
320
324
|
def cluster_backup_id(self, value: Optional[pulumi.Input[str]]):
|
|
321
325
|
pulumi.set(self, "cluster_backup_id", value)
|
|
322
326
|
|
|
327
|
+
@property
|
|
328
|
+
@pulumi.getter(name="connectionStringPrefix")
|
|
329
|
+
def connection_string_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
330
|
+
"""
|
|
331
|
+
The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
332
|
+
"""
|
|
333
|
+
return pulumi.get(self, "connection_string_prefix")
|
|
334
|
+
|
|
335
|
+
@connection_string_prefix.setter
|
|
336
|
+
def connection_string_prefix(self, value: Optional[pulumi.Input[str]]):
|
|
337
|
+
pulumi.set(self, "connection_string_prefix", value)
|
|
338
|
+
|
|
323
339
|
@property
|
|
324
340
|
@pulumi.getter(name="effectiveTime")
|
|
325
341
|
def effective_time(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -732,6 +748,7 @@ class _TairInstanceState:
|
|
|
732
748
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
733
749
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
734
750
|
connection_domain: Optional[pulumi.Input[str]] = None,
|
|
751
|
+
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
735
752
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
736
753
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
737
754
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
@@ -754,6 +771,7 @@ class _TairInstanceState:
|
|
|
754
771
|
port: Optional[pulumi.Input[int]] = None,
|
|
755
772
|
read_only_count: Optional[pulumi.Input[int]] = None,
|
|
756
773
|
recover_config_mode: Optional[pulumi.Input[str]] = None,
|
|
774
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
757
775
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
758
776
|
secondary_zone_id: Optional[pulumi.Input[str]] = None,
|
|
759
777
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -783,6 +801,7 @@ class _TairInstanceState:
|
|
|
783
801
|
If your instance is a cloud-native cluster instance, we recommend that you use DescribeClusterBackupList to query the backup set ID of the cluster instance. Then, set the ClusterBackupId request parameter to the backup set ID to clone the cluster instance. This eliminates the need to specify the backup set ID of each shard.
|
|
784
802
|
:param pulumi.Input[str] cluster_backup_id: This parameter is supported for specific new cluster instances. You can query the backup set ID by calling the DescribeClusterBackupList operation. If this parameter is supported, you can specify the backup set ID. In this case, you do not need to specify the BackupId parameter. If this parameter is not supported, set the BackupId parameter to the IDs of backup sets in all shards of the source instance, separated by commas (,).
|
|
785
803
|
:param pulumi.Input[str] connection_domain: The internal endpoint of the instance.
|
|
804
|
+
:param pulumi.Input[str] connection_string_prefix: The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
786
805
|
:param pulumi.Input[str] create_time: The time when the instance was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
787
806
|
:param pulumi.Input[str] effective_time: The time when to change the configurations. Default value: Immediately. Valid values: Immediately (The configurations are immediately changed), MaintainTime (The configurations are changed within the maintenance window).
|
|
788
807
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
@@ -827,6 +846,7 @@ class _TairInstanceState:
|
|
|
827
846
|
|
|
828
847
|
If the instance is a cloud disk version read/write splitting architecture instance, you can use this parameter to customize the number of read-only nodes, or set this parameter to 0 to disable the read/write splitting architecture and switch the instance to the standard architecture.
|
|
829
848
|
:param pulumi.Input[str] recover_config_mode: Whether to restore the account, kernel parameters, and whitelist (config) information from the original backup set when creating an instance using a specified backup set. The default value is empty, indicating that the account, kernel parameters, and whitelist information are not restored from the original backup set. This parameter is only applicable to Cloud Native instances, and the account, kernel parameters, and whitelist information must have been saved in the original backup set.
|
|
849
|
+
:param pulumi.Input[str] region_id: Region Id
|
|
830
850
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
831
851
|
:param pulumi.Input[str] secondary_zone_id: The ID of the secondary zone.This parameter is returned only if the instance is deployed in two zones.
|
|
832
852
|
:param pulumi.Input[str] security_group_id: Security group id
|
|
@@ -867,6 +887,8 @@ class _TairInstanceState:
|
|
|
867
887
|
pulumi.set(__self__, "cluster_backup_id", cluster_backup_id)
|
|
868
888
|
if connection_domain is not None:
|
|
869
889
|
pulumi.set(__self__, "connection_domain", connection_domain)
|
|
890
|
+
if connection_string_prefix is not None:
|
|
891
|
+
pulumi.set(__self__, "connection_string_prefix", connection_string_prefix)
|
|
870
892
|
if create_time is not None:
|
|
871
893
|
pulumi.set(__self__, "create_time", create_time)
|
|
872
894
|
if effective_time is not None:
|
|
@@ -911,6 +933,8 @@ class _TairInstanceState:
|
|
|
911
933
|
pulumi.set(__self__, "read_only_count", read_only_count)
|
|
912
934
|
if recover_config_mode is not None:
|
|
913
935
|
pulumi.set(__self__, "recover_config_mode", recover_config_mode)
|
|
936
|
+
if region_id is not None:
|
|
937
|
+
pulumi.set(__self__, "region_id", region_id)
|
|
914
938
|
if resource_group_id is not None:
|
|
915
939
|
pulumi.set(__self__, "resource_group_id", resource_group_id)
|
|
916
940
|
if secondary_zone_id is not None:
|
|
@@ -1024,6 +1048,18 @@ class _TairInstanceState:
|
|
|
1024
1048
|
def connection_domain(self, value: Optional[pulumi.Input[str]]):
|
|
1025
1049
|
pulumi.set(self, "connection_domain", value)
|
|
1026
1050
|
|
|
1051
|
+
@property
|
|
1052
|
+
@pulumi.getter(name="connectionStringPrefix")
|
|
1053
|
+
def connection_string_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
1054
|
+
"""
|
|
1055
|
+
The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
1056
|
+
"""
|
|
1057
|
+
return pulumi.get(self, "connection_string_prefix")
|
|
1058
|
+
|
|
1059
|
+
@connection_string_prefix.setter
|
|
1060
|
+
def connection_string_prefix(self, value: Optional[pulumi.Input[str]]):
|
|
1061
|
+
pulumi.set(self, "connection_string_prefix", value)
|
|
1062
|
+
|
|
1027
1063
|
@property
|
|
1028
1064
|
@pulumi.getter(name="createTime")
|
|
1029
1065
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -1310,6 +1346,18 @@ class _TairInstanceState:
|
|
|
1310
1346
|
def recover_config_mode(self, value: Optional[pulumi.Input[str]]):
|
|
1311
1347
|
pulumi.set(self, "recover_config_mode", value)
|
|
1312
1348
|
|
|
1349
|
+
@property
|
|
1350
|
+
@pulumi.getter(name="regionId")
|
|
1351
|
+
def region_id(self) -> Optional[pulumi.Input[str]]:
|
|
1352
|
+
"""
|
|
1353
|
+
Region Id
|
|
1354
|
+
"""
|
|
1355
|
+
return pulumi.get(self, "region_id")
|
|
1356
|
+
|
|
1357
|
+
@region_id.setter
|
|
1358
|
+
def region_id(self, value: Optional[pulumi.Input[str]]):
|
|
1359
|
+
pulumi.set(self, "region_id", value)
|
|
1360
|
+
|
|
1313
1361
|
@property
|
|
1314
1362
|
@pulumi.getter(name="resourceGroupId")
|
|
1315
1363
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -1556,6 +1604,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1556
1604
|
auto_renew_period: Optional[pulumi.Input[str]] = None,
|
|
1557
1605
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
1558
1606
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
1607
|
+
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
1559
1608
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
1560
1609
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
1561
1610
|
force_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
@@ -1610,6 +1659,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1610
1659
|
|
|
1611
1660
|
If your instance is a cloud-native cluster instance, we recommend that you use DescribeClusterBackupList to query the backup set ID of the cluster instance. Then, set the ClusterBackupId request parameter to the backup set ID to clone the cluster instance. This eliminates the need to specify the backup set ID of each shard.
|
|
1612
1661
|
:param pulumi.Input[str] cluster_backup_id: This parameter is supported for specific new cluster instances. You can query the backup set ID by calling the DescribeClusterBackupList operation. If this parameter is supported, you can specify the backup set ID. In this case, you do not need to specify the BackupId parameter. If this parameter is not supported, set the BackupId parameter to the IDs of backup sets in all shards of the source instance, separated by commas (,).
|
|
1662
|
+
:param pulumi.Input[str] connection_string_prefix: The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
1613
1663
|
:param pulumi.Input[str] effective_time: The time when to change the configurations. Default value: Immediately. Valid values: Immediately (The configurations are immediately changed), MaintainTime (The configurations are changed within the maintenance window).
|
|
1614
1664
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
1615
1665
|
|
|
@@ -1711,6 +1761,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1711
1761
|
auto_renew_period: Optional[pulumi.Input[str]] = None,
|
|
1712
1762
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
1713
1763
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
1764
|
+
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
1714
1765
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
1715
1766
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
1716
1767
|
force_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
@@ -1760,6 +1811,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1760
1811
|
__props__.__dict__["auto_renew_period"] = auto_renew_period
|
|
1761
1812
|
__props__.__dict__["backup_id"] = backup_id
|
|
1762
1813
|
__props__.__dict__["cluster_backup_id"] = cluster_backup_id
|
|
1814
|
+
__props__.__dict__["connection_string_prefix"] = connection_string_prefix
|
|
1763
1815
|
__props__.__dict__["effective_time"] = effective_time
|
|
1764
1816
|
__props__.__dict__["engine_version"] = engine_version
|
|
1765
1817
|
__props__.__dict__["force_upgrade"] = force_upgrade
|
|
@@ -1811,6 +1863,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1811
1863
|
__props__.__dict__["create_time"] = None
|
|
1812
1864
|
__props__.__dict__["max_connections"] = None
|
|
1813
1865
|
__props__.__dict__["network_type"] = None
|
|
1866
|
+
__props__.__dict__["region_id"] = None
|
|
1814
1867
|
__props__.__dict__["status"] = None
|
|
1815
1868
|
__props__.__dict__["tair_instance_id"] = None
|
|
1816
1869
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
|
|
@@ -1831,6 +1884,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1831
1884
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
1832
1885
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
1833
1886
|
connection_domain: Optional[pulumi.Input[str]] = None,
|
|
1887
|
+
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
1834
1888
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
1835
1889
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
1836
1890
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
@@ -1853,6 +1907,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1853
1907
|
port: Optional[pulumi.Input[int]] = None,
|
|
1854
1908
|
read_only_count: Optional[pulumi.Input[int]] = None,
|
|
1855
1909
|
recover_config_mode: Optional[pulumi.Input[str]] = None,
|
|
1910
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
1856
1911
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
1857
1912
|
secondary_zone_id: Optional[pulumi.Input[str]] = None,
|
|
1858
1913
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -1887,6 +1942,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1887
1942
|
If your instance is a cloud-native cluster instance, we recommend that you use DescribeClusterBackupList to query the backup set ID of the cluster instance. Then, set the ClusterBackupId request parameter to the backup set ID to clone the cluster instance. This eliminates the need to specify the backup set ID of each shard.
|
|
1888
1943
|
:param pulumi.Input[str] cluster_backup_id: This parameter is supported for specific new cluster instances. You can query the backup set ID by calling the DescribeClusterBackupList operation. If this parameter is supported, you can specify the backup set ID. In this case, you do not need to specify the BackupId parameter. If this parameter is not supported, set the BackupId parameter to the IDs of backup sets in all shards of the source instance, separated by commas (,).
|
|
1889
1944
|
:param pulumi.Input[str] connection_domain: The internal endpoint of the instance.
|
|
1945
|
+
:param pulumi.Input[str] connection_string_prefix: The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
1890
1946
|
:param pulumi.Input[str] create_time: The time when the instance was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
1891
1947
|
:param pulumi.Input[str] effective_time: The time when to change the configurations. Default value: Immediately. Valid values: Immediately (The configurations are immediately changed), MaintainTime (The configurations are changed within the maintenance window).
|
|
1892
1948
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
@@ -1931,6 +1987,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1931
1987
|
|
|
1932
1988
|
If the instance is a cloud disk version read/write splitting architecture instance, you can use this parameter to customize the number of read-only nodes, or set this parameter to 0 to disable the read/write splitting architecture and switch the instance to the standard architecture.
|
|
1933
1989
|
:param pulumi.Input[str] recover_config_mode: Whether to restore the account, kernel parameters, and whitelist (config) information from the original backup set when creating an instance using a specified backup set. The default value is empty, indicating that the account, kernel parameters, and whitelist information are not restored from the original backup set. This parameter is only applicable to Cloud Native instances, and the account, kernel parameters, and whitelist information must have been saved in the original backup set.
|
|
1990
|
+
:param pulumi.Input[str] region_id: Region Id
|
|
1934
1991
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
1935
1992
|
:param pulumi.Input[str] secondary_zone_id: The ID of the secondary zone.This parameter is returned only if the instance is deployed in two zones.
|
|
1936
1993
|
:param pulumi.Input[str] security_group_id: Security group id
|
|
@@ -1969,6 +2026,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1969
2026
|
__props__.__dict__["backup_id"] = backup_id
|
|
1970
2027
|
__props__.__dict__["cluster_backup_id"] = cluster_backup_id
|
|
1971
2028
|
__props__.__dict__["connection_domain"] = connection_domain
|
|
2029
|
+
__props__.__dict__["connection_string_prefix"] = connection_string_prefix
|
|
1972
2030
|
__props__.__dict__["create_time"] = create_time
|
|
1973
2031
|
__props__.__dict__["effective_time"] = effective_time
|
|
1974
2032
|
__props__.__dict__["engine_version"] = engine_version
|
|
@@ -1991,6 +2049,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1991
2049
|
__props__.__dict__["port"] = port
|
|
1992
2050
|
__props__.__dict__["read_only_count"] = read_only_count
|
|
1993
2051
|
__props__.__dict__["recover_config_mode"] = recover_config_mode
|
|
2052
|
+
__props__.__dict__["region_id"] = region_id
|
|
1994
2053
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
1995
2054
|
__props__.__dict__["secondary_zone_id"] = secondary_zone_id
|
|
1996
2055
|
__props__.__dict__["security_group_id"] = security_group_id
|
|
@@ -2062,6 +2121,14 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2062
2121
|
"""
|
|
2063
2122
|
return pulumi.get(self, "connection_domain")
|
|
2064
2123
|
|
|
2124
|
+
@property
|
|
2125
|
+
@pulumi.getter(name="connectionStringPrefix")
|
|
2126
|
+
def connection_string_prefix(self) -> pulumi.Output[Optional[str]]:
|
|
2127
|
+
"""
|
|
2128
|
+
The prefix of the endpoint the instance, which must consist of lowercase letters and numbers and start with a lowercase letter.
|
|
2129
|
+
"""
|
|
2130
|
+
return pulumi.get(self, "connection_string_prefix")
|
|
2131
|
+
|
|
2065
2132
|
@property
|
|
2066
2133
|
@pulumi.getter(name="createTime")
|
|
2067
2134
|
def create_time(self) -> pulumi.Output[str]:
|
|
@@ -2202,7 +2269,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2202
2269
|
|
|
2203
2270
|
@property
|
|
2204
2271
|
@pulumi.getter(name="paramSentinelCompatEnable")
|
|
2205
|
-
def param_sentinel_compat_enable(self) -> pulumi.Output[
|
|
2272
|
+
def param_sentinel_compat_enable(self) -> pulumi.Output[str]:
|
|
2206
2273
|
"""
|
|
2207
2274
|
sentinel compatibility mode, applicable to instances in the cluster architecture proxy connection mode or read/write splitting architecture. For more information about the parameters, see https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance. The value is 0 or 1. The default value is 0.
|
|
2208
2275
|
"""
|
|
@@ -2260,6 +2327,14 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2260
2327
|
"""
|
|
2261
2328
|
return pulumi.get(self, "recover_config_mode")
|
|
2262
2329
|
|
|
2330
|
+
@property
|
|
2331
|
+
@pulumi.getter(name="regionId")
|
|
2332
|
+
def region_id(self) -> pulumi.Output[str]:
|
|
2333
|
+
"""
|
|
2334
|
+
Region Id
|
|
2335
|
+
"""
|
|
2336
|
+
return pulumi.get(self, "region_id")
|
|
2337
|
+
|
|
2263
2338
|
@property
|
|
2264
2339
|
@pulumi.getter(name="resourceGroupId")
|
|
2265
2340
|
def resource_group_id(self) -> pulumi.Output[str]:
|
pulumi_alicloud/vpc/_inputs.py
CHANGED
|
@@ -17,6 +17,8 @@ from .. import _utilities
|
|
|
17
17
|
__all__ = [
|
|
18
18
|
'DhcpOptionsSetAssociateVpcArgs',
|
|
19
19
|
'DhcpOptionsSetAssociateVpcArgsDict',
|
|
20
|
+
'NatGatewayAccessModeArgs',
|
|
21
|
+
'NatGatewayAccessModeArgsDict',
|
|
20
22
|
'NetworkAclAttachmentResourceArgs',
|
|
21
23
|
'NetworkAclAttachmentResourceArgsDict',
|
|
22
24
|
'NetworkAclEgressAclEntryArgs',
|
|
@@ -94,6 +96,58 @@ class DhcpOptionsSetAssociateVpcArgs:
|
|
|
94
96
|
pulumi.set(self, "associate_status", value)
|
|
95
97
|
|
|
96
98
|
|
|
99
|
+
if not MYPY:
|
|
100
|
+
class NatGatewayAccessModeArgsDict(TypedDict):
|
|
101
|
+
mode_value: NotRequired[pulumi.Input[str]]
|
|
102
|
+
"""
|
|
103
|
+
The mode of Access. Valid values:
|
|
104
|
+
"""
|
|
105
|
+
tunnel_type: NotRequired[pulumi.Input[str]]
|
|
106
|
+
"""
|
|
107
|
+
The type of Tunnel. Valid values: `geneve`. **NOTE:** `tunnel_type` takes effect only if `mode_value` is set to `tunnel`.
|
|
108
|
+
"""
|
|
109
|
+
elif False:
|
|
110
|
+
NatGatewayAccessModeArgsDict: TypeAlias = Mapping[str, Any]
|
|
111
|
+
|
|
112
|
+
@pulumi.input_type
|
|
113
|
+
class NatGatewayAccessModeArgs:
|
|
114
|
+
def __init__(__self__, *,
|
|
115
|
+
mode_value: Optional[pulumi.Input[str]] = None,
|
|
116
|
+
tunnel_type: Optional[pulumi.Input[str]] = None):
|
|
117
|
+
"""
|
|
118
|
+
:param pulumi.Input[str] mode_value: The mode of Access. Valid values:
|
|
119
|
+
:param pulumi.Input[str] tunnel_type: The type of Tunnel. Valid values: `geneve`. **NOTE:** `tunnel_type` takes effect only if `mode_value` is set to `tunnel`.
|
|
120
|
+
"""
|
|
121
|
+
if mode_value is not None:
|
|
122
|
+
pulumi.set(__self__, "mode_value", mode_value)
|
|
123
|
+
if tunnel_type is not None:
|
|
124
|
+
pulumi.set(__self__, "tunnel_type", tunnel_type)
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter(name="modeValue")
|
|
128
|
+
def mode_value(self) -> Optional[pulumi.Input[str]]:
|
|
129
|
+
"""
|
|
130
|
+
The mode of Access. Valid values:
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "mode_value")
|
|
133
|
+
|
|
134
|
+
@mode_value.setter
|
|
135
|
+
def mode_value(self, value: Optional[pulumi.Input[str]]):
|
|
136
|
+
pulumi.set(self, "mode_value", value)
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="tunnelType")
|
|
140
|
+
def tunnel_type(self) -> Optional[pulumi.Input[str]]:
|
|
141
|
+
"""
|
|
142
|
+
The type of Tunnel. Valid values: `geneve`. **NOTE:** `tunnel_type` takes effect only if `mode_value` is set to `tunnel`.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "tunnel_type")
|
|
145
|
+
|
|
146
|
+
@tunnel_type.setter
|
|
147
|
+
def tunnel_type(self, value: Optional[pulumi.Input[str]]):
|
|
148
|
+
pulumi.set(self, "tunnel_type", value)
|
|
149
|
+
|
|
150
|
+
|
|
97
151
|
if not MYPY:
|
|
98
152
|
class NetworkAclAttachmentResourceArgsDict(TypedDict):
|
|
99
153
|
resource_id: pulumi.Input[str]
|