pulumi-alicloud 3.63.0__py3-none-any.whl → 3.63.0a1726205090__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 -24
- pulumi_alicloud/alb/acl.py +19 -18
- pulumi_alicloud/alb/health_check_template.py +88 -96
- pulumi_alicloud/amqp/binding.py +36 -30
- pulumi_alicloud/cen/_inputs.py +14 -180
- pulumi_alicloud/cen/outputs.py +12 -173
- pulumi_alicloud/cen/traffic_marking_policy.py +53 -116
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +119 -338
- pulumi_alicloud/cms/_inputs.py +6 -6
- pulumi_alicloud/cms/outputs.py +6 -6
- pulumi_alicloud/cr/chart_namespace.py +6 -14
- pulumi_alicloud/cr/endpoint_acl_policy.py +2 -10
- pulumi_alicloud/cr/namespace.py +2 -10
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/_inputs.py +9 -8
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ddos/domain_resource.py +90 -446
- pulumi_alicloud/ddos/outputs.py +8 -7
- pulumi_alicloud/eci/container_group.py +0 -47
- pulumi_alicloud/ecs/_inputs.py +0 -28
- pulumi_alicloud/ecs/ecs_snapshot.py +77 -199
- pulumi_alicloud/ecs/outputs.py +0 -20
- pulumi_alicloud/ecs/snapshot.py +8 -26
- pulumi_alicloud/emrv2/_inputs.py +12 -12
- pulumi_alicloud/emrv2/outputs.py +12 -12
- pulumi_alicloud/ens/_inputs.py +2 -50
- pulumi_alicloud/ens/instance.py +184 -428
- pulumi_alicloud/ens/outputs.py +2 -57
- pulumi_alicloud/ess/__init__.py +0 -1
- pulumi_alicloud/ess/alarm.py +0 -47
- pulumi_alicloud/expressconnect/physical_connection.py +185 -321
- pulumi_alicloud/fc/trigger.py +24 -22
- pulumi_alicloud/ga/_inputs.py +5 -23
- pulumi_alicloud/ga/endpoint_group.py +14 -68
- pulumi_alicloud/ga/outputs.py +5 -21
- pulumi_alicloud/governance/account.py +0 -61
- pulumi_alicloud/gpdb/__init__.py +0 -4
- pulumi_alicloud/gpdb/_inputs.py +3 -361
- pulumi_alicloud/gpdb/instance.py +0 -47
- pulumi_alicloud/gpdb/outputs.py +4 -597
- pulumi_alicloud/mongodb/instance.py +0 -94
- pulumi_alicloud/nlb/_inputs.py +64 -120
- pulumi_alicloud/nlb/get_listeners.py +2 -32
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +2 -8
- pulumi_alicloud/nlb/listener.py +245 -315
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +212 -297
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +39 -29
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +18 -22
- pulumi_alicloud/nlb/outputs.py +66 -122
- pulumi_alicloud/nlb/security_policy.py +25 -53
- pulumi_alicloud/nlb/server_group.py +133 -196
- pulumi_alicloud/ocean/base_instance.py +163 -498
- pulumi_alicloud/oos/get_secret_parameters.py +9 -111
- pulumi_alicloud/oos/outputs.py +11 -22
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/get_account_alias.py +2 -35
- pulumi_alicloud/rds/instance.py +21 -21
- pulumi_alicloud/rocketmq/_inputs.py +22 -79
- pulumi_alicloud/rocketmq/outputs.py +21 -85
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +113 -307
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/peer_connection.py +59 -127
- pulumi_alicloud/vpc/peer_connection_accepter.py +42 -263
- pulumi_alicloud/vpc/route_entry.py +210 -232
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/RECORD +70 -75
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/WHEEL +1 -1
- pulumi_alicloud/ess/server_group_attachment.py +0 -552
- pulumi_alicloud/gpdb/db_instance_ip_array.py +0 -533
- pulumi_alicloud/gpdb/get_data_backups.py +0 -288
- pulumi_alicloud/gpdb/get_log_backups.py +0 -225
- pulumi_alicloud/gpdb/streaming_job.py +0 -1568
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726205090.dist-info}/top_level.txt +0 -0
|
@@ -24,7 +24,6 @@ class RocketMQInstanceArgs:
|
|
|
24
24
|
auto_renew: Optional[pulumi.Input[bool]] = None,
|
|
25
25
|
auto_renew_period: Optional[pulumi.Input[int]] = None,
|
|
26
26
|
auto_renew_period_unit: Optional[pulumi.Input[str]] = None,
|
|
27
|
-
commodity_code: Optional[pulumi.Input[str]] = None,
|
|
28
27
|
instance_name: Optional[pulumi.Input[str]] = None,
|
|
29
28
|
period: Optional[pulumi.Input[int]] = None,
|
|
30
29
|
period_unit: Optional[pulumi.Input[str]] = None,
|
|
@@ -35,57 +34,35 @@ class RocketMQInstanceArgs:
|
|
|
35
34
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
36
35
|
"""
|
|
37
36
|
The set of arguments for constructing a RocketMQInstance resource.
|
|
38
|
-
:param pulumi.Input['RocketMQInstanceNetworkInfoArgs'] network_info: Instance network configuration information See `network_info` below.
|
|
39
|
-
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
40
|
-
|
|
41
|
-
The parameter values are as follows:
|
|
37
|
+
:param pulumi.Input['RocketMQInstanceNetworkInfoArgs'] network_info: Instance network configuration information. See `network_info` below.
|
|
38
|
+
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
42
39
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
43
40
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
44
|
-
|
|
45
41
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
46
|
-
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
47
|
-
|
|
48
|
-
The parameter values are as follows:
|
|
42
|
+
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
49
43
|
- standard: Standard Edition
|
|
50
44
|
- ultimate: Platinum Edition
|
|
51
|
-
- professional: Professional Edition
|
|
45
|
+
- professional: Professional Edition.
|
|
52
46
|
:param pulumi.Input[str] service_code: The code of the service code instance. The code of the RocketMQ is rmq.
|
|
53
|
-
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
54
|
-
|
|
55
|
-
The parameter values are as follows:
|
|
47
|
+
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
56
48
|
- cluster_ha: Cluster High Availability Edition
|
|
57
49
|
- single_node: Single Node Testing Edition
|
|
58
|
-
|
|
59
50
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
60
51
|
:param pulumi.Input[bool] auto_renew: Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
61
52
|
- true: Enable auto-renewal
|
|
62
|
-
- false: Disable auto-renewal
|
|
63
|
-
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
64
|
-
|
|
65
|
-
The values can be as follows:
|
|
66
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
53
|
+
- false: Disable auto-renewal.
|
|
54
|
+
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
67
55
|
:param pulumi.Input[str] auto_renew_period_unit: The minimum periodic unit for the duration of auto-renewal. This parameter is only valid when auto-renewal is enabled. Valid values: `Month`, `Year`.
|
|
68
|
-
:param pulumi.Input[str]
|
|
69
|
-
|
|
70
|
-
ons_rmqsub_public_cn: Package year and month instance
|
|
71
|
-
|
|
72
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
73
|
-
|
|
74
|
-
Next: Serverless instances
|
|
75
|
-
:param pulumi.Input[str] instance_name: The name of instance
|
|
76
|
-
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
77
|
-
|
|
78
|
-
The values can be as follows:
|
|
56
|
+
:param pulumi.Input[str] instance_name: The name of instance.
|
|
57
|
+
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
79
58
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
80
|
-
- Annual purchase: 1, 2, 3
|
|
81
|
-
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase.
|
|
82
|
-
|
|
83
|
-
The parameter values are as follows:
|
|
59
|
+
- Annual purchase: 1, 2, 3.
|
|
60
|
+
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
84
61
|
- Month: Purchase on a monthly basis
|
|
85
|
-
- Year: Purchase on an annual basis
|
|
86
|
-
:param pulumi.Input['RocketMQInstanceProductInfoArgs'] product_info: product info See `product_info` below.
|
|
87
|
-
:param pulumi.Input[str] remark: Custom description
|
|
88
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
62
|
+
- Year: Purchase on an annual basis.
|
|
63
|
+
:param pulumi.Input['RocketMQInstanceProductInfoArgs'] product_info: product info. See `product_info` below.
|
|
64
|
+
:param pulumi.Input[str] remark: Custom description.
|
|
65
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
89
66
|
:param pulumi.Input['RocketMQInstanceSoftwareArgs'] software: Instance software information. See `software` below.
|
|
90
67
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The resource label.
|
|
91
68
|
"""
|
|
@@ -100,8 +77,6 @@ class RocketMQInstanceArgs:
|
|
|
100
77
|
pulumi.set(__self__, "auto_renew_period", auto_renew_period)
|
|
101
78
|
if auto_renew_period_unit is not None:
|
|
102
79
|
pulumi.set(__self__, "auto_renew_period_unit", auto_renew_period_unit)
|
|
103
|
-
if commodity_code is not None:
|
|
104
|
-
pulumi.set(__self__, "commodity_code", commodity_code)
|
|
105
80
|
if instance_name is not None:
|
|
106
81
|
pulumi.set(__self__, "instance_name", instance_name)
|
|
107
82
|
if period is not None:
|
|
@@ -123,7 +98,7 @@ class RocketMQInstanceArgs:
|
|
|
123
98
|
@pulumi.getter(name="networkInfo")
|
|
124
99
|
def network_info(self) -> pulumi.Input['RocketMQInstanceNetworkInfoArgs']:
|
|
125
100
|
"""
|
|
126
|
-
Instance network configuration information See `network_info` below.
|
|
101
|
+
Instance network configuration information. See `network_info` below.
|
|
127
102
|
"""
|
|
128
103
|
return pulumi.get(self, "network_info")
|
|
129
104
|
|
|
@@ -135,12 +110,9 @@ class RocketMQInstanceArgs:
|
|
|
135
110
|
@pulumi.getter(name="paymentType")
|
|
136
111
|
def payment_type(self) -> pulumi.Input[str]:
|
|
137
112
|
"""
|
|
138
|
-
The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
139
|
-
|
|
140
|
-
The parameter values are as follows:
|
|
113
|
+
The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
141
114
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
142
115
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
143
|
-
|
|
144
116
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
145
117
|
"""
|
|
146
118
|
return pulumi.get(self, "payment_type")
|
|
@@ -153,12 +125,10 @@ class RocketMQInstanceArgs:
|
|
|
153
125
|
@pulumi.getter(name="seriesCode")
|
|
154
126
|
def series_code(self) -> pulumi.Input[str]:
|
|
155
127
|
"""
|
|
156
|
-
The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
157
|
-
|
|
158
|
-
The parameter values are as follows:
|
|
128
|
+
The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
159
129
|
- standard: Standard Edition
|
|
160
130
|
- ultimate: Platinum Edition
|
|
161
|
-
- professional: Professional Edition
|
|
131
|
+
- professional: Professional Edition.
|
|
162
132
|
"""
|
|
163
133
|
return pulumi.get(self, "series_code")
|
|
164
134
|
|
|
@@ -182,12 +152,9 @@ class RocketMQInstanceArgs:
|
|
|
182
152
|
@pulumi.getter(name="subSeriesCode")
|
|
183
153
|
def sub_series_code(self) -> pulumi.Input[str]:
|
|
184
154
|
"""
|
|
185
|
-
The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
186
|
-
|
|
187
|
-
The parameter values are as follows:
|
|
155
|
+
The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
188
156
|
- cluster_ha: Cluster High Availability Edition
|
|
189
157
|
- single_node: Single Node Testing Edition
|
|
190
|
-
|
|
191
158
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
192
159
|
"""
|
|
193
160
|
return pulumi.get(self, "sub_series_code")
|
|
@@ -202,7 +169,7 @@ class RocketMQInstanceArgs:
|
|
|
202
169
|
"""
|
|
203
170
|
Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
204
171
|
- true: Enable auto-renewal
|
|
205
|
-
- false: Disable auto-renewal
|
|
172
|
+
- false: Disable auto-renewal.
|
|
206
173
|
"""
|
|
207
174
|
return pulumi.get(self, "auto_renew")
|
|
208
175
|
|
|
@@ -214,10 +181,7 @@ class RocketMQInstanceArgs:
|
|
|
214
181
|
@pulumi.getter(name="autoRenewPeriod")
|
|
215
182
|
def auto_renew_period(self) -> Optional[pulumi.Input[int]]:
|
|
216
183
|
"""
|
|
217
|
-
Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
218
|
-
|
|
219
|
-
The values can be as follows:
|
|
220
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
184
|
+
Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
221
185
|
"""
|
|
222
186
|
return pulumi.get(self, "auto_renew_period")
|
|
223
187
|
|
|
@@ -237,29 +201,11 @@ class RocketMQInstanceArgs:
|
|
|
237
201
|
def auto_renew_period_unit(self, value: Optional[pulumi.Input[str]]):
|
|
238
202
|
pulumi.set(self, "auto_renew_period_unit", value)
|
|
239
203
|
|
|
240
|
-
@property
|
|
241
|
-
@pulumi.getter(name="commodityCode")
|
|
242
|
-
def commodity_code(self) -> Optional[pulumi.Input[str]]:
|
|
243
|
-
"""
|
|
244
|
-
Commodity code
|
|
245
|
-
|
|
246
|
-
ons_rmqsub_public_cn: Package year and month instance
|
|
247
|
-
|
|
248
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
249
|
-
|
|
250
|
-
Next: Serverless instances
|
|
251
|
-
"""
|
|
252
|
-
return pulumi.get(self, "commodity_code")
|
|
253
|
-
|
|
254
|
-
@commodity_code.setter
|
|
255
|
-
def commodity_code(self, value: Optional[pulumi.Input[str]]):
|
|
256
|
-
pulumi.set(self, "commodity_code", value)
|
|
257
|
-
|
|
258
204
|
@property
|
|
259
205
|
@pulumi.getter(name="instanceName")
|
|
260
206
|
def instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
261
207
|
"""
|
|
262
|
-
The name of instance
|
|
208
|
+
The name of instance.
|
|
263
209
|
"""
|
|
264
210
|
return pulumi.get(self, "instance_name")
|
|
265
211
|
|
|
@@ -271,11 +217,9 @@ class RocketMQInstanceArgs:
|
|
|
271
217
|
@pulumi.getter
|
|
272
218
|
def period(self) -> Optional[pulumi.Input[int]]:
|
|
273
219
|
"""
|
|
274
|
-
Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
275
|
-
|
|
276
|
-
The values can be as follows:
|
|
220
|
+
Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
277
221
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
278
|
-
- Annual purchase: 1, 2, 3
|
|
222
|
+
- Annual purchase: 1, 2, 3.
|
|
279
223
|
"""
|
|
280
224
|
return pulumi.get(self, "period")
|
|
281
225
|
|
|
@@ -287,11 +231,9 @@ class RocketMQInstanceArgs:
|
|
|
287
231
|
@pulumi.getter(name="periodUnit")
|
|
288
232
|
def period_unit(self) -> Optional[pulumi.Input[str]]:
|
|
289
233
|
"""
|
|
290
|
-
The minimum periodic unit for the duration of purchase.
|
|
291
|
-
|
|
292
|
-
The parameter values are as follows:
|
|
234
|
+
The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
293
235
|
- Month: Purchase on a monthly basis
|
|
294
|
-
- Year: Purchase on an annual basis
|
|
236
|
+
- Year: Purchase on an annual basis.
|
|
295
237
|
"""
|
|
296
238
|
return pulumi.get(self, "period_unit")
|
|
297
239
|
|
|
@@ -303,7 +245,7 @@ class RocketMQInstanceArgs:
|
|
|
303
245
|
@pulumi.getter(name="productInfo")
|
|
304
246
|
def product_info(self) -> Optional[pulumi.Input['RocketMQInstanceProductInfoArgs']]:
|
|
305
247
|
"""
|
|
306
|
-
product info See `product_info` below.
|
|
248
|
+
product info. See `product_info` below.
|
|
307
249
|
"""
|
|
308
250
|
return pulumi.get(self, "product_info")
|
|
309
251
|
|
|
@@ -315,7 +257,7 @@ class RocketMQInstanceArgs:
|
|
|
315
257
|
@pulumi.getter
|
|
316
258
|
def remark(self) -> Optional[pulumi.Input[str]]:
|
|
317
259
|
"""
|
|
318
|
-
Custom description
|
|
260
|
+
Custom description.
|
|
319
261
|
"""
|
|
320
262
|
return pulumi.get(self, "remark")
|
|
321
263
|
|
|
@@ -327,7 +269,7 @@ class RocketMQInstanceArgs:
|
|
|
327
269
|
@pulumi.getter(name="resourceGroupId")
|
|
328
270
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
329
271
|
"""
|
|
330
|
-
The ID of the resource group
|
|
272
|
+
The ID of the resource group.
|
|
331
273
|
"""
|
|
332
274
|
return pulumi.get(self, "resource_group_id")
|
|
333
275
|
|
|
@@ -366,7 +308,6 @@ class _RocketMQInstanceState:
|
|
|
366
308
|
auto_renew: Optional[pulumi.Input[bool]] = None,
|
|
367
309
|
auto_renew_period: Optional[pulumi.Input[int]] = None,
|
|
368
310
|
auto_renew_period_unit: Optional[pulumi.Input[str]] = None,
|
|
369
|
-
commodity_code: Optional[pulumi.Input[str]] = None,
|
|
370
311
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
371
312
|
instance_name: Optional[pulumi.Input[str]] = None,
|
|
372
313
|
network_info: Optional[pulumi.Input['RocketMQInstanceNetworkInfoArgs']] = None,
|
|
@@ -386,57 +327,35 @@ class _RocketMQInstanceState:
|
|
|
386
327
|
Input properties used for looking up and filtering RocketMQInstance resources.
|
|
387
328
|
:param pulumi.Input[bool] auto_renew: Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
388
329
|
- true: Enable auto-renewal
|
|
389
|
-
- false: Disable auto-renewal
|
|
390
|
-
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
391
|
-
|
|
392
|
-
The values can be as follows:
|
|
393
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
330
|
+
- false: Disable auto-renewal.
|
|
331
|
+
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
394
332
|
:param pulumi.Input[str] auto_renew_period_unit: The minimum periodic unit for the duration of auto-renewal. This parameter is only valid when auto-renewal is enabled. Valid values: `Month`, `Year`.
|
|
395
|
-
:param pulumi.Input[str]
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
400
|
-
|
|
401
|
-
Next: Serverless instances
|
|
402
|
-
:param pulumi.Input[str] create_time: The creation time of the resource
|
|
403
|
-
:param pulumi.Input[str] instance_name: The name of instance
|
|
404
|
-
:param pulumi.Input['RocketMQInstanceNetworkInfoArgs'] network_info: Instance network configuration information See `network_info` below.
|
|
405
|
-
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
406
|
-
|
|
407
|
-
The parameter values are as follows:
|
|
333
|
+
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
334
|
+
:param pulumi.Input[str] instance_name: The name of instance.
|
|
335
|
+
:param pulumi.Input['RocketMQInstanceNetworkInfoArgs'] network_info: Instance network configuration information. See `network_info` below.
|
|
336
|
+
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
408
337
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
409
338
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
410
|
-
|
|
411
339
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
412
|
-
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
413
|
-
|
|
414
|
-
The values can be as follows:
|
|
340
|
+
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
415
341
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
416
|
-
- Annual purchase: 1, 2, 3
|
|
417
|
-
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase.
|
|
418
|
-
|
|
419
|
-
The parameter values are as follows:
|
|
342
|
+
- Annual purchase: 1, 2, 3.
|
|
343
|
+
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
420
344
|
- Month: Purchase on a monthly basis
|
|
421
|
-
- Year: Purchase on an annual basis
|
|
422
|
-
:param pulumi.Input['RocketMQInstanceProductInfoArgs'] product_info: product info See `product_info` below.
|
|
423
|
-
:param pulumi.Input[str] remark: Custom description
|
|
424
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
425
|
-
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
426
|
-
|
|
427
|
-
The parameter values are as follows:
|
|
345
|
+
- Year: Purchase on an annual basis.
|
|
346
|
+
:param pulumi.Input['RocketMQInstanceProductInfoArgs'] product_info: product info. See `product_info` below.
|
|
347
|
+
:param pulumi.Input[str] remark: Custom description.
|
|
348
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
349
|
+
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
428
350
|
- standard: Standard Edition
|
|
429
351
|
- ultimate: Platinum Edition
|
|
430
|
-
- professional: Professional Edition
|
|
352
|
+
- professional: Professional Edition.
|
|
431
353
|
:param pulumi.Input[str] service_code: The code of the service code instance. The code of the RocketMQ is rmq.
|
|
432
354
|
:param pulumi.Input['RocketMQInstanceSoftwareArgs'] software: Instance software information. See `software` below.
|
|
433
|
-
:param pulumi.Input[str] status: The status of the instance
|
|
434
|
-
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
435
|
-
|
|
436
|
-
The parameter values are as follows:
|
|
355
|
+
:param pulumi.Input[str] status: The status of the instance.
|
|
356
|
+
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
437
357
|
- cluster_ha: Cluster High Availability Edition
|
|
438
358
|
- single_node: Single Node Testing Edition
|
|
439
|
-
|
|
440
359
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
441
360
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The resource label.
|
|
442
361
|
"""
|
|
@@ -446,8 +365,6 @@ class _RocketMQInstanceState:
|
|
|
446
365
|
pulumi.set(__self__, "auto_renew_period", auto_renew_period)
|
|
447
366
|
if auto_renew_period_unit is not None:
|
|
448
367
|
pulumi.set(__self__, "auto_renew_period_unit", auto_renew_period_unit)
|
|
449
|
-
if commodity_code is not None:
|
|
450
|
-
pulumi.set(__self__, "commodity_code", commodity_code)
|
|
451
368
|
if create_time is not None:
|
|
452
369
|
pulumi.set(__self__, "create_time", create_time)
|
|
453
370
|
if instance_name is not None:
|
|
@@ -485,7 +402,7 @@ class _RocketMQInstanceState:
|
|
|
485
402
|
"""
|
|
486
403
|
Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
487
404
|
- true: Enable auto-renewal
|
|
488
|
-
- false: Disable auto-renewal
|
|
405
|
+
- false: Disable auto-renewal.
|
|
489
406
|
"""
|
|
490
407
|
return pulumi.get(self, "auto_renew")
|
|
491
408
|
|
|
@@ -497,10 +414,7 @@ class _RocketMQInstanceState:
|
|
|
497
414
|
@pulumi.getter(name="autoRenewPeriod")
|
|
498
415
|
def auto_renew_period(self) -> Optional[pulumi.Input[int]]:
|
|
499
416
|
"""
|
|
500
|
-
Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
501
|
-
|
|
502
|
-
The values can be as follows:
|
|
503
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
417
|
+
Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
504
418
|
"""
|
|
505
419
|
return pulumi.get(self, "auto_renew_period")
|
|
506
420
|
|
|
@@ -520,29 +434,11 @@ class _RocketMQInstanceState:
|
|
|
520
434
|
def auto_renew_period_unit(self, value: Optional[pulumi.Input[str]]):
|
|
521
435
|
pulumi.set(self, "auto_renew_period_unit", value)
|
|
522
436
|
|
|
523
|
-
@property
|
|
524
|
-
@pulumi.getter(name="commodityCode")
|
|
525
|
-
def commodity_code(self) -> Optional[pulumi.Input[str]]:
|
|
526
|
-
"""
|
|
527
|
-
Commodity code
|
|
528
|
-
|
|
529
|
-
ons_rmqsub_public_cn: Package year and month instance
|
|
530
|
-
|
|
531
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
532
|
-
|
|
533
|
-
Next: Serverless instances
|
|
534
|
-
"""
|
|
535
|
-
return pulumi.get(self, "commodity_code")
|
|
536
|
-
|
|
537
|
-
@commodity_code.setter
|
|
538
|
-
def commodity_code(self, value: Optional[pulumi.Input[str]]):
|
|
539
|
-
pulumi.set(self, "commodity_code", value)
|
|
540
|
-
|
|
541
437
|
@property
|
|
542
438
|
@pulumi.getter(name="createTime")
|
|
543
439
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
544
440
|
"""
|
|
545
|
-
The creation time of the resource
|
|
441
|
+
The creation time of the resource.
|
|
546
442
|
"""
|
|
547
443
|
return pulumi.get(self, "create_time")
|
|
548
444
|
|
|
@@ -554,7 +450,7 @@ class _RocketMQInstanceState:
|
|
|
554
450
|
@pulumi.getter(name="instanceName")
|
|
555
451
|
def instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
556
452
|
"""
|
|
557
|
-
The name of instance
|
|
453
|
+
The name of instance.
|
|
558
454
|
"""
|
|
559
455
|
return pulumi.get(self, "instance_name")
|
|
560
456
|
|
|
@@ -566,7 +462,7 @@ class _RocketMQInstanceState:
|
|
|
566
462
|
@pulumi.getter(name="networkInfo")
|
|
567
463
|
def network_info(self) -> Optional[pulumi.Input['RocketMQInstanceNetworkInfoArgs']]:
|
|
568
464
|
"""
|
|
569
|
-
Instance network configuration information See `network_info` below.
|
|
465
|
+
Instance network configuration information. See `network_info` below.
|
|
570
466
|
"""
|
|
571
467
|
return pulumi.get(self, "network_info")
|
|
572
468
|
|
|
@@ -578,12 +474,9 @@ class _RocketMQInstanceState:
|
|
|
578
474
|
@pulumi.getter(name="paymentType")
|
|
579
475
|
def payment_type(self) -> Optional[pulumi.Input[str]]:
|
|
580
476
|
"""
|
|
581
|
-
The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
582
|
-
|
|
583
|
-
The parameter values are as follows:
|
|
477
|
+
The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
584
478
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
585
479
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
586
|
-
|
|
587
480
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
588
481
|
"""
|
|
589
482
|
return pulumi.get(self, "payment_type")
|
|
@@ -596,11 +489,9 @@ class _RocketMQInstanceState:
|
|
|
596
489
|
@pulumi.getter
|
|
597
490
|
def period(self) -> Optional[pulumi.Input[int]]:
|
|
598
491
|
"""
|
|
599
|
-
Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
600
|
-
|
|
601
|
-
The values can be as follows:
|
|
492
|
+
Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
602
493
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
603
|
-
- Annual purchase: 1, 2, 3
|
|
494
|
+
- Annual purchase: 1, 2, 3.
|
|
604
495
|
"""
|
|
605
496
|
return pulumi.get(self, "period")
|
|
606
497
|
|
|
@@ -612,11 +503,9 @@ class _RocketMQInstanceState:
|
|
|
612
503
|
@pulumi.getter(name="periodUnit")
|
|
613
504
|
def period_unit(self) -> Optional[pulumi.Input[str]]:
|
|
614
505
|
"""
|
|
615
|
-
The minimum periodic unit for the duration of purchase.
|
|
616
|
-
|
|
617
|
-
The parameter values are as follows:
|
|
506
|
+
The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
618
507
|
- Month: Purchase on a monthly basis
|
|
619
|
-
- Year: Purchase on an annual basis
|
|
508
|
+
- Year: Purchase on an annual basis.
|
|
620
509
|
"""
|
|
621
510
|
return pulumi.get(self, "period_unit")
|
|
622
511
|
|
|
@@ -628,7 +517,7 @@ class _RocketMQInstanceState:
|
|
|
628
517
|
@pulumi.getter(name="productInfo")
|
|
629
518
|
def product_info(self) -> Optional[pulumi.Input['RocketMQInstanceProductInfoArgs']]:
|
|
630
519
|
"""
|
|
631
|
-
product info See `product_info` below.
|
|
520
|
+
product info. See `product_info` below.
|
|
632
521
|
"""
|
|
633
522
|
return pulumi.get(self, "product_info")
|
|
634
523
|
|
|
@@ -640,7 +529,7 @@ class _RocketMQInstanceState:
|
|
|
640
529
|
@pulumi.getter
|
|
641
530
|
def remark(self) -> Optional[pulumi.Input[str]]:
|
|
642
531
|
"""
|
|
643
|
-
Custom description
|
|
532
|
+
Custom description.
|
|
644
533
|
"""
|
|
645
534
|
return pulumi.get(self, "remark")
|
|
646
535
|
|
|
@@ -652,7 +541,7 @@ class _RocketMQInstanceState:
|
|
|
652
541
|
@pulumi.getter(name="resourceGroupId")
|
|
653
542
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
654
543
|
"""
|
|
655
|
-
The ID of the resource group
|
|
544
|
+
The ID of the resource group.
|
|
656
545
|
"""
|
|
657
546
|
return pulumi.get(self, "resource_group_id")
|
|
658
547
|
|
|
@@ -664,12 +553,10 @@ class _RocketMQInstanceState:
|
|
|
664
553
|
@pulumi.getter(name="seriesCode")
|
|
665
554
|
def series_code(self) -> Optional[pulumi.Input[str]]:
|
|
666
555
|
"""
|
|
667
|
-
The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
668
|
-
|
|
669
|
-
The parameter values are as follows:
|
|
556
|
+
The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
670
557
|
- standard: Standard Edition
|
|
671
558
|
- ultimate: Platinum Edition
|
|
672
|
-
- professional: Professional Edition
|
|
559
|
+
- professional: Professional Edition.
|
|
673
560
|
"""
|
|
674
561
|
return pulumi.get(self, "series_code")
|
|
675
562
|
|
|
@@ -705,7 +592,7 @@ class _RocketMQInstanceState:
|
|
|
705
592
|
@pulumi.getter
|
|
706
593
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
707
594
|
"""
|
|
708
|
-
The status of the instance
|
|
595
|
+
The status of the instance.
|
|
709
596
|
"""
|
|
710
597
|
return pulumi.get(self, "status")
|
|
711
598
|
|
|
@@ -717,12 +604,9 @@ class _RocketMQInstanceState:
|
|
|
717
604
|
@pulumi.getter(name="subSeriesCode")
|
|
718
605
|
def sub_series_code(self) -> Optional[pulumi.Input[str]]:
|
|
719
606
|
"""
|
|
720
|
-
The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
721
|
-
|
|
722
|
-
The parameter values are as follows:
|
|
607
|
+
The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
723
608
|
- cluster_ha: Cluster High Availability Edition
|
|
724
609
|
- single_node: Single Node Testing Edition
|
|
725
|
-
|
|
726
610
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
727
611
|
"""
|
|
728
612
|
return pulumi.get(self, "sub_series_code")
|
|
@@ -752,7 +636,6 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
752
636
|
auto_renew: Optional[pulumi.Input[bool]] = None,
|
|
753
637
|
auto_renew_period: Optional[pulumi.Input[int]] = None,
|
|
754
638
|
auto_renew_period_unit: Optional[pulumi.Input[str]] = None,
|
|
755
|
-
commodity_code: Optional[pulumi.Input[str]] = None,
|
|
756
639
|
instance_name: Optional[pulumi.Input[str]] = None,
|
|
757
640
|
network_info: Optional[pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']]] = None,
|
|
758
641
|
payment_type: Optional[pulumi.Input[str]] = None,
|
|
@@ -780,55 +663,33 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
780
663
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
781
664
|
:param pulumi.Input[bool] auto_renew: Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
782
665
|
- true: Enable auto-renewal
|
|
783
|
-
- false: Disable auto-renewal
|
|
784
|
-
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
785
|
-
|
|
786
|
-
The values can be as follows:
|
|
787
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
666
|
+
- false: Disable auto-renewal.
|
|
667
|
+
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
788
668
|
:param pulumi.Input[str] auto_renew_period_unit: The minimum periodic unit for the duration of auto-renewal. This parameter is only valid when auto-renewal is enabled. Valid values: `Month`, `Year`.
|
|
789
|
-
:param pulumi.Input[str]
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
794
|
-
|
|
795
|
-
Next: Serverless instances
|
|
796
|
-
:param pulumi.Input[str] instance_name: The name of instance
|
|
797
|
-
:param pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']] network_info: Instance network configuration information See `network_info` below.
|
|
798
|
-
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
799
|
-
|
|
800
|
-
The parameter values are as follows:
|
|
669
|
+
:param pulumi.Input[str] instance_name: The name of instance.
|
|
670
|
+
:param pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']] network_info: Instance network configuration information. See `network_info` below.
|
|
671
|
+
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
801
672
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
802
673
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
803
|
-
|
|
804
674
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
805
|
-
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
806
|
-
|
|
807
|
-
The values can be as follows:
|
|
675
|
+
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
808
676
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
809
|
-
- Annual purchase: 1, 2, 3
|
|
810
|
-
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase.
|
|
811
|
-
|
|
812
|
-
The parameter values are as follows:
|
|
677
|
+
- Annual purchase: 1, 2, 3.
|
|
678
|
+
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
813
679
|
- Month: Purchase on a monthly basis
|
|
814
|
-
- Year: Purchase on an annual basis
|
|
815
|
-
:param pulumi.Input[Union['RocketMQInstanceProductInfoArgs', 'RocketMQInstanceProductInfoArgsDict']] product_info: product info See `product_info` below.
|
|
816
|
-
:param pulumi.Input[str] remark: Custom description
|
|
817
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
818
|
-
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
819
|
-
|
|
820
|
-
The parameter values are as follows:
|
|
680
|
+
- Year: Purchase on an annual basis.
|
|
681
|
+
:param pulumi.Input[Union['RocketMQInstanceProductInfoArgs', 'RocketMQInstanceProductInfoArgsDict']] product_info: product info. See `product_info` below.
|
|
682
|
+
:param pulumi.Input[str] remark: Custom description.
|
|
683
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
684
|
+
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
821
685
|
- standard: Standard Edition
|
|
822
686
|
- ultimate: Platinum Edition
|
|
823
|
-
- professional: Professional Edition
|
|
687
|
+
- professional: Professional Edition.
|
|
824
688
|
:param pulumi.Input[str] service_code: The code of the service code instance. The code of the RocketMQ is rmq.
|
|
825
689
|
:param pulumi.Input[Union['RocketMQInstanceSoftwareArgs', 'RocketMQInstanceSoftwareArgsDict']] software: Instance software information. See `software` below.
|
|
826
|
-
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
827
|
-
|
|
828
|
-
The parameter values are as follows:
|
|
690
|
+
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
829
691
|
- cluster_ha: Cluster High Availability Edition
|
|
830
692
|
- single_node: Single Node Testing Edition
|
|
831
|
-
|
|
832
693
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
833
694
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The resource label.
|
|
834
695
|
"""
|
|
@@ -865,7 +726,6 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
865
726
|
auto_renew: Optional[pulumi.Input[bool]] = None,
|
|
866
727
|
auto_renew_period: Optional[pulumi.Input[int]] = None,
|
|
867
728
|
auto_renew_period_unit: Optional[pulumi.Input[str]] = None,
|
|
868
|
-
commodity_code: Optional[pulumi.Input[str]] = None,
|
|
869
729
|
instance_name: Optional[pulumi.Input[str]] = None,
|
|
870
730
|
network_info: Optional[pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']]] = None,
|
|
871
731
|
payment_type: Optional[pulumi.Input[str]] = None,
|
|
@@ -891,7 +751,6 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
891
751
|
__props__.__dict__["auto_renew"] = auto_renew
|
|
892
752
|
__props__.__dict__["auto_renew_period"] = auto_renew_period
|
|
893
753
|
__props__.__dict__["auto_renew_period_unit"] = auto_renew_period_unit
|
|
894
|
-
__props__.__dict__["commodity_code"] = commodity_code
|
|
895
754
|
__props__.__dict__["instance_name"] = instance_name
|
|
896
755
|
if network_info is None and not opts.urn:
|
|
897
756
|
raise TypeError("Missing required property 'network_info'")
|
|
@@ -930,7 +789,6 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
930
789
|
auto_renew: Optional[pulumi.Input[bool]] = None,
|
|
931
790
|
auto_renew_period: Optional[pulumi.Input[int]] = None,
|
|
932
791
|
auto_renew_period_unit: Optional[pulumi.Input[str]] = None,
|
|
933
|
-
commodity_code: Optional[pulumi.Input[str]] = None,
|
|
934
792
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
935
793
|
instance_name: Optional[pulumi.Input[str]] = None,
|
|
936
794
|
network_info: Optional[pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']]] = None,
|
|
@@ -955,57 +813,35 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
955
813
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
956
814
|
:param pulumi.Input[bool] auto_renew: Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
957
815
|
- true: Enable auto-renewal
|
|
958
|
-
- false: Disable auto-renewal
|
|
959
|
-
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
960
|
-
|
|
961
|
-
The values can be as follows:
|
|
962
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
816
|
+
- false: Disable auto-renewal.
|
|
817
|
+
:param pulumi.Input[int] auto_renew_period: Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
963
818
|
:param pulumi.Input[str] auto_renew_period_unit: The minimum periodic unit for the duration of auto-renewal. This parameter is only valid when auto-renewal is enabled. Valid values: `Month`, `Year`.
|
|
964
|
-
:param pulumi.Input[str]
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
969
|
-
|
|
970
|
-
Next: Serverless instances
|
|
971
|
-
:param pulumi.Input[str] create_time: The creation time of the resource
|
|
972
|
-
:param pulumi.Input[str] instance_name: The name of instance
|
|
973
|
-
:param pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']] network_info: Instance network configuration information See `network_info` below.
|
|
974
|
-
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
975
|
-
|
|
976
|
-
The parameter values are as follows:
|
|
819
|
+
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
820
|
+
:param pulumi.Input[str] instance_name: The name of instance.
|
|
821
|
+
:param pulumi.Input[Union['RocketMQInstanceNetworkInfoArgs', 'RocketMQInstanceNetworkInfoArgsDict']] network_info: Instance network configuration information. See `network_info` below.
|
|
822
|
+
:param pulumi.Input[str] payment_type: The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
977
823
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
978
824
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
979
|
-
|
|
980
825
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
981
|
-
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
982
|
-
|
|
983
|
-
The values can be as follows:
|
|
826
|
+
:param pulumi.Input[int] period: Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
984
827
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
985
|
-
- Annual purchase: 1, 2, 3
|
|
986
|
-
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase.
|
|
987
|
-
|
|
988
|
-
The parameter values are as follows:
|
|
828
|
+
- Annual purchase: 1, 2, 3.
|
|
829
|
+
:param pulumi.Input[str] period_unit: The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
989
830
|
- Month: Purchase on a monthly basis
|
|
990
|
-
- Year: Purchase on an annual basis
|
|
991
|
-
:param pulumi.Input[Union['RocketMQInstanceProductInfoArgs', 'RocketMQInstanceProductInfoArgsDict']] product_info: product info See `product_info` below.
|
|
992
|
-
:param pulumi.Input[str] remark: Custom description
|
|
993
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
994
|
-
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
995
|
-
|
|
996
|
-
The parameter values are as follows:
|
|
831
|
+
- Year: Purchase on an annual basis.
|
|
832
|
+
:param pulumi.Input[Union['RocketMQInstanceProductInfoArgs', 'RocketMQInstanceProductInfoArgsDict']] product_info: product info. See `product_info` below.
|
|
833
|
+
:param pulumi.Input[str] remark: Custom description.
|
|
834
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
835
|
+
:param pulumi.Input[str] series_code: The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
997
836
|
- standard: Standard Edition
|
|
998
837
|
- ultimate: Platinum Edition
|
|
999
|
-
- professional: Professional Edition
|
|
838
|
+
- professional: Professional Edition.
|
|
1000
839
|
:param pulumi.Input[str] service_code: The code of the service code instance. The code of the RocketMQ is rmq.
|
|
1001
840
|
:param pulumi.Input[Union['RocketMQInstanceSoftwareArgs', 'RocketMQInstanceSoftwareArgsDict']] software: Instance software information. See `software` below.
|
|
1002
|
-
:param pulumi.Input[str] status: The status of the instance
|
|
1003
|
-
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
1004
|
-
|
|
1005
|
-
The parameter values are as follows:
|
|
841
|
+
:param pulumi.Input[str] status: The status of the instance.
|
|
842
|
+
:param pulumi.Input[str] sub_series_code: The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
1006
843
|
- cluster_ha: Cluster High Availability Edition
|
|
1007
844
|
- single_node: Single Node Testing Edition
|
|
1008
|
-
|
|
1009
845
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
1010
846
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The resource label.
|
|
1011
847
|
"""
|
|
@@ -1016,7 +852,6 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1016
852
|
__props__.__dict__["auto_renew"] = auto_renew
|
|
1017
853
|
__props__.__dict__["auto_renew_period"] = auto_renew_period
|
|
1018
854
|
__props__.__dict__["auto_renew_period_unit"] = auto_renew_period_unit
|
|
1019
|
-
__props__.__dict__["commodity_code"] = commodity_code
|
|
1020
855
|
__props__.__dict__["create_time"] = create_time
|
|
1021
856
|
__props__.__dict__["instance_name"] = instance_name
|
|
1022
857
|
__props__.__dict__["network_info"] = network_info
|
|
@@ -1040,7 +875,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1040
875
|
"""
|
|
1041
876
|
Whether to enable auto-renewal. This parameter is only applicable when the payment type for the instance is Subscription (prepaid).
|
|
1042
877
|
- true: Enable auto-renewal
|
|
1043
|
-
- false: Disable auto-renewal
|
|
878
|
+
- false: Disable auto-renewal.
|
|
1044
879
|
"""
|
|
1045
880
|
return pulumi.get(self, "auto_renew")
|
|
1046
881
|
|
|
@@ -1048,10 +883,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1048
883
|
@pulumi.getter(name="autoRenewPeriod")
|
|
1049
884
|
def auto_renew_period(self) -> pulumi.Output[Optional[int]]:
|
|
1050
885
|
"""
|
|
1051
|
-
Auto-renewal period. This parameter is only valid when auto-renewal is enabled.
|
|
1052
|
-
|
|
1053
|
-
The values can be as follows:
|
|
1054
|
-
- Monthly renewal: 1, 2, 3, 6, 12
|
|
886
|
+
Auto-renewal period. This parameter is only valid when auto-renewal is enabled. The values can be as follows: 1, 2, 3, 6, 12.
|
|
1055
887
|
"""
|
|
1056
888
|
return pulumi.get(self, "auto_renew_period")
|
|
1057
889
|
|
|
@@ -1063,25 +895,11 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1063
895
|
"""
|
|
1064
896
|
return pulumi.get(self, "auto_renew_period_unit")
|
|
1065
897
|
|
|
1066
|
-
@property
|
|
1067
|
-
@pulumi.getter(name="commodityCode")
|
|
1068
|
-
def commodity_code(self) -> pulumi.Output[str]:
|
|
1069
|
-
"""
|
|
1070
|
-
Commodity code
|
|
1071
|
-
|
|
1072
|
-
ons_rmqsub_public_cn: Package year and month instance
|
|
1073
|
-
|
|
1074
|
-
ons_rmqpost_public_cn: Pay-As-You-Go instance
|
|
1075
|
-
|
|
1076
|
-
Next: Serverless instances
|
|
1077
|
-
"""
|
|
1078
|
-
return pulumi.get(self, "commodity_code")
|
|
1079
|
-
|
|
1080
898
|
@property
|
|
1081
899
|
@pulumi.getter(name="createTime")
|
|
1082
900
|
def create_time(self) -> pulumi.Output[str]:
|
|
1083
901
|
"""
|
|
1084
|
-
The creation time of the resource
|
|
902
|
+
The creation time of the resource.
|
|
1085
903
|
"""
|
|
1086
904
|
return pulumi.get(self, "create_time")
|
|
1087
905
|
|
|
@@ -1089,7 +907,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1089
907
|
@pulumi.getter(name="instanceName")
|
|
1090
908
|
def instance_name(self) -> pulumi.Output[Optional[str]]:
|
|
1091
909
|
"""
|
|
1092
|
-
The name of instance
|
|
910
|
+
The name of instance.
|
|
1093
911
|
"""
|
|
1094
912
|
return pulumi.get(self, "instance_name")
|
|
1095
913
|
|
|
@@ -1097,7 +915,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1097
915
|
@pulumi.getter(name="networkInfo")
|
|
1098
916
|
def network_info(self) -> pulumi.Output['outputs.RocketMQInstanceNetworkInfo']:
|
|
1099
917
|
"""
|
|
1100
|
-
Instance network configuration information See `network_info` below.
|
|
918
|
+
Instance network configuration information. See `network_info` below.
|
|
1101
919
|
"""
|
|
1102
920
|
return pulumi.get(self, "network_info")
|
|
1103
921
|
|
|
@@ -1105,12 +923,9 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1105
923
|
@pulumi.getter(name="paymentType")
|
|
1106
924
|
def payment_type(self) -> pulumi.Output[str]:
|
|
1107
925
|
"""
|
|
1108
|
-
The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment:
|
|
1109
|
-
|
|
1110
|
-
The parameter values are as follows:
|
|
926
|
+
The payment type for the instance. Alibaba Cloud Message Queue RocketMQ version supports two types of payment. The parameter values are as follows:
|
|
1111
927
|
- PayAsYouGo: Pay-as-you-go, a post-payment model where you pay after usage.
|
|
1112
928
|
- Subscription: Subscription-based, a pre-payment model where you pay before usage.
|
|
1113
|
-
|
|
1114
929
|
For more information, please refer to [Billing Methods](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/overview-2).
|
|
1115
930
|
"""
|
|
1116
931
|
return pulumi.get(self, "payment_type")
|
|
@@ -1119,11 +934,9 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1119
934
|
@pulumi.getter
|
|
1120
935
|
def period(self) -> pulumi.Output[Optional[int]]:
|
|
1121
936
|
"""
|
|
1122
|
-
Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid).
|
|
1123
|
-
|
|
1124
|
-
The values can be as follows:
|
|
937
|
+
Duration of purchase. This parameter is only valid when the payment type for the instance is Subscription (prepaid). The values can be as follows:
|
|
1125
938
|
- Monthly purchase: 1, 2, 3, 4, 5, 6
|
|
1126
|
-
- Annual purchase: 1, 2, 3
|
|
939
|
+
- Annual purchase: 1, 2, 3.
|
|
1127
940
|
"""
|
|
1128
941
|
return pulumi.get(self, "period")
|
|
1129
942
|
|
|
@@ -1131,11 +944,9 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1131
944
|
@pulumi.getter(name="periodUnit")
|
|
1132
945
|
def period_unit(self) -> pulumi.Output[str]:
|
|
1133
946
|
"""
|
|
1134
|
-
The minimum periodic unit for the duration of purchase.
|
|
1135
|
-
|
|
1136
|
-
The parameter values are as follows:
|
|
947
|
+
The minimum periodic unit for the duration of purchase. The parameter values are as follows:
|
|
1137
948
|
- Month: Purchase on a monthly basis
|
|
1138
|
-
- Year: Purchase on an annual basis
|
|
949
|
+
- Year: Purchase on an annual basis.
|
|
1139
950
|
"""
|
|
1140
951
|
return pulumi.get(self, "period_unit")
|
|
1141
952
|
|
|
@@ -1143,7 +954,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1143
954
|
@pulumi.getter(name="productInfo")
|
|
1144
955
|
def product_info(self) -> pulumi.Output[Optional['outputs.RocketMQInstanceProductInfo']]:
|
|
1145
956
|
"""
|
|
1146
|
-
product info See `product_info` below.
|
|
957
|
+
product info. See `product_info` below.
|
|
1147
958
|
"""
|
|
1148
959
|
return pulumi.get(self, "product_info")
|
|
1149
960
|
|
|
@@ -1151,7 +962,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1151
962
|
@pulumi.getter
|
|
1152
963
|
def remark(self) -> pulumi.Output[Optional[str]]:
|
|
1153
964
|
"""
|
|
1154
|
-
Custom description
|
|
965
|
+
Custom description.
|
|
1155
966
|
"""
|
|
1156
967
|
return pulumi.get(self, "remark")
|
|
1157
968
|
|
|
@@ -1159,7 +970,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1159
970
|
@pulumi.getter(name="resourceGroupId")
|
|
1160
971
|
def resource_group_id(self) -> pulumi.Output[str]:
|
|
1161
972
|
"""
|
|
1162
|
-
The ID of the resource group
|
|
973
|
+
The ID of the resource group.
|
|
1163
974
|
"""
|
|
1164
975
|
return pulumi.get(self, "resource_group_id")
|
|
1165
976
|
|
|
@@ -1167,12 +978,10 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1167
978
|
@pulumi.getter(name="seriesCode")
|
|
1168
979
|
def series_code(self) -> pulumi.Output[str]:
|
|
1169
980
|
"""
|
|
1170
|
-
The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
1171
|
-
|
|
1172
|
-
The parameter values are as follows:
|
|
981
|
+
The primary series encoding for the instance. For specific differences between the primary series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
1173
982
|
- standard: Standard Edition
|
|
1174
983
|
- ultimate: Platinum Edition
|
|
1175
|
-
- professional: Professional Edition
|
|
984
|
+
- professional: Professional Edition.
|
|
1176
985
|
"""
|
|
1177
986
|
return pulumi.get(self, "series_code")
|
|
1178
987
|
|
|
@@ -1196,7 +1005,7 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1196
1005
|
@pulumi.getter
|
|
1197
1006
|
def status(self) -> pulumi.Output[str]:
|
|
1198
1007
|
"""
|
|
1199
|
-
The status of the instance
|
|
1008
|
+
The status of the instance.
|
|
1200
1009
|
"""
|
|
1201
1010
|
return pulumi.get(self, "status")
|
|
1202
1011
|
|
|
@@ -1204,12 +1013,9 @@ class RocketMQInstance(pulumi.CustomResource):
|
|
|
1204
1013
|
@pulumi.getter(name="subSeriesCode")
|
|
1205
1014
|
def sub_series_code(self) -> pulumi.Output[str]:
|
|
1206
1015
|
"""
|
|
1207
|
-
The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection).
|
|
1208
|
-
|
|
1209
|
-
The parameter values are as follows:
|
|
1016
|
+
The sub-series encoding for the instance. For specific differences between the sub-series, please refer to [Product Selection](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/instance-selection). The parameter values are as follows:
|
|
1210
1017
|
- cluster_ha: Cluster High Availability Edition
|
|
1211
1018
|
- single_node: Single Node Testing Edition
|
|
1212
|
-
|
|
1213
1019
|
When selecting the primary series as ultimate (Platinum Edition), the sub-series can only be chosen as cluster_ha (Cluster High Availability Edition).
|
|
1214
1020
|
"""
|
|
1215
1021
|
return pulumi.get(self, "sub_series_code")
|