pulumi-alicloud 3.63.0a1727371922__py3-none-any.whl → 3.63.0a1727705137__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 +24 -0
- pulumi_alicloud/alb/acl.py +18 -19
- pulumi_alicloud/alb/health_check_template.py +96 -88
- pulumi_alicloud/cms/_inputs.py +6 -6
- pulumi_alicloud/cms/outputs.py +6 -6
- pulumi_alicloud/ddos/_inputs.py +8 -9
- pulumi_alicloud/ddos/domain_resource.py +446 -90
- pulumi_alicloud/ddos/outputs.py +7 -8
- pulumi_alicloud/eci/container_group.py +47 -0
- pulumi_alicloud/ecs/ecs_snapshot.py +199 -77
- pulumi_alicloud/ecs/snapshot.py +26 -8
- pulumi_alicloud/ess/__init__.py +1 -0
- pulumi_alicloud/ess/alarm.py +47 -0
- pulumi_alicloud/ess/server_group_attachment.py +552 -0
- pulumi_alicloud/ga/_inputs.py +23 -5
- pulumi_alicloud/ga/outputs.py +21 -5
- pulumi_alicloud/governance/account.py +61 -0
- pulumi_alicloud/gpdb/__init__.py +4 -0
- pulumi_alicloud/gpdb/_inputs.py +361 -3
- pulumi_alicloud/gpdb/db_instance_ip_array.py +533 -0
- pulumi_alicloud/gpdb/get_data_backups.py +288 -0
- pulumi_alicloud/gpdb/get_log_backups.py +225 -0
- pulumi_alicloud/gpdb/instance.py +47 -0
- pulumi_alicloud/gpdb/outputs.py +597 -4
- pulumi_alicloud/gpdb/streaming_job.py +1568 -0
- pulumi_alicloud/nlb/load_balancer.py +116 -0
- pulumi_alicloud/oos/get_secret_parameters.py +111 -9
- pulumi_alicloud/oos/outputs.py +22 -11
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/get_account_alias.py +35 -2
- pulumi_alicloud/rds/instance.py +21 -21
- pulumi_alicloud/rocketmq/_inputs.py +79 -22
- pulumi_alicloud/rocketmq/outputs.py +85 -21
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +307 -113
- pulumi_alicloud/vpc/peer_connection.py +127 -59
- pulumi_alicloud/vpc/peer_connection_accepter.py +263 -42
- pulumi_alicloud/vpc/route_entry.py +232 -210
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/RECORD +41 -36
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/top_level.txt +0 -0
pulumi_alicloud/rds/instance.py
CHANGED
|
@@ -138,7 +138,7 @@ class InstanceArgs:
|
|
|
138
138
|
:param pulumi.Input[str] babelfish_port: The TDS port of the instance for which Babelfish is enabled.
|
|
139
139
|
|
|
140
140
|
> **NOTE:** This parameter applies only to ApsaraDB RDS for PostgreSQL instances. For more information about Babelfish for ApsaraDB RDS for PostgreSQL, see [Introduction to Babelfish](https://www.alibabacloud.com/help/en/apsaradb-for-rds/latest/babelfish-for-pg).
|
|
141
|
-
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
141
|
+
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
142
142
|
- aliyun: a cloud certificate
|
|
143
143
|
- custom: a custom certificate
|
|
144
144
|
:param pulumi.Input[str] category: The RDS edition of the instance. If you want to create a serverless instance, you must use this value. Valid values:
|
|
@@ -247,8 +247,8 @@ class InstanceArgs:
|
|
|
247
247
|
:param pulumi.Input[str] security_ip_mode: Valid values are `normal`, `safety`, Default to `normal`. support `safety` switch to high security access mode.
|
|
248
248
|
:param pulumi.Input[str] security_ip_type: The type of IP address in the IP address whitelist.
|
|
249
249
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] security_ips: List of IP addresses allowed to access all databases of an instance. The list contains up to 1,000 IP addresses, separated by commas. Supported formats include 0.0.0.0/0, 10.23.12.24 (IP), and 10.23.12.24/24 (Classless Inter-Domain Routing (CIDR) mode. /24 represents the length of the prefix in an IP address. The range of the prefix length is [1,32]).
|
|
250
|
-
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
251
|
-
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
250
|
+
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
251
|
+
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
252
252
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceServerlessConfigArgs']]] serverless_configs: The settings of the serverless instance. This parameter is required when you create a serverless instance. This parameter takes effect only when you create an ApsaraDB RDS for Serverless instance. See `serverless_config` below.
|
|
253
253
|
:param pulumi.Input[int] sql_collector_config_value: The sql collector keep time of the instance. Valid values are `30`, `180`, `365`, `1095`, `1825`, Default to `30`.
|
|
254
254
|
:param pulumi.Input[str] sql_collector_status: The sql collector status of the instance. Valid values are `Enabled`, `Disabled`, Default to `Disabled`.
|
|
@@ -627,7 +627,7 @@ class InstanceArgs:
|
|
|
627
627
|
@pulumi.getter(name="caType")
|
|
628
628
|
def ca_type(self) -> Optional[pulumi.Input[str]]:
|
|
629
629
|
"""
|
|
630
|
-
The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
630
|
+
The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
631
631
|
- aliyun: a cloud certificate
|
|
632
632
|
- custom: a custom certificate
|
|
633
633
|
"""
|
|
@@ -1199,7 +1199,7 @@ class InstanceArgs:
|
|
|
1199
1199
|
@pulumi.getter(name="serverCert")
|
|
1200
1200
|
def server_cert(self) -> Optional[pulumi.Input[str]]:
|
|
1201
1201
|
"""
|
|
1202
|
-
The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
1202
|
+
The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
1203
1203
|
"""
|
|
1204
1204
|
return pulumi.get(self, "server_cert")
|
|
1205
1205
|
|
|
@@ -1211,7 +1211,7 @@ class InstanceArgs:
|
|
|
1211
1211
|
@pulumi.getter(name="serverKey")
|
|
1212
1212
|
def server_key(self) -> Optional[pulumi.Input[str]]:
|
|
1213
1213
|
"""
|
|
1214
|
-
The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
1214
|
+
The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
1215
1215
|
"""
|
|
1216
1216
|
return pulumi.get(self, "server_key")
|
|
1217
1217
|
|
|
@@ -1609,7 +1609,7 @@ class _InstanceState:
|
|
|
1609
1609
|
:param pulumi.Input[str] babelfish_port: The TDS port of the instance for which Babelfish is enabled.
|
|
1610
1610
|
|
|
1611
1611
|
> **NOTE:** This parameter applies only to ApsaraDB RDS for PostgreSQL instances. For more information about Babelfish for ApsaraDB RDS for PostgreSQL, see [Introduction to Babelfish](https://www.alibabacloud.com/help/en/apsaradb-for-rds/latest/babelfish-for-pg).
|
|
1612
|
-
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
1612
|
+
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
1613
1613
|
- aliyun: a cloud certificate
|
|
1614
1614
|
- custom: a custom certificate
|
|
1615
1615
|
:param pulumi.Input[str] category: The RDS edition of the instance. If you want to create a serverless instance, you must use this value. Valid values:
|
|
@@ -1749,8 +1749,8 @@ class _InstanceState:
|
|
|
1749
1749
|
:param pulumi.Input[str] security_ip_mode: Valid values are `normal`, `safety`, Default to `normal`. support `safety` switch to high security access mode.
|
|
1750
1750
|
:param pulumi.Input[str] security_ip_type: The type of IP address in the IP address whitelist.
|
|
1751
1751
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] security_ips: List of IP addresses allowed to access all databases of an instance. The list contains up to 1,000 IP addresses, separated by commas. Supported formats include 0.0.0.0/0, 10.23.12.24 (IP), and 10.23.12.24/24 (Classless Inter-Domain Routing (CIDR) mode. /24 represents the length of the prefix in an IP address. The range of the prefix length is [1,32]).
|
|
1752
|
-
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
1753
|
-
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
1752
|
+
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
1753
|
+
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
1754
1754
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceServerlessConfigArgs']]] serverless_configs: The settings of the serverless instance. This parameter is required when you create a serverless instance. This parameter takes effect only when you create an ApsaraDB RDS for Serverless instance. See `serverless_config` below.
|
|
1755
1755
|
:param pulumi.Input[int] sql_collector_config_value: The sql collector keep time of the instance. Valid values are `30`, `180`, `365`, `1095`, `1825`, Default to `30`.
|
|
1756
1756
|
:param pulumi.Input[str] sql_collector_status: The sql collector status of the instance. Valid values are `Enabled`, `Disabled`, Default to `Disabled`.
|
|
@@ -2073,7 +2073,7 @@ class _InstanceState:
|
|
|
2073
2073
|
@pulumi.getter(name="caType")
|
|
2074
2074
|
def ca_type(self) -> Optional[pulumi.Input[str]]:
|
|
2075
2075
|
"""
|
|
2076
|
-
The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
2076
|
+
The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
2077
2077
|
- aliyun: a cloud certificate
|
|
2078
2078
|
- custom: a custom certificate
|
|
2079
2079
|
"""
|
|
@@ -2753,7 +2753,7 @@ class _InstanceState:
|
|
|
2753
2753
|
@pulumi.getter(name="serverCert")
|
|
2754
2754
|
def server_cert(self) -> Optional[pulumi.Input[str]]:
|
|
2755
2755
|
"""
|
|
2756
|
-
The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
2756
|
+
The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
2757
2757
|
"""
|
|
2758
2758
|
return pulumi.get(self, "server_cert")
|
|
2759
2759
|
|
|
@@ -2765,7 +2765,7 @@ class _InstanceState:
|
|
|
2765
2765
|
@pulumi.getter(name="serverKey")
|
|
2766
2766
|
def server_key(self) -> Optional[pulumi.Input[str]]:
|
|
2767
2767
|
"""
|
|
2768
|
-
The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
2768
|
+
The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
2769
2769
|
"""
|
|
2770
2770
|
return pulumi.get(self, "server_key")
|
|
2771
2771
|
|
|
@@ -3194,7 +3194,7 @@ class Instance(pulumi.CustomResource):
|
|
|
3194
3194
|
:param pulumi.Input[str] babelfish_port: The TDS port of the instance for which Babelfish is enabled.
|
|
3195
3195
|
|
|
3196
3196
|
> **NOTE:** This parameter applies only to ApsaraDB RDS for PostgreSQL instances. For more information about Babelfish for ApsaraDB RDS for PostgreSQL, see [Introduction to Babelfish](https://www.alibabacloud.com/help/en/apsaradb-for-rds/latest/babelfish-for-pg).
|
|
3197
|
-
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
3197
|
+
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
3198
3198
|
- aliyun: a cloud certificate
|
|
3199
3199
|
- custom: a custom certificate
|
|
3200
3200
|
:param pulumi.Input[str] category: The RDS edition of the instance. If you want to create a serverless instance, you must use this value. Valid values:
|
|
@@ -3331,8 +3331,8 @@ class Instance(pulumi.CustomResource):
|
|
|
3331
3331
|
:param pulumi.Input[str] security_ip_mode: Valid values are `normal`, `safety`, Default to `normal`. support `safety` switch to high security access mode.
|
|
3332
3332
|
:param pulumi.Input[str] security_ip_type: The type of IP address in the IP address whitelist.
|
|
3333
3333
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] security_ips: List of IP addresses allowed to access all databases of an instance. The list contains up to 1,000 IP addresses, separated by commas. Supported formats include 0.0.0.0/0, 10.23.12.24 (IP), and 10.23.12.24/24 (Classless Inter-Domain Routing (CIDR) mode. /24 represents the length of the prefix in an IP address. The range of the prefix length is [1,32]).
|
|
3334
|
-
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
3335
|
-
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
3334
|
+
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
3335
|
+
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
3336
3336
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceServerlessConfigArgs', 'InstanceServerlessConfigArgsDict']]]] serverless_configs: The settings of the serverless instance. This parameter is required when you create a serverless instance. This parameter takes effect only when you create an ApsaraDB RDS for Serverless instance. See `serverless_config` below.
|
|
3337
3337
|
:param pulumi.Input[int] sql_collector_config_value: The sql collector keep time of the instance. Valid values are `30`, `180`, `365`, `1095`, `1825`, Default to `30`.
|
|
3338
3338
|
:param pulumi.Input[str] sql_collector_status: The sql collector status of the instance. Valid values are `Enabled`, `Disabled`, Default to `Disabled`.
|
|
@@ -3716,7 +3716,7 @@ class Instance(pulumi.CustomResource):
|
|
|
3716
3716
|
:param pulumi.Input[str] babelfish_port: The TDS port of the instance for which Babelfish is enabled.
|
|
3717
3717
|
|
|
3718
3718
|
> **NOTE:** This parameter applies only to ApsaraDB RDS for PostgreSQL instances. For more information about Babelfish for ApsaraDB RDS for PostgreSQL, see [Introduction to Babelfish](https://www.alibabacloud.com/help/en/apsaradb-for-rds/latest/babelfish-for-pg).
|
|
3719
|
-
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
3719
|
+
:param pulumi.Input[str] ca_type: The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
3720
3720
|
- aliyun: a cloud certificate
|
|
3721
3721
|
- custom: a custom certificate
|
|
3722
3722
|
:param pulumi.Input[str] category: The RDS edition of the instance. If you want to create a serverless instance, you must use this value. Valid values:
|
|
@@ -3856,8 +3856,8 @@ class Instance(pulumi.CustomResource):
|
|
|
3856
3856
|
:param pulumi.Input[str] security_ip_mode: Valid values are `normal`, `safety`, Default to `normal`. support `safety` switch to high security access mode.
|
|
3857
3857
|
:param pulumi.Input[str] security_ip_type: The type of IP address in the IP address whitelist.
|
|
3858
3858
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] security_ips: List of IP addresses allowed to access all databases of an instance. The list contains up to 1,000 IP addresses, separated by commas. Supported formats include 0.0.0.0/0, 10.23.12.24 (IP), and 10.23.12.24/24 (Classless Inter-Domain Routing (CIDR) mode. /24 represents the length of the prefix in an IP address. The range of the prefix length is [1,32]).
|
|
3859
|
-
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
3860
|
-
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
3859
|
+
:param pulumi.Input[str] server_cert: The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
3860
|
+
:param pulumi.Input[str] server_key: The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
3861
3861
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceServerlessConfigArgs', 'InstanceServerlessConfigArgsDict']]]] serverless_configs: The settings of the serverless instance. This parameter is required when you create a serverless instance. This parameter takes effect only when you create an ApsaraDB RDS for Serverless instance. See `serverless_config` below.
|
|
3862
3862
|
:param pulumi.Input[int] sql_collector_config_value: The sql collector keep time of the instance. Valid values are `30`, `180`, `365`, `1095`, `1825`, Default to `30`.
|
|
3863
3863
|
:param pulumi.Input[str] sql_collector_status: The sql collector status of the instance. Valid values are `Enabled`, `Disabled`, Default to `Disabled`.
|
|
@@ -4076,7 +4076,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4076
4076
|
@pulumi.getter(name="caType")
|
|
4077
4077
|
def ca_type(self) -> pulumi.Output[str]:
|
|
4078
4078
|
"""
|
|
4079
|
-
The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. Value range:
|
|
4079
|
+
The type of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the SSLEnabled parameter to 1, the default value of this parameter is aliyun. **NOTE:** From version 1.231.0, `ca_type` start support `MySQL` engine. Value range:
|
|
4080
4080
|
- aliyun: a cloud certificate
|
|
4081
4081
|
- custom: a custom certificate
|
|
4082
4082
|
"""
|
|
@@ -4560,7 +4560,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4560
4560
|
@pulumi.getter(name="serverCert")
|
|
4561
4561
|
def server_cert(self) -> pulumi.Output[str]:
|
|
4562
4562
|
"""
|
|
4563
|
-
The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
4563
|
+
The content of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_cert` start support `MySQL` engine.
|
|
4564
4564
|
"""
|
|
4565
4565
|
return pulumi.get(self, "server_cert")
|
|
4566
4566
|
|
|
@@ -4568,7 +4568,7 @@ class Instance(pulumi.CustomResource):
|
|
|
4568
4568
|
@pulumi.getter(name="serverKey")
|
|
4569
4569
|
def server_key(self) -> pulumi.Output[str]:
|
|
4570
4570
|
"""
|
|
4571
|
-
The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter.
|
|
4571
|
+
The private key of the server certificate. This parameter is supported only when the instance runs PostgreSQL or MySQL with standard or enhanced SSDs. If you set the CAType parameter to custom, you must also specify this parameter. **NOTE:** From version 1.231.0, `server_key` start support `MySQL` engine.
|
|
4572
4572
|
"""
|
|
4573
4573
|
return pulumi.get(self, "server_key")
|
|
4574
4574
|
|
|
@@ -15,6 +15,7 @@ __all__ = [
|
|
|
15
15
|
'RocketMQInstanceNetworkInfoEndpointArgs',
|
|
16
16
|
'RocketMQInstanceNetworkInfoInternetInfoArgs',
|
|
17
17
|
'RocketMQInstanceNetworkInfoVpcInfoArgs',
|
|
18
|
+
'RocketMQInstanceNetworkInfoVpcInfoVswitchArgs',
|
|
18
19
|
'RocketMQInstanceProductInfoArgs',
|
|
19
20
|
'RocketMQInstanceSoftwareArgs',
|
|
20
21
|
]
|
|
@@ -174,13 +175,13 @@ class RocketMQInstanceNetworkInfoInternetInfoArgs:
|
|
|
174
175
|
flow_out_bandwidth: Optional[pulumi.Input[int]] = None,
|
|
175
176
|
ip_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
176
177
|
"""
|
|
177
|
-
:param pulumi.Input[str] flow_out_type: Public network billing type.
|
|
178
|
-
- payByBandwidth: Fixed bandwidth billing.
|
|
179
|
-
- uninvolved: Not involved.
|
|
180
|
-
:param pulumi.Input[str] internet_spec: Whether to enable public network access.
|
|
178
|
+
:param pulumi.Input[str] flow_out_type: Public network billing type. Parameter values are as follows:
|
|
179
|
+
- payByBandwidth: Fixed bandwidth billing. This parameter must be set to the value when public network access is enabled.
|
|
180
|
+
- uninvolved: Not involved. This parameter must be set to the value when public network access is disabled.
|
|
181
|
+
:param pulumi.Input[str] internet_spec: Whether to enable public network access. The parameter values are as follows:
|
|
181
182
|
- enable: Enable public network access
|
|
182
|
-
- disable: Disable public network access
|
|
183
|
-
:param pulumi.Input[int] flow_out_bandwidth: Public network bandwidth specification. Unit: Mb/s.This field should only be filled when the public network billing type is set to payByBandwidth.The value range is [1 - 1000].
|
|
183
|
+
- disable: Disable public network access Instances by default support VPC access. If public network access is enabled, Alibaba Cloud Message Queue RocketMQ version will incur charges for public network outbound bandwidth. For specific billing information, please refer to [Public Network Access Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/internet-access-fee).
|
|
184
|
+
:param pulumi.Input[int] flow_out_bandwidth: Public network bandwidth specification. Unit: Mb/s. This field should only be filled when the public network billing type is set to payByBandwidth. The value range is [1 - 1000].
|
|
184
185
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_whitelists: internet ip whitelist.
|
|
185
186
|
"""
|
|
186
187
|
pulumi.set(__self__, "flow_out_type", flow_out_type)
|
|
@@ -194,9 +195,9 @@ class RocketMQInstanceNetworkInfoInternetInfoArgs:
|
|
|
194
195
|
@pulumi.getter(name="flowOutType")
|
|
195
196
|
def flow_out_type(self) -> pulumi.Input[str]:
|
|
196
197
|
"""
|
|
197
|
-
Public network billing type.
|
|
198
|
-
- payByBandwidth: Fixed bandwidth billing.
|
|
199
|
-
- uninvolved: Not involved.
|
|
198
|
+
Public network billing type. Parameter values are as follows:
|
|
199
|
+
- payByBandwidth: Fixed bandwidth billing. This parameter must be set to the value when public network access is enabled.
|
|
200
|
+
- uninvolved: Not involved. This parameter must be set to the value when public network access is disabled.
|
|
200
201
|
"""
|
|
201
202
|
return pulumi.get(self, "flow_out_type")
|
|
202
203
|
|
|
@@ -208,9 +209,9 @@ class RocketMQInstanceNetworkInfoInternetInfoArgs:
|
|
|
208
209
|
@pulumi.getter(name="internetSpec")
|
|
209
210
|
def internet_spec(self) -> pulumi.Input[str]:
|
|
210
211
|
"""
|
|
211
|
-
Whether to enable public network access.
|
|
212
|
+
Whether to enable public network access. The parameter values are as follows:
|
|
212
213
|
- enable: Enable public network access
|
|
213
|
-
- disable: Disable public network access
|
|
214
|
+
- disable: Disable public network access Instances by default support VPC access. If public network access is enabled, Alibaba Cloud Message Queue RocketMQ version will incur charges for public network outbound bandwidth. For specific billing information, please refer to [Public Network Access Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/internet-access-fee).
|
|
214
215
|
"""
|
|
215
216
|
return pulumi.get(self, "internet_spec")
|
|
216
217
|
|
|
@@ -222,7 +223,7 @@ class RocketMQInstanceNetworkInfoInternetInfoArgs:
|
|
|
222
223
|
@pulumi.getter(name="flowOutBandwidth")
|
|
223
224
|
def flow_out_bandwidth(self) -> Optional[pulumi.Input[int]]:
|
|
224
225
|
"""
|
|
225
|
-
Public network bandwidth specification. Unit: Mb/s.This field should only be filled when the public network billing type is set to payByBandwidth.The value range is [1 - 1000].
|
|
226
|
+
Public network bandwidth specification. Unit: Mb/s. This field should only be filled when the public network billing type is set to payByBandwidth. The value range is [1 - 1000].
|
|
226
227
|
"""
|
|
227
228
|
return pulumi.get(self, "flow_out_bandwidth")
|
|
228
229
|
|
|
@@ -247,13 +248,22 @@ class RocketMQInstanceNetworkInfoInternetInfoArgs:
|
|
|
247
248
|
class RocketMQInstanceNetworkInfoVpcInfoArgs:
|
|
248
249
|
def __init__(__self__, *,
|
|
249
250
|
vpc_id: pulumi.Input[str],
|
|
250
|
-
|
|
251
|
+
security_group_ids: Optional[pulumi.Input[str]] = None,
|
|
252
|
+
vswitch_id: Optional[pulumi.Input[str]] = None,
|
|
253
|
+
vswitches: Optional[pulumi.Input[Sequence[pulumi.Input['RocketMQInstanceNetworkInfoVpcInfoVswitchArgs']]]] = None):
|
|
251
254
|
"""
|
|
252
255
|
:param pulumi.Input[str] vpc_id: Proprietary Network.
|
|
253
|
-
:param pulumi.Input[str]
|
|
256
|
+
:param pulumi.Input[str] security_group_ids: Security group id.
|
|
257
|
+
:param pulumi.Input[str] vswitch_id: VPC switch id.
|
|
258
|
+
:param pulumi.Input[Sequence[pulumi.Input['RocketMQInstanceNetworkInfoVpcInfoVswitchArgs']]] vswitches: Multiple VSwitches. At least two VSwitches are required for a serverless instance. See `vswitches` below.
|
|
254
259
|
"""
|
|
255
260
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
256
|
-
|
|
261
|
+
if security_group_ids is not None:
|
|
262
|
+
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
263
|
+
if vswitch_id is not None:
|
|
264
|
+
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
265
|
+
if vswitches is not None:
|
|
266
|
+
pulumi.set(__self__, "vswitches", vswitches)
|
|
257
267
|
|
|
258
268
|
@property
|
|
259
269
|
@pulumi.getter(name="vpcId")
|
|
@@ -267,16 +277,63 @@ class RocketMQInstanceNetworkInfoVpcInfoArgs:
|
|
|
267
277
|
def vpc_id(self, value: pulumi.Input[str]):
|
|
268
278
|
pulumi.set(self, "vpc_id", value)
|
|
269
279
|
|
|
280
|
+
@property
|
|
281
|
+
@pulumi.getter(name="securityGroupIds")
|
|
282
|
+
def security_group_ids(self) -> Optional[pulumi.Input[str]]:
|
|
283
|
+
"""
|
|
284
|
+
Security group id.
|
|
285
|
+
"""
|
|
286
|
+
return pulumi.get(self, "security_group_ids")
|
|
287
|
+
|
|
288
|
+
@security_group_ids.setter
|
|
289
|
+
def security_group_ids(self, value: Optional[pulumi.Input[str]]):
|
|
290
|
+
pulumi.set(self, "security_group_ids", value)
|
|
291
|
+
|
|
292
|
+
@property
|
|
293
|
+
@pulumi.getter(name="vswitchId")
|
|
294
|
+
def vswitch_id(self) -> Optional[pulumi.Input[str]]:
|
|
295
|
+
"""
|
|
296
|
+
VPC switch id.
|
|
297
|
+
"""
|
|
298
|
+
return pulumi.get(self, "vswitch_id")
|
|
299
|
+
|
|
300
|
+
@vswitch_id.setter
|
|
301
|
+
def vswitch_id(self, value: Optional[pulumi.Input[str]]):
|
|
302
|
+
pulumi.set(self, "vswitch_id", value)
|
|
303
|
+
|
|
304
|
+
@property
|
|
305
|
+
@pulumi.getter
|
|
306
|
+
def vswitches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RocketMQInstanceNetworkInfoVpcInfoVswitchArgs']]]]:
|
|
307
|
+
"""
|
|
308
|
+
Multiple VSwitches. At least two VSwitches are required for a serverless instance. See `vswitches` below.
|
|
309
|
+
"""
|
|
310
|
+
return pulumi.get(self, "vswitches")
|
|
311
|
+
|
|
312
|
+
@vswitches.setter
|
|
313
|
+
def vswitches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RocketMQInstanceNetworkInfoVpcInfoVswitchArgs']]]]):
|
|
314
|
+
pulumi.set(self, "vswitches", value)
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
@pulumi.input_type
|
|
318
|
+
class RocketMQInstanceNetworkInfoVpcInfoVswitchArgs:
|
|
319
|
+
def __init__(__self__, *,
|
|
320
|
+
vswitch_id: Optional[pulumi.Input[str]] = None):
|
|
321
|
+
"""
|
|
322
|
+
:param pulumi.Input[str] vswitch_id: VPC switch id.
|
|
323
|
+
"""
|
|
324
|
+
if vswitch_id is not None:
|
|
325
|
+
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
326
|
+
|
|
270
327
|
@property
|
|
271
328
|
@pulumi.getter(name="vswitchId")
|
|
272
|
-
def vswitch_id(self) -> pulumi.Input[str]:
|
|
329
|
+
def vswitch_id(self) -> Optional[pulumi.Input[str]]:
|
|
273
330
|
"""
|
|
274
|
-
VPC
|
|
331
|
+
VPC switch id.
|
|
275
332
|
"""
|
|
276
333
|
return pulumi.get(self, "vswitch_id")
|
|
277
334
|
|
|
278
335
|
@vswitch_id.setter
|
|
279
|
-
def vswitch_id(self, value: pulumi.Input[str]):
|
|
336
|
+
def vswitch_id(self, value: Optional[pulumi.Input[str]]):
|
|
280
337
|
pulumi.set(self, "vswitch_id", value)
|
|
281
338
|
|
|
282
339
|
|
|
@@ -291,8 +348,8 @@ class RocketMQInstanceProductInfoArgs:
|
|
|
291
348
|
"""
|
|
292
349
|
:param pulumi.Input[str] msg_process_spec: Message sending and receiving calculation specifications. For details about the upper limit for sending and receiving messages, see [Instance Specifications](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-specifications).
|
|
293
350
|
:param pulumi.Input[bool] auto_scaling: is open auto scaling.
|
|
294
|
-
:param pulumi.Input[int] message_retention_time: Duration of message retention. Unit: hours.For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention.The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
295
|
-
:param pulumi.Input[float] send_receive_ratio: message send receive ratio.Value range: [0.2, 0.5].
|
|
351
|
+
:param pulumi.Input[int] message_retention_time: Duration of message retention. Unit: hours. For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention. The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
352
|
+
:param pulumi.Input[float] send_receive_ratio: message send receive ratio. Value range: [0.2, 0.5].
|
|
296
353
|
:param pulumi.Input[bool] support_auto_scaling: is support auto scaling.
|
|
297
354
|
"""
|
|
298
355
|
pulumi.set(__self__, "msg_process_spec", msg_process_spec)
|
|
@@ -333,7 +390,7 @@ class RocketMQInstanceProductInfoArgs:
|
|
|
333
390
|
@pulumi.getter(name="messageRetentionTime")
|
|
334
391
|
def message_retention_time(self) -> Optional[pulumi.Input[int]]:
|
|
335
392
|
"""
|
|
336
|
-
Duration of message retention. Unit: hours.For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention.The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
393
|
+
Duration of message retention. Unit: hours. For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention. The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
337
394
|
"""
|
|
338
395
|
return pulumi.get(self, "message_retention_time")
|
|
339
396
|
|
|
@@ -345,7 +402,7 @@ class RocketMQInstanceProductInfoArgs:
|
|
|
345
402
|
@pulumi.getter(name="sendReceiveRatio")
|
|
346
403
|
def send_receive_ratio(self) -> Optional[pulumi.Input[float]]:
|
|
347
404
|
"""
|
|
348
|
-
message send receive ratio.Value range: [0.2, 0.5].
|
|
405
|
+
message send receive ratio. Value range: [0.2, 0.5].
|
|
349
406
|
"""
|
|
350
407
|
return pulumi.get(self, "send_receive_ratio")
|
|
351
408
|
|
|
@@ -16,6 +16,7 @@ __all__ = [
|
|
|
16
16
|
'RocketMQInstanceNetworkInfoEndpoint',
|
|
17
17
|
'RocketMQInstanceNetworkInfoInternetInfo',
|
|
18
18
|
'RocketMQInstanceNetworkInfoVpcInfo',
|
|
19
|
+
'RocketMQInstanceNetworkInfoVpcInfoVswitch',
|
|
19
20
|
'RocketMQInstanceProductInfo',
|
|
20
21
|
'RocketMQInstanceSoftware',
|
|
21
22
|
'GetGroupsGroupResult',
|
|
@@ -228,13 +229,13 @@ class RocketMQInstanceNetworkInfoInternetInfo(dict):
|
|
|
228
229
|
flow_out_bandwidth: Optional[int] = None,
|
|
229
230
|
ip_whitelists: Optional[Sequence[str]] = None):
|
|
230
231
|
"""
|
|
231
|
-
:param str flow_out_type: Public network billing type.
|
|
232
|
-
- payByBandwidth: Fixed bandwidth billing.
|
|
233
|
-
- uninvolved: Not involved.
|
|
234
|
-
:param str internet_spec: Whether to enable public network access.
|
|
232
|
+
:param str flow_out_type: Public network billing type. Parameter values are as follows:
|
|
233
|
+
- payByBandwidth: Fixed bandwidth billing. This parameter must be set to the value when public network access is enabled.
|
|
234
|
+
- uninvolved: Not involved. This parameter must be set to the value when public network access is disabled.
|
|
235
|
+
:param str internet_spec: Whether to enable public network access. The parameter values are as follows:
|
|
235
236
|
- enable: Enable public network access
|
|
236
|
-
- disable: Disable public network access
|
|
237
|
-
:param int flow_out_bandwidth: Public network bandwidth specification. Unit: Mb/s.This field should only be filled when the public network billing type is set to payByBandwidth.The value range is [1 - 1000].
|
|
237
|
+
- disable: Disable public network access Instances by default support VPC access. If public network access is enabled, Alibaba Cloud Message Queue RocketMQ version will incur charges for public network outbound bandwidth. For specific billing information, please refer to [Public Network Access Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/internet-access-fee).
|
|
238
|
+
:param int flow_out_bandwidth: Public network bandwidth specification. Unit: Mb/s. This field should only be filled when the public network billing type is set to payByBandwidth. The value range is [1 - 1000].
|
|
238
239
|
:param Sequence[str] ip_whitelists: internet ip whitelist.
|
|
239
240
|
"""
|
|
240
241
|
pulumi.set(__self__, "flow_out_type", flow_out_type)
|
|
@@ -248,9 +249,9 @@ class RocketMQInstanceNetworkInfoInternetInfo(dict):
|
|
|
248
249
|
@pulumi.getter(name="flowOutType")
|
|
249
250
|
def flow_out_type(self) -> str:
|
|
250
251
|
"""
|
|
251
|
-
Public network billing type.
|
|
252
|
-
- payByBandwidth: Fixed bandwidth billing.
|
|
253
|
-
- uninvolved: Not involved.
|
|
252
|
+
Public network billing type. Parameter values are as follows:
|
|
253
|
+
- payByBandwidth: Fixed bandwidth billing. This parameter must be set to the value when public network access is enabled.
|
|
254
|
+
- uninvolved: Not involved. This parameter must be set to the value when public network access is disabled.
|
|
254
255
|
"""
|
|
255
256
|
return pulumi.get(self, "flow_out_type")
|
|
256
257
|
|
|
@@ -258,9 +259,9 @@ class RocketMQInstanceNetworkInfoInternetInfo(dict):
|
|
|
258
259
|
@pulumi.getter(name="internetSpec")
|
|
259
260
|
def internet_spec(self) -> str:
|
|
260
261
|
"""
|
|
261
|
-
Whether to enable public network access.
|
|
262
|
+
Whether to enable public network access. The parameter values are as follows:
|
|
262
263
|
- enable: Enable public network access
|
|
263
|
-
- disable: Disable public network access
|
|
264
|
+
- disable: Disable public network access Instances by default support VPC access. If public network access is enabled, Alibaba Cloud Message Queue RocketMQ version will incur charges for public network outbound bandwidth. For specific billing information, please refer to [Public Network Access Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/internet-access-fee).
|
|
264
265
|
"""
|
|
265
266
|
return pulumi.get(self, "internet_spec")
|
|
266
267
|
|
|
@@ -268,7 +269,7 @@ class RocketMQInstanceNetworkInfoInternetInfo(dict):
|
|
|
268
269
|
@pulumi.getter(name="flowOutBandwidth")
|
|
269
270
|
def flow_out_bandwidth(self) -> Optional[int]:
|
|
270
271
|
"""
|
|
271
|
-
Public network bandwidth specification. Unit: Mb/s.This field should only be filled when the public network billing type is set to payByBandwidth.The value range is [1 - 1000].
|
|
272
|
+
Public network bandwidth specification. Unit: Mb/s. This field should only be filled when the public network billing type is set to payByBandwidth. The value range is [1 - 1000].
|
|
272
273
|
"""
|
|
273
274
|
return pulumi.get(self, "flow_out_bandwidth")
|
|
274
275
|
|
|
@@ -288,6 +289,8 @@ class RocketMQInstanceNetworkInfoVpcInfo(dict):
|
|
|
288
289
|
suggest = None
|
|
289
290
|
if key == "vpcId":
|
|
290
291
|
suggest = "vpc_id"
|
|
292
|
+
elif key == "securityGroupIds":
|
|
293
|
+
suggest = "security_group_ids"
|
|
291
294
|
elif key == "vswitchId":
|
|
292
295
|
suggest = "vswitch_id"
|
|
293
296
|
|
|
@@ -304,13 +307,22 @@ class RocketMQInstanceNetworkInfoVpcInfo(dict):
|
|
|
304
307
|
|
|
305
308
|
def __init__(__self__, *,
|
|
306
309
|
vpc_id: str,
|
|
307
|
-
|
|
310
|
+
security_group_ids: Optional[str] = None,
|
|
311
|
+
vswitch_id: Optional[str] = None,
|
|
312
|
+
vswitches: Optional[Sequence['outputs.RocketMQInstanceNetworkInfoVpcInfoVswitch']] = None):
|
|
308
313
|
"""
|
|
309
314
|
:param str vpc_id: Proprietary Network.
|
|
310
|
-
:param str
|
|
315
|
+
:param str security_group_ids: Security group id.
|
|
316
|
+
:param str vswitch_id: VPC switch id.
|
|
317
|
+
:param Sequence['RocketMQInstanceNetworkInfoVpcInfoVswitchArgs'] vswitches: Multiple VSwitches. At least two VSwitches are required for a serverless instance. See `vswitches` below.
|
|
311
318
|
"""
|
|
312
319
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
313
|
-
|
|
320
|
+
if security_group_ids is not None:
|
|
321
|
+
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
322
|
+
if vswitch_id is not None:
|
|
323
|
+
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
324
|
+
if vswitches is not None:
|
|
325
|
+
pulumi.set(__self__, "vswitches", vswitches)
|
|
314
326
|
|
|
315
327
|
@property
|
|
316
328
|
@pulumi.getter(name="vpcId")
|
|
@@ -320,11 +332,63 @@ class RocketMQInstanceNetworkInfoVpcInfo(dict):
|
|
|
320
332
|
"""
|
|
321
333
|
return pulumi.get(self, "vpc_id")
|
|
322
334
|
|
|
335
|
+
@property
|
|
336
|
+
@pulumi.getter(name="securityGroupIds")
|
|
337
|
+
def security_group_ids(self) -> Optional[str]:
|
|
338
|
+
"""
|
|
339
|
+
Security group id.
|
|
340
|
+
"""
|
|
341
|
+
return pulumi.get(self, "security_group_ids")
|
|
342
|
+
|
|
343
|
+
@property
|
|
344
|
+
@pulumi.getter(name="vswitchId")
|
|
345
|
+
def vswitch_id(self) -> Optional[str]:
|
|
346
|
+
"""
|
|
347
|
+
VPC switch id.
|
|
348
|
+
"""
|
|
349
|
+
return pulumi.get(self, "vswitch_id")
|
|
350
|
+
|
|
351
|
+
@property
|
|
352
|
+
@pulumi.getter
|
|
353
|
+
def vswitches(self) -> Optional[Sequence['outputs.RocketMQInstanceNetworkInfoVpcInfoVswitch']]:
|
|
354
|
+
"""
|
|
355
|
+
Multiple VSwitches. At least two VSwitches are required for a serverless instance. See `vswitches` below.
|
|
356
|
+
"""
|
|
357
|
+
return pulumi.get(self, "vswitches")
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
@pulumi.output_type
|
|
361
|
+
class RocketMQInstanceNetworkInfoVpcInfoVswitch(dict):
|
|
362
|
+
@staticmethod
|
|
363
|
+
def __key_warning(key: str):
|
|
364
|
+
suggest = None
|
|
365
|
+
if key == "vswitchId":
|
|
366
|
+
suggest = "vswitch_id"
|
|
367
|
+
|
|
368
|
+
if suggest:
|
|
369
|
+
pulumi.log.warn(f"Key '{key}' not found in RocketMQInstanceNetworkInfoVpcInfoVswitch. Access the value via the '{suggest}' property getter instead.")
|
|
370
|
+
|
|
371
|
+
def __getitem__(self, key: str) -> Any:
|
|
372
|
+
RocketMQInstanceNetworkInfoVpcInfoVswitch.__key_warning(key)
|
|
373
|
+
return super().__getitem__(key)
|
|
374
|
+
|
|
375
|
+
def get(self, key: str, default = None) -> Any:
|
|
376
|
+
RocketMQInstanceNetworkInfoVpcInfoVswitch.__key_warning(key)
|
|
377
|
+
return super().get(key, default)
|
|
378
|
+
|
|
379
|
+
def __init__(__self__, *,
|
|
380
|
+
vswitch_id: Optional[str] = None):
|
|
381
|
+
"""
|
|
382
|
+
:param str vswitch_id: VPC switch id.
|
|
383
|
+
"""
|
|
384
|
+
if vswitch_id is not None:
|
|
385
|
+
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
386
|
+
|
|
323
387
|
@property
|
|
324
388
|
@pulumi.getter(name="vswitchId")
|
|
325
|
-
def vswitch_id(self) -> str:
|
|
389
|
+
def vswitch_id(self) -> Optional[str]:
|
|
326
390
|
"""
|
|
327
|
-
VPC
|
|
391
|
+
VPC switch id.
|
|
328
392
|
"""
|
|
329
393
|
return pulumi.get(self, "vswitch_id")
|
|
330
394
|
|
|
@@ -365,8 +429,8 @@ class RocketMQInstanceProductInfo(dict):
|
|
|
365
429
|
"""
|
|
366
430
|
:param str msg_process_spec: Message sending and receiving calculation specifications. For details about the upper limit for sending and receiving messages, see [Instance Specifications](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-specifications).
|
|
367
431
|
:param bool auto_scaling: is open auto scaling.
|
|
368
|
-
:param int message_retention_time: Duration of message retention. Unit: hours.For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention.The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
369
|
-
:param float send_receive_ratio: message send receive ratio.Value range: [0.2, 0.5].
|
|
432
|
+
:param int message_retention_time: Duration of message retention. Unit: hours. For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention. The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
433
|
+
:param float send_receive_ratio: message send receive ratio. Value range: [0.2, 0.5].
|
|
370
434
|
:param bool support_auto_scaling: is support auto scaling.
|
|
371
435
|
"""
|
|
372
436
|
pulumi.set(__self__, "msg_process_spec", msg_process_spec)
|
|
@@ -399,7 +463,7 @@ class RocketMQInstanceProductInfo(dict):
|
|
|
399
463
|
@pulumi.getter(name="messageRetentionTime")
|
|
400
464
|
def message_retention_time(self) -> Optional[int]:
|
|
401
465
|
"""
|
|
402
|
-
Duration of message retention. Unit: hours.For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention.The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
466
|
+
Duration of message retention. Unit: hours. For the range of values, please refer to [Usage Limits](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/usage-limits)>Resource Quotas>Limitations on Message Retention. The message storage in AlibabaCloud RocketMQ is fully implemented in a serverless and elastic manner, with charges based on the actual storage space. You can control the storage capacity of messages by adjusting the duration of message retention. For more information, please see [Storage Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/storage-fees).
|
|
403
467
|
"""
|
|
404
468
|
return pulumi.get(self, "message_retention_time")
|
|
405
469
|
|
|
@@ -407,7 +471,7 @@ class RocketMQInstanceProductInfo(dict):
|
|
|
407
471
|
@pulumi.getter(name="sendReceiveRatio")
|
|
408
472
|
def send_receive_ratio(self) -> Optional[float]:
|
|
409
473
|
"""
|
|
410
|
-
message send receive ratio.Value range: [0.2, 0.5].
|
|
474
|
+
message send receive ratio. Value range: [0.2, 0.5].
|
|
411
475
|
"""
|
|
412
476
|
return pulumi.get(self, "send_receive_ratio")
|
|
413
477
|
|