pulumi-alicloud 3.62.0a1725945881__py3-none-any.whl → 3.62.1__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 +80 -0
- pulumi_alicloud/actiontrail/trail.py +2 -2
- pulumi_alicloud/adb/cluster.py +34 -0
- pulumi_alicloud/adb/db_cluster.py +47 -0
- pulumi_alicloud/amqp/binding.py +30 -36
- pulumi_alicloud/amqp/static_account.py +12 -12
- pulumi_alicloud/cen/_inputs.py +180 -14
- pulumi_alicloud/cen/outputs.py +173 -12
- pulumi_alicloud/cen/traffic_marking_policy.py +116 -53
- pulumi_alicloud/cen/transit_router_peer_attachment.py +38 -20
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +338 -119
- pulumi_alicloud/cen/transit_router_vpn_attachment.py +2 -2
- pulumi_alicloud/cr/chart_namespace.py +14 -6
- pulumi_alicloud/cr/endpoint_acl_policy.py +10 -2
- pulumi_alicloud/cr/namespace.py +10 -2
- pulumi_alicloud/cs/registry_enterprise_repo.py +4 -4
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/_inputs.py +24 -0
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ddos/outputs.py +37 -0
- pulumi_alicloud/ddos/port.py +110 -40
- pulumi_alicloud/ecs/_inputs.py +28 -0
- pulumi_alicloud/ecs/outputs.py +20 -0
- pulumi_alicloud/emrv2/_inputs.py +20 -20
- pulumi_alicloud/emrv2/get_clusters.py +25 -4
- pulumi_alicloud/emrv2/outputs.py +24 -24
- pulumi_alicloud/ens/_inputs.py +137 -2
- pulumi_alicloud/ens/instance.py +428 -184
- pulumi_alicloud/ens/load_balancer.py +74 -25
- pulumi_alicloud/ens/outputs.py +141 -2
- pulumi_alicloud/expressconnect/physical_connection.py +321 -185
- pulumi_alicloud/fc/__init__.py +3 -0
- pulumi_alicloud/fc/_inputs.py +320 -8
- pulumi_alicloud/fc/outputs.py +321 -8
- pulumi_alicloud/fc/trigger.py +22 -24
- pulumi_alicloud/fc/v3_layer_version.py +511 -0
- pulumi_alicloud/fc/v3_provision_config.py +676 -0
- pulumi_alicloud/fc/v3_vpc_binding.py +283 -0
- pulumi_alicloud/ga/endpoint_group.py +68 -14
- pulumi_alicloud/ga/get_endpoint_group_ip_address_cidr_blocks.py +18 -3
- pulumi_alicloud/gpdb/__init__.py +2 -0
- pulumi_alicloud/gpdb/account.py +172 -83
- pulumi_alicloud/gpdb/db_resource_group.py +54 -9
- pulumi_alicloud/gpdb/hadoop_data_source.py +1135 -0
- pulumi_alicloud/gpdb/jdbc_data_source.py +643 -0
- pulumi_alicloud/hbr/_inputs.py +14 -14
- pulumi_alicloud/hbr/outputs.py +14 -14
- pulumi_alicloud/hbr/policy.py +18 -18
- pulumi_alicloud/hbr/policy_binding.py +203 -62
- pulumi_alicloud/mongodb/instance.py +94 -0
- pulumi_alicloud/nlb/_inputs.py +120 -64
- pulumi_alicloud/nlb/get_listeners.py +32 -2
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +8 -2
- pulumi_alicloud/nlb/listener.py +315 -245
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +181 -212
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +29 -39
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +22 -18
- pulumi_alicloud/nlb/outputs.py +122 -66
- pulumi_alicloud/nlb/security_policy.py +53 -25
- pulumi_alicloud/nlb/server_group.py +196 -133
- pulumi_alicloud/ocean/base_instance.py +498 -163
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/quotas/__init__.py +1 -0
- pulumi_alicloud/quotas/template_service.py +165 -0
- pulumi_alicloud/rds/rds_db_proxy.py +61 -0
- pulumi_alicloud/servicecatalog/__init__.py +4 -0
- pulumi_alicloud/servicecatalog/portfolio.py +31 -31
- pulumi_alicloud/servicecatalog/principal_portfolio_association.py +354 -0
- pulumi_alicloud/servicecatalog/product.py +383 -0
- pulumi_alicloud/servicecatalog/product_portfolio_association.py +222 -0
- pulumi_alicloud/servicecatalog/product_version.py +539 -0
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/get_route_tables.py +28 -5
- pulumi_alicloud/vpc/outputs.py +2 -2
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/RECORD +80 -70
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.62.0a1725945881.dist-info → pulumi_alicloud-3.62.1.dist-info}/top_level.txt +0 -0
|
@@ -8,6 +8,8 @@ import pulumi
|
|
|
8
8
|
import pulumi.runtime
|
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._inputs import *
|
|
11
13
|
|
|
12
14
|
__all__ = ['TrafficMarkingPolicyArgs', 'TrafficMarkingPolicy']
|
|
13
15
|
|
|
@@ -19,15 +21,19 @@ class TrafficMarkingPolicyArgs:
|
|
|
19
21
|
transit_router_id: pulumi.Input[str],
|
|
20
22
|
description: Optional[pulumi.Input[str]] = None,
|
|
21
23
|
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
22
|
-
traffic_marking_policy_name: Optional[pulumi.Input[str]] = None
|
|
24
|
+
traffic_marking_policy_name: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
traffic_match_rules: Optional[pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]]] = None):
|
|
23
26
|
"""
|
|
24
27
|
The set of arguments for constructing a TrafficMarkingPolicy resource.
|
|
25
|
-
:param pulumi.Input[int] marking_dscp:
|
|
26
|
-
:param pulumi.Input[int] priority:
|
|
27
|
-
:param pulumi.Input[str] transit_router_id:
|
|
28
|
-
:param pulumi.Input[str] description:
|
|
29
|
-
:param pulumi.Input[bool] dry_run:
|
|
30
|
-
:param pulumi.Input[str] traffic_marking_policy_name:
|
|
28
|
+
:param pulumi.Input[int] marking_dscp: MarkingDscp
|
|
29
|
+
:param pulumi.Input[int] priority: Priority
|
|
30
|
+
:param pulumi.Input[str] transit_router_id: TransitRouterId
|
|
31
|
+
:param pulumi.Input[str] description: TrafficMarkingPolicyDescription
|
|
32
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
33
|
+
:param pulumi.Input[str] traffic_marking_policy_name: TrafficMarkingPolicyName
|
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]] traffic_match_rules: List of stream classification rules.
|
|
35
|
+
|
|
36
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
31
37
|
"""
|
|
32
38
|
pulumi.set(__self__, "marking_dscp", marking_dscp)
|
|
33
39
|
pulumi.set(__self__, "priority", priority)
|
|
@@ -38,12 +44,14 @@ class TrafficMarkingPolicyArgs:
|
|
|
38
44
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
39
45
|
if traffic_marking_policy_name is not None:
|
|
40
46
|
pulumi.set(__self__, "traffic_marking_policy_name", traffic_marking_policy_name)
|
|
47
|
+
if traffic_match_rules is not None:
|
|
48
|
+
pulumi.set(__self__, "traffic_match_rules", traffic_match_rules)
|
|
41
49
|
|
|
42
50
|
@property
|
|
43
51
|
@pulumi.getter(name="markingDscp")
|
|
44
52
|
def marking_dscp(self) -> pulumi.Input[int]:
|
|
45
53
|
"""
|
|
46
|
-
|
|
54
|
+
MarkingDscp
|
|
47
55
|
"""
|
|
48
56
|
return pulumi.get(self, "marking_dscp")
|
|
49
57
|
|
|
@@ -55,7 +63,7 @@ class TrafficMarkingPolicyArgs:
|
|
|
55
63
|
@pulumi.getter
|
|
56
64
|
def priority(self) -> pulumi.Input[int]:
|
|
57
65
|
"""
|
|
58
|
-
|
|
66
|
+
Priority
|
|
59
67
|
"""
|
|
60
68
|
return pulumi.get(self, "priority")
|
|
61
69
|
|
|
@@ -67,7 +75,7 @@ class TrafficMarkingPolicyArgs:
|
|
|
67
75
|
@pulumi.getter(name="transitRouterId")
|
|
68
76
|
def transit_router_id(self) -> pulumi.Input[str]:
|
|
69
77
|
"""
|
|
70
|
-
|
|
78
|
+
TransitRouterId
|
|
71
79
|
"""
|
|
72
80
|
return pulumi.get(self, "transit_router_id")
|
|
73
81
|
|
|
@@ -79,7 +87,7 @@ class TrafficMarkingPolicyArgs:
|
|
|
79
87
|
@pulumi.getter
|
|
80
88
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
81
89
|
"""
|
|
82
|
-
|
|
90
|
+
TrafficMarkingPolicyDescription
|
|
83
91
|
"""
|
|
84
92
|
return pulumi.get(self, "description")
|
|
85
93
|
|
|
@@ -91,7 +99,7 @@ class TrafficMarkingPolicyArgs:
|
|
|
91
99
|
@pulumi.getter(name="dryRun")
|
|
92
100
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
93
101
|
"""
|
|
94
|
-
|
|
102
|
+
Whether to PreCheck only this request. Value:
|
|
95
103
|
"""
|
|
96
104
|
return pulumi.get(self, "dry_run")
|
|
97
105
|
|
|
@@ -103,7 +111,7 @@ class TrafficMarkingPolicyArgs:
|
|
|
103
111
|
@pulumi.getter(name="trafficMarkingPolicyName")
|
|
104
112
|
def traffic_marking_policy_name(self) -> Optional[pulumi.Input[str]]:
|
|
105
113
|
"""
|
|
106
|
-
|
|
114
|
+
TrafficMarkingPolicyName
|
|
107
115
|
"""
|
|
108
116
|
return pulumi.get(self, "traffic_marking_policy_name")
|
|
109
117
|
|
|
@@ -111,6 +119,20 @@ class TrafficMarkingPolicyArgs:
|
|
|
111
119
|
def traffic_marking_policy_name(self, value: Optional[pulumi.Input[str]]):
|
|
112
120
|
pulumi.set(self, "traffic_marking_policy_name", value)
|
|
113
121
|
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="trafficMatchRules")
|
|
124
|
+
def traffic_match_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]]]:
|
|
125
|
+
"""
|
|
126
|
+
List of stream classification rules.
|
|
127
|
+
|
|
128
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "traffic_match_rules")
|
|
131
|
+
|
|
132
|
+
@traffic_match_rules.setter
|
|
133
|
+
def traffic_match_rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]]]):
|
|
134
|
+
pulumi.set(self, "traffic_match_rules", value)
|
|
135
|
+
|
|
114
136
|
|
|
115
137
|
@pulumi.input_type
|
|
116
138
|
class _TrafficMarkingPolicyState:
|
|
@@ -122,17 +144,21 @@ class _TrafficMarkingPolicyState:
|
|
|
122
144
|
status: Optional[pulumi.Input[str]] = None,
|
|
123
145
|
traffic_marking_policy_id: Optional[pulumi.Input[str]] = None,
|
|
124
146
|
traffic_marking_policy_name: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
traffic_match_rules: Optional[pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]]] = None,
|
|
125
148
|
transit_router_id: Optional[pulumi.Input[str]] = None):
|
|
126
149
|
"""
|
|
127
150
|
Input properties used for looking up and filtering TrafficMarkingPolicy resources.
|
|
128
|
-
:param pulumi.Input[str] description:
|
|
129
|
-
:param pulumi.Input[bool] dry_run:
|
|
130
|
-
:param pulumi.Input[int] marking_dscp:
|
|
131
|
-
:param pulumi.Input[int] priority:
|
|
132
|
-
:param pulumi.Input[str] status: The status of the resource
|
|
133
|
-
:param pulumi.Input[str] traffic_marking_policy_id: The ID of the
|
|
134
|
-
:param pulumi.Input[str] traffic_marking_policy_name:
|
|
135
|
-
:param pulumi.Input[
|
|
151
|
+
:param pulumi.Input[str] description: TrafficMarkingPolicyDescription
|
|
152
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
153
|
+
:param pulumi.Input[int] marking_dscp: MarkingDscp
|
|
154
|
+
:param pulumi.Input[int] priority: Priority
|
|
155
|
+
:param pulumi.Input[str] status: The status of the resource
|
|
156
|
+
:param pulumi.Input[str] traffic_marking_policy_id: The first ID of the resource
|
|
157
|
+
:param pulumi.Input[str] traffic_marking_policy_name: TrafficMarkingPolicyName
|
|
158
|
+
:param pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]] traffic_match_rules: List of stream classification rules.
|
|
159
|
+
|
|
160
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
161
|
+
:param pulumi.Input[str] transit_router_id: TransitRouterId
|
|
136
162
|
"""
|
|
137
163
|
if description is not None:
|
|
138
164
|
pulumi.set(__self__, "description", description)
|
|
@@ -148,6 +174,8 @@ class _TrafficMarkingPolicyState:
|
|
|
148
174
|
pulumi.set(__self__, "traffic_marking_policy_id", traffic_marking_policy_id)
|
|
149
175
|
if traffic_marking_policy_name is not None:
|
|
150
176
|
pulumi.set(__self__, "traffic_marking_policy_name", traffic_marking_policy_name)
|
|
177
|
+
if traffic_match_rules is not None:
|
|
178
|
+
pulumi.set(__self__, "traffic_match_rules", traffic_match_rules)
|
|
151
179
|
if transit_router_id is not None:
|
|
152
180
|
pulumi.set(__self__, "transit_router_id", transit_router_id)
|
|
153
181
|
|
|
@@ -155,7 +183,7 @@ class _TrafficMarkingPolicyState:
|
|
|
155
183
|
@pulumi.getter
|
|
156
184
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
157
185
|
"""
|
|
158
|
-
|
|
186
|
+
TrafficMarkingPolicyDescription
|
|
159
187
|
"""
|
|
160
188
|
return pulumi.get(self, "description")
|
|
161
189
|
|
|
@@ -167,7 +195,7 @@ class _TrafficMarkingPolicyState:
|
|
|
167
195
|
@pulumi.getter(name="dryRun")
|
|
168
196
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
169
197
|
"""
|
|
170
|
-
|
|
198
|
+
Whether to PreCheck only this request. Value:
|
|
171
199
|
"""
|
|
172
200
|
return pulumi.get(self, "dry_run")
|
|
173
201
|
|
|
@@ -179,7 +207,7 @@ class _TrafficMarkingPolicyState:
|
|
|
179
207
|
@pulumi.getter(name="markingDscp")
|
|
180
208
|
def marking_dscp(self) -> Optional[pulumi.Input[int]]:
|
|
181
209
|
"""
|
|
182
|
-
|
|
210
|
+
MarkingDscp
|
|
183
211
|
"""
|
|
184
212
|
return pulumi.get(self, "marking_dscp")
|
|
185
213
|
|
|
@@ -191,7 +219,7 @@ class _TrafficMarkingPolicyState:
|
|
|
191
219
|
@pulumi.getter
|
|
192
220
|
def priority(self) -> Optional[pulumi.Input[int]]:
|
|
193
221
|
"""
|
|
194
|
-
|
|
222
|
+
Priority
|
|
195
223
|
"""
|
|
196
224
|
return pulumi.get(self, "priority")
|
|
197
225
|
|
|
@@ -203,7 +231,7 @@ class _TrafficMarkingPolicyState:
|
|
|
203
231
|
@pulumi.getter
|
|
204
232
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
205
233
|
"""
|
|
206
|
-
The status of the resource
|
|
234
|
+
The status of the resource
|
|
207
235
|
"""
|
|
208
236
|
return pulumi.get(self, "status")
|
|
209
237
|
|
|
@@ -215,7 +243,7 @@ class _TrafficMarkingPolicyState:
|
|
|
215
243
|
@pulumi.getter(name="trafficMarkingPolicyId")
|
|
216
244
|
def traffic_marking_policy_id(self) -> Optional[pulumi.Input[str]]:
|
|
217
245
|
"""
|
|
218
|
-
The ID of the
|
|
246
|
+
The first ID of the resource
|
|
219
247
|
"""
|
|
220
248
|
return pulumi.get(self, "traffic_marking_policy_id")
|
|
221
249
|
|
|
@@ -227,7 +255,7 @@ class _TrafficMarkingPolicyState:
|
|
|
227
255
|
@pulumi.getter(name="trafficMarkingPolicyName")
|
|
228
256
|
def traffic_marking_policy_name(self) -> Optional[pulumi.Input[str]]:
|
|
229
257
|
"""
|
|
230
|
-
|
|
258
|
+
TrafficMarkingPolicyName
|
|
231
259
|
"""
|
|
232
260
|
return pulumi.get(self, "traffic_marking_policy_name")
|
|
233
261
|
|
|
@@ -235,11 +263,25 @@ class _TrafficMarkingPolicyState:
|
|
|
235
263
|
def traffic_marking_policy_name(self, value: Optional[pulumi.Input[str]]):
|
|
236
264
|
pulumi.set(self, "traffic_marking_policy_name", value)
|
|
237
265
|
|
|
266
|
+
@property
|
|
267
|
+
@pulumi.getter(name="trafficMatchRules")
|
|
268
|
+
def traffic_match_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]]]:
|
|
269
|
+
"""
|
|
270
|
+
List of stream classification rules.
|
|
271
|
+
|
|
272
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "traffic_match_rules")
|
|
275
|
+
|
|
276
|
+
@traffic_match_rules.setter
|
|
277
|
+
def traffic_match_rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TrafficMarkingPolicyTrafficMatchRuleArgs']]]]):
|
|
278
|
+
pulumi.set(self, "traffic_match_rules", value)
|
|
279
|
+
|
|
238
280
|
@property
|
|
239
281
|
@pulumi.getter(name="transitRouterId")
|
|
240
282
|
def transit_router_id(self) -> Optional[pulumi.Input[str]]:
|
|
241
283
|
"""
|
|
242
|
-
|
|
284
|
+
TransitRouterId
|
|
243
285
|
"""
|
|
244
286
|
return pulumi.get(self, "transit_router_id")
|
|
245
287
|
|
|
@@ -258,6 +300,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
258
300
|
marking_dscp: Optional[pulumi.Input[int]] = None,
|
|
259
301
|
priority: Optional[pulumi.Input[int]] = None,
|
|
260
302
|
traffic_marking_policy_name: Optional[pulumi.Input[str]] = None,
|
|
303
|
+
traffic_match_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TrafficMarkingPolicyTrafficMatchRuleArgs', 'TrafficMarkingPolicyTrafficMatchRuleArgsDict']]]]] = None,
|
|
261
304
|
transit_router_id: Optional[pulumi.Input[str]] = None,
|
|
262
305
|
__props__=None):
|
|
263
306
|
"""
|
|
@@ -290,7 +333,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
290
333
|
|
|
291
334
|
## Import
|
|
292
335
|
|
|
293
|
-
|
|
336
|
+
CEN Traffic Marking Policy can be imported using the id, e.g.
|
|
294
337
|
|
|
295
338
|
```sh
|
|
296
339
|
$ pulumi import alicloud:cen/trafficMarkingPolicy:TrafficMarkingPolicy example <transit_router_id>:<traffic_marking_policy_id>
|
|
@@ -298,12 +341,15 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
298
341
|
|
|
299
342
|
:param str resource_name: The name of the resource.
|
|
300
343
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
301
|
-
:param pulumi.Input[str] description:
|
|
302
|
-
:param pulumi.Input[bool] dry_run:
|
|
303
|
-
:param pulumi.Input[int] marking_dscp:
|
|
304
|
-
:param pulumi.Input[int] priority:
|
|
305
|
-
:param pulumi.Input[str] traffic_marking_policy_name:
|
|
306
|
-
:param pulumi.Input[
|
|
344
|
+
:param pulumi.Input[str] description: TrafficMarkingPolicyDescription
|
|
345
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
346
|
+
:param pulumi.Input[int] marking_dscp: MarkingDscp
|
|
347
|
+
:param pulumi.Input[int] priority: Priority
|
|
348
|
+
:param pulumi.Input[str] traffic_marking_policy_name: TrafficMarkingPolicyName
|
|
349
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['TrafficMarkingPolicyTrafficMatchRuleArgs', 'TrafficMarkingPolicyTrafficMatchRuleArgsDict']]]] traffic_match_rules: List of stream classification rules.
|
|
350
|
+
|
|
351
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
352
|
+
:param pulumi.Input[str] transit_router_id: TransitRouterId
|
|
307
353
|
"""
|
|
308
354
|
...
|
|
309
355
|
@overload
|
|
@@ -341,7 +387,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
341
387
|
|
|
342
388
|
## Import
|
|
343
389
|
|
|
344
|
-
|
|
390
|
+
CEN Traffic Marking Policy can be imported using the id, e.g.
|
|
345
391
|
|
|
346
392
|
```sh
|
|
347
393
|
$ pulumi import alicloud:cen/trafficMarkingPolicy:TrafficMarkingPolicy example <transit_router_id>:<traffic_marking_policy_id>
|
|
@@ -367,6 +413,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
367
413
|
marking_dscp: Optional[pulumi.Input[int]] = None,
|
|
368
414
|
priority: Optional[pulumi.Input[int]] = None,
|
|
369
415
|
traffic_marking_policy_name: Optional[pulumi.Input[str]] = None,
|
|
416
|
+
traffic_match_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TrafficMarkingPolicyTrafficMatchRuleArgs', 'TrafficMarkingPolicyTrafficMatchRuleArgsDict']]]]] = None,
|
|
370
417
|
transit_router_id: Optional[pulumi.Input[str]] = None,
|
|
371
418
|
__props__=None):
|
|
372
419
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -386,6 +433,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
386
433
|
raise TypeError("Missing required property 'priority'")
|
|
387
434
|
__props__.__dict__["priority"] = priority
|
|
388
435
|
__props__.__dict__["traffic_marking_policy_name"] = traffic_marking_policy_name
|
|
436
|
+
__props__.__dict__["traffic_match_rules"] = traffic_match_rules
|
|
389
437
|
if transit_router_id is None and not opts.urn:
|
|
390
438
|
raise TypeError("Missing required property 'transit_router_id'")
|
|
391
439
|
__props__.__dict__["transit_router_id"] = transit_router_id
|
|
@@ -408,6 +456,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
408
456
|
status: Optional[pulumi.Input[str]] = None,
|
|
409
457
|
traffic_marking_policy_id: Optional[pulumi.Input[str]] = None,
|
|
410
458
|
traffic_marking_policy_name: Optional[pulumi.Input[str]] = None,
|
|
459
|
+
traffic_match_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TrafficMarkingPolicyTrafficMatchRuleArgs', 'TrafficMarkingPolicyTrafficMatchRuleArgsDict']]]]] = None,
|
|
411
460
|
transit_router_id: Optional[pulumi.Input[str]] = None) -> 'TrafficMarkingPolicy':
|
|
412
461
|
"""
|
|
413
462
|
Get an existing TrafficMarkingPolicy resource's state with the given name, id, and optional extra
|
|
@@ -416,14 +465,17 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
416
465
|
:param str resource_name: The unique name of the resulting resource.
|
|
417
466
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
418
467
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
419
|
-
:param pulumi.Input[str] description:
|
|
420
|
-
:param pulumi.Input[bool] dry_run:
|
|
421
|
-
:param pulumi.Input[int] marking_dscp:
|
|
422
|
-
:param pulumi.Input[int] priority:
|
|
423
|
-
:param pulumi.Input[str] status: The status of the resource
|
|
424
|
-
:param pulumi.Input[str] traffic_marking_policy_id: The ID of the
|
|
425
|
-
:param pulumi.Input[str] traffic_marking_policy_name:
|
|
426
|
-
:param pulumi.Input[
|
|
468
|
+
:param pulumi.Input[str] description: TrafficMarkingPolicyDescription
|
|
469
|
+
:param pulumi.Input[bool] dry_run: Whether to PreCheck only this request. Value:
|
|
470
|
+
:param pulumi.Input[int] marking_dscp: MarkingDscp
|
|
471
|
+
:param pulumi.Input[int] priority: Priority
|
|
472
|
+
:param pulumi.Input[str] status: The status of the resource
|
|
473
|
+
:param pulumi.Input[str] traffic_marking_policy_id: The first ID of the resource
|
|
474
|
+
:param pulumi.Input[str] traffic_marking_policy_name: TrafficMarkingPolicyName
|
|
475
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['TrafficMarkingPolicyTrafficMatchRuleArgs', 'TrafficMarkingPolicyTrafficMatchRuleArgsDict']]]] traffic_match_rules: List of stream classification rules.
|
|
476
|
+
|
|
477
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
478
|
+
:param pulumi.Input[str] transit_router_id: TransitRouterId
|
|
427
479
|
"""
|
|
428
480
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
429
481
|
|
|
@@ -436,6 +488,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
436
488
|
__props__.__dict__["status"] = status
|
|
437
489
|
__props__.__dict__["traffic_marking_policy_id"] = traffic_marking_policy_id
|
|
438
490
|
__props__.__dict__["traffic_marking_policy_name"] = traffic_marking_policy_name
|
|
491
|
+
__props__.__dict__["traffic_match_rules"] = traffic_match_rules
|
|
439
492
|
__props__.__dict__["transit_router_id"] = transit_router_id
|
|
440
493
|
return TrafficMarkingPolicy(resource_name, opts=opts, __props__=__props__)
|
|
441
494
|
|
|
@@ -443,7 +496,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
443
496
|
@pulumi.getter
|
|
444
497
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
445
498
|
"""
|
|
446
|
-
|
|
499
|
+
TrafficMarkingPolicyDescription
|
|
447
500
|
"""
|
|
448
501
|
return pulumi.get(self, "description")
|
|
449
502
|
|
|
@@ -451,7 +504,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
451
504
|
@pulumi.getter(name="dryRun")
|
|
452
505
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
453
506
|
"""
|
|
454
|
-
|
|
507
|
+
Whether to PreCheck only this request. Value:
|
|
455
508
|
"""
|
|
456
509
|
return pulumi.get(self, "dry_run")
|
|
457
510
|
|
|
@@ -459,7 +512,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
459
512
|
@pulumi.getter(name="markingDscp")
|
|
460
513
|
def marking_dscp(self) -> pulumi.Output[int]:
|
|
461
514
|
"""
|
|
462
|
-
|
|
515
|
+
MarkingDscp
|
|
463
516
|
"""
|
|
464
517
|
return pulumi.get(self, "marking_dscp")
|
|
465
518
|
|
|
@@ -467,7 +520,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
467
520
|
@pulumi.getter
|
|
468
521
|
def priority(self) -> pulumi.Output[int]:
|
|
469
522
|
"""
|
|
470
|
-
|
|
523
|
+
Priority
|
|
471
524
|
"""
|
|
472
525
|
return pulumi.get(self, "priority")
|
|
473
526
|
|
|
@@ -475,7 +528,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
475
528
|
@pulumi.getter
|
|
476
529
|
def status(self) -> pulumi.Output[str]:
|
|
477
530
|
"""
|
|
478
|
-
The status of the resource
|
|
531
|
+
The status of the resource
|
|
479
532
|
"""
|
|
480
533
|
return pulumi.get(self, "status")
|
|
481
534
|
|
|
@@ -483,7 +536,7 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
483
536
|
@pulumi.getter(name="trafficMarkingPolicyId")
|
|
484
537
|
def traffic_marking_policy_id(self) -> pulumi.Output[str]:
|
|
485
538
|
"""
|
|
486
|
-
The ID of the
|
|
539
|
+
The first ID of the resource
|
|
487
540
|
"""
|
|
488
541
|
return pulumi.get(self, "traffic_marking_policy_id")
|
|
489
542
|
|
|
@@ -491,15 +544,25 @@ class TrafficMarkingPolicy(pulumi.CustomResource):
|
|
|
491
544
|
@pulumi.getter(name="trafficMarkingPolicyName")
|
|
492
545
|
def traffic_marking_policy_name(self) -> pulumi.Output[Optional[str]]:
|
|
493
546
|
"""
|
|
494
|
-
|
|
547
|
+
TrafficMarkingPolicyName
|
|
495
548
|
"""
|
|
496
549
|
return pulumi.get(self, "traffic_marking_policy_name")
|
|
497
550
|
|
|
551
|
+
@property
|
|
552
|
+
@pulumi.getter(name="trafficMatchRules")
|
|
553
|
+
def traffic_match_rules(self) -> pulumi.Output[Optional[Sequence['outputs.TrafficMarkingPolicyTrafficMatchRule']]]:
|
|
554
|
+
"""
|
|
555
|
+
List of stream classification rules.
|
|
556
|
+
|
|
557
|
+
You can add up to 50 stream classification rules at a time. See `traffic_match_rules` below.
|
|
558
|
+
"""
|
|
559
|
+
return pulumi.get(self, "traffic_match_rules")
|
|
560
|
+
|
|
498
561
|
@property
|
|
499
562
|
@pulumi.getter(name="transitRouterId")
|
|
500
563
|
def transit_router_id(self) -> pulumi.Output[str]:
|
|
501
564
|
"""
|
|
502
|
-
|
|
565
|
+
TransitRouterId
|
|
503
566
|
"""
|
|
504
567
|
return pulumi.get(self, "transit_router_id")
|
|
505
568
|
|
|
@@ -43,8 +43,8 @@ class TransitRouterPeerAttachmentArgs:
|
|
|
43
43
|
:param pulumi.Input[str] default_link_type: DefaultLinkType. Valid values: `Platinum` and `Gold`.
|
|
44
44
|
:param pulumi.Input[bool] dry_run: Whether to perform pre-check for this request, including permission, instance status verification, etc.
|
|
45
45
|
:param pulumi.Input[str] resource_type: The resource type to attachment. Only support `VR` and default value is `VR`.
|
|
46
|
-
:param pulumi.Input[bool] route_table_association_enabled:
|
|
47
|
-
:param pulumi.Input[bool] route_table_propagation_enabled:
|
|
46
|
+
:param pulumi.Input[bool] route_table_association_enabled: Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
47
|
+
:param pulumi.Input[bool] route_table_propagation_enabled: Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
48
48
|
:param pulumi.Input[str] transit_router_attachment_description: The description of transit router attachment. The description is 2~256 characters long and must start with a letter or Chinese, but cannot start with `http://` or `https://`.
|
|
49
49
|
:param pulumi.Input[str] transit_router_attachment_name: The name of transit router attachment. The name is 2~128 characters in length, starts with uppercase and lowercase letters or Chinese, and can contain numbers, underscores (_) and dashes (-)
|
|
50
50
|
:param pulumi.Input[str] transit_router_id: The ID of the transit router to attach.
|
|
@@ -66,8 +66,14 @@ class TransitRouterPeerAttachmentArgs:
|
|
|
66
66
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
67
67
|
if resource_type is not None:
|
|
68
68
|
pulumi.set(__self__, "resource_type", resource_type)
|
|
69
|
+
if route_table_association_enabled is not None:
|
|
70
|
+
warnings.warn("""Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""", DeprecationWarning)
|
|
71
|
+
pulumi.log.warn("""route_table_association_enabled is deprecated: Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""")
|
|
69
72
|
if route_table_association_enabled is not None:
|
|
70
73
|
pulumi.set(__self__, "route_table_association_enabled", route_table_association_enabled)
|
|
74
|
+
if route_table_propagation_enabled is not None:
|
|
75
|
+
warnings.warn("""Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""", DeprecationWarning)
|
|
76
|
+
pulumi.log.warn("""route_table_propagation_enabled is deprecated: Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""")
|
|
71
77
|
if route_table_propagation_enabled is not None:
|
|
72
78
|
pulumi.set(__self__, "route_table_propagation_enabled", route_table_propagation_enabled)
|
|
73
79
|
if transit_router_attachment_description is not None:
|
|
@@ -201,9 +207,10 @@ class TransitRouterPeerAttachmentArgs:
|
|
|
201
207
|
|
|
202
208
|
@property
|
|
203
209
|
@pulumi.getter(name="routeTableAssociationEnabled")
|
|
210
|
+
@_utilities.deprecated("""Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""")
|
|
204
211
|
def route_table_association_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
205
212
|
"""
|
|
206
|
-
|
|
213
|
+
Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
207
214
|
"""
|
|
208
215
|
return pulumi.get(self, "route_table_association_enabled")
|
|
209
216
|
|
|
@@ -213,9 +220,10 @@ class TransitRouterPeerAttachmentArgs:
|
|
|
213
220
|
|
|
214
221
|
@property
|
|
215
222
|
@pulumi.getter(name="routeTablePropagationEnabled")
|
|
223
|
+
@_utilities.deprecated("""Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""")
|
|
216
224
|
def route_table_propagation_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
217
225
|
"""
|
|
218
|
-
|
|
226
|
+
Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
219
227
|
"""
|
|
220
228
|
return pulumi.get(self, "route_table_propagation_enabled")
|
|
221
229
|
|
|
@@ -296,11 +304,11 @@ class _TransitRouterPeerAttachmentState:
|
|
|
296
304
|
:param pulumi.Input[str] peer_transit_router_id: The ID of the peer transit router.
|
|
297
305
|
:param pulumi.Input[str] peer_transit_router_region_id: The region ID of peer transit router.
|
|
298
306
|
:param pulumi.Input[str] resource_type: The resource type to attachment. Only support `VR` and default value is `VR`.
|
|
299
|
-
:param pulumi.Input[bool] route_table_association_enabled:
|
|
300
|
-
:param pulumi.Input[bool] route_table_propagation_enabled:
|
|
307
|
+
:param pulumi.Input[bool] route_table_association_enabled: Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
308
|
+
:param pulumi.Input[bool] route_table_propagation_enabled: Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
301
309
|
:param pulumi.Input[str] status: The status of the resource.
|
|
302
310
|
:param pulumi.Input[str] transit_router_attachment_description: The description of transit router attachment. The description is 2~256 characters long and must start with a letter or Chinese, but cannot start with `http://` or `https://`.
|
|
303
|
-
:param pulumi.Input[str] transit_router_attachment_id: The ID of transit router attachment
|
|
311
|
+
:param pulumi.Input[str] transit_router_attachment_id: The ID of transit router attachment.
|
|
304
312
|
:param pulumi.Input[str] transit_router_attachment_name: The name of transit router attachment. The name is 2~128 characters in length, starts with uppercase and lowercase letters or Chinese, and can contain numbers, underscores (_) and dashes (-)
|
|
305
313
|
:param pulumi.Input[str] transit_router_id: The ID of the transit router to attach.
|
|
306
314
|
"""
|
|
@@ -326,8 +334,14 @@ class _TransitRouterPeerAttachmentState:
|
|
|
326
334
|
pulumi.set(__self__, "peer_transit_router_region_id", peer_transit_router_region_id)
|
|
327
335
|
if resource_type is not None:
|
|
328
336
|
pulumi.set(__self__, "resource_type", resource_type)
|
|
337
|
+
if route_table_association_enabled is not None:
|
|
338
|
+
warnings.warn("""Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""", DeprecationWarning)
|
|
339
|
+
pulumi.log.warn("""route_table_association_enabled is deprecated: Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""")
|
|
329
340
|
if route_table_association_enabled is not None:
|
|
330
341
|
pulumi.set(__self__, "route_table_association_enabled", route_table_association_enabled)
|
|
342
|
+
if route_table_propagation_enabled is not None:
|
|
343
|
+
warnings.warn("""Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""", DeprecationWarning)
|
|
344
|
+
pulumi.log.warn("""route_table_propagation_enabled is deprecated: Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""")
|
|
331
345
|
if route_table_propagation_enabled is not None:
|
|
332
346
|
pulumi.set(__self__, "route_table_propagation_enabled", route_table_propagation_enabled)
|
|
333
347
|
if status is not None:
|
|
@@ -477,9 +491,10 @@ class _TransitRouterPeerAttachmentState:
|
|
|
477
491
|
|
|
478
492
|
@property
|
|
479
493
|
@pulumi.getter(name="routeTableAssociationEnabled")
|
|
494
|
+
@_utilities.deprecated("""Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""")
|
|
480
495
|
def route_table_association_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
481
496
|
"""
|
|
482
|
-
|
|
497
|
+
Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
483
498
|
"""
|
|
484
499
|
return pulumi.get(self, "route_table_association_enabled")
|
|
485
500
|
|
|
@@ -489,9 +504,10 @@ class _TransitRouterPeerAttachmentState:
|
|
|
489
504
|
|
|
490
505
|
@property
|
|
491
506
|
@pulumi.getter(name="routeTablePropagationEnabled")
|
|
507
|
+
@_utilities.deprecated("""Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""")
|
|
492
508
|
def route_table_propagation_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
493
509
|
"""
|
|
494
|
-
|
|
510
|
+
Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
495
511
|
"""
|
|
496
512
|
return pulumi.get(self, "route_table_propagation_enabled")
|
|
497
513
|
|
|
@@ -527,7 +543,7 @@ class _TransitRouterPeerAttachmentState:
|
|
|
527
543
|
@pulumi.getter(name="transitRouterAttachmentId")
|
|
528
544
|
def transit_router_attachment_id(self) -> Optional[pulumi.Input[str]]:
|
|
529
545
|
"""
|
|
530
|
-
The ID of transit router attachment
|
|
546
|
+
The ID of transit router attachment.
|
|
531
547
|
"""
|
|
532
548
|
return pulumi.get(self, "transit_router_attachment_id")
|
|
533
549
|
|
|
@@ -633,7 +649,7 @@ class TransitRouterPeerAttachment(pulumi.CustomResource):
|
|
|
633
649
|
CEN Transit Router Peer Attachment can be imported using the id, e.g.
|
|
634
650
|
|
|
635
651
|
```sh
|
|
636
|
-
$ pulumi import alicloud:cen/transitRouterPeerAttachment:TransitRouterPeerAttachment example <
|
|
652
|
+
$ pulumi import alicloud:cen/transitRouterPeerAttachment:TransitRouterPeerAttachment example <cen_id>:<transit_router_attachment_id>
|
|
637
653
|
```
|
|
638
654
|
|
|
639
655
|
:param str resource_name: The name of the resource.
|
|
@@ -650,8 +666,8 @@ class TransitRouterPeerAttachment(pulumi.CustomResource):
|
|
|
650
666
|
:param pulumi.Input[str] peer_transit_router_id: The ID of the peer transit router.
|
|
651
667
|
:param pulumi.Input[str] peer_transit_router_region_id: The region ID of peer transit router.
|
|
652
668
|
:param pulumi.Input[str] resource_type: The resource type to attachment. Only support `VR` and default value is `VR`.
|
|
653
|
-
:param pulumi.Input[bool] route_table_association_enabled:
|
|
654
|
-
:param pulumi.Input[bool] route_table_propagation_enabled:
|
|
669
|
+
:param pulumi.Input[bool] route_table_association_enabled: Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
670
|
+
:param pulumi.Input[bool] route_table_propagation_enabled: Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
655
671
|
:param pulumi.Input[str] transit_router_attachment_description: The description of transit router attachment. The description is 2~256 characters long and must start with a letter or Chinese, but cannot start with `http://` or `https://`.
|
|
656
672
|
:param pulumi.Input[str] transit_router_attachment_name: The name of transit router attachment. The name is 2~128 characters in length, starts with uppercase and lowercase letters or Chinese, and can contain numbers, underscores (_) and dashes (-)
|
|
657
673
|
:param pulumi.Input[str] transit_router_id: The ID of the transit router to attach.
|
|
@@ -714,7 +730,7 @@ class TransitRouterPeerAttachment(pulumi.CustomResource):
|
|
|
714
730
|
CEN Transit Router Peer Attachment can be imported using the id, e.g.
|
|
715
731
|
|
|
716
732
|
```sh
|
|
717
|
-
$ pulumi import alicloud:cen/transitRouterPeerAttachment:TransitRouterPeerAttachment example <
|
|
733
|
+
$ pulumi import alicloud:cen/transitRouterPeerAttachment:TransitRouterPeerAttachment example <cen_id>:<transit_router_attachment_id>
|
|
718
734
|
```
|
|
719
735
|
|
|
720
736
|
:param str resource_name: The name of the resource.
|
|
@@ -828,11 +844,11 @@ class TransitRouterPeerAttachment(pulumi.CustomResource):
|
|
|
828
844
|
:param pulumi.Input[str] peer_transit_router_id: The ID of the peer transit router.
|
|
829
845
|
:param pulumi.Input[str] peer_transit_router_region_id: The region ID of peer transit router.
|
|
830
846
|
:param pulumi.Input[str] resource_type: The resource type to attachment. Only support `VR` and default value is `VR`.
|
|
831
|
-
:param pulumi.Input[bool] route_table_association_enabled:
|
|
832
|
-
:param pulumi.Input[bool] route_table_propagation_enabled:
|
|
847
|
+
:param pulumi.Input[bool] route_table_association_enabled: Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
848
|
+
:param pulumi.Input[bool] route_table_propagation_enabled: Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
833
849
|
:param pulumi.Input[str] status: The status of the resource.
|
|
834
850
|
:param pulumi.Input[str] transit_router_attachment_description: The description of transit router attachment. The description is 2~256 characters long and must start with a letter or Chinese, but cannot start with `http://` or `https://`.
|
|
835
|
-
:param pulumi.Input[str] transit_router_attachment_id: The ID of transit router attachment
|
|
851
|
+
:param pulumi.Input[str] transit_router_attachment_id: The ID of transit router attachment.
|
|
836
852
|
:param pulumi.Input[str] transit_router_attachment_name: The name of transit router attachment. The name is 2~128 characters in length, starts with uppercase and lowercase letters or Chinese, and can contain numbers, underscores (_) and dashes (-)
|
|
837
853
|
:param pulumi.Input[str] transit_router_id: The ID of the transit router to attach.
|
|
838
854
|
"""
|
|
@@ -952,17 +968,19 @@ class TransitRouterPeerAttachment(pulumi.CustomResource):
|
|
|
952
968
|
|
|
953
969
|
@property
|
|
954
970
|
@pulumi.getter(name="routeTableAssociationEnabled")
|
|
971
|
+
@_utilities.deprecated("""Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.""")
|
|
955
972
|
def route_table_association_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
956
973
|
"""
|
|
957
|
-
|
|
974
|
+
Field `route_table_association_enabled` has been deprecated from provider version 1.230.0.
|
|
958
975
|
"""
|
|
959
976
|
return pulumi.get(self, "route_table_association_enabled")
|
|
960
977
|
|
|
961
978
|
@property
|
|
962
979
|
@pulumi.getter(name="routeTablePropagationEnabled")
|
|
980
|
+
@_utilities.deprecated("""Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.""")
|
|
963
981
|
def route_table_propagation_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
964
982
|
"""
|
|
965
|
-
|
|
983
|
+
Field `route_table_propagation_enabled` has been deprecated from provider version 1.230.0.
|
|
966
984
|
"""
|
|
967
985
|
return pulumi.get(self, "route_table_propagation_enabled")
|
|
968
986
|
|
|
@@ -986,7 +1004,7 @@ class TransitRouterPeerAttachment(pulumi.CustomResource):
|
|
|
986
1004
|
@pulumi.getter(name="transitRouterAttachmentId")
|
|
987
1005
|
def transit_router_attachment_id(self) -> pulumi.Output[str]:
|
|
988
1006
|
"""
|
|
989
|
-
The ID of transit router attachment
|
|
1007
|
+
The ID of transit router attachment.
|
|
990
1008
|
"""
|
|
991
1009
|
return pulumi.get(self, "transit_router_attachment_id")
|
|
992
1010
|
|