pulumi-alicloud 3.67.0__py3-none-any.whl → 3.67.0a1731734345__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 +0 -16
- pulumi_alicloud/cen/flow_log.py +58 -373
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
- pulumi_alicloud/cr/registry_enterprise_instance.py +90 -474
- pulumi_alicloud/ecs/ecs_image_component.py +48 -221
- pulumi_alicloud/ess/_inputs.py +0 -94
- pulumi_alicloud/ess/eci_scaling_configuration.py +14 -42
- pulumi_alicloud/ess/outputs.py +0 -79
- pulumi_alicloud/ess/scaling_configuration.py +0 -47
- pulumi_alicloud/expressconnect/router_vbr_child_instance.py +25 -86
- 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 +0 -47
- pulumi_alicloud/mongodb/sharding_instance.py +0 -47
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/privatelink/vpc_endpoint_service.py +91 -42
- pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +23 -27
- pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +37 -34
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +0 -28
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/__init__.py +0 -2
- pulumi_alicloud/rds/_inputs.py +0 -146
- pulumi_alicloud/rds/outputs.py +0 -105
- pulumi_alicloud/redis/tair_instance.py +1 -76
- pulumi_alicloud/vpc/_inputs.py +0 -54
- pulumi_alicloud/vpc/nat_gateway.py +14 -175
- pulumi_alicloud/vpc/outputs.py +0 -51
- pulumi_alicloud/vpn/gateway_vco_route.py +21 -68
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/METADATA +5 -5
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/RECORD +42 -44
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/WHEEL +1 -1
- pulumi_alicloud/rds/custom.py +0 -1630
- pulumi_alicloud/rds/custom_deployment_set.py +0 -525
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/top_level.txt +0 -0
|
@@ -28,7 +28,6 @@ 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,
|
|
32
31
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
33
32
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
34
33
|
force_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
@@ -73,7 +72,6 @@ class TairInstanceArgs:
|
|
|
73
72
|
|
|
74
73
|
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.
|
|
75
74
|
: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.
|
|
77
75
|
: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).
|
|
78
76
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
79
77
|
|
|
@@ -149,8 +147,6 @@ class TairInstanceArgs:
|
|
|
149
147
|
pulumi.set(__self__, "backup_id", backup_id)
|
|
150
148
|
if cluster_backup_id is not None:
|
|
151
149
|
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)
|
|
154
150
|
if effective_time is not None:
|
|
155
151
|
pulumi.set(__self__, "effective_time", effective_time)
|
|
156
152
|
if engine_version is not None:
|
|
@@ -324,18 +320,6 @@ class TairInstanceArgs:
|
|
|
324
320
|
def cluster_backup_id(self, value: Optional[pulumi.Input[str]]):
|
|
325
321
|
pulumi.set(self, "cluster_backup_id", value)
|
|
326
322
|
|
|
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
|
-
|
|
339
323
|
@property
|
|
340
324
|
@pulumi.getter(name="effectiveTime")
|
|
341
325
|
def effective_time(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -748,7 +732,6 @@ class _TairInstanceState:
|
|
|
748
732
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
749
733
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
750
734
|
connection_domain: Optional[pulumi.Input[str]] = None,
|
|
751
|
-
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
752
735
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
753
736
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
754
737
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
@@ -771,7 +754,6 @@ class _TairInstanceState:
|
|
|
771
754
|
port: Optional[pulumi.Input[int]] = None,
|
|
772
755
|
read_only_count: Optional[pulumi.Input[int]] = None,
|
|
773
756
|
recover_config_mode: Optional[pulumi.Input[str]] = None,
|
|
774
|
-
region_id: Optional[pulumi.Input[str]] = None,
|
|
775
757
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
776
758
|
secondary_zone_id: Optional[pulumi.Input[str]] = None,
|
|
777
759
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -801,7 +783,6 @@ class _TairInstanceState:
|
|
|
801
783
|
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.
|
|
802
784
|
: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 (,).
|
|
803
785
|
: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.
|
|
805
786
|
: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.
|
|
806
787
|
: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).
|
|
807
788
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
@@ -846,7 +827,6 @@ class _TairInstanceState:
|
|
|
846
827
|
|
|
847
828
|
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.
|
|
848
829
|
: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
|
|
850
830
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
851
831
|
: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.
|
|
852
832
|
:param pulumi.Input[str] security_group_id: Security group id
|
|
@@ -887,8 +867,6 @@ class _TairInstanceState:
|
|
|
887
867
|
pulumi.set(__self__, "cluster_backup_id", cluster_backup_id)
|
|
888
868
|
if connection_domain is not None:
|
|
889
869
|
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)
|
|
892
870
|
if create_time is not None:
|
|
893
871
|
pulumi.set(__self__, "create_time", create_time)
|
|
894
872
|
if effective_time is not None:
|
|
@@ -933,8 +911,6 @@ class _TairInstanceState:
|
|
|
933
911
|
pulumi.set(__self__, "read_only_count", read_only_count)
|
|
934
912
|
if recover_config_mode is not None:
|
|
935
913
|
pulumi.set(__self__, "recover_config_mode", recover_config_mode)
|
|
936
|
-
if region_id is not None:
|
|
937
|
-
pulumi.set(__self__, "region_id", region_id)
|
|
938
914
|
if resource_group_id is not None:
|
|
939
915
|
pulumi.set(__self__, "resource_group_id", resource_group_id)
|
|
940
916
|
if secondary_zone_id is not None:
|
|
@@ -1048,18 +1024,6 @@ class _TairInstanceState:
|
|
|
1048
1024
|
def connection_domain(self, value: Optional[pulumi.Input[str]]):
|
|
1049
1025
|
pulumi.set(self, "connection_domain", value)
|
|
1050
1026
|
|
|
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
|
-
|
|
1063
1027
|
@property
|
|
1064
1028
|
@pulumi.getter(name="createTime")
|
|
1065
1029
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -1346,18 +1310,6 @@ class _TairInstanceState:
|
|
|
1346
1310
|
def recover_config_mode(self, value: Optional[pulumi.Input[str]]):
|
|
1347
1311
|
pulumi.set(self, "recover_config_mode", value)
|
|
1348
1312
|
|
|
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
|
-
|
|
1361
1313
|
@property
|
|
1362
1314
|
@pulumi.getter(name="resourceGroupId")
|
|
1363
1315
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -1604,7 +1556,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1604
1556
|
auto_renew_period: Optional[pulumi.Input[str]] = None,
|
|
1605
1557
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
1606
1558
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
1607
|
-
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
1608
1559
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
1609
1560
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
1610
1561
|
force_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
@@ -1659,7 +1610,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1659
1610
|
|
|
1660
1611
|
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.
|
|
1661
1612
|
: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.
|
|
1663
1613
|
: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).
|
|
1664
1614
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
1665
1615
|
|
|
@@ -1761,7 +1711,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1761
1711
|
auto_renew_period: Optional[pulumi.Input[str]] = None,
|
|
1762
1712
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
1763
1713
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
1764
|
-
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
1765
1714
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
1766
1715
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
1767
1716
|
force_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
@@ -1811,7 +1760,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1811
1760
|
__props__.__dict__["auto_renew_period"] = auto_renew_period
|
|
1812
1761
|
__props__.__dict__["backup_id"] = backup_id
|
|
1813
1762
|
__props__.__dict__["cluster_backup_id"] = cluster_backup_id
|
|
1814
|
-
__props__.__dict__["connection_string_prefix"] = connection_string_prefix
|
|
1815
1763
|
__props__.__dict__["effective_time"] = effective_time
|
|
1816
1764
|
__props__.__dict__["engine_version"] = engine_version
|
|
1817
1765
|
__props__.__dict__["force_upgrade"] = force_upgrade
|
|
@@ -1863,7 +1811,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1863
1811
|
__props__.__dict__["create_time"] = None
|
|
1864
1812
|
__props__.__dict__["max_connections"] = None
|
|
1865
1813
|
__props__.__dict__["network_type"] = None
|
|
1866
|
-
__props__.__dict__["region_id"] = None
|
|
1867
1814
|
__props__.__dict__["status"] = None
|
|
1868
1815
|
__props__.__dict__["tair_instance_id"] = None
|
|
1869
1816
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
|
|
@@ -1884,7 +1831,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1884
1831
|
backup_id: Optional[pulumi.Input[str]] = None,
|
|
1885
1832
|
cluster_backup_id: Optional[pulumi.Input[str]] = None,
|
|
1886
1833
|
connection_domain: Optional[pulumi.Input[str]] = None,
|
|
1887
|
-
connection_string_prefix: Optional[pulumi.Input[str]] = None,
|
|
1888
1834
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
1889
1835
|
effective_time: Optional[pulumi.Input[str]] = None,
|
|
1890
1836
|
engine_version: Optional[pulumi.Input[str]] = None,
|
|
@@ -1907,7 +1853,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1907
1853
|
port: Optional[pulumi.Input[int]] = None,
|
|
1908
1854
|
read_only_count: Optional[pulumi.Input[int]] = None,
|
|
1909
1855
|
recover_config_mode: Optional[pulumi.Input[str]] = None,
|
|
1910
|
-
region_id: Optional[pulumi.Input[str]] = None,
|
|
1911
1856
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
1912
1857
|
secondary_zone_id: Optional[pulumi.Input[str]] = None,
|
|
1913
1858
|
security_group_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -1942,7 +1887,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1942
1887
|
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.
|
|
1943
1888
|
: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 (,).
|
|
1944
1889
|
: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.
|
|
1946
1890
|
: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.
|
|
1947
1891
|
: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).
|
|
1948
1892
|
:param pulumi.Input[str] engine_version: Database version. Default value: 1.0.
|
|
@@ -1987,7 +1931,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
1987
1931
|
|
|
1988
1932
|
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.
|
|
1989
1933
|
: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
|
|
1991
1934
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group to which the instance belongs.
|
|
1992
1935
|
: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.
|
|
1993
1936
|
:param pulumi.Input[str] security_group_id: Security group id
|
|
@@ -2026,7 +1969,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2026
1969
|
__props__.__dict__["backup_id"] = backup_id
|
|
2027
1970
|
__props__.__dict__["cluster_backup_id"] = cluster_backup_id
|
|
2028
1971
|
__props__.__dict__["connection_domain"] = connection_domain
|
|
2029
|
-
__props__.__dict__["connection_string_prefix"] = connection_string_prefix
|
|
2030
1972
|
__props__.__dict__["create_time"] = create_time
|
|
2031
1973
|
__props__.__dict__["effective_time"] = effective_time
|
|
2032
1974
|
__props__.__dict__["engine_version"] = engine_version
|
|
@@ -2049,7 +1991,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2049
1991
|
__props__.__dict__["port"] = port
|
|
2050
1992
|
__props__.__dict__["read_only_count"] = read_only_count
|
|
2051
1993
|
__props__.__dict__["recover_config_mode"] = recover_config_mode
|
|
2052
|
-
__props__.__dict__["region_id"] = region_id
|
|
2053
1994
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
2054
1995
|
__props__.__dict__["secondary_zone_id"] = secondary_zone_id
|
|
2055
1996
|
__props__.__dict__["security_group_id"] = security_group_id
|
|
@@ -2121,14 +2062,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2121
2062
|
"""
|
|
2122
2063
|
return pulumi.get(self, "connection_domain")
|
|
2123
2064
|
|
|
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
|
-
|
|
2132
2065
|
@property
|
|
2133
2066
|
@pulumi.getter(name="createTime")
|
|
2134
2067
|
def create_time(self) -> pulumi.Output[str]:
|
|
@@ -2269,7 +2202,7 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2269
2202
|
|
|
2270
2203
|
@property
|
|
2271
2204
|
@pulumi.getter(name="paramSentinelCompatEnable")
|
|
2272
|
-
def param_sentinel_compat_enable(self) -> pulumi.Output[str]:
|
|
2205
|
+
def param_sentinel_compat_enable(self) -> pulumi.Output[Optional[str]]:
|
|
2273
2206
|
"""
|
|
2274
2207
|
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.
|
|
2275
2208
|
"""
|
|
@@ -2327,14 +2260,6 @@ class TairInstance(pulumi.CustomResource):
|
|
|
2327
2260
|
"""
|
|
2328
2261
|
return pulumi.get(self, "recover_config_mode")
|
|
2329
2262
|
|
|
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
|
-
|
|
2338
2263
|
@property
|
|
2339
2264
|
@pulumi.getter(name="resourceGroupId")
|
|
2340
2265
|
def resource_group_id(self) -> pulumi.Output[str]:
|
pulumi_alicloud/vpc/_inputs.py
CHANGED
|
@@ -17,8 +17,6 @@ from .. import _utilities
|
|
|
17
17
|
__all__ = [
|
|
18
18
|
'DhcpOptionsSetAssociateVpcArgs',
|
|
19
19
|
'DhcpOptionsSetAssociateVpcArgsDict',
|
|
20
|
-
'NatGatewayAccessModeArgs',
|
|
21
|
-
'NatGatewayAccessModeArgsDict',
|
|
22
20
|
'NetworkAclAttachmentResourceArgs',
|
|
23
21
|
'NetworkAclAttachmentResourceArgsDict',
|
|
24
22
|
'NetworkAclEgressAclEntryArgs',
|
|
@@ -96,58 +94,6 @@ class DhcpOptionsSetAssociateVpcArgs:
|
|
|
96
94
|
pulumi.set(self, "associate_status", value)
|
|
97
95
|
|
|
98
96
|
|
|
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
|
-
|
|
151
97
|
if not MYPY:
|
|
152
98
|
class NetworkAclAttachmentResourceArgsDict(TypedDict):
|
|
153
99
|
resource_id: pulumi.Input[str]
|