pulumi-aws-native 1.38.0a1761718100__py3-none-any.whl → 1.38.0a1761750358__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-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +2 -0
- 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/batch/_inputs.py +25 -0
- pulumi_aws_native/batch/job_definition.py +21 -0
- pulumi_aws_native/batch/outputs.py +31 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +54 -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/outputs.py +10 -8
- pulumi_aws_native/ecs/_enums.py +14 -0
- pulumi_aws_native/ecs/_inputs.py +134 -8
- pulumi_aws_native/ecs/outputs.py +135 -5
- 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/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- 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 +13 -0
- pulumi_aws_native/networkfirewall/firewall.py +7 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +12 -1
- pulumi_aws_native/networkfirewall/outputs.py +10 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +41 -0
- pulumi_aws_native/rtbfabric/_inputs.py +260 -0
- pulumi_aws_native/rtbfabric/get_link.py +181 -0
- pulumi_aws_native/rtbfabric/link.py +293 -0
- pulumi_aws_native/rtbfabric/outputs.py +260 -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/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +77 -0
- pulumi_aws_native/transfer/connector.py +83 -19
- pulumi_aws_native/transfer/get_connector.py +40 -1
- pulumi_aws_native/transfer/outputs.py +80 -0
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/RECORD +54 -50
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/top_level.txt +0 -0
|
@@ -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")
|
|
@@ -48,6 +48,8 @@ __all__ = [
|
|
|
48
48
|
'DistributionConfigurationSsmParameterConfigurationArgsDict',
|
|
49
49
|
'DistributionConfigurationTargetContainerRepositoryArgs',
|
|
50
50
|
'DistributionConfigurationTargetContainerRepositoryArgsDict',
|
|
51
|
+
'ImageDeletionSettingsArgs',
|
|
52
|
+
'ImageDeletionSettingsArgsDict',
|
|
51
53
|
'ImageEcrConfigurationArgs',
|
|
52
54
|
'ImageEcrConfigurationArgsDict',
|
|
53
55
|
'ImageLoggingConfigurationArgs',
|
|
@@ -1512,6 +1514,41 @@ class DistributionConfigurationTargetContainerRepositoryArgs:
|
|
|
1512
1514
|
pulumi.set(self, "service", value)
|
|
1513
1515
|
|
|
1514
1516
|
|
|
1517
|
+
if not MYPY:
|
|
1518
|
+
class ImageDeletionSettingsArgsDict(TypedDict):
|
|
1519
|
+
"""
|
|
1520
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1521
|
+
"""
|
|
1522
|
+
execution_role: pulumi.Input[_builtins.str]
|
|
1523
|
+
"""
|
|
1524
|
+
The execution role to use for deleting the image, as well as underlying resources.
|
|
1525
|
+
"""
|
|
1526
|
+
elif False:
|
|
1527
|
+
ImageDeletionSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
|
1528
|
+
|
|
1529
|
+
@pulumi.input_type
|
|
1530
|
+
class ImageDeletionSettingsArgs:
|
|
1531
|
+
def __init__(__self__, *,
|
|
1532
|
+
execution_role: pulumi.Input[_builtins.str]):
|
|
1533
|
+
"""
|
|
1534
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1535
|
+
:param pulumi.Input[_builtins.str] execution_role: The execution role to use for deleting the image, as well as underlying resources.
|
|
1536
|
+
"""
|
|
1537
|
+
pulumi.set(__self__, "execution_role", execution_role)
|
|
1538
|
+
|
|
1539
|
+
@_builtins.property
|
|
1540
|
+
@pulumi.getter(name="executionRole")
|
|
1541
|
+
def execution_role(self) -> pulumi.Input[_builtins.str]:
|
|
1542
|
+
"""
|
|
1543
|
+
The execution role to use for deleting the image, as well as underlying resources.
|
|
1544
|
+
"""
|
|
1545
|
+
return pulumi.get(self, "execution_role")
|
|
1546
|
+
|
|
1547
|
+
@execution_role.setter
|
|
1548
|
+
def execution_role(self, value: pulumi.Input[_builtins.str]):
|
|
1549
|
+
pulumi.set(self, "execution_role", value)
|
|
1550
|
+
|
|
1551
|
+
|
|
1515
1552
|
if not MYPY:
|
|
1516
1553
|
class ImageEcrConfigurationArgsDict(TypedDict):
|
|
1517
1554
|
"""
|
|
@@ -23,6 +23,7 @@ __all__ = ['ImageArgs', 'Image']
|
|
|
23
23
|
class ImageArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
25
|
container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
deletion_settings: Optional[pulumi.Input['ImageDeletionSettingsArgs']] = None,
|
|
26
27
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
28
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
28
29
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -37,6 +38,7 @@ class ImageArgs:
|
|
|
37
38
|
"""
|
|
38
39
|
The set of arguments for constructing a Image resource.
|
|
39
40
|
:param pulumi.Input[_builtins.str] container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
|
|
41
|
+
:param pulumi.Input['ImageDeletionSettingsArgs'] deletion_settings: The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
40
42
|
:param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
|
|
41
43
|
:param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
|
|
42
44
|
:param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
|
|
@@ -51,6 +53,8 @@ class ImageArgs:
|
|
|
51
53
|
"""
|
|
52
54
|
if container_recipe_arn is not None:
|
|
53
55
|
pulumi.set(__self__, "container_recipe_arn", container_recipe_arn)
|
|
56
|
+
if deletion_settings is not None:
|
|
57
|
+
pulumi.set(__self__, "deletion_settings", deletion_settings)
|
|
54
58
|
if distribution_configuration_arn is not None:
|
|
55
59
|
pulumi.set(__self__, "distribution_configuration_arn", distribution_configuration_arn)
|
|
56
60
|
if enhanced_image_metadata_enabled is not None:
|
|
@@ -86,6 +90,18 @@ class ImageArgs:
|
|
|
86
90
|
def container_recipe_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
87
91
|
pulumi.set(self, "container_recipe_arn", value)
|
|
88
92
|
|
|
93
|
+
@_builtins.property
|
|
94
|
+
@pulumi.getter(name="deletionSettings")
|
|
95
|
+
def deletion_settings(self) -> Optional[pulumi.Input['ImageDeletionSettingsArgs']]:
|
|
96
|
+
"""
|
|
97
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "deletion_settings")
|
|
100
|
+
|
|
101
|
+
@deletion_settings.setter
|
|
102
|
+
def deletion_settings(self, value: Optional[pulumi.Input['ImageDeletionSettingsArgs']]):
|
|
103
|
+
pulumi.set(self, "deletion_settings", value)
|
|
104
|
+
|
|
89
105
|
@_builtins.property
|
|
90
106
|
@pulumi.getter(name="distributionConfigurationArn")
|
|
91
107
|
def distribution_configuration_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -226,6 +242,7 @@ class Image(pulumi.CustomResource):
|
|
|
226
242
|
resource_name: str,
|
|
227
243
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
228
244
|
container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
245
|
+
deletion_settings: Optional[pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']]] = None,
|
|
229
246
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
230
247
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
231
248
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -244,6 +261,7 @@ class Image(pulumi.CustomResource):
|
|
|
244
261
|
:param str resource_name: The name of the resource.
|
|
245
262
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
246
263
|
:param pulumi.Input[_builtins.str] container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
|
|
264
|
+
:param pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']] deletion_settings: The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
247
265
|
:param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
|
|
248
266
|
:param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
|
|
249
267
|
:param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
|
|
@@ -281,6 +299,7 @@ class Image(pulumi.CustomResource):
|
|
|
281
299
|
resource_name: str,
|
|
282
300
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
283
301
|
container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
302
|
+
deletion_settings: Optional[pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']]] = None,
|
|
284
303
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
285
304
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
286
305
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -302,6 +321,7 @@ class Image(pulumi.CustomResource):
|
|
|
302
321
|
__props__ = ImageArgs.__new__(ImageArgs)
|
|
303
322
|
|
|
304
323
|
__props__.__dict__["container_recipe_arn"] = container_recipe_arn
|
|
324
|
+
__props__.__dict__["deletion_settings"] = deletion_settings
|
|
305
325
|
__props__.__dict__["distribution_configuration_arn"] = distribution_configuration_arn
|
|
306
326
|
__props__.__dict__["enhanced_image_metadata_enabled"] = enhanced_image_metadata_enabled
|
|
307
327
|
__props__.__dict__["execution_role"] = execution_role
|
|
@@ -344,6 +364,7 @@ class Image(pulumi.CustomResource):
|
|
|
344
364
|
|
|
345
365
|
__props__.__dict__["arn"] = None
|
|
346
366
|
__props__.__dict__["container_recipe_arn"] = None
|
|
367
|
+
__props__.__dict__["deletion_settings"] = None
|
|
347
368
|
__props__.__dict__["distribution_configuration_arn"] = None
|
|
348
369
|
__props__.__dict__["enhanced_image_metadata_enabled"] = None
|
|
349
370
|
__props__.__dict__["execution_role"] = None
|
|
@@ -377,6 +398,14 @@ class Image(pulumi.CustomResource):
|
|
|
377
398
|
"""
|
|
378
399
|
return pulumi.get(self, "container_recipe_arn")
|
|
379
400
|
|
|
401
|
+
@_builtins.property
|
|
402
|
+
@pulumi.getter(name="deletionSettings")
|
|
403
|
+
def deletion_settings(self) -> pulumi.Output[Optional['outputs.ImageDeletionSettings']]:
|
|
404
|
+
"""
|
|
405
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
406
|
+
"""
|
|
407
|
+
return pulumi.get(self, "deletion_settings")
|
|
408
|
+
|
|
380
409
|
@_builtins.property
|
|
381
410
|
@pulumi.getter(name="distributionConfigurationArn")
|
|
382
411
|
def distribution_configuration_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -34,6 +34,7 @@ __all__ = [
|
|
|
34
34
|
'DistributionConfigurationLaunchTemplateConfiguration',
|
|
35
35
|
'DistributionConfigurationSsmParameterConfiguration',
|
|
36
36
|
'DistributionConfigurationTargetContainerRepository',
|
|
37
|
+
'ImageDeletionSettings',
|
|
37
38
|
'ImageEcrConfiguration',
|
|
38
39
|
'ImageLatestVersion',
|
|
39
40
|
'ImageLoggingConfiguration',
|
|
@@ -1296,6 +1297,45 @@ class DistributionConfigurationTargetContainerRepository(dict):
|
|
|
1296
1297
|
return pulumi.get(self, "service")
|
|
1297
1298
|
|
|
1298
1299
|
|
|
1300
|
+
@pulumi.output_type
|
|
1301
|
+
class ImageDeletionSettings(dict):
|
|
1302
|
+
"""
|
|
1303
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1304
|
+
"""
|
|
1305
|
+
@staticmethod
|
|
1306
|
+
def __key_warning(key: str):
|
|
1307
|
+
suggest = None
|
|
1308
|
+
if key == "executionRole":
|
|
1309
|
+
suggest = "execution_role"
|
|
1310
|
+
|
|
1311
|
+
if suggest:
|
|
1312
|
+
pulumi.log.warn(f"Key '{key}' not found in ImageDeletionSettings. Access the value via the '{suggest}' property getter instead.")
|
|
1313
|
+
|
|
1314
|
+
def __getitem__(self, key: str) -> Any:
|
|
1315
|
+
ImageDeletionSettings.__key_warning(key)
|
|
1316
|
+
return super().__getitem__(key)
|
|
1317
|
+
|
|
1318
|
+
def get(self, key: str, default = None) -> Any:
|
|
1319
|
+
ImageDeletionSettings.__key_warning(key)
|
|
1320
|
+
return super().get(key, default)
|
|
1321
|
+
|
|
1322
|
+
def __init__(__self__, *,
|
|
1323
|
+
execution_role: _builtins.str):
|
|
1324
|
+
"""
|
|
1325
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1326
|
+
:param _builtins.str execution_role: The execution role to use for deleting the image, as well as underlying resources.
|
|
1327
|
+
"""
|
|
1328
|
+
pulumi.set(__self__, "execution_role", execution_role)
|
|
1329
|
+
|
|
1330
|
+
@_builtins.property
|
|
1331
|
+
@pulumi.getter(name="executionRole")
|
|
1332
|
+
def execution_role(self) -> _builtins.str:
|
|
1333
|
+
"""
|
|
1334
|
+
The execution role to use for deleting the image, as well as underlying resources.
|
|
1335
|
+
"""
|
|
1336
|
+
return pulumi.get(self, "execution_role")
|
|
1337
|
+
|
|
1338
|
+
|
|
1299
1339
|
@pulumi.output_type
|
|
1300
1340
|
class ImageEcrConfiguration(dict):
|
|
1301
1341
|
"""
|
|
@@ -1195,6 +1195,9 @@ if not MYPY:
|
|
|
1195
1195
|
The encryption method to use.
|
|
1196
1196
|
"""
|
|
1197
1197
|
ism_encryption_method: NotRequired[pulumi.Input['OriginEndpointIsmEncryptionMethod']]
|
|
1198
|
+
"""
|
|
1199
|
+
The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1200
|
+
"""
|
|
1198
1201
|
ts_encryption_method: NotRequired[pulumi.Input['OriginEndpointTsEncryptionMethod']]
|
|
1199
1202
|
"""
|
|
1200
1203
|
The encryption method to use.
|
|
@@ -1211,6 +1214,7 @@ class OriginEndpointEncryptionMethodArgs:
|
|
|
1211
1214
|
"""
|
|
1212
1215
|
<p>The encryption type.</p>
|
|
1213
1216
|
:param pulumi.Input['OriginEndpointCmafEncryptionMethod'] cmaf_encryption_method: The encryption method to use.
|
|
1217
|
+
:param pulumi.Input['OriginEndpointIsmEncryptionMethod'] ism_encryption_method: The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1214
1218
|
:param pulumi.Input['OriginEndpointTsEncryptionMethod'] ts_encryption_method: The encryption method to use.
|
|
1215
1219
|
"""
|
|
1216
1220
|
if cmaf_encryption_method is not None:
|
|
@@ -1235,6 +1239,9 @@ class OriginEndpointEncryptionMethodArgs:
|
|
|
1235
1239
|
@_builtins.property
|
|
1236
1240
|
@pulumi.getter(name="ismEncryptionMethod")
|
|
1237
1241
|
def ism_encryption_method(self) -> Optional[pulumi.Input['OriginEndpointIsmEncryptionMethod']]:
|
|
1242
|
+
"""
|
|
1243
|
+
The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1244
|
+
"""
|
|
1238
1245
|
return pulumi.get(self, "ism_encryption_method")
|
|
1239
1246
|
|
|
1240
1247
|
@ism_encryption_method.setter
|
|
@@ -1144,6 +1144,7 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1144
1144
|
"""
|
|
1145
1145
|
<p>The encryption type.</p>
|
|
1146
1146
|
:param 'OriginEndpointCmafEncryptionMethod' cmaf_encryption_method: The encryption method to use.
|
|
1147
|
+
:param 'OriginEndpointIsmEncryptionMethod' ism_encryption_method: The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1147
1148
|
:param 'OriginEndpointTsEncryptionMethod' ts_encryption_method: The encryption method to use.
|
|
1148
1149
|
"""
|
|
1149
1150
|
if cmaf_encryption_method is not None:
|
|
@@ -1164,6 +1165,9 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1164
1165
|
@_builtins.property
|
|
1165
1166
|
@pulumi.getter(name="ismEncryptionMethod")
|
|
1166
1167
|
def ism_encryption_method(self) -> Optional['OriginEndpointIsmEncryptionMethod']:
|
|
1168
|
+
"""
|
|
1169
|
+
The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1170
|
+
"""
|
|
1167
1171
|
return pulumi.get(self, "ism_encryption_method")
|
|
1168
1172
|
|
|
1169
1173
|
@_builtins.property
|
|
@@ -82,6 +82,8 @@ class LoggingConfigurationLogDestinationConfigLogType(_builtins.str, Enum):
|
|
|
82
82
|
class RuleGroupGeneratedRulesType(_builtins.str, Enum):
|
|
83
83
|
ALLOWLIST = "ALLOWLIST"
|
|
84
84
|
DENYLIST = "DENYLIST"
|
|
85
|
+
ALERTLIST = "ALERTLIST"
|
|
86
|
+
REJECTLIST = "REJECTLIST"
|
|
85
87
|
|
|
86
88
|
|
|
87
89
|
@pulumi.type_token("aws-native:networkfirewall:RuleGroupHeaderDirection")
|
|
@@ -671,6 +671,7 @@ if not MYPY:
|
|
|
671
671
|
|
|
672
672
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
673
673
|
"""
|
|
674
|
+
enable_tls_session_holding: NotRequired[pulumi.Input[_builtins.bool]]
|
|
674
675
|
policy_variables: NotRequired[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgsDict']]
|
|
675
676
|
"""
|
|
676
677
|
Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
@@ -716,6 +717,7 @@ class FirewallPolicyArgs:
|
|
|
716
717
|
def __init__(__self__, *,
|
|
717
718
|
stateless_default_actions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
718
719
|
stateless_fragment_default_actions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
720
|
+
enable_tls_session_holding: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
719
721
|
policy_variables: Optional[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgs']] = None,
|
|
720
722
|
stateful_default_actions: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
721
723
|
stateful_engine_options: Optional[pulumi.Input['FirewallPolicyStatefulEngineOptionsArgs']] = None,
|
|
@@ -753,6 +755,8 @@ class FirewallPolicyArgs:
|
|
|
753
755
|
"""
|
|
754
756
|
pulumi.set(__self__, "stateless_default_actions", stateless_default_actions)
|
|
755
757
|
pulumi.set(__self__, "stateless_fragment_default_actions", stateless_fragment_default_actions)
|
|
758
|
+
if enable_tls_session_holding is not None:
|
|
759
|
+
pulumi.set(__self__, "enable_tls_session_holding", enable_tls_session_holding)
|
|
756
760
|
if policy_variables is not None:
|
|
757
761
|
pulumi.set(__self__, "policy_variables", policy_variables)
|
|
758
762
|
if stateful_default_actions is not None:
|
|
@@ -800,6 +804,15 @@ class FirewallPolicyArgs:
|
|
|
800
804
|
def stateless_fragment_default_actions(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
801
805
|
pulumi.set(self, "stateless_fragment_default_actions", value)
|
|
802
806
|
|
|
807
|
+
@_builtins.property
|
|
808
|
+
@pulumi.getter(name="enableTlsSessionHolding")
|
|
809
|
+
def enable_tls_session_holding(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
810
|
+
return pulumi.get(self, "enable_tls_session_holding")
|
|
811
|
+
|
|
812
|
+
@enable_tls_session_holding.setter
|
|
813
|
+
def enable_tls_session_holding(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
814
|
+
pulumi.set(self, "enable_tls_session_holding", value)
|
|
815
|
+
|
|
803
816
|
@_builtins.property
|
|
804
817
|
@pulumi.getter(name="policyVariables")
|
|
805
818
|
def policy_variables(self) -> Optional[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgs']]:
|
|
@@ -363,6 +363,7 @@ class Firewall(pulumi.CustomResource):
|
|
|
363
363
|
__props__.__dict__["endpoint_ids"] = None
|
|
364
364
|
__props__.__dict__["firewall_arn"] = None
|
|
365
365
|
__props__.__dict__["firewall_id"] = None
|
|
366
|
+
__props__.__dict__["transit_gateway_attachment_id"] = None
|
|
366
367
|
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["firewallName", "vpcId"])
|
|
367
368
|
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
368
369
|
super(Firewall, __self__).__init__(
|
|
@@ -401,6 +402,7 @@ class Firewall(pulumi.CustomResource):
|
|
|
401
402
|
__props__.__dict__["subnet_change_protection"] = None
|
|
402
403
|
__props__.__dict__["subnet_mappings"] = None
|
|
403
404
|
__props__.__dict__["tags"] = None
|
|
405
|
+
__props__.__dict__["transit_gateway_attachment_id"] = None
|
|
404
406
|
__props__.__dict__["transit_gateway_id"] = None
|
|
405
407
|
__props__.__dict__["vpc_id"] = None
|
|
406
408
|
return Firewall(resource_name, opts=opts, __props__=__props__)
|
|
@@ -525,6 +527,11 @@ class Firewall(pulumi.CustomResource):
|
|
|
525
527
|
"""
|
|
526
528
|
return pulumi.get(self, "tags")
|
|
527
529
|
|
|
530
|
+
@_builtins.property
|
|
531
|
+
@pulumi.getter(name="transitGatewayAttachmentId")
|
|
532
|
+
def transit_gateway_attachment_id(self) -> pulumi.Output[_builtins.str]:
|
|
533
|
+
return pulumi.get(self, "transit_gateway_attachment_id")
|
|
534
|
+
|
|
528
535
|
@_builtins.property
|
|
529
536
|
@pulumi.getter(name="transitGatewayId")
|
|
530
537
|
def transit_gateway_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -26,7 +26,7 @@ __all__ = [
|
|
|
26
26
|
|
|
27
27
|
@pulumi.output_type
|
|
28
28
|
class GetFirewallResult:
|
|
29
|
-
def __init__(__self__, availability_zone_change_protection=None, availability_zone_mappings=None, delete_protection=None, description=None, enabled_analysis_types=None, endpoint_ids=None, firewall_arn=None, firewall_id=None, firewall_policy_arn=None, firewall_policy_change_protection=None, subnet_change_protection=None, subnet_mappings=None, tags=None, transit_gateway_id=None):
|
|
29
|
+
def __init__(__self__, availability_zone_change_protection=None, availability_zone_mappings=None, delete_protection=None, description=None, enabled_analysis_types=None, endpoint_ids=None, firewall_arn=None, firewall_id=None, firewall_policy_arn=None, firewall_policy_change_protection=None, subnet_change_protection=None, subnet_mappings=None, tags=None, transit_gateway_attachment_id=None, transit_gateway_id=None):
|
|
30
30
|
if availability_zone_change_protection and not isinstance(availability_zone_change_protection, bool):
|
|
31
31
|
raise TypeError("Expected argument 'availability_zone_change_protection' to be a bool")
|
|
32
32
|
pulumi.set(__self__, "availability_zone_change_protection", availability_zone_change_protection)
|
|
@@ -66,6 +66,9 @@ class GetFirewallResult:
|
|
|
66
66
|
if tags and not isinstance(tags, list):
|
|
67
67
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
68
68
|
pulumi.set(__self__, "tags", tags)
|
|
69
|
+
if transit_gateway_attachment_id and not isinstance(transit_gateway_attachment_id, str):
|
|
70
|
+
raise TypeError("Expected argument 'transit_gateway_attachment_id' to be a str")
|
|
71
|
+
pulumi.set(__self__, "transit_gateway_attachment_id", transit_gateway_attachment_id)
|
|
69
72
|
if transit_gateway_id and not isinstance(transit_gateway_id, str):
|
|
70
73
|
raise TypeError("Expected argument 'transit_gateway_id' to be a str")
|
|
71
74
|
pulumi.set(__self__, "transit_gateway_id", transit_gateway_id)
|
|
@@ -182,6 +185,11 @@ class GetFirewallResult:
|
|
|
182
185
|
"""
|
|
183
186
|
return pulumi.get(self, "tags")
|
|
184
187
|
|
|
188
|
+
@_builtins.property
|
|
189
|
+
@pulumi.getter(name="transitGatewayAttachmentId")
|
|
190
|
+
def transit_gateway_attachment_id(self) -> Optional[_builtins.str]:
|
|
191
|
+
return pulumi.get(self, "transit_gateway_attachment_id")
|
|
192
|
+
|
|
185
193
|
@_builtins.property
|
|
186
194
|
@pulumi.getter(name="transitGatewayId")
|
|
187
195
|
def transit_gateway_id(self) -> Optional[_builtins.str]:
|
|
@@ -210,6 +218,7 @@ class AwaitableGetFirewallResult(GetFirewallResult):
|
|
|
210
218
|
subnet_change_protection=self.subnet_change_protection,
|
|
211
219
|
subnet_mappings=self.subnet_mappings,
|
|
212
220
|
tags=self.tags,
|
|
221
|
+
transit_gateway_attachment_id=self.transit_gateway_attachment_id,
|
|
213
222
|
transit_gateway_id=self.transit_gateway_id)
|
|
214
223
|
|
|
215
224
|
|
|
@@ -240,6 +249,7 @@ def get_firewall(firewall_arn: Optional[_builtins.str] = None,
|
|
|
240
249
|
subnet_change_protection=pulumi.get(__ret__, 'subnet_change_protection'),
|
|
241
250
|
subnet_mappings=pulumi.get(__ret__, 'subnet_mappings'),
|
|
242
251
|
tags=pulumi.get(__ret__, 'tags'),
|
|
252
|
+
transit_gateway_attachment_id=pulumi.get(__ret__, 'transit_gateway_attachment_id'),
|
|
243
253
|
transit_gateway_id=pulumi.get(__ret__, 'transit_gateway_id'))
|
|
244
254
|
def get_firewall_output(firewall_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
245
255
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFirewallResult]:
|
|
@@ -267,4 +277,5 @@ def get_firewall_output(firewall_arn: Optional[pulumi.Input[_builtins.str]] = No
|
|
|
267
277
|
subnet_change_protection=pulumi.get(__response__, 'subnet_change_protection'),
|
|
268
278
|
subnet_mappings=pulumi.get(__response__, 'subnet_mappings'),
|
|
269
279
|
tags=pulumi.get(__response__, 'tags'),
|
|
280
|
+
transit_gateway_attachment_id=pulumi.get(__response__, 'transit_gateway_attachment_id'),
|
|
270
281
|
transit_gateway_id=pulumi.get(__response__, 'transit_gateway_id')))
|
|
@@ -111,6 +111,8 @@ class FirewallPolicy(dict):
|
|
|
111
111
|
suggest = "stateless_default_actions"
|
|
112
112
|
elif key == "statelessFragmentDefaultActions":
|
|
113
113
|
suggest = "stateless_fragment_default_actions"
|
|
114
|
+
elif key == "enableTlsSessionHolding":
|
|
115
|
+
suggest = "enable_tls_session_holding"
|
|
114
116
|
elif key == "policyVariables":
|
|
115
117
|
suggest = "policy_variables"
|
|
116
118
|
elif key == "statefulDefaultActions":
|
|
@@ -140,6 +142,7 @@ class FirewallPolicy(dict):
|
|
|
140
142
|
def __init__(__self__, *,
|
|
141
143
|
stateless_default_actions: Sequence[_builtins.str],
|
|
142
144
|
stateless_fragment_default_actions: Sequence[_builtins.str],
|
|
145
|
+
enable_tls_session_holding: Optional[_builtins.bool] = None,
|
|
143
146
|
policy_variables: Optional['outputs.FirewallPolicyPolicyVariablesProperties'] = None,
|
|
144
147
|
stateful_default_actions: Optional[Sequence[_builtins.str]] = None,
|
|
145
148
|
stateful_engine_options: Optional['outputs.FirewallPolicyStatefulEngineOptions'] = None,
|
|
@@ -177,6 +180,8 @@ class FirewallPolicy(dict):
|
|
|
177
180
|
"""
|
|
178
181
|
pulumi.set(__self__, "stateless_default_actions", stateless_default_actions)
|
|
179
182
|
pulumi.set(__self__, "stateless_fragment_default_actions", stateless_fragment_default_actions)
|
|
183
|
+
if enable_tls_session_holding is not None:
|
|
184
|
+
pulumi.set(__self__, "enable_tls_session_holding", enable_tls_session_holding)
|
|
180
185
|
if policy_variables is not None:
|
|
181
186
|
pulumi.set(__self__, "policy_variables", policy_variables)
|
|
182
187
|
if stateful_default_actions is not None:
|
|
@@ -216,6 +221,11 @@ class FirewallPolicy(dict):
|
|
|
216
221
|
"""
|
|
217
222
|
return pulumi.get(self, "stateless_fragment_default_actions")
|
|
218
223
|
|
|
224
|
+
@_builtins.property
|
|
225
|
+
@pulumi.getter(name="enableTlsSessionHolding")
|
|
226
|
+
def enable_tls_session_holding(self) -> Optional[_builtins.bool]:
|
|
227
|
+
return pulumi.get(self, "enable_tls_session_holding")
|
|
228
|
+
|
|
219
229
|
@_builtins.property
|
|
220
230
|
@pulumi.getter(name="policyVariables")
|
|
221
231
|
def policy_variables(self) -> Optional['outputs.FirewallPolicyPolicyVariablesProperties']:
|
|
@@ -7,8 +7,10 @@ from .. import _utilities
|
|
|
7
7
|
import typing
|
|
8
8
|
# Export this package's modules as members:
|
|
9
9
|
from ._enums import *
|
|
10
|
+
from .get_link import *
|
|
10
11
|
from .get_requester_gateway import *
|
|
11
12
|
from .get_responder_gateway import *
|
|
13
|
+
from .link import *
|
|
12
14
|
from .requester_gateway import *
|
|
13
15
|
from .responder_gateway import *
|
|
14
16
|
from ._inputs import *
|
|
@@ -7,12 +7,53 @@ import pulumi
|
|
|
7
7
|
from enum import Enum
|
|
8
8
|
|
|
9
9
|
__all__ = [
|
|
10
|
+
'LinkDirection',
|
|
11
|
+
'LinkResponderErrorMaskingForHttpCodeAction',
|
|
12
|
+
'LinkResponderErrorMaskingLoggingType',
|
|
13
|
+
'LinkStatus',
|
|
10
14
|
'RequesterGatewayStatus',
|
|
11
15
|
'ResponderGatewayProtocol',
|
|
12
16
|
'ResponderGatewayStatus',
|
|
13
17
|
]
|
|
14
18
|
|
|
15
19
|
|
|
20
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkDirection")
|
|
21
|
+
class LinkDirection(_builtins.str, Enum):
|
|
22
|
+
REQUEST = "REQUEST"
|
|
23
|
+
RESPONSE = "RESPONSE"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingForHttpCodeAction")
|
|
27
|
+
class LinkResponderErrorMaskingForHttpCodeAction(_builtins.str, Enum):
|
|
28
|
+
NO_BID = "NO_BID"
|
|
29
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingLoggingType")
|
|
33
|
+
class LinkResponderErrorMaskingLoggingType(_builtins.str, Enum):
|
|
34
|
+
NONE = "NONE"
|
|
35
|
+
METRIC = "METRIC"
|
|
36
|
+
RESPONSE = "RESPONSE"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkStatus")
|
|
40
|
+
class LinkStatus(_builtins.str, Enum):
|
|
41
|
+
PENDING_CREATION = "PENDING_CREATION"
|
|
42
|
+
PENDING_REQUEST = "PENDING_REQUEST"
|
|
43
|
+
REQUESTED = "REQUESTED"
|
|
44
|
+
ACCEPTED = "ACCEPTED"
|
|
45
|
+
ACTIVE = "ACTIVE"
|
|
46
|
+
DECLINED = "DECLINED"
|
|
47
|
+
FAILED = "FAILED"
|
|
48
|
+
PENDING_DELETION = "PENDING_DELETION"
|
|
49
|
+
DELETED = "DELETED"
|
|
50
|
+
PENDING_UPDATE = "PENDING_UPDATE"
|
|
51
|
+
PENDING_ISOLATION = "PENDING_ISOLATION"
|
|
52
|
+
ISOLATED = "ISOLATED"
|
|
53
|
+
PENDING_RESTORATION = "PENDING_RESTORATION"
|
|
54
|
+
UNKNOWN_TO_SDK_VERSION = "UNKNOWN_TO_SDK_VERSION"
|
|
55
|
+
|
|
56
|
+
|
|
16
57
|
@pulumi.type_token("aws-native:rtbfabric:RequesterGatewayStatus")
|
|
17
58
|
class RequesterGatewayStatus(_builtins.str, Enum):
|
|
18
59
|
PENDING_CREATION = "PENDING_CREATION"
|