pulumi-alicloud 3.66.0a1731648019__py3-none-any.whl → 3.66.0a1731672315__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 +94 -0
- pulumi_alicloud/alikafka/instance.py +112 -0
- pulumi_alicloud/cloudsso/_inputs.py +9 -9
- pulumi_alicloud/cloudsso/access_configuration.py +100 -34
- pulumi_alicloud/cloudsso/outputs.py +6 -6
- pulumi_alicloud/esa/__init__.py +9 -0
- pulumi_alicloud/esa/rate_plan_instance.py +626 -0
- pulumi_alicloud/esa/site.py +533 -0
- pulumi_alicloud/fc/_inputs.py +243 -135
- pulumi_alicloud/fc/outputs.py +173 -90
- pulumi_alicloud/fc/v3_alias.py +28 -0
- pulumi_alicloud/fc/v3_async_invoke_config.py +56 -0
- pulumi_alicloud/fc/v3_concurrency_config.py +28 -0
- pulumi_alicloud/fc/v3_custom_domain.py +118 -6
- pulumi_alicloud/fc/v3_function.py +308 -0
- pulumi_alicloud/fc/v3_function_version.py +30 -2
- pulumi_alicloud/fc/v3_layer_version.py +104 -1
- pulumi_alicloud/fc/v3_provision_config.py +86 -2
- pulumi_alicloud/fc/v3_trigger.py +114 -0
- pulumi_alicloud/gwlb/__init__.py +12 -0
- pulumi_alicloud/gwlb/_inputs.py +673 -0
- pulumi_alicloud/gwlb/listener.py +434 -0
- pulumi_alicloud/gwlb/load_balancer.py +537 -0
- pulumi_alicloud/gwlb/outputs.py +533 -0
- pulumi_alicloud/gwlb/server_group.py +780 -0
- pulumi_alicloud/oss/__init__.py +2 -0
- pulumi_alicloud/oss/_inputs.py +194 -0
- pulumi_alicloud/oss/bucket_cname.py +509 -0
- pulumi_alicloud/oss/bucket_cname_token.py +239 -0
- pulumi_alicloud/oss/outputs.py +141 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/quotas/_inputs.py +6 -6
- pulumi_alicloud/quotas/outputs.py +4 -4
- pulumi_alicloud/quotas/quota_application.py +21 -28
- pulumi_alicloud/redis/tair_instance.py +21 -77
- pulumi_alicloud/vpc/__init__.py +4 -0
- pulumi_alicloud/vpc/ipam_ipam.py +531 -0
- pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
- pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
- pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
- {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/RECORD +44 -29
- {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/top_level.txt +0 -0
pulumi_alicloud/fc/_inputs.py
CHANGED
|
@@ -117,6 +117,8 @@ __all__ = [
|
|
|
117
117
|
'V3FunctionOssMountConfigArgsDict',
|
|
118
118
|
'V3FunctionOssMountConfigMountPointArgs',
|
|
119
119
|
'V3FunctionOssMountConfigMountPointArgsDict',
|
|
120
|
+
'V3FunctionTracingConfigArgs',
|
|
121
|
+
'V3FunctionTracingConfigArgsDict',
|
|
120
122
|
'V3FunctionVpcConfigArgs',
|
|
121
123
|
'V3FunctionVpcConfigArgsDict',
|
|
122
124
|
'V3LayerVersionCodeArgs',
|
|
@@ -125,6 +127,8 @@ __all__ = [
|
|
|
125
127
|
'V3ProvisionConfigScheduledActionArgsDict',
|
|
126
128
|
'V3ProvisionConfigTargetTrackingPolicyArgs',
|
|
127
129
|
'V3ProvisionConfigTargetTrackingPolicyArgsDict',
|
|
130
|
+
'V3TriggerHttpTriggerArgs',
|
|
131
|
+
'V3TriggerHttpTriggerArgsDict',
|
|
128
132
|
]
|
|
129
133
|
|
|
130
134
|
MYPY = False
|
|
@@ -1505,11 +1509,11 @@ if not MYPY:
|
|
|
1505
1509
|
class V3AsyncInvokeConfigDestinationConfigArgsDict(TypedDict):
|
|
1506
1510
|
on_failure: NotRequired[pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnFailureArgsDict']]
|
|
1507
1511
|
"""
|
|
1508
|
-
Failed callback target structure
|
|
1512
|
+
Failed callback target structure See `on_failure` below.
|
|
1509
1513
|
"""
|
|
1510
1514
|
on_success: NotRequired[pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnSuccessArgsDict']]
|
|
1511
1515
|
"""
|
|
1512
|
-
Successful callback target structure
|
|
1516
|
+
Successful callback target structure See `on_success` below.
|
|
1513
1517
|
"""
|
|
1514
1518
|
elif False:
|
|
1515
1519
|
V3AsyncInvokeConfigDestinationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1520,8 +1524,8 @@ class V3AsyncInvokeConfigDestinationConfigArgs:
|
|
|
1520
1524
|
on_failure: Optional[pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnFailureArgs']] = None,
|
|
1521
1525
|
on_success: Optional[pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnSuccessArgs']] = None):
|
|
1522
1526
|
"""
|
|
1523
|
-
:param pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnFailureArgs'] on_failure: Failed callback target structure
|
|
1524
|
-
:param pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnSuccessArgs'] on_success: Successful callback target structure
|
|
1527
|
+
:param pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnFailureArgs'] on_failure: Failed callback target structure See `on_failure` below.
|
|
1528
|
+
:param pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnSuccessArgs'] on_success: Successful callback target structure See `on_success` below.
|
|
1525
1529
|
"""
|
|
1526
1530
|
if on_failure is not None:
|
|
1527
1531
|
pulumi.set(__self__, "on_failure", on_failure)
|
|
@@ -1532,7 +1536,7 @@ class V3AsyncInvokeConfigDestinationConfigArgs:
|
|
|
1532
1536
|
@pulumi.getter(name="onFailure")
|
|
1533
1537
|
def on_failure(self) -> Optional[pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnFailureArgs']]:
|
|
1534
1538
|
"""
|
|
1535
|
-
Failed callback target structure
|
|
1539
|
+
Failed callback target structure See `on_failure` below.
|
|
1536
1540
|
"""
|
|
1537
1541
|
return pulumi.get(self, "on_failure")
|
|
1538
1542
|
|
|
@@ -1544,7 +1548,7 @@ class V3AsyncInvokeConfigDestinationConfigArgs:
|
|
|
1544
1548
|
@pulumi.getter(name="onSuccess")
|
|
1545
1549
|
def on_success(self) -> Optional[pulumi.Input['V3AsyncInvokeConfigDestinationConfigOnSuccessArgs']]:
|
|
1546
1550
|
"""
|
|
1547
|
-
Successful callback target structure
|
|
1551
|
+
Successful callback target structure See `on_success` below.
|
|
1548
1552
|
"""
|
|
1549
1553
|
return pulumi.get(self, "on_success")
|
|
1550
1554
|
|
|
@@ -1557,7 +1561,7 @@ if not MYPY:
|
|
|
1557
1561
|
class V3AsyncInvokeConfigDestinationConfigOnFailureArgsDict(TypedDict):
|
|
1558
1562
|
destination: NotRequired[pulumi.Input[str]]
|
|
1559
1563
|
"""
|
|
1560
|
-
Asynchronous call target Resource Descriptor
|
|
1564
|
+
Asynchronous call target Resource Descriptor
|
|
1561
1565
|
"""
|
|
1562
1566
|
elif False:
|
|
1563
1567
|
V3AsyncInvokeConfigDestinationConfigOnFailureArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1567,7 +1571,7 @@ class V3AsyncInvokeConfigDestinationConfigOnFailureArgs:
|
|
|
1567
1571
|
def __init__(__self__, *,
|
|
1568
1572
|
destination: Optional[pulumi.Input[str]] = None):
|
|
1569
1573
|
"""
|
|
1570
|
-
:param pulumi.Input[str] destination: Asynchronous call target Resource Descriptor
|
|
1574
|
+
:param pulumi.Input[str] destination: Asynchronous call target Resource Descriptor
|
|
1571
1575
|
"""
|
|
1572
1576
|
if destination is not None:
|
|
1573
1577
|
pulumi.set(__self__, "destination", destination)
|
|
@@ -1576,7 +1580,7 @@ class V3AsyncInvokeConfigDestinationConfigOnFailureArgs:
|
|
|
1576
1580
|
@pulumi.getter
|
|
1577
1581
|
def destination(self) -> Optional[pulumi.Input[str]]:
|
|
1578
1582
|
"""
|
|
1579
|
-
Asynchronous call target Resource Descriptor
|
|
1583
|
+
Asynchronous call target Resource Descriptor
|
|
1580
1584
|
"""
|
|
1581
1585
|
return pulumi.get(self, "destination")
|
|
1582
1586
|
|
|
@@ -1589,7 +1593,7 @@ if not MYPY:
|
|
|
1589
1593
|
class V3AsyncInvokeConfigDestinationConfigOnSuccessArgsDict(TypedDict):
|
|
1590
1594
|
destination: NotRequired[pulumi.Input[str]]
|
|
1591
1595
|
"""
|
|
1592
|
-
Asynchronous call target Resource Descriptor
|
|
1596
|
+
Asynchronous call target Resource Descriptor
|
|
1593
1597
|
"""
|
|
1594
1598
|
elif False:
|
|
1595
1599
|
V3AsyncInvokeConfigDestinationConfigOnSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1599,7 +1603,7 @@ class V3AsyncInvokeConfigDestinationConfigOnSuccessArgs:
|
|
|
1599
1603
|
def __init__(__self__, *,
|
|
1600
1604
|
destination: Optional[pulumi.Input[str]] = None):
|
|
1601
1605
|
"""
|
|
1602
|
-
:param pulumi.Input[str] destination: Asynchronous call target Resource Descriptor
|
|
1606
|
+
:param pulumi.Input[str] destination: Asynchronous call target Resource Descriptor
|
|
1603
1607
|
"""
|
|
1604
1608
|
if destination is not None:
|
|
1605
1609
|
pulumi.set(__self__, "destination", destination)
|
|
@@ -1608,7 +1612,7 @@ class V3AsyncInvokeConfigDestinationConfigOnSuccessArgs:
|
|
|
1608
1612
|
@pulumi.getter
|
|
1609
1613
|
def destination(self) -> Optional[pulumi.Input[str]]:
|
|
1610
1614
|
"""
|
|
1611
|
-
Asynchronous call target Resource Descriptor
|
|
1615
|
+
Asynchronous call target Resource Descriptor
|
|
1612
1616
|
"""
|
|
1613
1617
|
return pulumi.get(self, "destination")
|
|
1614
1618
|
|
|
@@ -1621,7 +1625,7 @@ if not MYPY:
|
|
|
1621
1625
|
class V3CustomDomainAuthConfigArgsDict(TypedDict):
|
|
1622
1626
|
auth_info: NotRequired[pulumi.Input[str]]
|
|
1623
1627
|
"""
|
|
1624
|
-
Authentication Information
|
|
1628
|
+
Authentication Information
|
|
1625
1629
|
"""
|
|
1626
1630
|
auth_type: NotRequired[pulumi.Input[str]]
|
|
1627
1631
|
"""
|
|
@@ -1636,7 +1640,7 @@ class V3CustomDomainAuthConfigArgs:
|
|
|
1636
1640
|
auth_info: Optional[pulumi.Input[str]] = None,
|
|
1637
1641
|
auth_type: Optional[pulumi.Input[str]] = None):
|
|
1638
1642
|
"""
|
|
1639
|
-
:param pulumi.Input[str] auth_info: Authentication Information
|
|
1643
|
+
:param pulumi.Input[str] auth_info: Authentication Information
|
|
1640
1644
|
:param pulumi.Input[str] auth_type: Authentication type. anonymous, function, or jwt.
|
|
1641
1645
|
"""
|
|
1642
1646
|
if auth_info is not None:
|
|
@@ -1648,7 +1652,7 @@ class V3CustomDomainAuthConfigArgs:
|
|
|
1648
1652
|
@pulumi.getter(name="authInfo")
|
|
1649
1653
|
def auth_info(self) -> Optional[pulumi.Input[str]]:
|
|
1650
1654
|
"""
|
|
1651
|
-
Authentication Information
|
|
1655
|
+
Authentication Information
|
|
1652
1656
|
"""
|
|
1653
1657
|
return pulumi.get(self, "auth_info")
|
|
1654
1658
|
|
|
@@ -1673,15 +1677,15 @@ if not MYPY:
|
|
|
1673
1677
|
class V3CustomDomainCertConfigArgsDict(TypedDict):
|
|
1674
1678
|
cert_name: NotRequired[pulumi.Input[str]]
|
|
1675
1679
|
"""
|
|
1676
|
-
Certificate Name
|
|
1680
|
+
Certificate Name
|
|
1677
1681
|
"""
|
|
1678
1682
|
certificate: NotRequired[pulumi.Input[str]]
|
|
1679
1683
|
"""
|
|
1680
|
-
PEM format certificate
|
|
1684
|
+
PEM format certificate
|
|
1681
1685
|
"""
|
|
1682
1686
|
private_key: NotRequired[pulumi.Input[str]]
|
|
1683
1687
|
"""
|
|
1684
|
-
Private Key in PEM format
|
|
1688
|
+
Private Key in PEM format
|
|
1685
1689
|
"""
|
|
1686
1690
|
elif False:
|
|
1687
1691
|
V3CustomDomainCertConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1693,9 +1697,9 @@ class V3CustomDomainCertConfigArgs:
|
|
|
1693
1697
|
certificate: Optional[pulumi.Input[str]] = None,
|
|
1694
1698
|
private_key: Optional[pulumi.Input[str]] = None):
|
|
1695
1699
|
"""
|
|
1696
|
-
:param pulumi.Input[str] cert_name: Certificate Name
|
|
1697
|
-
:param pulumi.Input[str] certificate: PEM format certificate
|
|
1698
|
-
:param pulumi.Input[str] private_key: Private Key in PEM format
|
|
1700
|
+
:param pulumi.Input[str] cert_name: Certificate Name
|
|
1701
|
+
:param pulumi.Input[str] certificate: PEM format certificate
|
|
1702
|
+
:param pulumi.Input[str] private_key: Private Key in PEM format
|
|
1699
1703
|
"""
|
|
1700
1704
|
if cert_name is not None:
|
|
1701
1705
|
pulumi.set(__self__, "cert_name", cert_name)
|
|
@@ -1708,7 +1712,7 @@ class V3CustomDomainCertConfigArgs:
|
|
|
1708
1712
|
@pulumi.getter(name="certName")
|
|
1709
1713
|
def cert_name(self) -> Optional[pulumi.Input[str]]:
|
|
1710
1714
|
"""
|
|
1711
|
-
Certificate Name
|
|
1715
|
+
Certificate Name
|
|
1712
1716
|
"""
|
|
1713
1717
|
return pulumi.get(self, "cert_name")
|
|
1714
1718
|
|
|
@@ -1720,7 +1724,7 @@ class V3CustomDomainCertConfigArgs:
|
|
|
1720
1724
|
@pulumi.getter
|
|
1721
1725
|
def certificate(self) -> Optional[pulumi.Input[str]]:
|
|
1722
1726
|
"""
|
|
1723
|
-
PEM format certificate
|
|
1727
|
+
PEM format certificate
|
|
1724
1728
|
"""
|
|
1725
1729
|
return pulumi.get(self, "certificate")
|
|
1726
1730
|
|
|
@@ -1732,7 +1736,7 @@ class V3CustomDomainCertConfigArgs:
|
|
|
1732
1736
|
@pulumi.getter(name="privateKey")
|
|
1733
1737
|
def private_key(self) -> Optional[pulumi.Input[str]]:
|
|
1734
1738
|
"""
|
|
1735
|
-
Private Key in PEM format
|
|
1739
|
+
Private Key in PEM format
|
|
1736
1740
|
"""
|
|
1737
1741
|
return pulumi.get(self, "private_key")
|
|
1738
1742
|
|
|
@@ -1745,7 +1749,7 @@ if not MYPY:
|
|
|
1745
1749
|
class V3CustomDomainRouteConfigArgsDict(TypedDict):
|
|
1746
1750
|
routes: NotRequired[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteArgsDict']]]]
|
|
1747
1751
|
"""
|
|
1748
|
-
Routing Configuration List
|
|
1752
|
+
Routing Configuration List See `routes` below.
|
|
1749
1753
|
"""
|
|
1750
1754
|
elif False:
|
|
1751
1755
|
V3CustomDomainRouteConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1755,7 +1759,7 @@ class V3CustomDomainRouteConfigArgs:
|
|
|
1755
1759
|
def __init__(__self__, *,
|
|
1756
1760
|
routes: Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteArgs']]]] = None):
|
|
1757
1761
|
"""
|
|
1758
|
-
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteArgs']]] routes: Routing Configuration List
|
|
1762
|
+
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteArgs']]] routes: Routing Configuration List See `routes` below.
|
|
1759
1763
|
"""
|
|
1760
1764
|
if routes is not None:
|
|
1761
1765
|
pulumi.set(__self__, "routes", routes)
|
|
@@ -1764,7 +1768,7 @@ class V3CustomDomainRouteConfigArgs:
|
|
|
1764
1768
|
@pulumi.getter
|
|
1765
1769
|
def routes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteArgs']]]]:
|
|
1766
1770
|
"""
|
|
1767
|
-
Routing Configuration List
|
|
1771
|
+
Routing Configuration List See `routes` below.
|
|
1768
1772
|
"""
|
|
1769
1773
|
return pulumi.get(self, "routes")
|
|
1770
1774
|
|
|
@@ -1777,23 +1781,23 @@ if not MYPY:
|
|
|
1777
1781
|
class V3CustomDomainRouteConfigRouteArgsDict(TypedDict):
|
|
1778
1782
|
function_name: NotRequired[pulumi.Input[str]]
|
|
1779
1783
|
"""
|
|
1780
|
-
Function name
|
|
1784
|
+
Function name
|
|
1781
1785
|
"""
|
|
1782
1786
|
methods: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1783
1787
|
"""
|
|
1784
|
-
List of supported HTTP methods
|
|
1788
|
+
List of supported HTTP methods
|
|
1785
1789
|
"""
|
|
1786
1790
|
path: NotRequired[pulumi.Input[str]]
|
|
1787
1791
|
"""
|
|
1788
|
-
Route matching rule
|
|
1792
|
+
Route matching rule
|
|
1789
1793
|
"""
|
|
1790
1794
|
qualifier: NotRequired[pulumi.Input[str]]
|
|
1791
1795
|
"""
|
|
1792
|
-
Version or Alias
|
|
1796
|
+
Version or Alias
|
|
1793
1797
|
"""
|
|
1794
1798
|
rewrite_config: NotRequired[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigArgsDict']]
|
|
1795
1799
|
"""
|
|
1796
|
-
Override Configuration
|
|
1800
|
+
Override Configuration See `rewrite_config` below.
|
|
1797
1801
|
"""
|
|
1798
1802
|
elif False:
|
|
1799
1803
|
V3CustomDomainRouteConfigRouteArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1807,11 +1811,11 @@ class V3CustomDomainRouteConfigRouteArgs:
|
|
|
1807
1811
|
qualifier: Optional[pulumi.Input[str]] = None,
|
|
1808
1812
|
rewrite_config: Optional[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigArgs']] = None):
|
|
1809
1813
|
"""
|
|
1810
|
-
:param pulumi.Input[str] function_name: Function name
|
|
1811
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] methods: List of supported HTTP methods
|
|
1812
|
-
:param pulumi.Input[str] path: Route matching rule
|
|
1813
|
-
:param pulumi.Input[str] qualifier: Version or Alias
|
|
1814
|
-
:param pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigArgs'] rewrite_config: Override Configuration
|
|
1814
|
+
:param pulumi.Input[str] function_name: Function name
|
|
1815
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] methods: List of supported HTTP methods
|
|
1816
|
+
:param pulumi.Input[str] path: Route matching rule
|
|
1817
|
+
:param pulumi.Input[str] qualifier: Version or Alias
|
|
1818
|
+
:param pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigArgs'] rewrite_config: Override Configuration See `rewrite_config` below.
|
|
1815
1819
|
"""
|
|
1816
1820
|
if function_name is not None:
|
|
1817
1821
|
pulumi.set(__self__, "function_name", function_name)
|
|
@@ -1828,7 +1832,7 @@ class V3CustomDomainRouteConfigRouteArgs:
|
|
|
1828
1832
|
@pulumi.getter(name="functionName")
|
|
1829
1833
|
def function_name(self) -> Optional[pulumi.Input[str]]:
|
|
1830
1834
|
"""
|
|
1831
|
-
Function name
|
|
1835
|
+
Function name
|
|
1832
1836
|
"""
|
|
1833
1837
|
return pulumi.get(self, "function_name")
|
|
1834
1838
|
|
|
@@ -1840,7 +1844,7 @@ class V3CustomDomainRouteConfigRouteArgs:
|
|
|
1840
1844
|
@pulumi.getter
|
|
1841
1845
|
def methods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1842
1846
|
"""
|
|
1843
|
-
List of supported HTTP methods
|
|
1847
|
+
List of supported HTTP methods
|
|
1844
1848
|
"""
|
|
1845
1849
|
return pulumi.get(self, "methods")
|
|
1846
1850
|
|
|
@@ -1852,7 +1856,7 @@ class V3CustomDomainRouteConfigRouteArgs:
|
|
|
1852
1856
|
@pulumi.getter
|
|
1853
1857
|
def path(self) -> Optional[pulumi.Input[str]]:
|
|
1854
1858
|
"""
|
|
1855
|
-
Route matching rule
|
|
1859
|
+
Route matching rule
|
|
1856
1860
|
"""
|
|
1857
1861
|
return pulumi.get(self, "path")
|
|
1858
1862
|
|
|
@@ -1864,7 +1868,7 @@ class V3CustomDomainRouteConfigRouteArgs:
|
|
|
1864
1868
|
@pulumi.getter
|
|
1865
1869
|
def qualifier(self) -> Optional[pulumi.Input[str]]:
|
|
1866
1870
|
"""
|
|
1867
|
-
Version or Alias
|
|
1871
|
+
Version or Alias
|
|
1868
1872
|
"""
|
|
1869
1873
|
return pulumi.get(self, "qualifier")
|
|
1870
1874
|
|
|
@@ -1876,7 +1880,7 @@ class V3CustomDomainRouteConfigRouteArgs:
|
|
|
1876
1880
|
@pulumi.getter(name="rewriteConfig")
|
|
1877
1881
|
def rewrite_config(self) -> Optional[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigArgs']]:
|
|
1878
1882
|
"""
|
|
1879
|
-
Override Configuration
|
|
1883
|
+
Override Configuration See `rewrite_config` below.
|
|
1880
1884
|
"""
|
|
1881
1885
|
return pulumi.get(self, "rewrite_config")
|
|
1882
1886
|
|
|
@@ -1889,15 +1893,15 @@ if not MYPY:
|
|
|
1889
1893
|
class V3CustomDomainRouteConfigRouteRewriteConfigArgsDict(TypedDict):
|
|
1890
1894
|
equal_rules: NotRequired[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgsDict']]]]
|
|
1891
1895
|
"""
|
|
1892
|
-
Exact Match Rule List
|
|
1896
|
+
Exact Match Rule List See `equal_rules` below.
|
|
1893
1897
|
"""
|
|
1894
1898
|
regex_rules: NotRequired[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgsDict']]]]
|
|
1895
1899
|
"""
|
|
1896
|
-
Regular match rule list
|
|
1900
|
+
Regular match rule list See `regex_rules` below.
|
|
1897
1901
|
"""
|
|
1898
1902
|
wildcard_rules: NotRequired[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgsDict']]]]
|
|
1899
1903
|
"""
|
|
1900
|
-
List of wildcard matching rules
|
|
1904
|
+
List of wildcard matching rules See `wildcard_rules` below.
|
|
1901
1905
|
"""
|
|
1902
1906
|
elif False:
|
|
1903
1907
|
V3CustomDomainRouteConfigRouteRewriteConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1909,9 +1913,9 @@ class V3CustomDomainRouteConfigRouteRewriteConfigArgs:
|
|
|
1909
1913
|
regex_rules: Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs']]]] = None,
|
|
1910
1914
|
wildcard_rules: Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs']]]] = None):
|
|
1911
1915
|
"""
|
|
1912
|
-
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs']]] equal_rules: Exact Match Rule List
|
|
1913
|
-
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs']]] regex_rules: Regular match rule list
|
|
1914
|
-
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs']]] wildcard_rules: List of wildcard matching rules
|
|
1916
|
+
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs']]] equal_rules: Exact Match Rule List See `equal_rules` below.
|
|
1917
|
+
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs']]] regex_rules: Regular match rule list See `regex_rules` below.
|
|
1918
|
+
:param pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs']]] wildcard_rules: List of wildcard matching rules See `wildcard_rules` below.
|
|
1915
1919
|
"""
|
|
1916
1920
|
if equal_rules is not None:
|
|
1917
1921
|
pulumi.set(__self__, "equal_rules", equal_rules)
|
|
@@ -1924,7 +1928,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigArgs:
|
|
|
1924
1928
|
@pulumi.getter(name="equalRules")
|
|
1925
1929
|
def equal_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs']]]]:
|
|
1926
1930
|
"""
|
|
1927
|
-
Exact Match Rule List
|
|
1931
|
+
Exact Match Rule List See `equal_rules` below.
|
|
1928
1932
|
"""
|
|
1929
1933
|
return pulumi.get(self, "equal_rules")
|
|
1930
1934
|
|
|
@@ -1936,7 +1940,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigArgs:
|
|
|
1936
1940
|
@pulumi.getter(name="regexRules")
|
|
1937
1941
|
def regex_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs']]]]:
|
|
1938
1942
|
"""
|
|
1939
|
-
Regular match rule list
|
|
1943
|
+
Regular match rule list See `regex_rules` below.
|
|
1940
1944
|
"""
|
|
1941
1945
|
return pulumi.get(self, "regex_rules")
|
|
1942
1946
|
|
|
@@ -1948,7 +1952,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigArgs:
|
|
|
1948
1952
|
@pulumi.getter(name="wildcardRules")
|
|
1949
1953
|
def wildcard_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs']]]]:
|
|
1950
1954
|
"""
|
|
1951
|
-
List of wildcard matching rules
|
|
1955
|
+
List of wildcard matching rules See `wildcard_rules` below.
|
|
1952
1956
|
"""
|
|
1953
1957
|
return pulumi.get(self, "wildcard_rules")
|
|
1954
1958
|
|
|
@@ -1961,11 +1965,11 @@ if not MYPY:
|
|
|
1961
1965
|
class V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgsDict(TypedDict):
|
|
1962
1966
|
match: NotRequired[pulumi.Input[str]]
|
|
1963
1967
|
"""
|
|
1964
|
-
Matching Rules
|
|
1968
|
+
Matching Rules
|
|
1965
1969
|
"""
|
|
1966
1970
|
replacement: NotRequired[pulumi.Input[str]]
|
|
1967
1971
|
"""
|
|
1968
|
-
Replace Rules
|
|
1972
|
+
Replace Rules
|
|
1969
1973
|
"""
|
|
1970
1974
|
elif False:
|
|
1971
1975
|
V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1976,8 +1980,8 @@ class V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs:
|
|
|
1976
1980
|
match: Optional[pulumi.Input[str]] = None,
|
|
1977
1981
|
replacement: Optional[pulumi.Input[str]] = None):
|
|
1978
1982
|
"""
|
|
1979
|
-
:param pulumi.Input[str] match: Matching Rules
|
|
1980
|
-
:param pulumi.Input[str] replacement: Replace Rules
|
|
1983
|
+
:param pulumi.Input[str] match: Matching Rules
|
|
1984
|
+
:param pulumi.Input[str] replacement: Replace Rules
|
|
1981
1985
|
"""
|
|
1982
1986
|
if match is not None:
|
|
1983
1987
|
pulumi.set(__self__, "match", match)
|
|
@@ -1988,7 +1992,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs:
|
|
|
1988
1992
|
@pulumi.getter
|
|
1989
1993
|
def match(self) -> Optional[pulumi.Input[str]]:
|
|
1990
1994
|
"""
|
|
1991
|
-
Matching Rules
|
|
1995
|
+
Matching Rules
|
|
1992
1996
|
"""
|
|
1993
1997
|
return pulumi.get(self, "match")
|
|
1994
1998
|
|
|
@@ -2000,7 +2004,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs:
|
|
|
2000
2004
|
@pulumi.getter
|
|
2001
2005
|
def replacement(self) -> Optional[pulumi.Input[str]]:
|
|
2002
2006
|
"""
|
|
2003
|
-
Replace Rules
|
|
2007
|
+
Replace Rules
|
|
2004
2008
|
"""
|
|
2005
2009
|
return pulumi.get(self, "replacement")
|
|
2006
2010
|
|
|
@@ -2013,11 +2017,11 @@ if not MYPY:
|
|
|
2013
2017
|
class V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgsDict(TypedDict):
|
|
2014
2018
|
match: NotRequired[pulumi.Input[str]]
|
|
2015
2019
|
"""
|
|
2016
|
-
Matching Rules
|
|
2020
|
+
Matching Rules
|
|
2017
2021
|
"""
|
|
2018
2022
|
replacement: NotRequired[pulumi.Input[str]]
|
|
2019
2023
|
"""
|
|
2020
|
-
Replace Rules
|
|
2024
|
+
Replace Rules
|
|
2021
2025
|
"""
|
|
2022
2026
|
elif False:
|
|
2023
2027
|
V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2028,8 +2032,8 @@ class V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs:
|
|
|
2028
2032
|
match: Optional[pulumi.Input[str]] = None,
|
|
2029
2033
|
replacement: Optional[pulumi.Input[str]] = None):
|
|
2030
2034
|
"""
|
|
2031
|
-
:param pulumi.Input[str] match: Matching Rules
|
|
2032
|
-
:param pulumi.Input[str] replacement: Replace Rules
|
|
2035
|
+
:param pulumi.Input[str] match: Matching Rules
|
|
2036
|
+
:param pulumi.Input[str] replacement: Replace Rules
|
|
2033
2037
|
"""
|
|
2034
2038
|
if match is not None:
|
|
2035
2039
|
pulumi.set(__self__, "match", match)
|
|
@@ -2040,7 +2044,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs:
|
|
|
2040
2044
|
@pulumi.getter
|
|
2041
2045
|
def match(self) -> Optional[pulumi.Input[str]]:
|
|
2042
2046
|
"""
|
|
2043
|
-
Matching Rules
|
|
2047
|
+
Matching Rules
|
|
2044
2048
|
"""
|
|
2045
2049
|
return pulumi.get(self, "match")
|
|
2046
2050
|
|
|
@@ -2052,7 +2056,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs:
|
|
|
2052
2056
|
@pulumi.getter
|
|
2053
2057
|
def replacement(self) -> Optional[pulumi.Input[str]]:
|
|
2054
2058
|
"""
|
|
2055
|
-
Replace Rules
|
|
2059
|
+
Replace Rules
|
|
2056
2060
|
"""
|
|
2057
2061
|
return pulumi.get(self, "replacement")
|
|
2058
2062
|
|
|
@@ -2065,11 +2069,11 @@ if not MYPY:
|
|
|
2065
2069
|
class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgsDict(TypedDict):
|
|
2066
2070
|
match: NotRequired[pulumi.Input[str]]
|
|
2067
2071
|
"""
|
|
2068
|
-
Matching Rules
|
|
2072
|
+
Matching Rules
|
|
2069
2073
|
"""
|
|
2070
2074
|
replacement: NotRequired[pulumi.Input[str]]
|
|
2071
2075
|
"""
|
|
2072
|
-
Replace Rules
|
|
2076
|
+
Replace Rules
|
|
2073
2077
|
"""
|
|
2074
2078
|
elif False:
|
|
2075
2079
|
V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2080,8 +2084,8 @@ class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs:
|
|
|
2080
2084
|
match: Optional[pulumi.Input[str]] = None,
|
|
2081
2085
|
replacement: Optional[pulumi.Input[str]] = None):
|
|
2082
2086
|
"""
|
|
2083
|
-
:param pulumi.Input[str] match: Matching Rules
|
|
2084
|
-
:param pulumi.Input[str] replacement: Replace Rules
|
|
2087
|
+
:param pulumi.Input[str] match: Matching Rules
|
|
2088
|
+
:param pulumi.Input[str] replacement: Replace Rules
|
|
2085
2089
|
"""
|
|
2086
2090
|
if match is not None:
|
|
2087
2091
|
pulumi.set(__self__, "match", match)
|
|
@@ -2092,7 +2096,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs:
|
|
|
2092
2096
|
@pulumi.getter
|
|
2093
2097
|
def match(self) -> Optional[pulumi.Input[str]]:
|
|
2094
2098
|
"""
|
|
2095
|
-
Matching Rules
|
|
2099
|
+
Matching Rules
|
|
2096
2100
|
"""
|
|
2097
2101
|
return pulumi.get(self, "match")
|
|
2098
2102
|
|
|
@@ -2104,7 +2108,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs:
|
|
|
2104
2108
|
@pulumi.getter
|
|
2105
2109
|
def replacement(self) -> Optional[pulumi.Input[str]]:
|
|
2106
2110
|
"""
|
|
2107
|
-
Replace Rules
|
|
2111
|
+
Replace Rules
|
|
2108
2112
|
"""
|
|
2109
2113
|
return pulumi.get(self, "replacement")
|
|
2110
2114
|
|
|
@@ -2117,15 +2121,15 @@ if not MYPY:
|
|
|
2117
2121
|
class V3CustomDomainTlsConfigArgsDict(TypedDict):
|
|
2118
2122
|
cipher_suites: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2119
2123
|
"""
|
|
2120
|
-
List of TLS cipher suites
|
|
2124
|
+
List of TLS cipher suites
|
|
2121
2125
|
"""
|
|
2122
2126
|
max_version: NotRequired[pulumi.Input[str]]
|
|
2123
2127
|
"""
|
|
2124
|
-
The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2128
|
+
The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2125
2129
|
"""
|
|
2126
2130
|
min_version: NotRequired[pulumi.Input[str]]
|
|
2127
2131
|
"""
|
|
2128
|
-
TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2132
|
+
TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2129
2133
|
"""
|
|
2130
2134
|
elif False:
|
|
2131
2135
|
V3CustomDomainTlsConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2137,9 +2141,9 @@ class V3CustomDomainTlsConfigArgs:
|
|
|
2137
2141
|
max_version: Optional[pulumi.Input[str]] = None,
|
|
2138
2142
|
min_version: Optional[pulumi.Input[str]] = None):
|
|
2139
2143
|
"""
|
|
2140
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] cipher_suites: List of TLS cipher suites
|
|
2141
|
-
:param pulumi.Input[str] max_version: The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2142
|
-
:param pulumi.Input[str] min_version: TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2144
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] cipher_suites: List of TLS cipher suites
|
|
2145
|
+
:param pulumi.Input[str] max_version: The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2146
|
+
:param pulumi.Input[str] min_version: TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2143
2147
|
"""
|
|
2144
2148
|
if cipher_suites is not None:
|
|
2145
2149
|
pulumi.set(__self__, "cipher_suites", cipher_suites)
|
|
@@ -2152,7 +2156,7 @@ class V3CustomDomainTlsConfigArgs:
|
|
|
2152
2156
|
@pulumi.getter(name="cipherSuites")
|
|
2153
2157
|
def cipher_suites(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2154
2158
|
"""
|
|
2155
|
-
List of TLS cipher suites
|
|
2159
|
+
List of TLS cipher suites
|
|
2156
2160
|
"""
|
|
2157
2161
|
return pulumi.get(self, "cipher_suites")
|
|
2158
2162
|
|
|
@@ -2164,7 +2168,7 @@ class V3CustomDomainTlsConfigArgs:
|
|
|
2164
2168
|
@pulumi.getter(name="maxVersion")
|
|
2165
2169
|
def max_version(self) -> Optional[pulumi.Input[str]]:
|
|
2166
2170
|
"""
|
|
2167
|
-
The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2171
|
+
The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2168
2172
|
"""
|
|
2169
2173
|
return pulumi.get(self, "max_version")
|
|
2170
2174
|
|
|
@@ -2176,7 +2180,7 @@ class V3CustomDomainTlsConfigArgs:
|
|
|
2176
2180
|
@pulumi.getter(name="minVersion")
|
|
2177
2181
|
def min_version(self) -> Optional[pulumi.Input[str]]:
|
|
2178
2182
|
"""
|
|
2179
|
-
TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2183
|
+
TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
2180
2184
|
"""
|
|
2181
2185
|
return pulumi.get(self, "min_version")
|
|
2182
2186
|
|
|
@@ -2189,7 +2193,7 @@ if not MYPY:
|
|
|
2189
2193
|
class V3CustomDomainWafConfigArgsDict(TypedDict):
|
|
2190
2194
|
enable_waf: NotRequired[pulumi.Input[bool]]
|
|
2191
2195
|
"""
|
|
2192
|
-
Enable WAF protection
|
|
2196
|
+
Enable WAF protection
|
|
2193
2197
|
"""
|
|
2194
2198
|
elif False:
|
|
2195
2199
|
V3CustomDomainWafConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2199,7 +2203,7 @@ class V3CustomDomainWafConfigArgs:
|
|
|
2199
2203
|
def __init__(__self__, *,
|
|
2200
2204
|
enable_waf: Optional[pulumi.Input[bool]] = None):
|
|
2201
2205
|
"""
|
|
2202
|
-
:param pulumi.Input[bool] enable_waf: Enable WAF protection
|
|
2206
|
+
:param pulumi.Input[bool] enable_waf: Enable WAF protection
|
|
2203
2207
|
"""
|
|
2204
2208
|
if enable_waf is not None:
|
|
2205
2209
|
pulumi.set(__self__, "enable_waf", enable_waf)
|
|
@@ -2208,7 +2212,7 @@ class V3CustomDomainWafConfigArgs:
|
|
|
2208
2212
|
@pulumi.getter(name="enableWaf")
|
|
2209
2213
|
def enable_waf(self) -> Optional[pulumi.Input[bool]]:
|
|
2210
2214
|
"""
|
|
2211
|
-
Enable WAF protection
|
|
2215
|
+
Enable WAF protection
|
|
2212
2216
|
"""
|
|
2213
2217
|
return pulumi.get(self, "enable_waf")
|
|
2214
2218
|
|
|
@@ -2333,7 +2337,7 @@ if not MYPY:
|
|
|
2333
2337
|
"""
|
|
2334
2338
|
health_check_config: NotRequired[pulumi.Input['V3FunctionCustomContainerConfigHealthCheckConfigArgsDict']]
|
|
2335
2339
|
"""
|
|
2336
|
-
Function custom health check configuration
|
|
2340
|
+
Function custom health check configuration See `health_check_config` below.
|
|
2337
2341
|
"""
|
|
2338
2342
|
image: NotRequired[pulumi.Input[str]]
|
|
2339
2343
|
"""
|
|
@@ -2368,7 +2372,7 @@ class V3FunctionCustomContainerConfigArgs:
|
|
|
2368
2372
|
:param pulumi.Input[str] acr_instance_id: ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete).
|
|
2369
2373
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] commands: Container startup parameters.
|
|
2370
2374
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] entrypoints: Container start command.
|
|
2371
|
-
:param pulumi.Input['V3FunctionCustomContainerConfigHealthCheckConfigArgs'] health_check_config: Function custom health check configuration
|
|
2375
|
+
:param pulumi.Input['V3FunctionCustomContainerConfigHealthCheckConfigArgs'] health_check_config: Function custom health check configuration See `health_check_config` below.
|
|
2372
2376
|
:param pulumi.Input[str] image: The container Image address.
|
|
2373
2377
|
:param pulumi.Input[int] port: The listening port of the HTTP Server when the custom container runs.
|
|
2374
2378
|
:param pulumi.Input[str] resolved_image_uri: The actual digest version of the deployed Image. The code version specified by this digest is used when the function starts.
|
|
@@ -2468,7 +2472,7 @@ class V3FunctionCustomContainerConfigArgs:
|
|
|
2468
2472
|
@pulumi.getter(name="healthCheckConfig")
|
|
2469
2473
|
def health_check_config(self) -> Optional[pulumi.Input['V3FunctionCustomContainerConfigHealthCheckConfigArgs']]:
|
|
2470
2474
|
"""
|
|
2471
|
-
Function custom health check configuration
|
|
2475
|
+
Function custom health check configuration See `health_check_config` below.
|
|
2472
2476
|
"""
|
|
2473
2477
|
return pulumi.get(self, "health_check_config")
|
|
2474
2478
|
|
|
@@ -3006,11 +3010,11 @@ if not MYPY:
|
|
|
3006
3010
|
class V3FunctionInstanceLifecycleConfigArgsDict(TypedDict):
|
|
3007
3011
|
initializer: NotRequired[pulumi.Input['V3FunctionInstanceLifecycleConfigInitializerArgsDict']]
|
|
3008
3012
|
"""
|
|
3009
|
-
Initializer handler method configuration
|
|
3013
|
+
Initializer handler method configuration See `initializer` below.
|
|
3010
3014
|
"""
|
|
3011
3015
|
pre_stop: NotRequired[pulumi.Input['V3FunctionInstanceLifecycleConfigPreStopArgsDict']]
|
|
3012
3016
|
"""
|
|
3013
|
-
PreStop handler method configuration
|
|
3017
|
+
PreStop handler method configuration See `pre_stop` below.
|
|
3014
3018
|
"""
|
|
3015
3019
|
elif False:
|
|
3016
3020
|
V3FunctionInstanceLifecycleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3021,8 +3025,8 @@ class V3FunctionInstanceLifecycleConfigArgs:
|
|
|
3021
3025
|
initializer: Optional[pulumi.Input['V3FunctionInstanceLifecycleConfigInitializerArgs']] = None,
|
|
3022
3026
|
pre_stop: Optional[pulumi.Input['V3FunctionInstanceLifecycleConfigPreStopArgs']] = None):
|
|
3023
3027
|
"""
|
|
3024
|
-
:param pulumi.Input['V3FunctionInstanceLifecycleConfigInitializerArgs'] initializer: Initializer handler method configuration
|
|
3025
|
-
:param pulumi.Input['V3FunctionInstanceLifecycleConfigPreStopArgs'] pre_stop: PreStop handler method configuration
|
|
3028
|
+
:param pulumi.Input['V3FunctionInstanceLifecycleConfigInitializerArgs'] initializer: Initializer handler method configuration See `initializer` below.
|
|
3029
|
+
:param pulumi.Input['V3FunctionInstanceLifecycleConfigPreStopArgs'] pre_stop: PreStop handler method configuration See `pre_stop` below.
|
|
3026
3030
|
"""
|
|
3027
3031
|
if initializer is not None:
|
|
3028
3032
|
pulumi.set(__self__, "initializer", initializer)
|
|
@@ -3033,7 +3037,7 @@ class V3FunctionInstanceLifecycleConfigArgs:
|
|
|
3033
3037
|
@pulumi.getter
|
|
3034
3038
|
def initializer(self) -> Optional[pulumi.Input['V3FunctionInstanceLifecycleConfigInitializerArgs']]:
|
|
3035
3039
|
"""
|
|
3036
|
-
Initializer handler method configuration
|
|
3040
|
+
Initializer handler method configuration See `initializer` below.
|
|
3037
3041
|
"""
|
|
3038
3042
|
return pulumi.get(self, "initializer")
|
|
3039
3043
|
|
|
@@ -3045,7 +3049,7 @@ class V3FunctionInstanceLifecycleConfigArgs:
|
|
|
3045
3049
|
@pulumi.getter(name="preStop")
|
|
3046
3050
|
def pre_stop(self) -> Optional[pulumi.Input['V3FunctionInstanceLifecycleConfigPreStopArgs']]:
|
|
3047
3051
|
"""
|
|
3048
|
-
PreStop handler method configuration
|
|
3052
|
+
PreStop handler method configuration See `pre_stop` below.
|
|
3049
3053
|
"""
|
|
3050
3054
|
return pulumi.get(self, "pre_stop")
|
|
3051
3055
|
|
|
@@ -3544,6 +3548,58 @@ class V3FunctionOssMountConfigMountPointArgs:
|
|
|
3544
3548
|
pulumi.set(self, "read_only", value)
|
|
3545
3549
|
|
|
3546
3550
|
|
|
3551
|
+
if not MYPY:
|
|
3552
|
+
class V3FunctionTracingConfigArgsDict(TypedDict):
|
|
3553
|
+
params: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
3554
|
+
"""
|
|
3555
|
+
Tracing parameters.
|
|
3556
|
+
"""
|
|
3557
|
+
type: NotRequired[pulumi.Input[str]]
|
|
3558
|
+
"""
|
|
3559
|
+
The tracing protocol type. Currently, only Jaeger is supported.
|
|
3560
|
+
"""
|
|
3561
|
+
elif False:
|
|
3562
|
+
V3FunctionTracingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
3563
|
+
|
|
3564
|
+
@pulumi.input_type
|
|
3565
|
+
class V3FunctionTracingConfigArgs:
|
|
3566
|
+
def __init__(__self__, *,
|
|
3567
|
+
params: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
3568
|
+
type: Optional[pulumi.Input[str]] = None):
|
|
3569
|
+
"""
|
|
3570
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] params: Tracing parameters.
|
|
3571
|
+
:param pulumi.Input[str] type: The tracing protocol type. Currently, only Jaeger is supported.
|
|
3572
|
+
"""
|
|
3573
|
+
if params is not None:
|
|
3574
|
+
pulumi.set(__self__, "params", params)
|
|
3575
|
+
if type is not None:
|
|
3576
|
+
pulumi.set(__self__, "type", type)
|
|
3577
|
+
|
|
3578
|
+
@property
|
|
3579
|
+
@pulumi.getter
|
|
3580
|
+
def params(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
3581
|
+
"""
|
|
3582
|
+
Tracing parameters.
|
|
3583
|
+
"""
|
|
3584
|
+
return pulumi.get(self, "params")
|
|
3585
|
+
|
|
3586
|
+
@params.setter
|
|
3587
|
+
def params(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
3588
|
+
pulumi.set(self, "params", value)
|
|
3589
|
+
|
|
3590
|
+
@property
|
|
3591
|
+
@pulumi.getter
|
|
3592
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
|
3593
|
+
"""
|
|
3594
|
+
The tracing protocol type. Currently, only Jaeger is supported.
|
|
3595
|
+
"""
|
|
3596
|
+
return pulumi.get(self, "type")
|
|
3597
|
+
|
|
3598
|
+
@type.setter
|
|
3599
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
|
3600
|
+
pulumi.set(self, "type", value)
|
|
3601
|
+
|
|
3602
|
+
|
|
3547
3603
|
if not MYPY:
|
|
3548
3604
|
class V3FunctionVpcConfigArgsDict(TypedDict):
|
|
3549
3605
|
security_group_id: NotRequired[pulumi.Input[str]]
|
|
@@ -3624,15 +3680,15 @@ if not MYPY:
|
|
|
3624
3680
|
"""
|
|
3625
3681
|
oss_bucket_name: NotRequired[pulumi.Input[str]]
|
|
3626
3682
|
"""
|
|
3627
|
-
Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
3683
|
+
Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
3628
3684
|
"""
|
|
3629
3685
|
oss_object_name: NotRequired[pulumi.Input[str]]
|
|
3630
3686
|
"""
|
|
3631
|
-
Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
3687
|
+
Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
3632
3688
|
"""
|
|
3633
3689
|
zip_file: NotRequired[pulumi.Input[str]]
|
|
3634
3690
|
"""
|
|
3635
|
-
Base 64 encoding of Layer Code ZIP package
|
|
3691
|
+
Base 64 encoding of Layer Code ZIP package
|
|
3636
3692
|
"""
|
|
3637
3693
|
elif False:
|
|
3638
3694
|
V3LayerVersionCodeArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3646,9 +3702,9 @@ class V3LayerVersionCodeArgs:
|
|
|
3646
3702
|
zip_file: Optional[pulumi.Input[str]] = None):
|
|
3647
3703
|
"""
|
|
3648
3704
|
:param pulumi.Input[str] checksum: The CRC-64 value of the code package. If checksum is provided, Function Compute checks whether the checksum of the code package is consistent with the provided checksum.
|
|
3649
|
-
:param pulumi.Input[str] oss_bucket_name: Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
3650
|
-
:param pulumi.Input[str] oss_object_name: Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
3651
|
-
:param pulumi.Input[str] zip_file: Base 64 encoding of Layer Code ZIP package
|
|
3705
|
+
:param pulumi.Input[str] oss_bucket_name: Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
3706
|
+
:param pulumi.Input[str] oss_object_name: Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
3707
|
+
:param pulumi.Input[str] zip_file: Base 64 encoding of Layer Code ZIP package
|
|
3652
3708
|
"""
|
|
3653
3709
|
if checksum is not None:
|
|
3654
3710
|
pulumi.set(__self__, "checksum", checksum)
|
|
@@ -3675,7 +3731,7 @@ class V3LayerVersionCodeArgs:
|
|
|
3675
3731
|
@pulumi.getter(name="ossBucketName")
|
|
3676
3732
|
def oss_bucket_name(self) -> Optional[pulumi.Input[str]]:
|
|
3677
3733
|
"""
|
|
3678
|
-
Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
3734
|
+
Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
3679
3735
|
"""
|
|
3680
3736
|
return pulumi.get(self, "oss_bucket_name")
|
|
3681
3737
|
|
|
@@ -3687,7 +3743,7 @@ class V3LayerVersionCodeArgs:
|
|
|
3687
3743
|
@pulumi.getter(name="ossObjectName")
|
|
3688
3744
|
def oss_object_name(self) -> Optional[pulumi.Input[str]]:
|
|
3689
3745
|
"""
|
|
3690
|
-
Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
3746
|
+
Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
3691
3747
|
"""
|
|
3692
3748
|
return pulumi.get(self, "oss_object_name")
|
|
3693
3749
|
|
|
@@ -3699,7 +3755,7 @@ class V3LayerVersionCodeArgs:
|
|
|
3699
3755
|
@pulumi.getter(name="zipFile")
|
|
3700
3756
|
def zip_file(self) -> Optional[pulumi.Input[str]]:
|
|
3701
3757
|
"""
|
|
3702
|
-
Base 64 encoding of Layer Code ZIP package
|
|
3758
|
+
Base 64 encoding of Layer Code ZIP package
|
|
3703
3759
|
"""
|
|
3704
3760
|
return pulumi.get(self, "zip_file")
|
|
3705
3761
|
|
|
@@ -3712,23 +3768,23 @@ if not MYPY:
|
|
|
3712
3768
|
class V3ProvisionConfigScheduledActionArgsDict(TypedDict):
|
|
3713
3769
|
end_time: NotRequired[pulumi.Input[str]]
|
|
3714
3770
|
"""
|
|
3715
|
-
Policy expiration time
|
|
3771
|
+
Policy expiration time
|
|
3716
3772
|
"""
|
|
3717
3773
|
name: NotRequired[pulumi.Input[str]]
|
|
3718
3774
|
"""
|
|
3719
|
-
Policy Name
|
|
3775
|
+
Policy Name
|
|
3720
3776
|
"""
|
|
3721
3777
|
schedule_expression: NotRequired[pulumi.Input[str]]
|
|
3722
3778
|
"""
|
|
3723
|
-
Timing Configuration
|
|
3779
|
+
Timing Configuration
|
|
3724
3780
|
"""
|
|
3725
3781
|
start_time: NotRequired[pulumi.Input[str]]
|
|
3726
3782
|
"""
|
|
3727
|
-
Policy effective time
|
|
3783
|
+
Policy effective time
|
|
3728
3784
|
"""
|
|
3729
3785
|
target: NotRequired[pulumi.Input[int]]
|
|
3730
3786
|
"""
|
|
3731
|
-
Number of reserved target resources
|
|
3787
|
+
Number of reserved target resources
|
|
3732
3788
|
"""
|
|
3733
3789
|
time_zone: NotRequired[pulumi.Input[str]]
|
|
3734
3790
|
"""
|
|
@@ -3747,11 +3803,11 @@ class V3ProvisionConfigScheduledActionArgs:
|
|
|
3747
3803
|
target: Optional[pulumi.Input[int]] = None,
|
|
3748
3804
|
time_zone: Optional[pulumi.Input[str]] = None):
|
|
3749
3805
|
"""
|
|
3750
|
-
:param pulumi.Input[str] end_time: Policy expiration time
|
|
3751
|
-
:param pulumi.Input[str] name: Policy Name
|
|
3752
|
-
:param pulumi.Input[str] schedule_expression: Timing Configuration
|
|
3753
|
-
:param pulumi.Input[str] start_time: Policy effective time
|
|
3754
|
-
:param pulumi.Input[int] target: Number of reserved target resources
|
|
3806
|
+
:param pulumi.Input[str] end_time: Policy expiration time
|
|
3807
|
+
:param pulumi.Input[str] name: Policy Name
|
|
3808
|
+
:param pulumi.Input[str] schedule_expression: Timing Configuration
|
|
3809
|
+
:param pulumi.Input[str] start_time: Policy effective time
|
|
3810
|
+
:param pulumi.Input[int] target: Number of reserved target resources
|
|
3755
3811
|
:param pulumi.Input[str] time_zone: Time zone.
|
|
3756
3812
|
"""
|
|
3757
3813
|
if end_time is not None:
|
|
@@ -3771,7 +3827,7 @@ class V3ProvisionConfigScheduledActionArgs:
|
|
|
3771
3827
|
@pulumi.getter(name="endTime")
|
|
3772
3828
|
def end_time(self) -> Optional[pulumi.Input[str]]:
|
|
3773
3829
|
"""
|
|
3774
|
-
Policy expiration time
|
|
3830
|
+
Policy expiration time
|
|
3775
3831
|
"""
|
|
3776
3832
|
return pulumi.get(self, "end_time")
|
|
3777
3833
|
|
|
@@ -3783,7 +3839,7 @@ class V3ProvisionConfigScheduledActionArgs:
|
|
|
3783
3839
|
@pulumi.getter
|
|
3784
3840
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
3785
3841
|
"""
|
|
3786
|
-
Policy Name
|
|
3842
|
+
Policy Name
|
|
3787
3843
|
"""
|
|
3788
3844
|
return pulumi.get(self, "name")
|
|
3789
3845
|
|
|
@@ -3795,7 +3851,7 @@ class V3ProvisionConfigScheduledActionArgs:
|
|
|
3795
3851
|
@pulumi.getter(name="scheduleExpression")
|
|
3796
3852
|
def schedule_expression(self) -> Optional[pulumi.Input[str]]:
|
|
3797
3853
|
"""
|
|
3798
|
-
Timing Configuration
|
|
3854
|
+
Timing Configuration
|
|
3799
3855
|
"""
|
|
3800
3856
|
return pulumi.get(self, "schedule_expression")
|
|
3801
3857
|
|
|
@@ -3807,7 +3863,7 @@ class V3ProvisionConfigScheduledActionArgs:
|
|
|
3807
3863
|
@pulumi.getter(name="startTime")
|
|
3808
3864
|
def start_time(self) -> Optional[pulumi.Input[str]]:
|
|
3809
3865
|
"""
|
|
3810
|
-
Policy effective time
|
|
3866
|
+
Policy effective time
|
|
3811
3867
|
"""
|
|
3812
3868
|
return pulumi.get(self, "start_time")
|
|
3813
3869
|
|
|
@@ -3819,7 +3875,7 @@ class V3ProvisionConfigScheduledActionArgs:
|
|
|
3819
3875
|
@pulumi.getter
|
|
3820
3876
|
def target(self) -> Optional[pulumi.Input[int]]:
|
|
3821
3877
|
"""
|
|
3822
|
-
Number of reserved target resources
|
|
3878
|
+
Number of reserved target resources
|
|
3823
3879
|
"""
|
|
3824
3880
|
return pulumi.get(self, "target")
|
|
3825
3881
|
|
|
@@ -3844,31 +3900,31 @@ if not MYPY:
|
|
|
3844
3900
|
class V3ProvisionConfigTargetTrackingPolicyArgsDict(TypedDict):
|
|
3845
3901
|
end_time: NotRequired[pulumi.Input[str]]
|
|
3846
3902
|
"""
|
|
3847
|
-
Policy expiration time
|
|
3903
|
+
Policy expiration time
|
|
3848
3904
|
"""
|
|
3849
3905
|
max_capacity: NotRequired[pulumi.Input[int]]
|
|
3850
3906
|
"""
|
|
3851
|
-
Maximum value of expansion
|
|
3907
|
+
Maximum value of expansion
|
|
3852
3908
|
"""
|
|
3853
3909
|
metric_target: NotRequired[pulumi.Input[float]]
|
|
3854
3910
|
"""
|
|
3855
|
-
Tracking value of the indicator
|
|
3911
|
+
Tracking value of the indicator
|
|
3856
3912
|
"""
|
|
3857
3913
|
metric_type: NotRequired[pulumi.Input[str]]
|
|
3858
3914
|
"""
|
|
3859
|
-
Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3915
|
+
Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3860
3916
|
"""
|
|
3861
3917
|
min_capacity: NotRequired[pulumi.Input[int]]
|
|
3862
3918
|
"""
|
|
3863
|
-
Minimum Shrinkage
|
|
3919
|
+
Minimum Shrinkage
|
|
3864
3920
|
"""
|
|
3865
3921
|
name: NotRequired[pulumi.Input[str]]
|
|
3866
3922
|
"""
|
|
3867
|
-
Policy Name
|
|
3923
|
+
Policy Name
|
|
3868
3924
|
"""
|
|
3869
3925
|
start_time: NotRequired[pulumi.Input[str]]
|
|
3870
3926
|
"""
|
|
3871
|
-
Policy Effective Time
|
|
3927
|
+
Policy Effective Time
|
|
3872
3928
|
"""
|
|
3873
3929
|
time_zone: NotRequired[pulumi.Input[str]]
|
|
3874
3930
|
"""
|
|
@@ -3889,13 +3945,13 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3889
3945
|
start_time: Optional[pulumi.Input[str]] = None,
|
|
3890
3946
|
time_zone: Optional[pulumi.Input[str]] = None):
|
|
3891
3947
|
"""
|
|
3892
|
-
:param pulumi.Input[str] end_time: Policy expiration time
|
|
3893
|
-
:param pulumi.Input[int] max_capacity: Maximum value of expansion
|
|
3894
|
-
:param pulumi.Input[float] metric_target: Tracking value of the indicator
|
|
3895
|
-
:param pulumi.Input[str] metric_type: Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3896
|
-
:param pulumi.Input[int] min_capacity: Minimum Shrinkage
|
|
3897
|
-
:param pulumi.Input[str] name: Policy Name
|
|
3898
|
-
:param pulumi.Input[str] start_time: Policy Effective Time
|
|
3948
|
+
:param pulumi.Input[str] end_time: Policy expiration time
|
|
3949
|
+
:param pulumi.Input[int] max_capacity: Maximum value of expansion
|
|
3950
|
+
:param pulumi.Input[float] metric_target: Tracking value of the indicator
|
|
3951
|
+
:param pulumi.Input[str] metric_type: Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3952
|
+
:param pulumi.Input[int] min_capacity: Minimum Shrinkage
|
|
3953
|
+
:param pulumi.Input[str] name: Policy Name
|
|
3954
|
+
:param pulumi.Input[str] start_time: Policy Effective Time
|
|
3899
3955
|
:param pulumi.Input[str] time_zone: Time zone.
|
|
3900
3956
|
"""
|
|
3901
3957
|
if end_time is not None:
|
|
@@ -3919,7 +3975,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3919
3975
|
@pulumi.getter(name="endTime")
|
|
3920
3976
|
def end_time(self) -> Optional[pulumi.Input[str]]:
|
|
3921
3977
|
"""
|
|
3922
|
-
Policy expiration time
|
|
3978
|
+
Policy expiration time
|
|
3923
3979
|
"""
|
|
3924
3980
|
return pulumi.get(self, "end_time")
|
|
3925
3981
|
|
|
@@ -3931,7 +3987,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3931
3987
|
@pulumi.getter(name="maxCapacity")
|
|
3932
3988
|
def max_capacity(self) -> Optional[pulumi.Input[int]]:
|
|
3933
3989
|
"""
|
|
3934
|
-
Maximum value of expansion
|
|
3990
|
+
Maximum value of expansion
|
|
3935
3991
|
"""
|
|
3936
3992
|
return pulumi.get(self, "max_capacity")
|
|
3937
3993
|
|
|
@@ -3943,7 +3999,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3943
3999
|
@pulumi.getter(name="metricTarget")
|
|
3944
4000
|
def metric_target(self) -> Optional[pulumi.Input[float]]:
|
|
3945
4001
|
"""
|
|
3946
|
-
Tracking value of the indicator
|
|
4002
|
+
Tracking value of the indicator
|
|
3947
4003
|
"""
|
|
3948
4004
|
return pulumi.get(self, "metric_target")
|
|
3949
4005
|
|
|
@@ -3955,7 +4011,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3955
4011
|
@pulumi.getter(name="metricType")
|
|
3956
4012
|
def metric_type(self) -> Optional[pulumi.Input[str]]:
|
|
3957
4013
|
"""
|
|
3958
|
-
Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
4014
|
+
Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3959
4015
|
"""
|
|
3960
4016
|
return pulumi.get(self, "metric_type")
|
|
3961
4017
|
|
|
@@ -3967,7 +4023,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3967
4023
|
@pulumi.getter(name="minCapacity")
|
|
3968
4024
|
def min_capacity(self) -> Optional[pulumi.Input[int]]:
|
|
3969
4025
|
"""
|
|
3970
|
-
Minimum Shrinkage
|
|
4026
|
+
Minimum Shrinkage
|
|
3971
4027
|
"""
|
|
3972
4028
|
return pulumi.get(self, "min_capacity")
|
|
3973
4029
|
|
|
@@ -3979,7 +4035,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3979
4035
|
@pulumi.getter
|
|
3980
4036
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
3981
4037
|
"""
|
|
3982
|
-
Policy Name
|
|
4038
|
+
Policy Name
|
|
3983
4039
|
"""
|
|
3984
4040
|
return pulumi.get(self, "name")
|
|
3985
4041
|
|
|
@@ -3991,7 +4047,7 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
3991
4047
|
@pulumi.getter(name="startTime")
|
|
3992
4048
|
def start_time(self) -> Optional[pulumi.Input[str]]:
|
|
3993
4049
|
"""
|
|
3994
|
-
Policy Effective Time
|
|
4050
|
+
Policy Effective Time
|
|
3995
4051
|
"""
|
|
3996
4052
|
return pulumi.get(self, "start_time")
|
|
3997
4053
|
|
|
@@ -4012,3 +4068,55 @@ class V3ProvisionConfigTargetTrackingPolicyArgs:
|
|
|
4012
4068
|
pulumi.set(self, "time_zone", value)
|
|
4013
4069
|
|
|
4014
4070
|
|
|
4071
|
+
if not MYPY:
|
|
4072
|
+
class V3TriggerHttpTriggerArgsDict(TypedDict):
|
|
4073
|
+
url_internet: NotRequired[pulumi.Input[str]]
|
|
4074
|
+
"""
|
|
4075
|
+
The public domain name address. On the Internet, you can access the HTTP Trigger through the HTTP protocol or HTTPS protocol.
|
|
4076
|
+
"""
|
|
4077
|
+
url_intranet: NotRequired[pulumi.Input[str]]
|
|
4078
|
+
"""
|
|
4079
|
+
The private domain name address. In a VPC, you can access the HTTP Trigger through HTTP or HTTPS.
|
|
4080
|
+
"""
|
|
4081
|
+
elif False:
|
|
4082
|
+
V3TriggerHttpTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
|
4083
|
+
|
|
4084
|
+
@pulumi.input_type
|
|
4085
|
+
class V3TriggerHttpTriggerArgs:
|
|
4086
|
+
def __init__(__self__, *,
|
|
4087
|
+
url_internet: Optional[pulumi.Input[str]] = None,
|
|
4088
|
+
url_intranet: Optional[pulumi.Input[str]] = None):
|
|
4089
|
+
"""
|
|
4090
|
+
:param pulumi.Input[str] url_internet: The public domain name address. On the Internet, you can access the HTTP Trigger through the HTTP protocol or HTTPS protocol.
|
|
4091
|
+
:param pulumi.Input[str] url_intranet: The private domain name address. In a VPC, you can access the HTTP Trigger through HTTP or HTTPS.
|
|
4092
|
+
"""
|
|
4093
|
+
if url_internet is not None:
|
|
4094
|
+
pulumi.set(__self__, "url_internet", url_internet)
|
|
4095
|
+
if url_intranet is not None:
|
|
4096
|
+
pulumi.set(__self__, "url_intranet", url_intranet)
|
|
4097
|
+
|
|
4098
|
+
@property
|
|
4099
|
+
@pulumi.getter(name="urlInternet")
|
|
4100
|
+
def url_internet(self) -> Optional[pulumi.Input[str]]:
|
|
4101
|
+
"""
|
|
4102
|
+
The public domain name address. On the Internet, you can access the HTTP Trigger through the HTTP protocol or HTTPS protocol.
|
|
4103
|
+
"""
|
|
4104
|
+
return pulumi.get(self, "url_internet")
|
|
4105
|
+
|
|
4106
|
+
@url_internet.setter
|
|
4107
|
+
def url_internet(self, value: Optional[pulumi.Input[str]]):
|
|
4108
|
+
pulumi.set(self, "url_internet", value)
|
|
4109
|
+
|
|
4110
|
+
@property
|
|
4111
|
+
@pulumi.getter(name="urlIntranet")
|
|
4112
|
+
def url_intranet(self) -> Optional[pulumi.Input[str]]:
|
|
4113
|
+
"""
|
|
4114
|
+
The private domain name address. In a VPC, you can access the HTTP Trigger through HTTP or HTTPS.
|
|
4115
|
+
"""
|
|
4116
|
+
return pulumi.get(self, "url_intranet")
|
|
4117
|
+
|
|
4118
|
+
@url_intranet.setter
|
|
4119
|
+
def url_intranet(self, value: Optional[pulumi.Input[str]]):
|
|
4120
|
+
pulumi.set(self, "url_intranet", value)
|
|
4121
|
+
|
|
4122
|
+
|