pulumi-alicloud 3.63.0a1726291447__py3-none-any.whl → 3.63.0a1726828180__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.

Files changed (40) hide show
  1. pulumi_alicloud/amqp/binding.py +30 -36
  2. pulumi_alicloud/cen/_inputs.py +180 -14
  3. pulumi_alicloud/cen/outputs.py +173 -12
  4. pulumi_alicloud/cen/traffic_marking_policy.py +116 -53
  5. pulumi_alicloud/cen/transit_router_vpc_attachment.py +338 -119
  6. pulumi_alicloud/cr/chart_namespace.py +14 -6
  7. pulumi_alicloud/cr/endpoint_acl_policy.py +10 -2
  8. pulumi_alicloud/cr/namespace.py +10 -2
  9. pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
  10. pulumi_alicloud/ddos/bgp_ip.py +1 -1
  11. pulumi_alicloud/ecs/_inputs.py +28 -0
  12. pulumi_alicloud/ecs/outputs.py +20 -0
  13. pulumi_alicloud/emrv2/_inputs.py +12 -12
  14. pulumi_alicloud/emrv2/outputs.py +12 -12
  15. pulumi_alicloud/ens/_inputs.py +50 -2
  16. pulumi_alicloud/ens/instance.py +428 -184
  17. pulumi_alicloud/ens/outputs.py +57 -2
  18. pulumi_alicloud/expressconnect/physical_connection.py +321 -185
  19. pulumi_alicloud/fc/trigger.py +22 -24
  20. pulumi_alicloud/ga/endpoint_group.py +68 -14
  21. pulumi_alicloud/mongodb/instance.py +94 -0
  22. pulumi_alicloud/nlb/_inputs.py +120 -64
  23. pulumi_alicloud/nlb/get_listeners.py +32 -2
  24. pulumi_alicloud/nlb/get_server_group_server_attachments.py +8 -2
  25. pulumi_alicloud/nlb/listener.py +315 -245
  26. pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
  27. pulumi_alicloud/nlb/load_balancer.py +181 -212
  28. pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +29 -39
  29. pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +22 -18
  30. pulumi_alicloud/nlb/outputs.py +122 -66
  31. pulumi_alicloud/nlb/security_policy.py +53 -25
  32. pulumi_alicloud/nlb/server_group.py +196 -133
  33. pulumi_alicloud/ocean/base_instance.py +498 -163
  34. pulumi_alicloud/pulumi-plugin.json +1 -1
  35. pulumi_alicloud/servicemesh/extension_provider.py +2 -2
  36. pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
  37. {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/METADATA +1 -1
  38. {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/RECORD +40 -40
  39. {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/WHEEL +1 -1
  40. {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.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: The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
26
- :param pulumi.Input[int] priority: The Priority of the Traffic Marking Policy. Value range: 1~100.
27
- :param pulumi.Input[str] transit_router_id: The ID of the transit router.
28
- :param pulumi.Input[str] description: The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
29
- :param pulumi.Input[bool] dry_run: The dry run.
30
- :param pulumi.Input[str] traffic_marking_policy_name: The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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
- The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
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
- The Priority of the Traffic Marking Policy. Value range: 1~100.
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
- The ID of the transit router.
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
- The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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
- The dry run.
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
- The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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: The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
129
- :param pulumi.Input[bool] dry_run: The dry run.
130
- :param pulumi.Input[int] marking_dscp: The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
131
- :param pulumi.Input[int] priority: The Priority of the Traffic Marking Policy. Value range: 1~100.
132
- :param pulumi.Input[str] status: The status of the resource.
133
- :param pulumi.Input[str] traffic_marking_policy_id: The ID of the Traffic Marking Policy.
134
- :param pulumi.Input[str] traffic_marking_policy_name: The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
135
- :param pulumi.Input[str] transit_router_id: The ID of the transit router.
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
- The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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
- The dry run.
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
- The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
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
- The Priority of the Traffic Marking Policy. Value range: 1~100.
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 Traffic Marking Policy.
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
- The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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
- The ID of the transit router.
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
- Cloud Enterprise Network (CEN) Traffic Marking Policy can be imported using the id, e.g.
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: The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
302
- :param pulumi.Input[bool] dry_run: The dry run.
303
- :param pulumi.Input[int] marking_dscp: The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
304
- :param pulumi.Input[int] priority: The Priority of the Traffic Marking Policy. Value range: 1~100.
305
- :param pulumi.Input[str] traffic_marking_policy_name: The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
306
- :param pulumi.Input[str] transit_router_id: The ID of the transit router.
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
- Cloud Enterprise Network (CEN) Traffic Marking Policy can be imported using the id, e.g.
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: The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
420
- :param pulumi.Input[bool] dry_run: The dry run.
421
- :param pulumi.Input[int] marking_dscp: The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
422
- :param pulumi.Input[int] priority: The Priority of the Traffic Marking Policy. Value range: 1~100.
423
- :param pulumi.Input[str] status: The status of the resource.
424
- :param pulumi.Input[str] traffic_marking_policy_id: The ID of the Traffic Marking Policy.
425
- :param pulumi.Input[str] traffic_marking_policy_name: The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
426
- :param pulumi.Input[str] transit_router_id: The ID of the transit router.
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
- The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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
- The dry run.
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
- The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.
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
- The Priority of the Traffic Marking Policy. Value range: 1~100.
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 Traffic Marking Policy.
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
- The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).
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
- The ID of the transit router.
565
+ TransitRouterId
503
566
  """
504
567
  return pulumi.get(self, "transit_router_id")
505
568