pulumi-alicloud 3.65.1__py3-none-any.whl → 3.66.0__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.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/RECORD +44 -29
- {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/fc/outputs.py
CHANGED
|
@@ -67,10 +67,12 @@ __all__ = [
|
|
|
67
67
|
'V3FunctionNasConfigMountPoint',
|
|
68
68
|
'V3FunctionOssMountConfig',
|
|
69
69
|
'V3FunctionOssMountConfigMountPoint',
|
|
70
|
+
'V3FunctionTracingConfig',
|
|
70
71
|
'V3FunctionVpcConfig',
|
|
71
72
|
'V3LayerVersionCode',
|
|
72
73
|
'V3ProvisionConfigScheduledAction',
|
|
73
74
|
'V3ProvisionConfigTargetTrackingPolicy',
|
|
75
|
+
'V3TriggerHttpTrigger',
|
|
74
76
|
'GetCustomDomainsDomainResult',
|
|
75
77
|
'GetCustomDomainsDomainCertConfigResult',
|
|
76
78
|
'GetCustomDomainsDomainRouteConfigResult',
|
|
@@ -1180,8 +1182,8 @@ class V3AsyncInvokeConfigDestinationConfig(dict):
|
|
|
1180
1182
|
on_failure: Optional['outputs.V3AsyncInvokeConfigDestinationConfigOnFailure'] = None,
|
|
1181
1183
|
on_success: Optional['outputs.V3AsyncInvokeConfigDestinationConfigOnSuccess'] = None):
|
|
1182
1184
|
"""
|
|
1183
|
-
:param 'V3AsyncInvokeConfigDestinationConfigOnFailureArgs' on_failure: Failed callback target structure
|
|
1184
|
-
:param 'V3AsyncInvokeConfigDestinationConfigOnSuccessArgs' on_success: Successful callback target structure
|
|
1185
|
+
:param 'V3AsyncInvokeConfigDestinationConfigOnFailureArgs' on_failure: Failed callback target structure See `on_failure` below.
|
|
1186
|
+
:param 'V3AsyncInvokeConfigDestinationConfigOnSuccessArgs' on_success: Successful callback target structure See `on_success` below.
|
|
1185
1187
|
"""
|
|
1186
1188
|
if on_failure is not None:
|
|
1187
1189
|
pulumi.set(__self__, "on_failure", on_failure)
|
|
@@ -1192,7 +1194,7 @@ class V3AsyncInvokeConfigDestinationConfig(dict):
|
|
|
1192
1194
|
@pulumi.getter(name="onFailure")
|
|
1193
1195
|
def on_failure(self) -> Optional['outputs.V3AsyncInvokeConfigDestinationConfigOnFailure']:
|
|
1194
1196
|
"""
|
|
1195
|
-
Failed callback target structure
|
|
1197
|
+
Failed callback target structure See `on_failure` below.
|
|
1196
1198
|
"""
|
|
1197
1199
|
return pulumi.get(self, "on_failure")
|
|
1198
1200
|
|
|
@@ -1200,7 +1202,7 @@ class V3AsyncInvokeConfigDestinationConfig(dict):
|
|
|
1200
1202
|
@pulumi.getter(name="onSuccess")
|
|
1201
1203
|
def on_success(self) -> Optional['outputs.V3AsyncInvokeConfigDestinationConfigOnSuccess']:
|
|
1202
1204
|
"""
|
|
1203
|
-
Successful callback target structure
|
|
1205
|
+
Successful callback target structure See `on_success` below.
|
|
1204
1206
|
"""
|
|
1205
1207
|
return pulumi.get(self, "on_success")
|
|
1206
1208
|
|
|
@@ -1210,7 +1212,7 @@ class V3AsyncInvokeConfigDestinationConfigOnFailure(dict):
|
|
|
1210
1212
|
def __init__(__self__, *,
|
|
1211
1213
|
destination: Optional[str] = None):
|
|
1212
1214
|
"""
|
|
1213
|
-
:param str destination: Asynchronous call target Resource Descriptor
|
|
1215
|
+
:param str destination: Asynchronous call target Resource Descriptor
|
|
1214
1216
|
"""
|
|
1215
1217
|
if destination is not None:
|
|
1216
1218
|
pulumi.set(__self__, "destination", destination)
|
|
@@ -1219,7 +1221,7 @@ class V3AsyncInvokeConfigDestinationConfigOnFailure(dict):
|
|
|
1219
1221
|
@pulumi.getter
|
|
1220
1222
|
def destination(self) -> Optional[str]:
|
|
1221
1223
|
"""
|
|
1222
|
-
Asynchronous call target Resource Descriptor
|
|
1224
|
+
Asynchronous call target Resource Descriptor
|
|
1223
1225
|
"""
|
|
1224
1226
|
return pulumi.get(self, "destination")
|
|
1225
1227
|
|
|
@@ -1229,7 +1231,7 @@ class V3AsyncInvokeConfigDestinationConfigOnSuccess(dict):
|
|
|
1229
1231
|
def __init__(__self__, *,
|
|
1230
1232
|
destination: Optional[str] = None):
|
|
1231
1233
|
"""
|
|
1232
|
-
:param str destination: Asynchronous call target Resource Descriptor
|
|
1234
|
+
:param str destination: Asynchronous call target Resource Descriptor
|
|
1233
1235
|
"""
|
|
1234
1236
|
if destination is not None:
|
|
1235
1237
|
pulumi.set(__self__, "destination", destination)
|
|
@@ -1238,7 +1240,7 @@ class V3AsyncInvokeConfigDestinationConfigOnSuccess(dict):
|
|
|
1238
1240
|
@pulumi.getter
|
|
1239
1241
|
def destination(self) -> Optional[str]:
|
|
1240
1242
|
"""
|
|
1241
|
-
Asynchronous call target Resource Descriptor
|
|
1243
|
+
Asynchronous call target Resource Descriptor
|
|
1242
1244
|
"""
|
|
1243
1245
|
return pulumi.get(self, "destination")
|
|
1244
1246
|
|
|
@@ -1268,7 +1270,7 @@ class V3CustomDomainAuthConfig(dict):
|
|
|
1268
1270
|
auth_info: Optional[str] = None,
|
|
1269
1271
|
auth_type: Optional[str] = None):
|
|
1270
1272
|
"""
|
|
1271
|
-
:param str auth_info: Authentication Information
|
|
1273
|
+
:param str auth_info: Authentication Information
|
|
1272
1274
|
:param str auth_type: Authentication type. anonymous, function, or jwt.
|
|
1273
1275
|
"""
|
|
1274
1276
|
if auth_info is not None:
|
|
@@ -1280,7 +1282,7 @@ class V3CustomDomainAuthConfig(dict):
|
|
|
1280
1282
|
@pulumi.getter(name="authInfo")
|
|
1281
1283
|
def auth_info(self) -> Optional[str]:
|
|
1282
1284
|
"""
|
|
1283
|
-
Authentication Information
|
|
1285
|
+
Authentication Information
|
|
1284
1286
|
"""
|
|
1285
1287
|
return pulumi.get(self, "auth_info")
|
|
1286
1288
|
|
|
@@ -1319,9 +1321,9 @@ class V3CustomDomainCertConfig(dict):
|
|
|
1319
1321
|
certificate: Optional[str] = None,
|
|
1320
1322
|
private_key: Optional[str] = None):
|
|
1321
1323
|
"""
|
|
1322
|
-
:param str cert_name: Certificate Name
|
|
1323
|
-
:param str certificate: PEM format certificate
|
|
1324
|
-
:param str private_key: Private Key in PEM format
|
|
1324
|
+
:param str cert_name: Certificate Name
|
|
1325
|
+
:param str certificate: PEM format certificate
|
|
1326
|
+
:param str private_key: Private Key in PEM format
|
|
1325
1327
|
"""
|
|
1326
1328
|
if cert_name is not None:
|
|
1327
1329
|
pulumi.set(__self__, "cert_name", cert_name)
|
|
@@ -1334,7 +1336,7 @@ class V3CustomDomainCertConfig(dict):
|
|
|
1334
1336
|
@pulumi.getter(name="certName")
|
|
1335
1337
|
def cert_name(self) -> Optional[str]:
|
|
1336
1338
|
"""
|
|
1337
|
-
Certificate Name
|
|
1339
|
+
Certificate Name
|
|
1338
1340
|
"""
|
|
1339
1341
|
return pulumi.get(self, "cert_name")
|
|
1340
1342
|
|
|
@@ -1342,7 +1344,7 @@ class V3CustomDomainCertConfig(dict):
|
|
|
1342
1344
|
@pulumi.getter
|
|
1343
1345
|
def certificate(self) -> Optional[str]:
|
|
1344
1346
|
"""
|
|
1345
|
-
PEM format certificate
|
|
1347
|
+
PEM format certificate
|
|
1346
1348
|
"""
|
|
1347
1349
|
return pulumi.get(self, "certificate")
|
|
1348
1350
|
|
|
@@ -1350,7 +1352,7 @@ class V3CustomDomainCertConfig(dict):
|
|
|
1350
1352
|
@pulumi.getter(name="privateKey")
|
|
1351
1353
|
def private_key(self) -> Optional[str]:
|
|
1352
1354
|
"""
|
|
1353
|
-
Private Key in PEM format
|
|
1355
|
+
Private Key in PEM format
|
|
1354
1356
|
"""
|
|
1355
1357
|
return pulumi.get(self, "private_key")
|
|
1356
1358
|
|
|
@@ -1360,7 +1362,7 @@ class V3CustomDomainRouteConfig(dict):
|
|
|
1360
1362
|
def __init__(__self__, *,
|
|
1361
1363
|
routes: Optional[Sequence['outputs.V3CustomDomainRouteConfigRoute']] = None):
|
|
1362
1364
|
"""
|
|
1363
|
-
:param Sequence['V3CustomDomainRouteConfigRouteArgs'] routes: Routing Configuration List
|
|
1365
|
+
:param Sequence['V3CustomDomainRouteConfigRouteArgs'] routes: Routing Configuration List See `routes` below.
|
|
1364
1366
|
"""
|
|
1365
1367
|
if routes is not None:
|
|
1366
1368
|
pulumi.set(__self__, "routes", routes)
|
|
@@ -1369,7 +1371,7 @@ class V3CustomDomainRouteConfig(dict):
|
|
|
1369
1371
|
@pulumi.getter
|
|
1370
1372
|
def routes(self) -> Optional[Sequence['outputs.V3CustomDomainRouteConfigRoute']]:
|
|
1371
1373
|
"""
|
|
1372
|
-
Routing Configuration List
|
|
1374
|
+
Routing Configuration List See `routes` below.
|
|
1373
1375
|
"""
|
|
1374
1376
|
return pulumi.get(self, "routes")
|
|
1375
1377
|
|
|
@@ -1402,11 +1404,11 @@ class V3CustomDomainRouteConfigRoute(dict):
|
|
|
1402
1404
|
qualifier: Optional[str] = None,
|
|
1403
1405
|
rewrite_config: Optional['outputs.V3CustomDomainRouteConfigRouteRewriteConfig'] = None):
|
|
1404
1406
|
"""
|
|
1405
|
-
:param str function_name: Function name
|
|
1406
|
-
:param Sequence[str] methods: List of supported HTTP methods
|
|
1407
|
-
:param str path: Route matching rule
|
|
1408
|
-
:param str qualifier: Version or Alias
|
|
1409
|
-
:param 'V3CustomDomainRouteConfigRouteRewriteConfigArgs' rewrite_config: Override Configuration
|
|
1407
|
+
:param str function_name: Function name
|
|
1408
|
+
:param Sequence[str] methods: List of supported HTTP methods
|
|
1409
|
+
:param str path: Route matching rule
|
|
1410
|
+
:param str qualifier: Version or Alias
|
|
1411
|
+
:param 'V3CustomDomainRouteConfigRouteRewriteConfigArgs' rewrite_config: Override Configuration See `rewrite_config` below.
|
|
1410
1412
|
"""
|
|
1411
1413
|
if function_name is not None:
|
|
1412
1414
|
pulumi.set(__self__, "function_name", function_name)
|
|
@@ -1423,7 +1425,7 @@ class V3CustomDomainRouteConfigRoute(dict):
|
|
|
1423
1425
|
@pulumi.getter(name="functionName")
|
|
1424
1426
|
def function_name(self) -> Optional[str]:
|
|
1425
1427
|
"""
|
|
1426
|
-
Function name
|
|
1428
|
+
Function name
|
|
1427
1429
|
"""
|
|
1428
1430
|
return pulumi.get(self, "function_name")
|
|
1429
1431
|
|
|
@@ -1431,7 +1433,7 @@ class V3CustomDomainRouteConfigRoute(dict):
|
|
|
1431
1433
|
@pulumi.getter
|
|
1432
1434
|
def methods(self) -> Optional[Sequence[str]]:
|
|
1433
1435
|
"""
|
|
1434
|
-
List of supported HTTP methods
|
|
1436
|
+
List of supported HTTP methods
|
|
1435
1437
|
"""
|
|
1436
1438
|
return pulumi.get(self, "methods")
|
|
1437
1439
|
|
|
@@ -1439,7 +1441,7 @@ class V3CustomDomainRouteConfigRoute(dict):
|
|
|
1439
1441
|
@pulumi.getter
|
|
1440
1442
|
def path(self) -> Optional[str]:
|
|
1441
1443
|
"""
|
|
1442
|
-
Route matching rule
|
|
1444
|
+
Route matching rule
|
|
1443
1445
|
"""
|
|
1444
1446
|
return pulumi.get(self, "path")
|
|
1445
1447
|
|
|
@@ -1447,7 +1449,7 @@ class V3CustomDomainRouteConfigRoute(dict):
|
|
|
1447
1449
|
@pulumi.getter
|
|
1448
1450
|
def qualifier(self) -> Optional[str]:
|
|
1449
1451
|
"""
|
|
1450
|
-
Version or Alias
|
|
1452
|
+
Version or Alias
|
|
1451
1453
|
"""
|
|
1452
1454
|
return pulumi.get(self, "qualifier")
|
|
1453
1455
|
|
|
@@ -1455,7 +1457,7 @@ class V3CustomDomainRouteConfigRoute(dict):
|
|
|
1455
1457
|
@pulumi.getter(name="rewriteConfig")
|
|
1456
1458
|
def rewrite_config(self) -> Optional['outputs.V3CustomDomainRouteConfigRouteRewriteConfig']:
|
|
1457
1459
|
"""
|
|
1458
|
-
Override Configuration
|
|
1460
|
+
Override Configuration See `rewrite_config` below.
|
|
1459
1461
|
"""
|
|
1460
1462
|
return pulumi.get(self, "rewrite_config")
|
|
1461
1463
|
|
|
@@ -1488,9 +1490,9 @@ class V3CustomDomainRouteConfigRouteRewriteConfig(dict):
|
|
|
1488
1490
|
regex_rules: Optional[Sequence['outputs.V3CustomDomainRouteConfigRouteRewriteConfigRegexRule']] = None,
|
|
1489
1491
|
wildcard_rules: Optional[Sequence['outputs.V3CustomDomainRouteConfigRouteRewriteConfigWildcardRule']] = None):
|
|
1490
1492
|
"""
|
|
1491
|
-
:param Sequence['V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs'] equal_rules: Exact Match Rule List
|
|
1492
|
-
:param Sequence['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs'] regex_rules: Regular match rule list
|
|
1493
|
-
:param Sequence['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs'] wildcard_rules: List of wildcard matching rules
|
|
1493
|
+
:param Sequence['V3CustomDomainRouteConfigRouteRewriteConfigEqualRuleArgs'] equal_rules: Exact Match Rule List See `equal_rules` below.
|
|
1494
|
+
:param Sequence['V3CustomDomainRouteConfigRouteRewriteConfigRegexRuleArgs'] regex_rules: Regular match rule list See `regex_rules` below.
|
|
1495
|
+
:param Sequence['V3CustomDomainRouteConfigRouteRewriteConfigWildcardRuleArgs'] wildcard_rules: List of wildcard matching rules See `wildcard_rules` below.
|
|
1494
1496
|
"""
|
|
1495
1497
|
if equal_rules is not None:
|
|
1496
1498
|
pulumi.set(__self__, "equal_rules", equal_rules)
|
|
@@ -1503,7 +1505,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfig(dict):
|
|
|
1503
1505
|
@pulumi.getter(name="equalRules")
|
|
1504
1506
|
def equal_rules(self) -> Optional[Sequence['outputs.V3CustomDomainRouteConfigRouteRewriteConfigEqualRule']]:
|
|
1505
1507
|
"""
|
|
1506
|
-
Exact Match Rule List
|
|
1508
|
+
Exact Match Rule List See `equal_rules` below.
|
|
1507
1509
|
"""
|
|
1508
1510
|
return pulumi.get(self, "equal_rules")
|
|
1509
1511
|
|
|
@@ -1511,7 +1513,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfig(dict):
|
|
|
1511
1513
|
@pulumi.getter(name="regexRules")
|
|
1512
1514
|
def regex_rules(self) -> Optional[Sequence['outputs.V3CustomDomainRouteConfigRouteRewriteConfigRegexRule']]:
|
|
1513
1515
|
"""
|
|
1514
|
-
Regular match rule list
|
|
1516
|
+
Regular match rule list See `regex_rules` below.
|
|
1515
1517
|
"""
|
|
1516
1518
|
return pulumi.get(self, "regex_rules")
|
|
1517
1519
|
|
|
@@ -1519,7 +1521,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfig(dict):
|
|
|
1519
1521
|
@pulumi.getter(name="wildcardRules")
|
|
1520
1522
|
def wildcard_rules(self) -> Optional[Sequence['outputs.V3CustomDomainRouteConfigRouteRewriteConfigWildcardRule']]:
|
|
1521
1523
|
"""
|
|
1522
|
-
List of wildcard matching rules
|
|
1524
|
+
List of wildcard matching rules See `wildcard_rules` below.
|
|
1523
1525
|
"""
|
|
1524
1526
|
return pulumi.get(self, "wildcard_rules")
|
|
1525
1527
|
|
|
@@ -1530,8 +1532,8 @@ class V3CustomDomainRouteConfigRouteRewriteConfigEqualRule(dict):
|
|
|
1530
1532
|
match: Optional[str] = None,
|
|
1531
1533
|
replacement: Optional[str] = None):
|
|
1532
1534
|
"""
|
|
1533
|
-
:param str match: Matching Rules
|
|
1534
|
-
:param str replacement: Replace Rules
|
|
1535
|
+
:param str match: Matching Rules
|
|
1536
|
+
:param str replacement: Replace Rules
|
|
1535
1537
|
"""
|
|
1536
1538
|
if match is not None:
|
|
1537
1539
|
pulumi.set(__self__, "match", match)
|
|
@@ -1542,7 +1544,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigEqualRule(dict):
|
|
|
1542
1544
|
@pulumi.getter
|
|
1543
1545
|
def match(self) -> Optional[str]:
|
|
1544
1546
|
"""
|
|
1545
|
-
Matching Rules
|
|
1547
|
+
Matching Rules
|
|
1546
1548
|
"""
|
|
1547
1549
|
return pulumi.get(self, "match")
|
|
1548
1550
|
|
|
@@ -1550,7 +1552,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigEqualRule(dict):
|
|
|
1550
1552
|
@pulumi.getter
|
|
1551
1553
|
def replacement(self) -> Optional[str]:
|
|
1552
1554
|
"""
|
|
1553
|
-
Replace Rules
|
|
1555
|
+
Replace Rules
|
|
1554
1556
|
"""
|
|
1555
1557
|
return pulumi.get(self, "replacement")
|
|
1556
1558
|
|
|
@@ -1561,8 +1563,8 @@ class V3CustomDomainRouteConfigRouteRewriteConfigRegexRule(dict):
|
|
|
1561
1563
|
match: Optional[str] = None,
|
|
1562
1564
|
replacement: Optional[str] = None):
|
|
1563
1565
|
"""
|
|
1564
|
-
:param str match: Matching Rules
|
|
1565
|
-
:param str replacement: Replace Rules
|
|
1566
|
+
:param str match: Matching Rules
|
|
1567
|
+
:param str replacement: Replace Rules
|
|
1566
1568
|
"""
|
|
1567
1569
|
if match is not None:
|
|
1568
1570
|
pulumi.set(__self__, "match", match)
|
|
@@ -1573,7 +1575,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigRegexRule(dict):
|
|
|
1573
1575
|
@pulumi.getter
|
|
1574
1576
|
def match(self) -> Optional[str]:
|
|
1575
1577
|
"""
|
|
1576
|
-
Matching Rules
|
|
1578
|
+
Matching Rules
|
|
1577
1579
|
"""
|
|
1578
1580
|
return pulumi.get(self, "match")
|
|
1579
1581
|
|
|
@@ -1581,7 +1583,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigRegexRule(dict):
|
|
|
1581
1583
|
@pulumi.getter
|
|
1582
1584
|
def replacement(self) -> Optional[str]:
|
|
1583
1585
|
"""
|
|
1584
|
-
Replace Rules
|
|
1586
|
+
Replace Rules
|
|
1585
1587
|
"""
|
|
1586
1588
|
return pulumi.get(self, "replacement")
|
|
1587
1589
|
|
|
@@ -1592,8 +1594,8 @@ class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRule(dict):
|
|
|
1592
1594
|
match: Optional[str] = None,
|
|
1593
1595
|
replacement: Optional[str] = None):
|
|
1594
1596
|
"""
|
|
1595
|
-
:param str match: Matching Rules
|
|
1596
|
-
:param str replacement: Replace Rules
|
|
1597
|
+
:param str match: Matching Rules
|
|
1598
|
+
:param str replacement: Replace Rules
|
|
1597
1599
|
"""
|
|
1598
1600
|
if match is not None:
|
|
1599
1601
|
pulumi.set(__self__, "match", match)
|
|
@@ -1604,7 +1606,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRule(dict):
|
|
|
1604
1606
|
@pulumi.getter
|
|
1605
1607
|
def match(self) -> Optional[str]:
|
|
1606
1608
|
"""
|
|
1607
|
-
Matching Rules
|
|
1609
|
+
Matching Rules
|
|
1608
1610
|
"""
|
|
1609
1611
|
return pulumi.get(self, "match")
|
|
1610
1612
|
|
|
@@ -1612,7 +1614,7 @@ class V3CustomDomainRouteConfigRouteRewriteConfigWildcardRule(dict):
|
|
|
1612
1614
|
@pulumi.getter
|
|
1613
1615
|
def replacement(self) -> Optional[str]:
|
|
1614
1616
|
"""
|
|
1615
|
-
Replace Rules
|
|
1617
|
+
Replace Rules
|
|
1616
1618
|
"""
|
|
1617
1619
|
return pulumi.get(self, "replacement")
|
|
1618
1620
|
|
|
@@ -1645,9 +1647,9 @@ class V3CustomDomainTlsConfig(dict):
|
|
|
1645
1647
|
max_version: Optional[str] = None,
|
|
1646
1648
|
min_version: Optional[str] = None):
|
|
1647
1649
|
"""
|
|
1648
|
-
:param Sequence[str] cipher_suites: List of TLS cipher suites
|
|
1649
|
-
:param str max_version: The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1650
|
-
:param str min_version: TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1650
|
+
:param Sequence[str] cipher_suites: List of TLS cipher suites
|
|
1651
|
+
:param str max_version: The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1652
|
+
:param str min_version: TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1651
1653
|
"""
|
|
1652
1654
|
if cipher_suites is not None:
|
|
1653
1655
|
pulumi.set(__self__, "cipher_suites", cipher_suites)
|
|
@@ -1660,7 +1662,7 @@ class V3CustomDomainTlsConfig(dict):
|
|
|
1660
1662
|
@pulumi.getter(name="cipherSuites")
|
|
1661
1663
|
def cipher_suites(self) -> Optional[Sequence[str]]:
|
|
1662
1664
|
"""
|
|
1663
|
-
List of TLS cipher suites
|
|
1665
|
+
List of TLS cipher suites
|
|
1664
1666
|
"""
|
|
1665
1667
|
return pulumi.get(self, "cipher_suites")
|
|
1666
1668
|
|
|
@@ -1668,7 +1670,7 @@ class V3CustomDomainTlsConfig(dict):
|
|
|
1668
1670
|
@pulumi.getter(name="maxVersion")
|
|
1669
1671
|
def max_version(self) -> Optional[str]:
|
|
1670
1672
|
"""
|
|
1671
|
-
The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1673
|
+
The maximum version of TLS. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1672
1674
|
"""
|
|
1673
1675
|
return pulumi.get(self, "max_version")
|
|
1674
1676
|
|
|
@@ -1676,7 +1678,7 @@ class V3CustomDomainTlsConfig(dict):
|
|
|
1676
1678
|
@pulumi.getter(name="minVersion")
|
|
1677
1679
|
def min_version(self) -> Optional[str]:
|
|
1678
1680
|
"""
|
|
1679
|
-
TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1681
|
+
TLS minimum version number. Enumeration values: TLSv1.3, TLSv1.2, TLSv1.1, TLSv1.0
|
|
1680
1682
|
"""
|
|
1681
1683
|
return pulumi.get(self, "min_version")
|
|
1682
1684
|
|
|
@@ -1703,7 +1705,7 @@ class V3CustomDomainWafConfig(dict):
|
|
|
1703
1705
|
def __init__(__self__, *,
|
|
1704
1706
|
enable_waf: Optional[bool] = None):
|
|
1705
1707
|
"""
|
|
1706
|
-
:param bool enable_waf: Enable WAF protection
|
|
1708
|
+
:param bool enable_waf: Enable WAF protection
|
|
1707
1709
|
"""
|
|
1708
1710
|
if enable_waf is not None:
|
|
1709
1711
|
pulumi.set(__self__, "enable_waf", enable_waf)
|
|
@@ -1712,7 +1714,7 @@ class V3CustomDomainWafConfig(dict):
|
|
|
1712
1714
|
@pulumi.getter(name="enableWaf")
|
|
1713
1715
|
def enable_waf(self) -> Optional[bool]:
|
|
1714
1716
|
"""
|
|
1715
|
-
Enable WAF protection
|
|
1717
|
+
Enable WAF protection
|
|
1716
1718
|
"""
|
|
1717
1719
|
return pulumi.get(self, "enable_waf")
|
|
1718
1720
|
|
|
@@ -1836,7 +1838,7 @@ class V3FunctionCustomContainerConfig(dict):
|
|
|
1836
1838
|
:param str acr_instance_id: ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete).
|
|
1837
1839
|
:param Sequence[str] commands: Container startup parameters.
|
|
1838
1840
|
:param Sequence[str] entrypoints: Container start command.
|
|
1839
|
-
:param 'V3FunctionCustomContainerConfigHealthCheckConfigArgs' health_check_config: Function custom health check configuration
|
|
1841
|
+
:param 'V3FunctionCustomContainerConfigHealthCheckConfigArgs' health_check_config: Function custom health check configuration See `health_check_config` below.
|
|
1840
1842
|
:param str image: The container Image address.
|
|
1841
1843
|
:param int port: The listening port of the HTTP Server when the custom container runs.
|
|
1842
1844
|
:param 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.
|
|
@@ -1907,7 +1909,7 @@ class V3FunctionCustomContainerConfig(dict):
|
|
|
1907
1909
|
@pulumi.getter(name="healthCheckConfig")
|
|
1908
1910
|
def health_check_config(self) -> Optional['outputs.V3FunctionCustomContainerConfigHealthCheckConfig']:
|
|
1909
1911
|
"""
|
|
1910
|
-
Function custom health check configuration
|
|
1912
|
+
Function custom health check configuration See `health_check_config` below.
|
|
1911
1913
|
"""
|
|
1912
1914
|
return pulumi.get(self, "health_check_config")
|
|
1913
1915
|
|
|
@@ -2360,8 +2362,8 @@ class V3FunctionInstanceLifecycleConfig(dict):
|
|
|
2360
2362
|
initializer: Optional['outputs.V3FunctionInstanceLifecycleConfigInitializer'] = None,
|
|
2361
2363
|
pre_stop: Optional['outputs.V3FunctionInstanceLifecycleConfigPreStop'] = None):
|
|
2362
2364
|
"""
|
|
2363
|
-
:param 'V3FunctionInstanceLifecycleConfigInitializerArgs' initializer: Initializer handler method configuration
|
|
2364
|
-
:param 'V3FunctionInstanceLifecycleConfigPreStopArgs' pre_stop: PreStop handler method configuration
|
|
2365
|
+
:param 'V3FunctionInstanceLifecycleConfigInitializerArgs' initializer: Initializer handler method configuration See `initializer` below.
|
|
2366
|
+
:param 'V3FunctionInstanceLifecycleConfigPreStopArgs' pre_stop: PreStop handler method configuration See `pre_stop` below.
|
|
2365
2367
|
"""
|
|
2366
2368
|
if initializer is not None:
|
|
2367
2369
|
pulumi.set(__self__, "initializer", initializer)
|
|
@@ -2372,7 +2374,7 @@ class V3FunctionInstanceLifecycleConfig(dict):
|
|
|
2372
2374
|
@pulumi.getter
|
|
2373
2375
|
def initializer(self) -> Optional['outputs.V3FunctionInstanceLifecycleConfigInitializer']:
|
|
2374
2376
|
"""
|
|
2375
|
-
Initializer handler method configuration
|
|
2377
|
+
Initializer handler method configuration See `initializer` below.
|
|
2376
2378
|
"""
|
|
2377
2379
|
return pulumi.get(self, "initializer")
|
|
2378
2380
|
|
|
@@ -2380,7 +2382,7 @@ class V3FunctionInstanceLifecycleConfig(dict):
|
|
|
2380
2382
|
@pulumi.getter(name="preStop")
|
|
2381
2383
|
def pre_stop(self) -> Optional['outputs.V3FunctionInstanceLifecycleConfigPreStop']:
|
|
2382
2384
|
"""
|
|
2383
|
-
PreStop handler method configuration
|
|
2385
|
+
PreStop handler method configuration See `pre_stop` below.
|
|
2384
2386
|
"""
|
|
2385
2387
|
return pulumi.get(self, "pre_stop")
|
|
2386
2388
|
|
|
@@ -2781,6 +2783,37 @@ class V3FunctionOssMountConfigMountPoint(dict):
|
|
|
2781
2783
|
return pulumi.get(self, "read_only")
|
|
2782
2784
|
|
|
2783
2785
|
|
|
2786
|
+
@pulumi.output_type
|
|
2787
|
+
class V3FunctionTracingConfig(dict):
|
|
2788
|
+
def __init__(__self__, *,
|
|
2789
|
+
params: Optional[Mapping[str, str]] = None,
|
|
2790
|
+
type: Optional[str] = None):
|
|
2791
|
+
"""
|
|
2792
|
+
:param Mapping[str, str] params: Tracing parameters.
|
|
2793
|
+
:param str type: The tracing protocol type. Currently, only Jaeger is supported.
|
|
2794
|
+
"""
|
|
2795
|
+
if params is not None:
|
|
2796
|
+
pulumi.set(__self__, "params", params)
|
|
2797
|
+
if type is not None:
|
|
2798
|
+
pulumi.set(__self__, "type", type)
|
|
2799
|
+
|
|
2800
|
+
@property
|
|
2801
|
+
@pulumi.getter
|
|
2802
|
+
def params(self) -> Optional[Mapping[str, str]]:
|
|
2803
|
+
"""
|
|
2804
|
+
Tracing parameters.
|
|
2805
|
+
"""
|
|
2806
|
+
return pulumi.get(self, "params")
|
|
2807
|
+
|
|
2808
|
+
@property
|
|
2809
|
+
@pulumi.getter
|
|
2810
|
+
def type(self) -> Optional[str]:
|
|
2811
|
+
"""
|
|
2812
|
+
The tracing protocol type. Currently, only Jaeger is supported.
|
|
2813
|
+
"""
|
|
2814
|
+
return pulumi.get(self, "type")
|
|
2815
|
+
|
|
2816
|
+
|
|
2784
2817
|
@pulumi.output_type
|
|
2785
2818
|
class V3FunctionVpcConfig(dict):
|
|
2786
2819
|
@staticmethod
|
|
@@ -2875,9 +2908,9 @@ class V3LayerVersionCode(dict):
|
|
|
2875
2908
|
zip_file: Optional[str] = None):
|
|
2876
2909
|
"""
|
|
2877
2910
|
:param 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.
|
|
2878
|
-
:param str oss_bucket_name: Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
2879
|
-
:param str oss_object_name: Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
2880
|
-
:param str zip_file: Base 64 encoding of Layer Code ZIP package
|
|
2911
|
+
:param str oss_bucket_name: Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
2912
|
+
:param str oss_object_name: Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
2913
|
+
:param str zip_file: Base 64 encoding of Layer Code ZIP package
|
|
2881
2914
|
"""
|
|
2882
2915
|
if checksum is not None:
|
|
2883
2916
|
pulumi.set(__self__, "checksum", checksum)
|
|
@@ -2900,7 +2933,7 @@ class V3LayerVersionCode(dict):
|
|
|
2900
2933
|
@pulumi.getter(name="ossBucketName")
|
|
2901
2934
|
def oss_bucket_name(self) -> Optional[str]:
|
|
2902
2935
|
"""
|
|
2903
|
-
Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
2936
|
+
Name of the OSS Bucket where the user stores the Layer Code ZIP package
|
|
2904
2937
|
"""
|
|
2905
2938
|
return pulumi.get(self, "oss_bucket_name")
|
|
2906
2939
|
|
|
@@ -2908,7 +2941,7 @@ class V3LayerVersionCode(dict):
|
|
|
2908
2941
|
@pulumi.getter(name="ossObjectName")
|
|
2909
2942
|
def oss_object_name(self) -> Optional[str]:
|
|
2910
2943
|
"""
|
|
2911
|
-
Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
2944
|
+
Name of the OSS Object where the user stores the Layer Code ZIP package
|
|
2912
2945
|
"""
|
|
2913
2946
|
return pulumi.get(self, "oss_object_name")
|
|
2914
2947
|
|
|
@@ -2916,7 +2949,7 @@ class V3LayerVersionCode(dict):
|
|
|
2916
2949
|
@pulumi.getter(name="zipFile")
|
|
2917
2950
|
def zip_file(self) -> Optional[str]:
|
|
2918
2951
|
"""
|
|
2919
|
-
Base 64 encoding of Layer Code ZIP package
|
|
2952
|
+
Base 64 encoding of Layer Code ZIP package
|
|
2920
2953
|
"""
|
|
2921
2954
|
return pulumi.get(self, "zip_file")
|
|
2922
2955
|
|
|
@@ -2954,11 +2987,11 @@ class V3ProvisionConfigScheduledAction(dict):
|
|
|
2954
2987
|
target: Optional[int] = None,
|
|
2955
2988
|
time_zone: Optional[str] = None):
|
|
2956
2989
|
"""
|
|
2957
|
-
:param str end_time: Policy expiration time
|
|
2958
|
-
:param str name: Policy Name
|
|
2959
|
-
:param str schedule_expression: Timing Configuration
|
|
2960
|
-
:param str start_time: Policy effective time
|
|
2961
|
-
:param int target: Number of reserved target resources
|
|
2990
|
+
:param str end_time: Policy expiration time
|
|
2991
|
+
:param str name: Policy Name
|
|
2992
|
+
:param str schedule_expression: Timing Configuration
|
|
2993
|
+
:param str start_time: Policy effective time
|
|
2994
|
+
:param int target: Number of reserved target resources
|
|
2962
2995
|
:param str time_zone: Time zone.
|
|
2963
2996
|
"""
|
|
2964
2997
|
if end_time is not None:
|
|
@@ -2978,7 +3011,7 @@ class V3ProvisionConfigScheduledAction(dict):
|
|
|
2978
3011
|
@pulumi.getter(name="endTime")
|
|
2979
3012
|
def end_time(self) -> Optional[str]:
|
|
2980
3013
|
"""
|
|
2981
|
-
Policy expiration time
|
|
3014
|
+
Policy expiration time
|
|
2982
3015
|
"""
|
|
2983
3016
|
return pulumi.get(self, "end_time")
|
|
2984
3017
|
|
|
@@ -2986,7 +3019,7 @@ class V3ProvisionConfigScheduledAction(dict):
|
|
|
2986
3019
|
@pulumi.getter
|
|
2987
3020
|
def name(self) -> Optional[str]:
|
|
2988
3021
|
"""
|
|
2989
|
-
Policy Name
|
|
3022
|
+
Policy Name
|
|
2990
3023
|
"""
|
|
2991
3024
|
return pulumi.get(self, "name")
|
|
2992
3025
|
|
|
@@ -2994,7 +3027,7 @@ class V3ProvisionConfigScheduledAction(dict):
|
|
|
2994
3027
|
@pulumi.getter(name="scheduleExpression")
|
|
2995
3028
|
def schedule_expression(self) -> Optional[str]:
|
|
2996
3029
|
"""
|
|
2997
|
-
Timing Configuration
|
|
3030
|
+
Timing Configuration
|
|
2998
3031
|
"""
|
|
2999
3032
|
return pulumi.get(self, "schedule_expression")
|
|
3000
3033
|
|
|
@@ -3002,7 +3035,7 @@ class V3ProvisionConfigScheduledAction(dict):
|
|
|
3002
3035
|
@pulumi.getter(name="startTime")
|
|
3003
3036
|
def start_time(self) -> Optional[str]:
|
|
3004
3037
|
"""
|
|
3005
|
-
Policy effective time
|
|
3038
|
+
Policy effective time
|
|
3006
3039
|
"""
|
|
3007
3040
|
return pulumi.get(self, "start_time")
|
|
3008
3041
|
|
|
@@ -3010,7 +3043,7 @@ class V3ProvisionConfigScheduledAction(dict):
|
|
|
3010
3043
|
@pulumi.getter
|
|
3011
3044
|
def target(self) -> Optional[int]:
|
|
3012
3045
|
"""
|
|
3013
|
-
Number of reserved target resources
|
|
3046
|
+
Number of reserved target resources
|
|
3014
3047
|
"""
|
|
3015
3048
|
return pulumi.get(self, "target")
|
|
3016
3049
|
|
|
@@ -3064,13 +3097,13 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3064
3097
|
start_time: Optional[str] = None,
|
|
3065
3098
|
time_zone: Optional[str] = None):
|
|
3066
3099
|
"""
|
|
3067
|
-
:param str end_time: Policy expiration time
|
|
3068
|
-
:param int max_capacity: Maximum value of expansion
|
|
3069
|
-
:param float metric_target: Tracking value of the indicator
|
|
3070
|
-
:param str metric_type: Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3071
|
-
:param int min_capacity: Minimum Shrinkage
|
|
3072
|
-
:param str name: Policy Name
|
|
3073
|
-
:param str start_time: Policy Effective Time
|
|
3100
|
+
:param str end_time: Policy expiration time
|
|
3101
|
+
:param int max_capacity: Maximum value of expansion
|
|
3102
|
+
:param float metric_target: Tracking value of the indicator
|
|
3103
|
+
:param str metric_type: Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3104
|
+
:param int min_capacity: Minimum Shrinkage
|
|
3105
|
+
:param str name: Policy Name
|
|
3106
|
+
:param str start_time: Policy Effective Time
|
|
3074
3107
|
:param str time_zone: Time zone.
|
|
3075
3108
|
"""
|
|
3076
3109
|
if end_time is not None:
|
|
@@ -3094,7 +3127,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3094
3127
|
@pulumi.getter(name="endTime")
|
|
3095
3128
|
def end_time(self) -> Optional[str]:
|
|
3096
3129
|
"""
|
|
3097
|
-
Policy expiration time
|
|
3130
|
+
Policy expiration time
|
|
3098
3131
|
"""
|
|
3099
3132
|
return pulumi.get(self, "end_time")
|
|
3100
3133
|
|
|
@@ -3102,7 +3135,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3102
3135
|
@pulumi.getter(name="maxCapacity")
|
|
3103
3136
|
def max_capacity(self) -> Optional[int]:
|
|
3104
3137
|
"""
|
|
3105
|
-
Maximum value of expansion
|
|
3138
|
+
Maximum value of expansion
|
|
3106
3139
|
"""
|
|
3107
3140
|
return pulumi.get(self, "max_capacity")
|
|
3108
3141
|
|
|
@@ -3110,7 +3143,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3110
3143
|
@pulumi.getter(name="metricTarget")
|
|
3111
3144
|
def metric_target(self) -> Optional[float]:
|
|
3112
3145
|
"""
|
|
3113
|
-
Tracking value of the indicator
|
|
3146
|
+
Tracking value of the indicator
|
|
3114
3147
|
"""
|
|
3115
3148
|
return pulumi.get(self, "metric_target")
|
|
3116
3149
|
|
|
@@ -3118,7 +3151,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3118
3151
|
@pulumi.getter(name="metricType")
|
|
3119
3152
|
def metric_type(self) -> Optional[str]:
|
|
3120
3153
|
"""
|
|
3121
|
-
Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3154
|
+
Provisionedconcurrency utilization: Concurrency utilization of reserved mode instances. CPU utilization: CPU utilization. GPUMemUtilization:GPU utilization
|
|
3122
3155
|
"""
|
|
3123
3156
|
return pulumi.get(self, "metric_type")
|
|
3124
3157
|
|
|
@@ -3126,7 +3159,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3126
3159
|
@pulumi.getter(name="minCapacity")
|
|
3127
3160
|
def min_capacity(self) -> Optional[int]:
|
|
3128
3161
|
"""
|
|
3129
|
-
Minimum Shrinkage
|
|
3162
|
+
Minimum Shrinkage
|
|
3130
3163
|
"""
|
|
3131
3164
|
return pulumi.get(self, "min_capacity")
|
|
3132
3165
|
|
|
@@ -3134,7 +3167,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3134
3167
|
@pulumi.getter
|
|
3135
3168
|
def name(self) -> Optional[str]:
|
|
3136
3169
|
"""
|
|
3137
|
-
Policy Name
|
|
3170
|
+
Policy Name
|
|
3138
3171
|
"""
|
|
3139
3172
|
return pulumi.get(self, "name")
|
|
3140
3173
|
|
|
@@ -3142,7 +3175,7 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3142
3175
|
@pulumi.getter(name="startTime")
|
|
3143
3176
|
def start_time(self) -> Optional[str]:
|
|
3144
3177
|
"""
|
|
3145
|
-
Policy Effective Time
|
|
3178
|
+
Policy Effective Time
|
|
3146
3179
|
"""
|
|
3147
3180
|
return pulumi.get(self, "start_time")
|
|
3148
3181
|
|
|
@@ -3155,6 +3188,56 @@ class V3ProvisionConfigTargetTrackingPolicy(dict):
|
|
|
3155
3188
|
return pulumi.get(self, "time_zone")
|
|
3156
3189
|
|
|
3157
3190
|
|
|
3191
|
+
@pulumi.output_type
|
|
3192
|
+
class V3TriggerHttpTrigger(dict):
|
|
3193
|
+
@staticmethod
|
|
3194
|
+
def __key_warning(key: str):
|
|
3195
|
+
suggest = None
|
|
3196
|
+
if key == "urlInternet":
|
|
3197
|
+
suggest = "url_internet"
|
|
3198
|
+
elif key == "urlIntranet":
|
|
3199
|
+
suggest = "url_intranet"
|
|
3200
|
+
|
|
3201
|
+
if suggest:
|
|
3202
|
+
pulumi.log.warn(f"Key '{key}' not found in V3TriggerHttpTrigger. Access the value via the '{suggest}' property getter instead.")
|
|
3203
|
+
|
|
3204
|
+
def __getitem__(self, key: str) -> Any:
|
|
3205
|
+
V3TriggerHttpTrigger.__key_warning(key)
|
|
3206
|
+
return super().__getitem__(key)
|
|
3207
|
+
|
|
3208
|
+
def get(self, key: str, default = None) -> Any:
|
|
3209
|
+
V3TriggerHttpTrigger.__key_warning(key)
|
|
3210
|
+
return super().get(key, default)
|
|
3211
|
+
|
|
3212
|
+
def __init__(__self__, *,
|
|
3213
|
+
url_internet: Optional[str] = None,
|
|
3214
|
+
url_intranet: Optional[str] = None):
|
|
3215
|
+
"""
|
|
3216
|
+
:param str url_internet: The public domain name address. On the Internet, you can access the HTTP Trigger through the HTTP protocol or HTTPS protocol.
|
|
3217
|
+
:param str url_intranet: The private domain name address. In a VPC, you can access the HTTP Trigger through HTTP or HTTPS.
|
|
3218
|
+
"""
|
|
3219
|
+
if url_internet is not None:
|
|
3220
|
+
pulumi.set(__self__, "url_internet", url_internet)
|
|
3221
|
+
if url_intranet is not None:
|
|
3222
|
+
pulumi.set(__self__, "url_intranet", url_intranet)
|
|
3223
|
+
|
|
3224
|
+
@property
|
|
3225
|
+
@pulumi.getter(name="urlInternet")
|
|
3226
|
+
def url_internet(self) -> Optional[str]:
|
|
3227
|
+
"""
|
|
3228
|
+
The public domain name address. On the Internet, you can access the HTTP Trigger through the HTTP protocol or HTTPS protocol.
|
|
3229
|
+
"""
|
|
3230
|
+
return pulumi.get(self, "url_internet")
|
|
3231
|
+
|
|
3232
|
+
@property
|
|
3233
|
+
@pulumi.getter(name="urlIntranet")
|
|
3234
|
+
def url_intranet(self) -> Optional[str]:
|
|
3235
|
+
"""
|
|
3236
|
+
The private domain name address. In a VPC, you can access the HTTP Trigger through HTTP or HTTPS.
|
|
3237
|
+
"""
|
|
3238
|
+
return pulumi.get(self, "url_intranet")
|
|
3239
|
+
|
|
3240
|
+
|
|
3158
3241
|
@pulumi.output_type
|
|
3159
3242
|
class GetCustomDomainsDomainResult(dict):
|
|
3160
3243
|
def __init__(__self__, *,
|