pulumi-aws-native 1.38.0a1761631437__py3-none-any.whl → 1.39.0a1762376209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_aws_native/__init__.py +19 -1
- pulumi_aws_native/amazonmq/_enums.py +4 -12
- pulumi_aws_native/amazonmq/_inputs.py +21 -91
- pulumi_aws_native/amazonmq/broker.py +56 -67
- pulumi_aws_native/amazonmq/get_broker.py +6 -13
- pulumi_aws_native/amazonmq/outputs.py +14 -54
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +34 -0
- pulumi_aws_native/batch/job_definition.py +29 -0
- pulumi_aws_native/batch/outputs.py +37 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +83 -26
- pulumi_aws_native/datazone/outputs.py +84 -0
- pulumi_aws_native/ec2/__init__.py +2 -0
- pulumi_aws_native/ec2/_enums.py +19 -0
- pulumi_aws_native/ec2/_inputs.py +15 -12
- pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
- pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +23 -0
- pulumi_aws_native/ecs/_inputs.py +230 -23
- pulumi_aws_native/ecs/outputs.py +195 -15
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
- pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
- pulumi_aws_native/mediapackagev2/outputs.py +4 -0
- pulumi_aws_native/networkfirewall/_enums.py +2 -0
- pulumi_aws_native/networkfirewall/_inputs.py +20 -0
- pulumi_aws_native/networkfirewall/firewall.py +10 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
- pulumi_aws_native/networkfirewall/outputs.py +14 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +44 -0
- pulumi_aws_native/rtbfabric/_inputs.py +330 -0
- pulumi_aws_native/rtbfabric/get_link.py +199 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +344 -0
- pulumi_aws_native/rtbfabric/outputs.py +306 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +86 -0
- pulumi_aws_native/transfer/connector.py +86 -19
- pulumi_aws_native/transfer/get_connector.py +43 -1
- pulumi_aws_native/transfer/outputs.py +86 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/RECORD +116 -96
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/top_level.txt +0 -0
pulumi_aws_native/eks/outputs.py
CHANGED
|
@@ -46,6 +46,7 @@ __all__ = [
|
|
|
46
46
|
'NamespaceConfigProperties',
|
|
47
47
|
'NodegroupLaunchTemplateSpecification',
|
|
48
48
|
'NodegroupNodeRepairConfig',
|
|
49
|
+
'NodegroupNodeRepairConfigOverrides',
|
|
49
50
|
'NodegroupRemoteAccess',
|
|
50
51
|
'NodegroupScalingConfig',
|
|
51
52
|
'NodegroupTaint',
|
|
@@ -1317,14 +1318,59 @@ class NodegroupNodeRepairConfig(dict):
|
|
|
1317
1318
|
"""
|
|
1318
1319
|
The node auto repair configuration for node group.
|
|
1319
1320
|
"""
|
|
1321
|
+
@staticmethod
|
|
1322
|
+
def __key_warning(key: str):
|
|
1323
|
+
suggest = None
|
|
1324
|
+
if key == "maxParallelNodesRepairedCount":
|
|
1325
|
+
suggest = "max_parallel_nodes_repaired_count"
|
|
1326
|
+
elif key == "maxParallelNodesRepairedPercentage":
|
|
1327
|
+
suggest = "max_parallel_nodes_repaired_percentage"
|
|
1328
|
+
elif key == "maxUnhealthyNodeThresholdCount":
|
|
1329
|
+
suggest = "max_unhealthy_node_threshold_count"
|
|
1330
|
+
elif key == "maxUnhealthyNodeThresholdPercentage":
|
|
1331
|
+
suggest = "max_unhealthy_node_threshold_percentage"
|
|
1332
|
+
elif key == "nodeRepairConfigOverrides":
|
|
1333
|
+
suggest = "node_repair_config_overrides"
|
|
1334
|
+
|
|
1335
|
+
if suggest:
|
|
1336
|
+
pulumi.log.warn(f"Key '{key}' not found in NodegroupNodeRepairConfig. Access the value via the '{suggest}' property getter instead.")
|
|
1337
|
+
|
|
1338
|
+
def __getitem__(self, key: str) -> Any:
|
|
1339
|
+
NodegroupNodeRepairConfig.__key_warning(key)
|
|
1340
|
+
return super().__getitem__(key)
|
|
1341
|
+
|
|
1342
|
+
def get(self, key: str, default = None) -> Any:
|
|
1343
|
+
NodegroupNodeRepairConfig.__key_warning(key)
|
|
1344
|
+
return super().get(key, default)
|
|
1345
|
+
|
|
1320
1346
|
def __init__(__self__, *,
|
|
1321
|
-
enabled: Optional[_builtins.bool] = None
|
|
1347
|
+
enabled: Optional[_builtins.bool] = None,
|
|
1348
|
+
max_parallel_nodes_repaired_count: Optional[_builtins.int] = None,
|
|
1349
|
+
max_parallel_nodes_repaired_percentage: Optional[_builtins.int] = None,
|
|
1350
|
+
max_unhealthy_node_threshold_count: Optional[_builtins.int] = None,
|
|
1351
|
+
max_unhealthy_node_threshold_percentage: Optional[_builtins.int] = None,
|
|
1352
|
+
node_repair_config_overrides: Optional[Sequence['outputs.NodegroupNodeRepairConfigOverrides']] = None):
|
|
1322
1353
|
"""
|
|
1323
1354
|
The node auto repair configuration for node group.
|
|
1324
1355
|
:param _builtins.bool enabled: Set this value to true to enable node auto repair for the node group.
|
|
1356
|
+
:param _builtins.int max_parallel_nodes_repaired_count: Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a count of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set MaxParallelNodesRepairedPercentage at the same time.
|
|
1357
|
+
:param _builtins.int max_parallel_nodes_repaired_percentage: Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a percentage of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set MaxParallelNodesRepairedCount at the same time.
|
|
1358
|
+
:param _builtins.int max_unhealthy_node_threshold_count: Specify a count threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set MaxUnhealthyNodeThresholdPercentage at the same time.
|
|
1359
|
+
:param _builtins.int max_unhealthy_node_threshold_percentage: Specify a percentage threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set MaxUnhealthyNodeThresholdCount at the same time.
|
|
1360
|
+
:param Sequence['NodegroupNodeRepairConfigOverrides'] node_repair_config_overrides: Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.
|
|
1325
1361
|
"""
|
|
1326
1362
|
if enabled is not None:
|
|
1327
1363
|
pulumi.set(__self__, "enabled", enabled)
|
|
1364
|
+
if max_parallel_nodes_repaired_count is not None:
|
|
1365
|
+
pulumi.set(__self__, "max_parallel_nodes_repaired_count", max_parallel_nodes_repaired_count)
|
|
1366
|
+
if max_parallel_nodes_repaired_percentage is not None:
|
|
1367
|
+
pulumi.set(__self__, "max_parallel_nodes_repaired_percentage", max_parallel_nodes_repaired_percentage)
|
|
1368
|
+
if max_unhealthy_node_threshold_count is not None:
|
|
1369
|
+
pulumi.set(__self__, "max_unhealthy_node_threshold_count", max_unhealthy_node_threshold_count)
|
|
1370
|
+
if max_unhealthy_node_threshold_percentage is not None:
|
|
1371
|
+
pulumi.set(__self__, "max_unhealthy_node_threshold_percentage", max_unhealthy_node_threshold_percentage)
|
|
1372
|
+
if node_repair_config_overrides is not None:
|
|
1373
|
+
pulumi.set(__self__, "node_repair_config_overrides", node_repair_config_overrides)
|
|
1328
1374
|
|
|
1329
1375
|
@_builtins.property
|
|
1330
1376
|
@pulumi.getter
|
|
@@ -1334,6 +1380,128 @@ class NodegroupNodeRepairConfig(dict):
|
|
|
1334
1380
|
"""
|
|
1335
1381
|
return pulumi.get(self, "enabled")
|
|
1336
1382
|
|
|
1383
|
+
@_builtins.property
|
|
1384
|
+
@pulumi.getter(name="maxParallelNodesRepairedCount")
|
|
1385
|
+
def max_parallel_nodes_repaired_count(self) -> Optional[_builtins.int]:
|
|
1386
|
+
"""
|
|
1387
|
+
Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a count of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set MaxParallelNodesRepairedPercentage at the same time.
|
|
1388
|
+
"""
|
|
1389
|
+
return pulumi.get(self, "max_parallel_nodes_repaired_count")
|
|
1390
|
+
|
|
1391
|
+
@_builtins.property
|
|
1392
|
+
@pulumi.getter(name="maxParallelNodesRepairedPercentage")
|
|
1393
|
+
def max_parallel_nodes_repaired_percentage(self) -> Optional[_builtins.int]:
|
|
1394
|
+
"""
|
|
1395
|
+
Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a percentage of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set MaxParallelNodesRepairedCount at the same time.
|
|
1396
|
+
"""
|
|
1397
|
+
return pulumi.get(self, "max_parallel_nodes_repaired_percentage")
|
|
1398
|
+
|
|
1399
|
+
@_builtins.property
|
|
1400
|
+
@pulumi.getter(name="maxUnhealthyNodeThresholdCount")
|
|
1401
|
+
def max_unhealthy_node_threshold_count(self) -> Optional[_builtins.int]:
|
|
1402
|
+
"""
|
|
1403
|
+
Specify a count threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set MaxUnhealthyNodeThresholdPercentage at the same time.
|
|
1404
|
+
"""
|
|
1405
|
+
return pulumi.get(self, "max_unhealthy_node_threshold_count")
|
|
1406
|
+
|
|
1407
|
+
@_builtins.property
|
|
1408
|
+
@pulumi.getter(name="maxUnhealthyNodeThresholdPercentage")
|
|
1409
|
+
def max_unhealthy_node_threshold_percentage(self) -> Optional[_builtins.int]:
|
|
1410
|
+
"""
|
|
1411
|
+
Specify a percentage threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set MaxUnhealthyNodeThresholdCount at the same time.
|
|
1412
|
+
"""
|
|
1413
|
+
return pulumi.get(self, "max_unhealthy_node_threshold_percentage")
|
|
1414
|
+
|
|
1415
|
+
@_builtins.property
|
|
1416
|
+
@pulumi.getter(name="nodeRepairConfigOverrides")
|
|
1417
|
+
def node_repair_config_overrides(self) -> Optional[Sequence['outputs.NodegroupNodeRepairConfigOverrides']]:
|
|
1418
|
+
"""
|
|
1419
|
+
Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.
|
|
1420
|
+
"""
|
|
1421
|
+
return pulumi.get(self, "node_repair_config_overrides")
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
@pulumi.output_type
|
|
1425
|
+
class NodegroupNodeRepairConfigOverrides(dict):
|
|
1426
|
+
"""
|
|
1427
|
+
Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.
|
|
1428
|
+
"""
|
|
1429
|
+
@staticmethod
|
|
1430
|
+
def __key_warning(key: str):
|
|
1431
|
+
suggest = None
|
|
1432
|
+
if key == "minRepairWaitTimeMins":
|
|
1433
|
+
suggest = "min_repair_wait_time_mins"
|
|
1434
|
+
elif key == "nodeMonitoringCondition":
|
|
1435
|
+
suggest = "node_monitoring_condition"
|
|
1436
|
+
elif key == "nodeUnhealthyReason":
|
|
1437
|
+
suggest = "node_unhealthy_reason"
|
|
1438
|
+
elif key == "repairAction":
|
|
1439
|
+
suggest = "repair_action"
|
|
1440
|
+
|
|
1441
|
+
if suggest:
|
|
1442
|
+
pulumi.log.warn(f"Key '{key}' not found in NodegroupNodeRepairConfigOverrides. Access the value via the '{suggest}' property getter instead.")
|
|
1443
|
+
|
|
1444
|
+
def __getitem__(self, key: str) -> Any:
|
|
1445
|
+
NodegroupNodeRepairConfigOverrides.__key_warning(key)
|
|
1446
|
+
return super().__getitem__(key)
|
|
1447
|
+
|
|
1448
|
+
def get(self, key: str, default = None) -> Any:
|
|
1449
|
+
NodegroupNodeRepairConfigOverrides.__key_warning(key)
|
|
1450
|
+
return super().get(key, default)
|
|
1451
|
+
|
|
1452
|
+
def __init__(__self__, *,
|
|
1453
|
+
min_repair_wait_time_mins: Optional[_builtins.int] = None,
|
|
1454
|
+
node_monitoring_condition: Optional[_builtins.str] = None,
|
|
1455
|
+
node_unhealthy_reason: Optional[_builtins.str] = None,
|
|
1456
|
+
repair_action: Optional['NodegroupNodeRepairConfigOverridesRepairAction'] = None):
|
|
1457
|
+
"""
|
|
1458
|
+
Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.
|
|
1459
|
+
:param _builtins.int min_repair_wait_time_mins: Specify the minimum time in minutes to wait before attempting to repair a node with this specific NodeMonitoringCondition and NodeUnhealthyReason.
|
|
1460
|
+
:param _builtins.str node_monitoring_condition: Specify an unhealthy condition reported by the node monitoring agent that this override would apply to.
|
|
1461
|
+
:param _builtins.str node_unhealthy_reason: Specify a reason reported by the node monitoring agent that this override would apply to.
|
|
1462
|
+
:param 'NodegroupNodeRepairConfigOverridesRepairAction' repair_action: Specify the repair action to take for nodes when all of the specified conditions are met.
|
|
1463
|
+
"""
|
|
1464
|
+
if min_repair_wait_time_mins is not None:
|
|
1465
|
+
pulumi.set(__self__, "min_repair_wait_time_mins", min_repair_wait_time_mins)
|
|
1466
|
+
if node_monitoring_condition is not None:
|
|
1467
|
+
pulumi.set(__self__, "node_monitoring_condition", node_monitoring_condition)
|
|
1468
|
+
if node_unhealthy_reason is not None:
|
|
1469
|
+
pulumi.set(__self__, "node_unhealthy_reason", node_unhealthy_reason)
|
|
1470
|
+
if repair_action is not None:
|
|
1471
|
+
pulumi.set(__self__, "repair_action", repair_action)
|
|
1472
|
+
|
|
1473
|
+
@_builtins.property
|
|
1474
|
+
@pulumi.getter(name="minRepairWaitTimeMins")
|
|
1475
|
+
def min_repair_wait_time_mins(self) -> Optional[_builtins.int]:
|
|
1476
|
+
"""
|
|
1477
|
+
Specify the minimum time in minutes to wait before attempting to repair a node with this specific NodeMonitoringCondition and NodeUnhealthyReason.
|
|
1478
|
+
"""
|
|
1479
|
+
return pulumi.get(self, "min_repair_wait_time_mins")
|
|
1480
|
+
|
|
1481
|
+
@_builtins.property
|
|
1482
|
+
@pulumi.getter(name="nodeMonitoringCondition")
|
|
1483
|
+
def node_monitoring_condition(self) -> Optional[_builtins.str]:
|
|
1484
|
+
"""
|
|
1485
|
+
Specify an unhealthy condition reported by the node monitoring agent that this override would apply to.
|
|
1486
|
+
"""
|
|
1487
|
+
return pulumi.get(self, "node_monitoring_condition")
|
|
1488
|
+
|
|
1489
|
+
@_builtins.property
|
|
1490
|
+
@pulumi.getter(name="nodeUnhealthyReason")
|
|
1491
|
+
def node_unhealthy_reason(self) -> Optional[_builtins.str]:
|
|
1492
|
+
"""
|
|
1493
|
+
Specify a reason reported by the node monitoring agent that this override would apply to.
|
|
1494
|
+
"""
|
|
1495
|
+
return pulumi.get(self, "node_unhealthy_reason")
|
|
1496
|
+
|
|
1497
|
+
@_builtins.property
|
|
1498
|
+
@pulumi.getter(name="repairAction")
|
|
1499
|
+
def repair_action(self) -> Optional['NodegroupNodeRepairConfigOverridesRepairAction']:
|
|
1500
|
+
"""
|
|
1501
|
+
Specify the repair action to take for nodes when all of the specified conditions are met.
|
|
1502
|
+
"""
|
|
1503
|
+
return pulumi.get(self, "repair_action")
|
|
1504
|
+
|
|
1337
1505
|
|
|
1338
1506
|
@pulumi.output_type
|
|
1339
1507
|
class NodegroupRemoteAccess(dict):
|
|
@@ -2035,7 +2035,7 @@ if not MYPY:
|
|
|
2035
2035
|
regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2036
2036
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2037
2037
|
"""
|
|
2038
|
-
The host names. The maximum
|
|
2038
|
+
The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
2039
2039
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
2040
2040
|
"""
|
|
2041
2041
|
elif False:
|
|
@@ -2048,7 +2048,7 @@ class ListenerRuleHostHeaderConfigArgs:
|
|
|
2048
2048
|
values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
2049
2049
|
"""
|
|
2050
2050
|
Information about a host header condition.
|
|
2051
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The host names. The maximum
|
|
2051
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
2052
2052
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
2053
2053
|
"""
|
|
2054
2054
|
if regex_values is not None:
|
|
@@ -2069,7 +2069,7 @@ class ListenerRuleHostHeaderConfigArgs:
|
|
|
2069
2069
|
@pulumi.getter
|
|
2070
2070
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2071
2071
|
"""
|
|
2072
|
-
The host names. The maximum
|
|
2072
|
+
The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
2073
2073
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
2074
2074
|
"""
|
|
2075
2075
|
return pulumi.get(self, "values")
|
|
@@ -2092,7 +2092,7 @@ if not MYPY:
|
|
|
2092
2092
|
regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2093
2093
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2094
2094
|
"""
|
|
2095
|
-
The strings to compare against the value of the HTTP header. The maximum
|
|
2095
|
+
The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
2096
2096
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
2097
2097
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
2098
2098
|
"""
|
|
@@ -2109,7 +2109,7 @@ class ListenerRuleHttpHeaderConfigArgs:
|
|
|
2109
2109
|
Information about an HTTP header condition.
|
|
2110
2110
|
There is a set of standard HTTP header fields. You can also define custom HTTP header fields.
|
|
2111
2111
|
:param pulumi.Input[_builtins.str] http_header_name: The name of the HTTP header field. The maximum size is 40 characters. The header name is case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not supported.
|
|
2112
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The strings to compare against the value of the HTTP header. The maximum
|
|
2112
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
2113
2113
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
2114
2114
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
2115
2115
|
"""
|
|
@@ -2145,7 +2145,7 @@ class ListenerRuleHttpHeaderConfigArgs:
|
|
|
2145
2145
|
@pulumi.getter
|
|
2146
2146
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2147
2147
|
"""
|
|
2148
|
-
The strings to compare against the value of the HTTP header. The maximum
|
|
2148
|
+
The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
2149
2149
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
2150
2150
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
2151
2151
|
"""
|
|
@@ -2164,7 +2164,7 @@ if not MYPY:
|
|
|
2164
2164
|
"""
|
|
2165
2165
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2166
2166
|
"""
|
|
2167
|
-
The name of the request method. The maximum
|
|
2167
|
+
The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
2168
2168
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
2169
2169
|
"""
|
|
2170
2170
|
elif False:
|
|
@@ -2177,7 +2177,7 @@ class ListenerRuleHttpRequestMethodConfigArgs:
|
|
|
2177
2177
|
"""
|
|
2178
2178
|
Information about an HTTP method condition.
|
|
2179
2179
|
HTTP defines a set of request methods, also referred to as HTTP verbs. For more information, see the [HTTP Method Registry](https://docs.aws.amazon.com/https://www.iana.org/assignments/http-methods/http-methods.xhtml). You can also define custom HTTP methods.
|
|
2180
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The name of the request method. The maximum
|
|
2180
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
2181
2181
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
2182
2182
|
"""
|
|
2183
2183
|
if values is not None:
|
|
@@ -2187,7 +2187,7 @@ class ListenerRuleHttpRequestMethodConfigArgs:
|
|
|
2187
2187
|
@pulumi.getter
|
|
2188
2188
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2189
2189
|
"""
|
|
2190
|
-
The name of the request method. The maximum
|
|
2190
|
+
The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
2191
2191
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
2192
2192
|
"""
|
|
2193
2193
|
return pulumi.get(self, "values")
|
|
@@ -2257,7 +2257,7 @@ if not MYPY:
|
|
|
2257
2257
|
"""
|
|
2258
2258
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgsDict']]]]
|
|
2259
2259
|
"""
|
|
2260
|
-
The key/value pairs or values to find in the query string. The maximum
|
|
2260
|
+
The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
2261
2261
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
2262
2262
|
"""
|
|
2263
2263
|
elif False:
|
|
@@ -2270,7 +2270,7 @@ class ListenerRuleQueryStringConfigArgs:
|
|
|
2270
2270
|
"""
|
|
2271
2271
|
Information about a query string condition.
|
|
2272
2272
|
The query string component of a URI starts after the first '?' character and is terminated by either a '#' character or the end of the URI. A typical query string contains key/value pairs separated by '&' characters. The allowed characters are specified by RFC 3986. Any character can be percentage encoded.
|
|
2273
|
-
:param pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]] values: The key/value pairs or values to find in the query string. The maximum
|
|
2273
|
+
:param pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]] values: The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
2274
2274
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
2275
2275
|
"""
|
|
2276
2276
|
if values is not None:
|
|
@@ -2280,7 +2280,7 @@ class ListenerRuleQueryStringConfigArgs:
|
|
|
2280
2280
|
@pulumi.getter
|
|
2281
2281
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]]]:
|
|
2282
2282
|
"""
|
|
2283
|
-
The key/value pairs or values to find in the query string. The maximum
|
|
2283
|
+
The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
2284
2284
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
2285
2285
|
"""
|
|
2286
2286
|
return pulumi.get(self, "values")
|
|
@@ -39,7 +39,7 @@ class LoadBalancerArgs:
|
|
|
39
39
|
type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
40
40
|
"""
|
|
41
41
|
The set of arguments for constructing a LoadBalancer resource.
|
|
42
|
-
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
42
|
+
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
43
43
|
:param pulumi.Input[_builtins.str] enable_prefix_for_ipv6_source_nat: [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack``. The default value is ``off``.
|
|
44
44
|
:param pulumi.Input[_builtins.str] enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
|
|
45
45
|
You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
@@ -104,7 +104,7 @@ class LoadBalancerArgs:
|
|
|
104
104
|
@pulumi.getter(name="enableCapacityReservationProvisionStabilize")
|
|
105
105
|
def enable_capacity_reservation_provision_stabilize(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
106
106
|
"""
|
|
107
|
-
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
107
|
+
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
108
108
|
"""
|
|
109
109
|
return pulumi.get(self, "enable_capacity_reservation_provision_stabilize")
|
|
110
110
|
|
|
@@ -312,7 +312,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
312
312
|
|
|
313
313
|
:param str resource_name: The name of the resource.
|
|
314
314
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
315
|
-
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
315
|
+
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
316
316
|
:param pulumi.Input[_builtins.str] enable_prefix_for_ipv6_source_nat: [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack``. The default value is ``off``.
|
|
317
317
|
:param pulumi.Input[_builtins.str] enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
|
|
318
318
|
You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
@@ -475,7 +475,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
475
475
|
@pulumi.getter(name="enableCapacityReservationProvisionStabilize")
|
|
476
476
|
def enable_capacity_reservation_provision_stabilize(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
477
477
|
"""
|
|
478
|
-
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
478
|
+
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
479
479
|
"""
|
|
480
480
|
return pulumi.get(self, "enable_capacity_reservation_provision_stabilize")
|
|
481
481
|
|
|
@@ -1589,7 +1589,7 @@ class ListenerRuleHostHeaderConfig(dict):
|
|
|
1589
1589
|
values: Optional[Sequence[_builtins.str]] = None):
|
|
1590
1590
|
"""
|
|
1591
1591
|
Information about a host header condition.
|
|
1592
|
-
:param Sequence[_builtins.str] values: The host names. The maximum
|
|
1592
|
+
:param Sequence[_builtins.str] values: The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
1593
1593
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
1594
1594
|
"""
|
|
1595
1595
|
if regex_values is not None:
|
|
@@ -1606,7 +1606,7 @@ class ListenerRuleHostHeaderConfig(dict):
|
|
|
1606
1606
|
@pulumi.getter
|
|
1607
1607
|
def values(self) -> Optional[Sequence[_builtins.str]]:
|
|
1608
1608
|
"""
|
|
1609
|
-
The host names. The maximum
|
|
1609
|
+
The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
1610
1610
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
1611
1611
|
"""
|
|
1612
1612
|
return pulumi.get(self, "values")
|
|
@@ -1645,7 +1645,7 @@ class ListenerRuleHttpHeaderConfig(dict):
|
|
|
1645
1645
|
Information about an HTTP header condition.
|
|
1646
1646
|
There is a set of standard HTTP header fields. You can also define custom HTTP header fields.
|
|
1647
1647
|
:param _builtins.str http_header_name: The name of the HTTP header field. The maximum size is 40 characters. The header name is case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not supported.
|
|
1648
|
-
:param Sequence[_builtins.str] values: The strings to compare against the value of the HTTP header. The maximum
|
|
1648
|
+
:param Sequence[_builtins.str] values: The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
1649
1649
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
1650
1650
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
1651
1651
|
"""
|
|
@@ -1673,7 +1673,7 @@ class ListenerRuleHttpHeaderConfig(dict):
|
|
|
1673
1673
|
@pulumi.getter
|
|
1674
1674
|
def values(self) -> Optional[Sequence[_builtins.str]]:
|
|
1675
1675
|
"""
|
|
1676
|
-
The strings to compare against the value of the HTTP header. The maximum
|
|
1676
|
+
The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
1677
1677
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
1678
1678
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
1679
1679
|
"""
|
|
@@ -1691,7 +1691,7 @@ class ListenerRuleHttpRequestMethodConfig(dict):
|
|
|
1691
1691
|
"""
|
|
1692
1692
|
Information about an HTTP method condition.
|
|
1693
1693
|
HTTP defines a set of request methods, also referred to as HTTP verbs. For more information, see the [HTTP Method Registry](https://docs.aws.amazon.com/https://www.iana.org/assignments/http-methods/http-methods.xhtml). You can also define custom HTTP methods.
|
|
1694
|
-
:param Sequence[_builtins.str] values: The name of the request method. The maximum
|
|
1694
|
+
:param Sequence[_builtins.str] values: The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
1695
1695
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
1696
1696
|
"""
|
|
1697
1697
|
if values is not None:
|
|
@@ -1701,7 +1701,7 @@ class ListenerRuleHttpRequestMethodConfig(dict):
|
|
|
1701
1701
|
@pulumi.getter
|
|
1702
1702
|
def values(self) -> Optional[Sequence[_builtins.str]]:
|
|
1703
1703
|
"""
|
|
1704
|
-
The name of the request method. The maximum
|
|
1704
|
+
The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
1705
1705
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
1706
1706
|
"""
|
|
1707
1707
|
return pulumi.get(self, "values")
|
|
@@ -1768,7 +1768,7 @@ class ListenerRuleQueryStringConfig(dict):
|
|
|
1768
1768
|
"""
|
|
1769
1769
|
Information about a query string condition.
|
|
1770
1770
|
The query string component of a URI starts after the first '?' character and is terminated by either a '#' character or the end of the URI. A typical query string contains key/value pairs separated by '&' characters. The allowed characters are specified by RFC 3986. Any character can be percentage encoded.
|
|
1771
|
-
:param Sequence['ListenerRuleQueryStringKeyValue'] values: The key/value pairs or values to find in the query string. The maximum
|
|
1771
|
+
:param Sequence['ListenerRuleQueryStringKeyValue'] values: The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
1772
1772
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
1773
1773
|
"""
|
|
1774
1774
|
if values is not None:
|
|
@@ -1778,7 +1778,7 @@ class ListenerRuleQueryStringConfig(dict):
|
|
|
1778
1778
|
@pulumi.getter
|
|
1779
1779
|
def values(self) -> Optional[Sequence['outputs.ListenerRuleQueryStringKeyValue']]:
|
|
1780
1780
|
"""
|
|
1781
|
-
The key/value pairs or values to find in the query string. The maximum
|
|
1781
|
+
The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
1782
1782
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
1783
1783
|
"""
|
|
1784
1784
|
return pulumi.get(self, "values")
|
|
@@ -11,12 +11,14 @@ from .crawler import *
|
|
|
11
11
|
from .database import *
|
|
12
12
|
from .get_crawler import *
|
|
13
13
|
from .get_database import *
|
|
14
|
+
from .get_integration_resource_property import *
|
|
14
15
|
from .get_job import *
|
|
15
16
|
from .get_registry import *
|
|
16
17
|
from .get_schema import *
|
|
17
18
|
from .get_schema_version import *
|
|
18
19
|
from .get_trigger import *
|
|
19
20
|
from .get_usage_profile import *
|
|
21
|
+
from .integration_resource_property import *
|
|
20
22
|
from .job import *
|
|
21
23
|
from .registry import *
|
|
22
24
|
from .schema import *
|
|
@@ -66,6 +66,10 @@ __all__ = [
|
|
|
66
66
|
'SchemaVersionSchemaArgsDict',
|
|
67
67
|
'SchemaVersionArgs',
|
|
68
68
|
'SchemaVersionArgsDict',
|
|
69
|
+
'SourceProcessingPropertiesPropertiesArgs',
|
|
70
|
+
'SourceProcessingPropertiesPropertiesArgsDict',
|
|
71
|
+
'TargetProcessingPropertiesPropertiesArgs',
|
|
72
|
+
'TargetProcessingPropertiesPropertiesArgsDict',
|
|
69
73
|
'TriggerActionArgs',
|
|
70
74
|
'TriggerActionArgsDict',
|
|
71
75
|
'TriggerConditionArgs',
|
|
@@ -1980,6 +1984,136 @@ class SchemaVersionArgs:
|
|
|
1980
1984
|
pulumi.set(self, "version_number", value)
|
|
1981
1985
|
|
|
1982
1986
|
|
|
1987
|
+
if not MYPY:
|
|
1988
|
+
class SourceProcessingPropertiesPropertiesArgsDict(TypedDict):
|
|
1989
|
+
"""
|
|
1990
|
+
The resource properties associated with the integration source.
|
|
1991
|
+
"""
|
|
1992
|
+
role_arn: pulumi.Input[_builtins.str]
|
|
1993
|
+
"""
|
|
1994
|
+
The IAM role to access the Glue connection.
|
|
1995
|
+
"""
|
|
1996
|
+
elif False:
|
|
1997
|
+
SourceProcessingPropertiesPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
1998
|
+
|
|
1999
|
+
@pulumi.input_type
|
|
2000
|
+
class SourceProcessingPropertiesPropertiesArgs:
|
|
2001
|
+
def __init__(__self__, *,
|
|
2002
|
+
role_arn: pulumi.Input[_builtins.str]):
|
|
2003
|
+
"""
|
|
2004
|
+
The resource properties associated with the integration source.
|
|
2005
|
+
:param pulumi.Input[_builtins.str] role_arn: The IAM role to access the Glue connection.
|
|
2006
|
+
"""
|
|
2007
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
2008
|
+
|
|
2009
|
+
@_builtins.property
|
|
2010
|
+
@pulumi.getter(name="roleArn")
|
|
2011
|
+
def role_arn(self) -> pulumi.Input[_builtins.str]:
|
|
2012
|
+
"""
|
|
2013
|
+
The IAM role to access the Glue connection.
|
|
2014
|
+
"""
|
|
2015
|
+
return pulumi.get(self, "role_arn")
|
|
2016
|
+
|
|
2017
|
+
@role_arn.setter
|
|
2018
|
+
def role_arn(self, value: pulumi.Input[_builtins.str]):
|
|
2019
|
+
pulumi.set(self, "role_arn", value)
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
if not MYPY:
|
|
2023
|
+
class TargetProcessingPropertiesPropertiesArgsDict(TypedDict):
|
|
2024
|
+
"""
|
|
2025
|
+
The resource properties associated with the integration target.
|
|
2026
|
+
"""
|
|
2027
|
+
role_arn: pulumi.Input[_builtins.str]
|
|
2028
|
+
"""
|
|
2029
|
+
The IAM role to access the Glue database.
|
|
2030
|
+
"""
|
|
2031
|
+
connection_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
2032
|
+
"""
|
|
2033
|
+
The Glue network connection to configure the Glue job running in the customer VPC.
|
|
2034
|
+
"""
|
|
2035
|
+
event_bus_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
2036
|
+
"""
|
|
2037
|
+
The ARN of an Eventbridge event bus to receive the integration status notification.
|
|
2038
|
+
"""
|
|
2039
|
+
kms_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
2040
|
+
"""
|
|
2041
|
+
The ARN of the KMS key used for encryption.
|
|
2042
|
+
"""
|
|
2043
|
+
elif False:
|
|
2044
|
+
TargetProcessingPropertiesPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
2045
|
+
|
|
2046
|
+
@pulumi.input_type
|
|
2047
|
+
class TargetProcessingPropertiesPropertiesArgs:
|
|
2048
|
+
def __init__(__self__, *,
|
|
2049
|
+
role_arn: pulumi.Input[_builtins.str],
|
|
2050
|
+
connection_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2051
|
+
event_bus_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2052
|
+
kms_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2053
|
+
"""
|
|
2054
|
+
The resource properties associated with the integration target.
|
|
2055
|
+
:param pulumi.Input[_builtins.str] role_arn: The IAM role to access the Glue database.
|
|
2056
|
+
:param pulumi.Input[_builtins.str] connection_name: The Glue network connection to configure the Glue job running in the customer VPC.
|
|
2057
|
+
:param pulumi.Input[_builtins.str] event_bus_arn: The ARN of an Eventbridge event bus to receive the integration status notification.
|
|
2058
|
+
:param pulumi.Input[_builtins.str] kms_arn: The ARN of the KMS key used for encryption.
|
|
2059
|
+
"""
|
|
2060
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
2061
|
+
if connection_name is not None:
|
|
2062
|
+
pulumi.set(__self__, "connection_name", connection_name)
|
|
2063
|
+
if event_bus_arn is not None:
|
|
2064
|
+
pulumi.set(__self__, "event_bus_arn", event_bus_arn)
|
|
2065
|
+
if kms_arn is not None:
|
|
2066
|
+
pulumi.set(__self__, "kms_arn", kms_arn)
|
|
2067
|
+
|
|
2068
|
+
@_builtins.property
|
|
2069
|
+
@pulumi.getter(name="roleArn")
|
|
2070
|
+
def role_arn(self) -> pulumi.Input[_builtins.str]:
|
|
2071
|
+
"""
|
|
2072
|
+
The IAM role to access the Glue database.
|
|
2073
|
+
"""
|
|
2074
|
+
return pulumi.get(self, "role_arn")
|
|
2075
|
+
|
|
2076
|
+
@role_arn.setter
|
|
2077
|
+
def role_arn(self, value: pulumi.Input[_builtins.str]):
|
|
2078
|
+
pulumi.set(self, "role_arn", value)
|
|
2079
|
+
|
|
2080
|
+
@_builtins.property
|
|
2081
|
+
@pulumi.getter(name="connectionName")
|
|
2082
|
+
def connection_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2083
|
+
"""
|
|
2084
|
+
The Glue network connection to configure the Glue job running in the customer VPC.
|
|
2085
|
+
"""
|
|
2086
|
+
return pulumi.get(self, "connection_name")
|
|
2087
|
+
|
|
2088
|
+
@connection_name.setter
|
|
2089
|
+
def connection_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2090
|
+
pulumi.set(self, "connection_name", value)
|
|
2091
|
+
|
|
2092
|
+
@_builtins.property
|
|
2093
|
+
@pulumi.getter(name="eventBusArn")
|
|
2094
|
+
def event_bus_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2095
|
+
"""
|
|
2096
|
+
The ARN of an Eventbridge event bus to receive the integration status notification.
|
|
2097
|
+
"""
|
|
2098
|
+
return pulumi.get(self, "event_bus_arn")
|
|
2099
|
+
|
|
2100
|
+
@event_bus_arn.setter
|
|
2101
|
+
def event_bus_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2102
|
+
pulumi.set(self, "event_bus_arn", value)
|
|
2103
|
+
|
|
2104
|
+
@_builtins.property
|
|
2105
|
+
@pulumi.getter(name="kmsArn")
|
|
2106
|
+
def kms_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2107
|
+
"""
|
|
2108
|
+
The ARN of the KMS key used for encryption.
|
|
2109
|
+
"""
|
|
2110
|
+
return pulumi.get(self, "kms_arn")
|
|
2111
|
+
|
|
2112
|
+
@kms_arn.setter
|
|
2113
|
+
def kms_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2114
|
+
pulumi.set(self, "kms_arn", value)
|
|
2115
|
+
|
|
2116
|
+
|
|
1983
2117
|
if not MYPY:
|
|
1984
2118
|
class TriggerActionArgsDict(TypedDict):
|
|
1985
2119
|
"""
|