pulumi-alicloud 3.86.0a1757720227__py3-none-any.whl → 3.86.0a1758340042__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.
- pulumi_alicloud/__init__.py +56 -0
- pulumi_alicloud/actiontrail/get_sasl_users.py +106 -21
- pulumi_alicloud/actiontrail/outputs.py +18 -0
- pulumi_alicloud/alikafka/instance.py +28 -28
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +61 -29
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/threat_intelligence_switch.py +257 -0
- pulumi_alicloud/cloudsso/__init__.py +1 -0
- pulumi_alicloud/cloudsso/_inputs.py +54 -0
- pulumi_alicloud/cloudsso/outputs.py +51 -0
- pulumi_alicloud/cloudsso/user_provisioning.py +723 -0
- pulumi_alicloud/dms/__init__.py +1 -0
- pulumi_alicloud/dms/airflow.py +990 -0
- pulumi_alicloud/ecs/ecs_launch_template.py +21 -7
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/_inputs.py +189 -0
- pulumi_alicloud/esa/outputs.py +137 -0
- pulumi_alicloud/esa/transport_layer_application.py +459 -0
- pulumi_alicloud/esa/waf_ruleset.py +437 -0
- pulumi_alicloud/fc/_inputs.py +13 -0
- pulumi_alicloud/fc/function.py +0 -156
- pulumi_alicloud/fc/outputs.py +8 -0
- pulumi_alicloud/fc/v3_function.py +54 -7
- pulumi_alicloud/lindorm/__init__.py +2 -0
- pulumi_alicloud/lindorm/_inputs.py +459 -0
- pulumi_alicloud/lindorm/instance_v2.py +1119 -0
- pulumi_alicloud/lindorm/outputs.py +319 -0
- pulumi_alicloud/log/etl.py +6 -0
- pulumi_alicloud/mongodb/sharding_instance.py +235 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/resourcemanager/control_policy_attachment.py +39 -7
- pulumi_alicloud/resourcemanager/handshake.py +118 -56
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +111 -0
- pulumi_alicloud/sls/index.py +646 -0
- pulumi_alicloud/sls/outputs.py +86 -0
- {pulumi_alicloud-3.86.0a1757720227.dist-info → pulumi_alicloud-3.86.0a1758340042.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.86.0a1757720227.dist-info → pulumi_alicloud-3.86.0a1758340042.dist-info}/RECORD +40 -32
- {pulumi_alicloud-3.86.0a1757720227.dist-info → pulumi_alicloud-3.86.0a1758340042.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.86.0a1757720227.dist-info → pulumi_alicloud-3.86.0a1758340042.dist-info}/top_level.txt +0 -0
|
@@ -89,10 +89,12 @@ class EcsLaunchTemplateArgs:
|
|
|
89
89
|
:param pulumi.Input[_builtins.str] http_endpoint: Whether to enable access to instance metadata. Valid values:
|
|
90
90
|
- enabled: Enabled.
|
|
91
91
|
- disabled: Disabled.
|
|
92
|
-
|
|
92
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
93
|
+
:param pulumi.Input[_builtins.int] http_put_response_hop_limit: The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
93
94
|
:param pulumi.Input[_builtins.str] http_tokens: Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
94
95
|
- optional: Not mandatory.
|
|
95
96
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
97
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
96
98
|
:param pulumi.Input[_builtins.str] image_id: The Image ID.
|
|
97
99
|
:param pulumi.Input['EcsLaunchTemplateImageOptionsArgs'] image_options: The options of images. See `image_options` below.
|
|
98
100
|
:param pulumi.Input[_builtins.str] image_owner_alias: Mirror source. Valid values: `system`, `self`, `others`, `marketplace`, `""`. Default to: `""`.
|
|
@@ -384,6 +386,7 @@ class EcsLaunchTemplateArgs:
|
|
|
384
386
|
Whether to enable access to instance metadata. Valid values:
|
|
385
387
|
- enabled: Enabled.
|
|
386
388
|
- disabled: Disabled.
|
|
389
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
387
390
|
"""
|
|
388
391
|
return pulumi.get(self, "http_endpoint")
|
|
389
392
|
|
|
@@ -395,7 +398,7 @@ class EcsLaunchTemplateArgs:
|
|
|
395
398
|
@pulumi.getter(name="httpPutResponseHopLimit")
|
|
396
399
|
def http_put_response_hop_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
397
400
|
"""
|
|
398
|
-
The HTTP PUT response hop limit required for instance metadata requests.
|
|
401
|
+
The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
399
402
|
"""
|
|
400
403
|
return pulumi.get(self, "http_put_response_hop_limit")
|
|
401
404
|
|
|
@@ -410,6 +413,7 @@ class EcsLaunchTemplateArgs:
|
|
|
410
413
|
Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
411
414
|
- optional: Not mandatory.
|
|
412
415
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
416
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
413
417
|
"""
|
|
414
418
|
return pulumi.get(self, "http_tokens")
|
|
415
419
|
|
|
@@ -1006,10 +1010,12 @@ class _EcsLaunchTemplateState:
|
|
|
1006
1010
|
:param pulumi.Input[_builtins.str] http_endpoint: Whether to enable access to instance metadata. Valid values:
|
|
1007
1011
|
- enabled: Enabled.
|
|
1008
1012
|
- disabled: Disabled.
|
|
1009
|
-
|
|
1013
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
1014
|
+
:param pulumi.Input[_builtins.int] http_put_response_hop_limit: The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
1010
1015
|
:param pulumi.Input[_builtins.str] http_tokens: Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
1011
1016
|
- optional: Not mandatory.
|
|
1012
1017
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
1018
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
1013
1019
|
:param pulumi.Input[_builtins.str] image_id: The Image ID.
|
|
1014
1020
|
:param pulumi.Input['EcsLaunchTemplateImageOptionsArgs'] image_options: The options of images. See `image_options` below.
|
|
1015
1021
|
:param pulumi.Input[_builtins.str] image_owner_alias: Mirror source. Valid values: `system`, `self`, `others`, `marketplace`, `""`. Default to: `""`.
|
|
@@ -1304,6 +1310,7 @@ class _EcsLaunchTemplateState:
|
|
|
1304
1310
|
Whether to enable access to instance metadata. Valid values:
|
|
1305
1311
|
- enabled: Enabled.
|
|
1306
1312
|
- disabled: Disabled.
|
|
1313
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
1307
1314
|
"""
|
|
1308
1315
|
return pulumi.get(self, "http_endpoint")
|
|
1309
1316
|
|
|
@@ -1315,7 +1322,7 @@ class _EcsLaunchTemplateState:
|
|
|
1315
1322
|
@pulumi.getter(name="httpPutResponseHopLimit")
|
|
1316
1323
|
def http_put_response_hop_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1317
1324
|
"""
|
|
1318
|
-
The HTTP PUT response hop limit required for instance metadata requests.
|
|
1325
|
+
The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
1319
1326
|
"""
|
|
1320
1327
|
return pulumi.get(self, "http_put_response_hop_limit")
|
|
1321
1328
|
|
|
@@ -1330,6 +1337,7 @@ class _EcsLaunchTemplateState:
|
|
|
1330
1337
|
Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
1331
1338
|
- optional: Not mandatory.
|
|
1332
1339
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
1340
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
1333
1341
|
"""
|
|
1334
1342
|
return pulumi.get(self, "http_tokens")
|
|
1335
1343
|
|
|
@@ -2043,10 +2051,12 @@ class EcsLaunchTemplate(pulumi.CustomResource):
|
|
|
2043
2051
|
:param pulumi.Input[_builtins.str] http_endpoint: Whether to enable access to instance metadata. Valid values:
|
|
2044
2052
|
- enabled: Enabled.
|
|
2045
2053
|
- disabled: Disabled.
|
|
2046
|
-
|
|
2054
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
2055
|
+
:param pulumi.Input[_builtins.int] http_put_response_hop_limit: The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
2047
2056
|
:param pulumi.Input[_builtins.str] http_tokens: Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
2048
2057
|
- optional: Not mandatory.
|
|
2049
2058
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
2059
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
2050
2060
|
:param pulumi.Input[_builtins.str] image_id: The Image ID.
|
|
2051
2061
|
:param pulumi.Input[Union['EcsLaunchTemplateImageOptionsArgs', 'EcsLaunchTemplateImageOptionsArgsDict']] image_options: The options of images. See `image_options` below.
|
|
2052
2062
|
:param pulumi.Input[_builtins.str] image_owner_alias: Mirror source. Valid values: `system`, `self`, `others`, `marketplace`, `""`. Default to: `""`.
|
|
@@ -2421,10 +2431,12 @@ class EcsLaunchTemplate(pulumi.CustomResource):
|
|
|
2421
2431
|
:param pulumi.Input[_builtins.str] http_endpoint: Whether to enable access to instance metadata. Valid values:
|
|
2422
2432
|
- enabled: Enabled.
|
|
2423
2433
|
- disabled: Disabled.
|
|
2424
|
-
|
|
2434
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
2435
|
+
:param pulumi.Input[_builtins.int] http_put_response_hop_limit: The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
2425
2436
|
:param pulumi.Input[_builtins.str] http_tokens: Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
2426
2437
|
- optional: Not mandatory.
|
|
2427
2438
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
2439
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
2428
2440
|
:param pulumi.Input[_builtins.str] image_id: The Image ID.
|
|
2429
2441
|
:param pulumi.Input[Union['EcsLaunchTemplateImageOptionsArgs', 'EcsLaunchTemplateImageOptionsArgsDict']] image_options: The options of images. See `image_options` below.
|
|
2430
2442
|
:param pulumi.Input[_builtins.str] image_owner_alias: Mirror source. Valid values: `system`, `self`, `others`, `marketplace`, `""`. Default to: `""`.
|
|
@@ -2615,6 +2627,7 @@ class EcsLaunchTemplate(pulumi.CustomResource):
|
|
|
2615
2627
|
Whether to enable access to instance metadata. Valid values:
|
|
2616
2628
|
- enabled: Enabled.
|
|
2617
2629
|
- disabled: Disabled.
|
|
2630
|
+
**NOTE:** From version 1.260.0, `http_endpoint` can be modified.
|
|
2618
2631
|
"""
|
|
2619
2632
|
return pulumi.get(self, "http_endpoint")
|
|
2620
2633
|
|
|
@@ -2622,7 +2635,7 @@ class EcsLaunchTemplate(pulumi.CustomResource):
|
|
|
2622
2635
|
@pulumi.getter(name="httpPutResponseHopLimit")
|
|
2623
2636
|
def http_put_response_hop_limit(self) -> pulumi.Output[_builtins.int]:
|
|
2624
2637
|
"""
|
|
2625
|
-
The HTTP PUT response hop limit required for instance metadata requests.
|
|
2638
|
+
The HTTP PUT response hop limit required for instance metadata requests. **NOTE:** From version 1.260.0, `http_put_response_hop_limit` can be modified.
|
|
2626
2639
|
"""
|
|
2627
2640
|
return pulumi.get(self, "http_put_response_hop_limit")
|
|
2628
2641
|
|
|
@@ -2633,6 +2646,7 @@ class EcsLaunchTemplate(pulumi.CustomResource):
|
|
|
2633
2646
|
Whether to use the hardened mode (IMDSv2) when accessing instance metadata. Valid values:
|
|
2634
2647
|
- optional: Not mandatory.
|
|
2635
2648
|
- required: Mandatory. After this value is set, the normal mode cannot access instance metadata.
|
|
2649
|
+
**NOTE:** From version 1.260.0, `http_tokens` can be modified.
|
|
2636
2650
|
"""
|
|
2637
2651
|
return pulumi.get(self, "http_tokens")
|
|
2638
2652
|
|
pulumi_alicloud/esa/__init__.py
CHANGED
|
@@ -44,9 +44,11 @@ from .scheduled_preload_job import *
|
|
|
44
44
|
from .site import *
|
|
45
45
|
from .site_delivery_task import *
|
|
46
46
|
from .site_origin_client_certificate import *
|
|
47
|
+
from .transport_layer_application import *
|
|
47
48
|
from .url_observation import *
|
|
48
49
|
from .version import *
|
|
49
50
|
from .video_processing import *
|
|
51
|
+
from .waf_ruleset import *
|
|
50
52
|
from .waiting_room import *
|
|
51
53
|
from .waiting_room_event import *
|
|
52
54
|
from .waiting_room_rule import *
|
pulumi_alicloud/esa/_inputs.py
CHANGED
|
@@ -39,6 +39,8 @@ __all__ = [
|
|
|
39
39
|
'SiteDeliveryTaskS3DeliveryArgsDict',
|
|
40
40
|
'SiteDeliveryTaskSlsDeliveryArgs',
|
|
41
41
|
'SiteDeliveryTaskSlsDeliveryArgsDict',
|
|
42
|
+
'TransportLayerApplicationRuleArgs',
|
|
43
|
+
'TransportLayerApplicationRuleArgsDict',
|
|
42
44
|
'WaitingRoomHostNameAndPathArgs',
|
|
43
45
|
'WaitingRoomHostNameAndPathArgsDict',
|
|
44
46
|
]
|
|
@@ -1519,6 +1521,193 @@ class SiteDeliveryTaskSlsDeliveryArgs:
|
|
|
1519
1521
|
pulumi.set(self, "sls_region", value)
|
|
1520
1522
|
|
|
1521
1523
|
|
|
1524
|
+
if not MYPY:
|
|
1525
|
+
class TransportLayerApplicationRuleArgsDict(TypedDict):
|
|
1526
|
+
client_ip_pass_through_mode: pulumi.Input[_builtins.str]
|
|
1527
|
+
"""
|
|
1528
|
+
Client IP pass-through protocol, supporting:
|
|
1529
|
+
"""
|
|
1530
|
+
edge_port: pulumi.Input[_builtins.str]
|
|
1531
|
+
"""
|
|
1532
|
+
Edge port. Supports:
|
|
1533
|
+
- A single port, such as 80.
|
|
1534
|
+
- Port range, such as 81-85, representing ports 81, 82, 83, 84, and 85.
|
|
1535
|
+
- Combination of ports and port ranges, separated by commas, such as 80,81-85,90, representing ports 80, 81, 82, 83, 84, 85, and 90.
|
|
1536
|
+
|
|
1537
|
+
Edge ports within a single rule and between multiple rules must not overlap.
|
|
1538
|
+
"""
|
|
1539
|
+
protocol: pulumi.Input[_builtins.str]
|
|
1540
|
+
"""
|
|
1541
|
+
Forwarding rule protocol, with values:
|
|
1542
|
+
- `TCP`: TCP protocol.
|
|
1543
|
+
- `UDP`: UDP protocol.
|
|
1544
|
+
"""
|
|
1545
|
+
source: pulumi.Input[_builtins.str]
|
|
1546
|
+
"""
|
|
1547
|
+
Specific value of the origin, which needs to match the origin type.
|
|
1548
|
+
"""
|
|
1549
|
+
source_port: pulumi.Input[_builtins.str]
|
|
1550
|
+
"""
|
|
1551
|
+
Source Port
|
|
1552
|
+
"""
|
|
1553
|
+
source_type: pulumi.Input[_builtins.str]
|
|
1554
|
+
"""
|
|
1555
|
+
Origin type, supporting:
|
|
1556
|
+
"""
|
|
1557
|
+
comment: NotRequired[pulumi.Input[_builtins.str]]
|
|
1558
|
+
"""
|
|
1559
|
+
Comment information for the rule (optional).
|
|
1560
|
+
"""
|
|
1561
|
+
rule_id: NotRequired[pulumi.Input[_builtins.int]]
|
|
1562
|
+
"""
|
|
1563
|
+
Rule ID
|
|
1564
|
+
"""
|
|
1565
|
+
elif False:
|
|
1566
|
+
TransportLayerApplicationRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
1567
|
+
|
|
1568
|
+
@pulumi.input_type
|
|
1569
|
+
class TransportLayerApplicationRuleArgs:
|
|
1570
|
+
def __init__(__self__, *,
|
|
1571
|
+
client_ip_pass_through_mode: pulumi.Input[_builtins.str],
|
|
1572
|
+
edge_port: pulumi.Input[_builtins.str],
|
|
1573
|
+
protocol: pulumi.Input[_builtins.str],
|
|
1574
|
+
source: pulumi.Input[_builtins.str],
|
|
1575
|
+
source_port: pulumi.Input[_builtins.str],
|
|
1576
|
+
source_type: pulumi.Input[_builtins.str],
|
|
1577
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1578
|
+
rule_id: Optional[pulumi.Input[_builtins.int]] = None):
|
|
1579
|
+
"""
|
|
1580
|
+
:param pulumi.Input[_builtins.str] client_ip_pass_through_mode: Client IP pass-through protocol, supporting:
|
|
1581
|
+
:param pulumi.Input[_builtins.str] edge_port: Edge port. Supports:
|
|
1582
|
+
- A single port, such as 80.
|
|
1583
|
+
- Port range, such as 81-85, representing ports 81, 82, 83, 84, and 85.
|
|
1584
|
+
- Combination of ports and port ranges, separated by commas, such as 80,81-85,90, representing ports 80, 81, 82, 83, 84, 85, and 90.
|
|
1585
|
+
|
|
1586
|
+
Edge ports within a single rule and between multiple rules must not overlap.
|
|
1587
|
+
:param pulumi.Input[_builtins.str] protocol: Forwarding rule protocol, with values:
|
|
1588
|
+
- `TCP`: TCP protocol.
|
|
1589
|
+
- `UDP`: UDP protocol.
|
|
1590
|
+
:param pulumi.Input[_builtins.str] source: Specific value of the origin, which needs to match the origin type.
|
|
1591
|
+
:param pulumi.Input[_builtins.str] source_port: Source Port
|
|
1592
|
+
:param pulumi.Input[_builtins.str] source_type: Origin type, supporting:
|
|
1593
|
+
:param pulumi.Input[_builtins.str] comment: Comment information for the rule (optional).
|
|
1594
|
+
:param pulumi.Input[_builtins.int] rule_id: Rule ID
|
|
1595
|
+
"""
|
|
1596
|
+
pulumi.set(__self__, "client_ip_pass_through_mode", client_ip_pass_through_mode)
|
|
1597
|
+
pulumi.set(__self__, "edge_port", edge_port)
|
|
1598
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
1599
|
+
pulumi.set(__self__, "source", source)
|
|
1600
|
+
pulumi.set(__self__, "source_port", source_port)
|
|
1601
|
+
pulumi.set(__self__, "source_type", source_type)
|
|
1602
|
+
if comment is not None:
|
|
1603
|
+
pulumi.set(__self__, "comment", comment)
|
|
1604
|
+
if rule_id is not None:
|
|
1605
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
1606
|
+
|
|
1607
|
+
@_builtins.property
|
|
1608
|
+
@pulumi.getter(name="clientIpPassThroughMode")
|
|
1609
|
+
def client_ip_pass_through_mode(self) -> pulumi.Input[_builtins.str]:
|
|
1610
|
+
"""
|
|
1611
|
+
Client IP pass-through protocol, supporting:
|
|
1612
|
+
"""
|
|
1613
|
+
return pulumi.get(self, "client_ip_pass_through_mode")
|
|
1614
|
+
|
|
1615
|
+
@client_ip_pass_through_mode.setter
|
|
1616
|
+
def client_ip_pass_through_mode(self, value: pulumi.Input[_builtins.str]):
|
|
1617
|
+
pulumi.set(self, "client_ip_pass_through_mode", value)
|
|
1618
|
+
|
|
1619
|
+
@_builtins.property
|
|
1620
|
+
@pulumi.getter(name="edgePort")
|
|
1621
|
+
def edge_port(self) -> pulumi.Input[_builtins.str]:
|
|
1622
|
+
"""
|
|
1623
|
+
Edge port. Supports:
|
|
1624
|
+
- A single port, such as 80.
|
|
1625
|
+
- Port range, such as 81-85, representing ports 81, 82, 83, 84, and 85.
|
|
1626
|
+
- Combination of ports and port ranges, separated by commas, such as 80,81-85,90, representing ports 80, 81, 82, 83, 84, 85, and 90.
|
|
1627
|
+
|
|
1628
|
+
Edge ports within a single rule and between multiple rules must not overlap.
|
|
1629
|
+
"""
|
|
1630
|
+
return pulumi.get(self, "edge_port")
|
|
1631
|
+
|
|
1632
|
+
@edge_port.setter
|
|
1633
|
+
def edge_port(self, value: pulumi.Input[_builtins.str]):
|
|
1634
|
+
pulumi.set(self, "edge_port", value)
|
|
1635
|
+
|
|
1636
|
+
@_builtins.property
|
|
1637
|
+
@pulumi.getter
|
|
1638
|
+
def protocol(self) -> pulumi.Input[_builtins.str]:
|
|
1639
|
+
"""
|
|
1640
|
+
Forwarding rule protocol, with values:
|
|
1641
|
+
- `TCP`: TCP protocol.
|
|
1642
|
+
- `UDP`: UDP protocol.
|
|
1643
|
+
"""
|
|
1644
|
+
return pulumi.get(self, "protocol")
|
|
1645
|
+
|
|
1646
|
+
@protocol.setter
|
|
1647
|
+
def protocol(self, value: pulumi.Input[_builtins.str]):
|
|
1648
|
+
pulumi.set(self, "protocol", value)
|
|
1649
|
+
|
|
1650
|
+
@_builtins.property
|
|
1651
|
+
@pulumi.getter
|
|
1652
|
+
def source(self) -> pulumi.Input[_builtins.str]:
|
|
1653
|
+
"""
|
|
1654
|
+
Specific value of the origin, which needs to match the origin type.
|
|
1655
|
+
"""
|
|
1656
|
+
return pulumi.get(self, "source")
|
|
1657
|
+
|
|
1658
|
+
@source.setter
|
|
1659
|
+
def source(self, value: pulumi.Input[_builtins.str]):
|
|
1660
|
+
pulumi.set(self, "source", value)
|
|
1661
|
+
|
|
1662
|
+
@_builtins.property
|
|
1663
|
+
@pulumi.getter(name="sourcePort")
|
|
1664
|
+
def source_port(self) -> pulumi.Input[_builtins.str]:
|
|
1665
|
+
"""
|
|
1666
|
+
Source Port
|
|
1667
|
+
"""
|
|
1668
|
+
return pulumi.get(self, "source_port")
|
|
1669
|
+
|
|
1670
|
+
@source_port.setter
|
|
1671
|
+
def source_port(self, value: pulumi.Input[_builtins.str]):
|
|
1672
|
+
pulumi.set(self, "source_port", value)
|
|
1673
|
+
|
|
1674
|
+
@_builtins.property
|
|
1675
|
+
@pulumi.getter(name="sourceType")
|
|
1676
|
+
def source_type(self) -> pulumi.Input[_builtins.str]:
|
|
1677
|
+
"""
|
|
1678
|
+
Origin type, supporting:
|
|
1679
|
+
"""
|
|
1680
|
+
return pulumi.get(self, "source_type")
|
|
1681
|
+
|
|
1682
|
+
@source_type.setter
|
|
1683
|
+
def source_type(self, value: pulumi.Input[_builtins.str]):
|
|
1684
|
+
pulumi.set(self, "source_type", value)
|
|
1685
|
+
|
|
1686
|
+
@_builtins.property
|
|
1687
|
+
@pulumi.getter
|
|
1688
|
+
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1689
|
+
"""
|
|
1690
|
+
Comment information for the rule (optional).
|
|
1691
|
+
"""
|
|
1692
|
+
return pulumi.get(self, "comment")
|
|
1693
|
+
|
|
1694
|
+
@comment.setter
|
|
1695
|
+
def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1696
|
+
pulumi.set(self, "comment", value)
|
|
1697
|
+
|
|
1698
|
+
@_builtins.property
|
|
1699
|
+
@pulumi.getter(name="ruleId")
|
|
1700
|
+
def rule_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1701
|
+
"""
|
|
1702
|
+
Rule ID
|
|
1703
|
+
"""
|
|
1704
|
+
return pulumi.get(self, "rule_id")
|
|
1705
|
+
|
|
1706
|
+
@rule_id.setter
|
|
1707
|
+
def rule_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1708
|
+
pulumi.set(self, "rule_id", value)
|
|
1709
|
+
|
|
1710
|
+
|
|
1522
1711
|
if not MYPY:
|
|
1523
1712
|
class WaitingRoomHostNameAndPathArgsDict(TypedDict):
|
|
1524
1713
|
domain: pulumi.Input[_builtins.str]
|
pulumi_alicloud/esa/outputs.py
CHANGED
|
@@ -28,6 +28,7 @@ __all__ = [
|
|
|
28
28
|
'SiteDeliveryTaskOssDelivery',
|
|
29
29
|
'SiteDeliveryTaskS3Delivery',
|
|
30
30
|
'SiteDeliveryTaskSlsDelivery',
|
|
31
|
+
'TransportLayerApplicationRule',
|
|
31
32
|
'WaitingRoomHostNameAndPath',
|
|
32
33
|
'GetSitesSiteResult',
|
|
33
34
|
]
|
|
@@ -1148,6 +1149,142 @@ class SiteDeliveryTaskSlsDelivery(dict):
|
|
|
1148
1149
|
return pulumi.get(self, "sls_region")
|
|
1149
1150
|
|
|
1150
1151
|
|
|
1152
|
+
@pulumi.output_type
|
|
1153
|
+
class TransportLayerApplicationRule(dict):
|
|
1154
|
+
@staticmethod
|
|
1155
|
+
def __key_warning(key: str):
|
|
1156
|
+
suggest = None
|
|
1157
|
+
if key == "clientIpPassThroughMode":
|
|
1158
|
+
suggest = "client_ip_pass_through_mode"
|
|
1159
|
+
elif key == "edgePort":
|
|
1160
|
+
suggest = "edge_port"
|
|
1161
|
+
elif key == "sourcePort":
|
|
1162
|
+
suggest = "source_port"
|
|
1163
|
+
elif key == "sourceType":
|
|
1164
|
+
suggest = "source_type"
|
|
1165
|
+
elif key == "ruleId":
|
|
1166
|
+
suggest = "rule_id"
|
|
1167
|
+
|
|
1168
|
+
if suggest:
|
|
1169
|
+
pulumi.log.warn(f"Key '{key}' not found in TransportLayerApplicationRule. Access the value via the '{suggest}' property getter instead.")
|
|
1170
|
+
|
|
1171
|
+
def __getitem__(self, key: str) -> Any:
|
|
1172
|
+
TransportLayerApplicationRule.__key_warning(key)
|
|
1173
|
+
return super().__getitem__(key)
|
|
1174
|
+
|
|
1175
|
+
def get(self, key: str, default = None) -> Any:
|
|
1176
|
+
TransportLayerApplicationRule.__key_warning(key)
|
|
1177
|
+
return super().get(key, default)
|
|
1178
|
+
|
|
1179
|
+
def __init__(__self__, *,
|
|
1180
|
+
client_ip_pass_through_mode: _builtins.str,
|
|
1181
|
+
edge_port: _builtins.str,
|
|
1182
|
+
protocol: _builtins.str,
|
|
1183
|
+
source: _builtins.str,
|
|
1184
|
+
source_port: _builtins.str,
|
|
1185
|
+
source_type: _builtins.str,
|
|
1186
|
+
comment: Optional[_builtins.str] = None,
|
|
1187
|
+
rule_id: Optional[_builtins.int] = None):
|
|
1188
|
+
"""
|
|
1189
|
+
:param _builtins.str client_ip_pass_through_mode: Client IP pass-through protocol, supporting:
|
|
1190
|
+
:param _builtins.str edge_port: Edge port. Supports:
|
|
1191
|
+
- A single port, such as 80.
|
|
1192
|
+
- Port range, such as 81-85, representing ports 81, 82, 83, 84, and 85.
|
|
1193
|
+
- Combination of ports and port ranges, separated by commas, such as 80,81-85,90, representing ports 80, 81, 82, 83, 84, 85, and 90.
|
|
1194
|
+
|
|
1195
|
+
Edge ports within a single rule and between multiple rules must not overlap.
|
|
1196
|
+
:param _builtins.str protocol: Forwarding rule protocol, with values:
|
|
1197
|
+
- `TCP`: TCP protocol.
|
|
1198
|
+
- `UDP`: UDP protocol.
|
|
1199
|
+
:param _builtins.str source: Specific value of the origin, which needs to match the origin type.
|
|
1200
|
+
:param _builtins.str source_port: Source Port
|
|
1201
|
+
:param _builtins.str source_type: Origin type, supporting:
|
|
1202
|
+
:param _builtins.str comment: Comment information for the rule (optional).
|
|
1203
|
+
:param _builtins.int rule_id: Rule ID
|
|
1204
|
+
"""
|
|
1205
|
+
pulumi.set(__self__, "client_ip_pass_through_mode", client_ip_pass_through_mode)
|
|
1206
|
+
pulumi.set(__self__, "edge_port", edge_port)
|
|
1207
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
1208
|
+
pulumi.set(__self__, "source", source)
|
|
1209
|
+
pulumi.set(__self__, "source_port", source_port)
|
|
1210
|
+
pulumi.set(__self__, "source_type", source_type)
|
|
1211
|
+
if comment is not None:
|
|
1212
|
+
pulumi.set(__self__, "comment", comment)
|
|
1213
|
+
if rule_id is not None:
|
|
1214
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
1215
|
+
|
|
1216
|
+
@_builtins.property
|
|
1217
|
+
@pulumi.getter(name="clientIpPassThroughMode")
|
|
1218
|
+
def client_ip_pass_through_mode(self) -> _builtins.str:
|
|
1219
|
+
"""
|
|
1220
|
+
Client IP pass-through protocol, supporting:
|
|
1221
|
+
"""
|
|
1222
|
+
return pulumi.get(self, "client_ip_pass_through_mode")
|
|
1223
|
+
|
|
1224
|
+
@_builtins.property
|
|
1225
|
+
@pulumi.getter(name="edgePort")
|
|
1226
|
+
def edge_port(self) -> _builtins.str:
|
|
1227
|
+
"""
|
|
1228
|
+
Edge port. Supports:
|
|
1229
|
+
- A single port, such as 80.
|
|
1230
|
+
- Port range, such as 81-85, representing ports 81, 82, 83, 84, and 85.
|
|
1231
|
+
- Combination of ports and port ranges, separated by commas, such as 80,81-85,90, representing ports 80, 81, 82, 83, 84, 85, and 90.
|
|
1232
|
+
|
|
1233
|
+
Edge ports within a single rule and between multiple rules must not overlap.
|
|
1234
|
+
"""
|
|
1235
|
+
return pulumi.get(self, "edge_port")
|
|
1236
|
+
|
|
1237
|
+
@_builtins.property
|
|
1238
|
+
@pulumi.getter
|
|
1239
|
+
def protocol(self) -> _builtins.str:
|
|
1240
|
+
"""
|
|
1241
|
+
Forwarding rule protocol, with values:
|
|
1242
|
+
- `TCP`: TCP protocol.
|
|
1243
|
+
- `UDP`: UDP protocol.
|
|
1244
|
+
"""
|
|
1245
|
+
return pulumi.get(self, "protocol")
|
|
1246
|
+
|
|
1247
|
+
@_builtins.property
|
|
1248
|
+
@pulumi.getter
|
|
1249
|
+
def source(self) -> _builtins.str:
|
|
1250
|
+
"""
|
|
1251
|
+
Specific value of the origin, which needs to match the origin type.
|
|
1252
|
+
"""
|
|
1253
|
+
return pulumi.get(self, "source")
|
|
1254
|
+
|
|
1255
|
+
@_builtins.property
|
|
1256
|
+
@pulumi.getter(name="sourcePort")
|
|
1257
|
+
def source_port(self) -> _builtins.str:
|
|
1258
|
+
"""
|
|
1259
|
+
Source Port
|
|
1260
|
+
"""
|
|
1261
|
+
return pulumi.get(self, "source_port")
|
|
1262
|
+
|
|
1263
|
+
@_builtins.property
|
|
1264
|
+
@pulumi.getter(name="sourceType")
|
|
1265
|
+
def source_type(self) -> _builtins.str:
|
|
1266
|
+
"""
|
|
1267
|
+
Origin type, supporting:
|
|
1268
|
+
"""
|
|
1269
|
+
return pulumi.get(self, "source_type")
|
|
1270
|
+
|
|
1271
|
+
@_builtins.property
|
|
1272
|
+
@pulumi.getter
|
|
1273
|
+
def comment(self) -> Optional[_builtins.str]:
|
|
1274
|
+
"""
|
|
1275
|
+
Comment information for the rule (optional).
|
|
1276
|
+
"""
|
|
1277
|
+
return pulumi.get(self, "comment")
|
|
1278
|
+
|
|
1279
|
+
@_builtins.property
|
|
1280
|
+
@pulumi.getter(name="ruleId")
|
|
1281
|
+
def rule_id(self) -> Optional[_builtins.int]:
|
|
1282
|
+
"""
|
|
1283
|
+
Rule ID
|
|
1284
|
+
"""
|
|
1285
|
+
return pulumi.get(self, "rule_id")
|
|
1286
|
+
|
|
1287
|
+
|
|
1151
1288
|
@pulumi.output_type
|
|
1152
1289
|
class WaitingRoomHostNameAndPath(dict):
|
|
1153
1290
|
def __init__(__self__, *,
|