pulumi-aws-native 1.38.0a1761286050__py3-none-any.whl → 1.38.0a1761310773__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 +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/top_level.txt +0 -0
|
@@ -21,8 +21,8 @@ __all__ = ['AccessGrantsLocationArgs', 'AccessGrantsLocation']
|
|
|
21
21
|
@pulumi.input_type
|
|
22
22
|
class AccessGrantsLocationArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
|
-
iam_role_arn:
|
|
25
|
-
location_scope:
|
|
24
|
+
iam_role_arn: pulumi.Input[_builtins.str],
|
|
25
|
+
location_scope: pulumi.Input[_builtins.str],
|
|
26
26
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.CreateOnlyTagArgs']]]] = None):
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a AccessGrantsLocation resource.
|
|
@@ -30,35 +30,33 @@ class AccessGrantsLocationArgs:
|
|
|
30
30
|
:param pulumi.Input[_builtins.str] location_scope: Descriptor for where the location actually points
|
|
31
31
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.CreateOnlyTagArgs']]] tags: The AWS resource tags that you are adding to the S3 Access Grants location. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources.
|
|
32
32
|
"""
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
if location_scope is not None:
|
|
36
|
-
pulumi.set(__self__, "location_scope", location_scope)
|
|
33
|
+
pulumi.set(__self__, "iam_role_arn", iam_role_arn)
|
|
34
|
+
pulumi.set(__self__, "location_scope", location_scope)
|
|
37
35
|
if tags is not None:
|
|
38
36
|
pulumi.set(__self__, "tags", tags)
|
|
39
37
|
|
|
40
38
|
@_builtins.property
|
|
41
39
|
@pulumi.getter(name="iamRoleArn")
|
|
42
|
-
def iam_role_arn(self) ->
|
|
40
|
+
def iam_role_arn(self) -> pulumi.Input[_builtins.str]:
|
|
43
41
|
"""
|
|
44
42
|
The Amazon Resource Name (ARN) of the access grant location's associated IAM role.
|
|
45
43
|
"""
|
|
46
44
|
return pulumi.get(self, "iam_role_arn")
|
|
47
45
|
|
|
48
46
|
@iam_role_arn.setter
|
|
49
|
-
def iam_role_arn(self, value:
|
|
47
|
+
def iam_role_arn(self, value: pulumi.Input[_builtins.str]):
|
|
50
48
|
pulumi.set(self, "iam_role_arn", value)
|
|
51
49
|
|
|
52
50
|
@_builtins.property
|
|
53
51
|
@pulumi.getter(name="locationScope")
|
|
54
|
-
def location_scope(self) ->
|
|
52
|
+
def location_scope(self) -> pulumi.Input[_builtins.str]:
|
|
55
53
|
"""
|
|
56
54
|
Descriptor for where the location actually points
|
|
57
55
|
"""
|
|
58
56
|
return pulumi.get(self, "location_scope")
|
|
59
57
|
|
|
60
58
|
@location_scope.setter
|
|
61
|
-
def location_scope(self, value:
|
|
59
|
+
def location_scope(self, value: pulumi.Input[_builtins.str]):
|
|
62
60
|
pulumi.set(self, "location_scope", value)
|
|
63
61
|
|
|
64
62
|
@_builtins.property
|
|
@@ -97,7 +95,7 @@ class AccessGrantsLocation(pulumi.CustomResource):
|
|
|
97
95
|
@overload
|
|
98
96
|
def __init__(__self__,
|
|
99
97
|
resource_name: str,
|
|
100
|
-
args:
|
|
98
|
+
args: AccessGrantsLocationArgs,
|
|
101
99
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
102
100
|
"""
|
|
103
101
|
The AWS::S3::AccessGrantsLocation resource is an Amazon S3 resource type hosted in an access grants instance which can be the target of S3 access grants.
|
|
@@ -129,7 +127,11 @@ class AccessGrantsLocation(pulumi.CustomResource):
|
|
|
129
127
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
130
128
|
__props__ = AccessGrantsLocationArgs.__new__(AccessGrantsLocationArgs)
|
|
131
129
|
|
|
130
|
+
if iam_role_arn is None and not opts.urn:
|
|
131
|
+
raise TypeError("Missing required property 'iam_role_arn'")
|
|
132
132
|
__props__.__dict__["iam_role_arn"] = iam_role_arn
|
|
133
|
+
if location_scope is None and not opts.urn:
|
|
134
|
+
raise TypeError("Missing required property 'location_scope'")
|
|
133
135
|
__props__.__dict__["location_scope"] = location_scope
|
|
134
136
|
__props__.__dict__["tags"] = tags
|
|
135
137
|
__props__.__dict__["access_grants_location_arn"] = None
|
|
@@ -183,7 +185,7 @@ class AccessGrantsLocation(pulumi.CustomResource):
|
|
|
183
185
|
|
|
184
186
|
@_builtins.property
|
|
185
187
|
@pulumi.getter(name="iamRoleArn")
|
|
186
|
-
def iam_role_arn(self) -> pulumi.Output[
|
|
188
|
+
def iam_role_arn(self) -> pulumi.Output[_builtins.str]:
|
|
187
189
|
"""
|
|
188
190
|
The Amazon Resource Name (ARN) of the access grant location's associated IAM role.
|
|
189
191
|
"""
|
|
@@ -191,7 +193,7 @@ class AccessGrantsLocation(pulumi.CustomResource):
|
|
|
191
193
|
|
|
192
194
|
@_builtins.property
|
|
193
195
|
@pulumi.getter(name="locationScope")
|
|
194
|
-
def location_scope(self) -> pulumi.Output[
|
|
196
|
+
def location_scope(self) -> pulumi.Output[_builtins.str]:
|
|
195
197
|
"""
|
|
196
198
|
Descriptor for where the location actually points
|
|
197
199
|
"""
|
|
@@ -15,6 +15,7 @@ __all__ = [
|
|
|
15
15
|
'ClusterNodeProvisioningMode',
|
|
16
16
|
'ClusterNodeRecovery',
|
|
17
17
|
'ClusterStatus',
|
|
18
|
+
'ClusterTieredStorageConfigMode',
|
|
18
19
|
'DataQualityJobDefinitionBatchTransformInputS3DataDistributionType',
|
|
19
20
|
'DataQualityJobDefinitionBatchTransformInputS3InputMode',
|
|
20
21
|
'DataQualityJobDefinitionEndpointInputS3DataDistributionType',
|
|
@@ -376,6 +377,15 @@ class ClusterStatus(_builtins.str, Enum):
|
|
|
376
377
|
UPDATING = "Updating"
|
|
377
378
|
|
|
378
379
|
|
|
380
|
+
@pulumi.type_token("aws-native:sagemaker:ClusterTieredStorageConfigMode")
|
|
381
|
+
class ClusterTieredStorageConfigMode(_builtins.str, Enum):
|
|
382
|
+
"""
|
|
383
|
+
The mode of tiered storage.
|
|
384
|
+
"""
|
|
385
|
+
ENABLE = "Enable"
|
|
386
|
+
DISABLE = "Disable"
|
|
387
|
+
|
|
388
|
+
|
|
379
389
|
@pulumi.type_token("aws-native:sagemaker:DataQualityJobDefinitionBatchTransformInputS3DataDistributionType")
|
|
380
390
|
class DataQualityJobDefinitionBatchTransformInputS3DataDistributionType(_builtins.str, Enum):
|
|
381
391
|
"""
|
|
@@ -60,6 +60,8 @@ __all__ = [
|
|
|
60
60
|
'ClusterRollingUpdatePolicyArgsDict',
|
|
61
61
|
'ClusterScheduledUpdateConfigArgs',
|
|
62
62
|
'ClusterScheduledUpdateConfigArgsDict',
|
|
63
|
+
'ClusterTieredStorageConfigArgs',
|
|
64
|
+
'ClusterTieredStorageConfigArgsDict',
|
|
63
65
|
'ClusterVpcConfigArgs',
|
|
64
66
|
'ClusterVpcConfigArgsDict',
|
|
65
67
|
'DataQualityJobDefinitionBatchTransformInputArgs',
|
|
@@ -2022,6 +2024,61 @@ class ClusterScheduledUpdateConfigArgs:
|
|
|
2022
2024
|
pulumi.set(self, "deployment_config", value)
|
|
2023
2025
|
|
|
2024
2026
|
|
|
2027
|
+
if not MYPY:
|
|
2028
|
+
class ClusterTieredStorageConfigArgsDict(TypedDict):
|
|
2029
|
+
"""
|
|
2030
|
+
Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
2031
|
+
"""
|
|
2032
|
+
mode: pulumi.Input['ClusterTieredStorageConfigMode']
|
|
2033
|
+
"""
|
|
2034
|
+
The mode of tiered storage.
|
|
2035
|
+
"""
|
|
2036
|
+
instance_memory_allocation_percentage: NotRequired[pulumi.Input[_builtins.int]]
|
|
2037
|
+
"""
|
|
2038
|
+
The percentage of instance memory to allocate for tiered storage.
|
|
2039
|
+
"""
|
|
2040
|
+
elif False:
|
|
2041
|
+
ClusterTieredStorageConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
2042
|
+
|
|
2043
|
+
@pulumi.input_type
|
|
2044
|
+
class ClusterTieredStorageConfigArgs:
|
|
2045
|
+
def __init__(__self__, *,
|
|
2046
|
+
mode: pulumi.Input['ClusterTieredStorageConfigMode'],
|
|
2047
|
+
instance_memory_allocation_percentage: Optional[pulumi.Input[_builtins.int]] = None):
|
|
2048
|
+
"""
|
|
2049
|
+
Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
2050
|
+
:param pulumi.Input['ClusterTieredStorageConfigMode'] mode: The mode of tiered storage.
|
|
2051
|
+
:param pulumi.Input[_builtins.int] instance_memory_allocation_percentage: The percentage of instance memory to allocate for tiered storage.
|
|
2052
|
+
"""
|
|
2053
|
+
pulumi.set(__self__, "mode", mode)
|
|
2054
|
+
if instance_memory_allocation_percentage is not None:
|
|
2055
|
+
pulumi.set(__self__, "instance_memory_allocation_percentage", instance_memory_allocation_percentage)
|
|
2056
|
+
|
|
2057
|
+
@_builtins.property
|
|
2058
|
+
@pulumi.getter
|
|
2059
|
+
def mode(self) -> pulumi.Input['ClusterTieredStorageConfigMode']:
|
|
2060
|
+
"""
|
|
2061
|
+
The mode of tiered storage.
|
|
2062
|
+
"""
|
|
2063
|
+
return pulumi.get(self, "mode")
|
|
2064
|
+
|
|
2065
|
+
@mode.setter
|
|
2066
|
+
def mode(self, value: pulumi.Input['ClusterTieredStorageConfigMode']):
|
|
2067
|
+
pulumi.set(self, "mode", value)
|
|
2068
|
+
|
|
2069
|
+
@_builtins.property
|
|
2070
|
+
@pulumi.getter(name="instanceMemoryAllocationPercentage")
|
|
2071
|
+
def instance_memory_allocation_percentage(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2072
|
+
"""
|
|
2073
|
+
The percentage of instance memory to allocate for tiered storage.
|
|
2074
|
+
"""
|
|
2075
|
+
return pulumi.get(self, "instance_memory_allocation_percentage")
|
|
2076
|
+
|
|
2077
|
+
@instance_memory_allocation_percentage.setter
|
|
2078
|
+
def instance_memory_allocation_percentage(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2079
|
+
pulumi.set(self, "instance_memory_allocation_percentage", value)
|
|
2080
|
+
|
|
2081
|
+
|
|
2025
2082
|
if not MYPY:
|
|
2026
2083
|
class ClusterVpcConfigArgsDict(TypedDict):
|
|
2027
2084
|
"""
|
|
@@ -4959,6 +5016,9 @@ if not MYPY:
|
|
|
4959
5016
|
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
|
|
4960
5017
|
"""
|
|
4961
5018
|
ip_address_type: NotRequired[pulumi.Input['DomainIpAddressType']]
|
|
5019
|
+
"""
|
|
5020
|
+
The IP address type for the domain. Specify `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and IPv6 connectivity. When you specify `dualstack` , the subnet must support IPv6 CIDR blocks. If not specified, defaults to `ipv4` .
|
|
5021
|
+
"""
|
|
4962
5022
|
r_studio_server_pro_domain_settings: NotRequired[pulumi.Input['DomainRStudioServerProDomainSettingsArgsDict']]
|
|
4963
5023
|
"""
|
|
4964
5024
|
A collection of settings that configure the `RStudioServerPro` Domain-level app.
|
|
@@ -4987,6 +5047,7 @@ class DomainSettingsArgs:
|
|
|
4987
5047
|
A collection of Domain settings.
|
|
4988
5048
|
:param pulumi.Input['DomainDockerSettingsArgs'] docker_settings: A collection of settings that configure the domain's Docker interaction.
|
|
4989
5049
|
:param pulumi.Input['DomainSettingsExecutionRoleIdentityConfig'] execution_role_identity_config: The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
|
|
5050
|
+
:param pulumi.Input['DomainIpAddressType'] ip_address_type: The IP address type for the domain. Specify `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and IPv6 connectivity. When you specify `dualstack` , the subnet must support IPv6 CIDR blocks. If not specified, defaults to `ipv4` .
|
|
4990
5051
|
:param pulumi.Input['DomainRStudioServerProDomainSettingsArgs'] r_studio_server_pro_domain_settings: A collection of settings that configure the `RStudioServerPro` Domain-level app.
|
|
4991
5052
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The security groups for the Amazon Virtual Private Cloud that the Domain uses for communication between Domain-level apps and user apps.
|
|
4992
5053
|
:param pulumi.Input['DomainUnifiedStudioSettingsArgs'] unified_studio_settings: The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
@@ -5031,6 +5092,9 @@ class DomainSettingsArgs:
|
|
|
5031
5092
|
@_builtins.property
|
|
5032
5093
|
@pulumi.getter(name="ipAddressType")
|
|
5033
5094
|
def ip_address_type(self) -> Optional[pulumi.Input['DomainIpAddressType']]:
|
|
5095
|
+
"""
|
|
5096
|
+
The IP address type for the domain. Specify `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and IPv6 connectivity. When you specify `dualstack` , the subnet must support IPv6 CIDR blocks. If not specified, defaults to `ipv4` .
|
|
5097
|
+
"""
|
|
5034
5098
|
return pulumi.get(self, "ip_address_type")
|
|
5035
5099
|
|
|
5036
5100
|
@ip_address_type.setter
|
|
@@ -33,6 +33,7 @@ class ClusterArgs:
|
|
|
33
33
|
orchestrator: Optional[pulumi.Input['ClusterOrchestratorArgs']] = None,
|
|
34
34
|
restricted_instance_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterRestrictedInstanceGroupArgs']]]] = None,
|
|
35
35
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None,
|
|
36
|
+
tiered_storage_config: Optional[pulumi.Input['ClusterTieredStorageConfigArgs']] = None,
|
|
36
37
|
vpc_config: Optional[pulumi.Input['ClusterVpcConfigArgs']] = None):
|
|
37
38
|
"""
|
|
38
39
|
The set of arguments for constructing a Cluster resource.
|
|
@@ -63,6 +64,8 @@ class ClusterArgs:
|
|
|
63
64
|
pulumi.set(__self__, "restricted_instance_groups", restricted_instance_groups)
|
|
64
65
|
if tags is not None:
|
|
65
66
|
pulumi.set(__self__, "tags", tags)
|
|
67
|
+
if tiered_storage_config is not None:
|
|
68
|
+
pulumi.set(__self__, "tiered_storage_config", tiered_storage_config)
|
|
66
69
|
if vpc_config is not None:
|
|
67
70
|
pulumi.set(__self__, "vpc_config", vpc_config)
|
|
68
71
|
|
|
@@ -168,6 +171,15 @@ class ClusterArgs:
|
|
|
168
171
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
|
|
169
172
|
pulumi.set(self, "tags", value)
|
|
170
173
|
|
|
174
|
+
@_builtins.property
|
|
175
|
+
@pulumi.getter(name="tieredStorageConfig")
|
|
176
|
+
def tiered_storage_config(self) -> Optional[pulumi.Input['ClusterTieredStorageConfigArgs']]:
|
|
177
|
+
return pulumi.get(self, "tiered_storage_config")
|
|
178
|
+
|
|
179
|
+
@tiered_storage_config.setter
|
|
180
|
+
def tiered_storage_config(self, value: Optional[pulumi.Input['ClusterTieredStorageConfigArgs']]):
|
|
181
|
+
pulumi.set(self, "tiered_storage_config", value)
|
|
182
|
+
|
|
171
183
|
@_builtins.property
|
|
172
184
|
@pulumi.getter(name="vpcConfig")
|
|
173
185
|
def vpc_config(self) -> Optional[pulumi.Input['ClusterVpcConfigArgs']]:
|
|
@@ -196,6 +208,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
196
208
|
orchestrator: Optional[pulumi.Input[Union['ClusterOrchestratorArgs', 'ClusterOrchestratorArgsDict']]] = None,
|
|
197
209
|
restricted_instance_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterRestrictedInstanceGroupArgs', 'ClusterRestrictedInstanceGroupArgsDict']]]]] = None,
|
|
198
210
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
211
|
+
tiered_storage_config: Optional[pulumi.Input[Union['ClusterTieredStorageConfigArgs', 'ClusterTieredStorageConfigArgsDict']]] = None,
|
|
199
212
|
vpc_config: Optional[pulumi.Input[Union['ClusterVpcConfigArgs', 'ClusterVpcConfigArgsDict']]] = None,
|
|
200
213
|
__props__=None):
|
|
201
214
|
"""
|
|
@@ -245,6 +258,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
245
258
|
orchestrator: Optional[pulumi.Input[Union['ClusterOrchestratorArgs', 'ClusterOrchestratorArgsDict']]] = None,
|
|
246
259
|
restricted_instance_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterRestrictedInstanceGroupArgs', 'ClusterRestrictedInstanceGroupArgsDict']]]]] = None,
|
|
247
260
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
261
|
+
tiered_storage_config: Optional[pulumi.Input[Union['ClusterTieredStorageConfigArgs', 'ClusterTieredStorageConfigArgsDict']]] = None,
|
|
248
262
|
vpc_config: Optional[pulumi.Input[Union['ClusterVpcConfigArgs', 'ClusterVpcConfigArgsDict']]] = None,
|
|
249
263
|
__props__=None):
|
|
250
264
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -264,6 +278,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
264
278
|
__props__.__dict__["orchestrator"] = orchestrator
|
|
265
279
|
__props__.__dict__["restricted_instance_groups"] = restricted_instance_groups
|
|
266
280
|
__props__.__dict__["tags"] = tags
|
|
281
|
+
__props__.__dict__["tiered_storage_config"] = tiered_storage_config
|
|
267
282
|
__props__.__dict__["vpc_config"] = vpc_config
|
|
268
283
|
__props__.__dict__["cluster_arn"] = None
|
|
269
284
|
__props__.__dict__["cluster_status"] = None
|
|
@@ -306,6 +321,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
306
321
|
__props__.__dict__["orchestrator"] = None
|
|
307
322
|
__props__.__dict__["restricted_instance_groups"] = None
|
|
308
323
|
__props__.__dict__["tags"] = None
|
|
324
|
+
__props__.__dict__["tiered_storage_config"] = None
|
|
309
325
|
__props__.__dict__["vpc_config"] = None
|
|
310
326
|
return Cluster(resource_name, opts=opts, __props__=__props__)
|
|
311
327
|
|
|
@@ -407,6 +423,11 @@ class Cluster(pulumi.CustomResource):
|
|
|
407
423
|
"""
|
|
408
424
|
return pulumi.get(self, "tags")
|
|
409
425
|
|
|
426
|
+
@_builtins.property
|
|
427
|
+
@pulumi.getter(name="tieredStorageConfig")
|
|
428
|
+
def tiered_storage_config(self) -> pulumi.Output[Optional['outputs.ClusterTieredStorageConfig']]:
|
|
429
|
+
return pulumi.get(self, "tiered_storage_config")
|
|
430
|
+
|
|
410
431
|
@_builtins.property
|
|
411
432
|
@pulumi.getter(name="vpcConfig")
|
|
412
433
|
def vpc_config(self) -> pulumi.Output[Optional['outputs.ClusterVpcConfig']]:
|
|
@@ -26,7 +26,7 @@ __all__ = [
|
|
|
26
26
|
|
|
27
27
|
@pulumi.output_type
|
|
28
28
|
class GetClusterResult:
|
|
29
|
-
def __init__(__self__, auto_scaling=None, cluster_arn=None, cluster_role=None, cluster_status=None, creation_time=None, failure_message=None, instance_groups=None, node_provisioning_mode=None, node_recovery=None, restricted_instance_groups=None, tags=None):
|
|
29
|
+
def __init__(__self__, auto_scaling=None, cluster_arn=None, cluster_role=None, cluster_status=None, creation_time=None, failure_message=None, instance_groups=None, node_provisioning_mode=None, node_recovery=None, restricted_instance_groups=None, tags=None, tiered_storage_config=None):
|
|
30
30
|
if auto_scaling and not isinstance(auto_scaling, dict):
|
|
31
31
|
raise TypeError("Expected argument 'auto_scaling' to be a dict")
|
|
32
32
|
pulumi.set(__self__, "auto_scaling", auto_scaling)
|
|
@@ -60,6 +60,9 @@ class GetClusterResult:
|
|
|
60
60
|
if tags and not isinstance(tags, list):
|
|
61
61
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
62
62
|
pulumi.set(__self__, "tags", tags)
|
|
63
|
+
if tiered_storage_config and not isinstance(tiered_storage_config, dict):
|
|
64
|
+
raise TypeError("Expected argument 'tiered_storage_config' to be a dict")
|
|
65
|
+
pulumi.set(__self__, "tiered_storage_config", tiered_storage_config)
|
|
63
66
|
|
|
64
67
|
@_builtins.property
|
|
65
68
|
@pulumi.getter(name="autoScaling")
|
|
@@ -143,6 +146,11 @@ class GetClusterResult:
|
|
|
143
146
|
"""
|
|
144
147
|
return pulumi.get(self, "tags")
|
|
145
148
|
|
|
149
|
+
@_builtins.property
|
|
150
|
+
@pulumi.getter(name="tieredStorageConfig")
|
|
151
|
+
def tiered_storage_config(self) -> Optional['outputs.ClusterTieredStorageConfig']:
|
|
152
|
+
return pulumi.get(self, "tiered_storage_config")
|
|
153
|
+
|
|
146
154
|
|
|
147
155
|
class AwaitableGetClusterResult(GetClusterResult):
|
|
148
156
|
# pylint: disable=using-constant-test
|
|
@@ -160,7 +168,8 @@ class AwaitableGetClusterResult(GetClusterResult):
|
|
|
160
168
|
node_provisioning_mode=self.node_provisioning_mode,
|
|
161
169
|
node_recovery=self.node_recovery,
|
|
162
170
|
restricted_instance_groups=self.restricted_instance_groups,
|
|
163
|
-
tags=self.tags
|
|
171
|
+
tags=self.tags,
|
|
172
|
+
tiered_storage_config=self.tiered_storage_config)
|
|
164
173
|
|
|
165
174
|
|
|
166
175
|
def get_cluster(cluster_arn: Optional[_builtins.str] = None,
|
|
@@ -187,7 +196,8 @@ def get_cluster(cluster_arn: Optional[_builtins.str] = None,
|
|
|
187
196
|
node_provisioning_mode=pulumi.get(__ret__, 'node_provisioning_mode'),
|
|
188
197
|
node_recovery=pulumi.get(__ret__, 'node_recovery'),
|
|
189
198
|
restricted_instance_groups=pulumi.get(__ret__, 'restricted_instance_groups'),
|
|
190
|
-
tags=pulumi.get(__ret__, 'tags')
|
|
199
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
200
|
+
tiered_storage_config=pulumi.get(__ret__, 'tiered_storage_config'))
|
|
191
201
|
def get_cluster_output(cluster_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
192
202
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetClusterResult]:
|
|
193
203
|
"""
|
|
@@ -211,4 +221,5 @@ def get_cluster_output(cluster_arn: Optional[pulumi.Input[_builtins.str]] = None
|
|
|
211
221
|
node_provisioning_mode=pulumi.get(__response__, 'node_provisioning_mode'),
|
|
212
222
|
node_recovery=pulumi.get(__response__, 'node_recovery'),
|
|
213
223
|
restricted_instance_groups=pulumi.get(__response__, 'restricted_instance_groups'),
|
|
214
|
-
tags=pulumi.get(__response__, 'tags')
|
|
224
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
225
|
+
tiered_storage_config=pulumi.get(__response__, 'tiered_storage_config')))
|
|
@@ -39,6 +39,7 @@ __all__ = [
|
|
|
39
39
|
'ClusterRestrictedInstanceGroup',
|
|
40
40
|
'ClusterRollingUpdatePolicy',
|
|
41
41
|
'ClusterScheduledUpdateConfig',
|
|
42
|
+
'ClusterTieredStorageConfig',
|
|
42
43
|
'ClusterVpcConfig',
|
|
43
44
|
'DataQualityJobDefinitionBatchTransformInput',
|
|
44
45
|
'DataQualityJobDefinitionClusterConfig',
|
|
@@ -1557,6 +1558,57 @@ class ClusterScheduledUpdateConfig(dict):
|
|
|
1557
1558
|
return pulumi.get(self, "deployment_config")
|
|
1558
1559
|
|
|
1559
1560
|
|
|
1561
|
+
@pulumi.output_type
|
|
1562
|
+
class ClusterTieredStorageConfig(dict):
|
|
1563
|
+
"""
|
|
1564
|
+
Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
1565
|
+
"""
|
|
1566
|
+
@staticmethod
|
|
1567
|
+
def __key_warning(key: str):
|
|
1568
|
+
suggest = None
|
|
1569
|
+
if key == "instanceMemoryAllocationPercentage":
|
|
1570
|
+
suggest = "instance_memory_allocation_percentage"
|
|
1571
|
+
|
|
1572
|
+
if suggest:
|
|
1573
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterTieredStorageConfig. Access the value via the '{suggest}' property getter instead.")
|
|
1574
|
+
|
|
1575
|
+
def __getitem__(self, key: str) -> Any:
|
|
1576
|
+
ClusterTieredStorageConfig.__key_warning(key)
|
|
1577
|
+
return super().__getitem__(key)
|
|
1578
|
+
|
|
1579
|
+
def get(self, key: str, default = None) -> Any:
|
|
1580
|
+
ClusterTieredStorageConfig.__key_warning(key)
|
|
1581
|
+
return super().get(key, default)
|
|
1582
|
+
|
|
1583
|
+
def __init__(__self__, *,
|
|
1584
|
+
mode: 'ClusterTieredStorageConfigMode',
|
|
1585
|
+
instance_memory_allocation_percentage: Optional[_builtins.int] = None):
|
|
1586
|
+
"""
|
|
1587
|
+
Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
1588
|
+
:param 'ClusterTieredStorageConfigMode' mode: The mode of tiered storage.
|
|
1589
|
+
:param _builtins.int instance_memory_allocation_percentage: The percentage of instance memory to allocate for tiered storage.
|
|
1590
|
+
"""
|
|
1591
|
+
pulumi.set(__self__, "mode", mode)
|
|
1592
|
+
if instance_memory_allocation_percentage is not None:
|
|
1593
|
+
pulumi.set(__self__, "instance_memory_allocation_percentage", instance_memory_allocation_percentage)
|
|
1594
|
+
|
|
1595
|
+
@_builtins.property
|
|
1596
|
+
@pulumi.getter
|
|
1597
|
+
def mode(self) -> 'ClusterTieredStorageConfigMode':
|
|
1598
|
+
"""
|
|
1599
|
+
The mode of tiered storage.
|
|
1600
|
+
"""
|
|
1601
|
+
return pulumi.get(self, "mode")
|
|
1602
|
+
|
|
1603
|
+
@_builtins.property
|
|
1604
|
+
@pulumi.getter(name="instanceMemoryAllocationPercentage")
|
|
1605
|
+
def instance_memory_allocation_percentage(self) -> Optional[_builtins.int]:
|
|
1606
|
+
"""
|
|
1607
|
+
The percentage of instance memory to allocate for tiered storage.
|
|
1608
|
+
"""
|
|
1609
|
+
return pulumi.get(self, "instance_memory_allocation_percentage")
|
|
1610
|
+
|
|
1611
|
+
|
|
1560
1612
|
@pulumi.output_type
|
|
1561
1613
|
class ClusterVpcConfig(dict):
|
|
1562
1614
|
"""
|
|
@@ -4180,6 +4232,7 @@ class DomainSettings(dict):
|
|
|
4180
4232
|
A collection of Domain settings.
|
|
4181
4233
|
:param 'DomainDockerSettings' docker_settings: A collection of settings that configure the domain's Docker interaction.
|
|
4182
4234
|
:param 'DomainSettingsExecutionRoleIdentityConfig' execution_role_identity_config: The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
|
|
4235
|
+
:param 'DomainIpAddressType' ip_address_type: The IP address type for the domain. Specify `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and IPv6 connectivity. When you specify `dualstack` , the subnet must support IPv6 CIDR blocks. If not specified, defaults to `ipv4` .
|
|
4183
4236
|
:param 'DomainRStudioServerProDomainSettings' r_studio_server_pro_domain_settings: A collection of settings that configure the `RStudioServerPro` Domain-level app.
|
|
4184
4237
|
:param Sequence[_builtins.str] security_group_ids: The security groups for the Amazon Virtual Private Cloud that the Domain uses for communication between Domain-level apps and user apps.
|
|
4185
4238
|
:param 'DomainUnifiedStudioSettings' unified_studio_settings: The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
@@ -4216,6 +4269,9 @@ class DomainSettings(dict):
|
|
|
4216
4269
|
@_builtins.property
|
|
4217
4270
|
@pulumi.getter(name="ipAddressType")
|
|
4218
4271
|
def ip_address_type(self) -> Optional['DomainIpAddressType']:
|
|
4272
|
+
"""
|
|
4273
|
+
The IP address type for the domain. Specify `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and IPv6 connectivity. When you specify `dualstack` , the subnet must support IPv6 CIDR blocks. If not specified, defaults to `ipv4` .
|
|
4274
|
+
"""
|
|
4219
4275
|
return pulumi.get(self, "ip_address_type")
|
|
4220
4276
|
|
|
4221
4277
|
@_builtins.property
|
pulumi_aws_native/ssm/_inputs.py
CHANGED
|
@@ -615,6 +615,8 @@ if not MYPY:
|
|
|
615
615
|
"""
|
|
616
616
|
The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of `7` means that patches are approved seven days after they are released.
|
|
617
617
|
|
|
618
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If the day represented by `7` is `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
619
|
+
|
|
618
620
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveAfterDays` or `ApproveUntilDate` .
|
|
619
621
|
|
|
620
622
|
Not supported for Debian Server or Ubuntu Server.
|
|
@@ -625,7 +627,9 @@ if not MYPY:
|
|
|
625
627
|
"""
|
|
626
628
|
The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically.
|
|
627
629
|
|
|
628
|
-
Enter dates in the format `YYYY-MM-DD` . For example, `
|
|
630
|
+
Enter dates in the format `YYYY-MM-DD` . For example, `2025-11-16` .
|
|
631
|
+
|
|
632
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If you enter the date `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
629
633
|
|
|
630
634
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveUntilDate` or `ApproveAfterDays` .
|
|
631
635
|
|
|
@@ -660,6 +664,8 @@ class PatchBaselineRuleArgs:
|
|
|
660
664
|
Defines an approval rule for a patch baseline.
|
|
661
665
|
:param pulumi.Input[_builtins.int] approve_after_days: The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of `7` means that patches are approved seven days after they are released.
|
|
662
666
|
|
|
667
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If the day represented by `7` is `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
668
|
+
|
|
663
669
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveAfterDays` or `ApproveUntilDate` .
|
|
664
670
|
|
|
665
671
|
Not supported for Debian Server or Ubuntu Server.
|
|
@@ -667,7 +673,9 @@ class PatchBaselineRuleArgs:
|
|
|
667
673
|
> Use caution when setting this value for Windows Server patch baselines. Because patch updates that are replaced by later updates are removed, setting too broad a value for this parameter can result in crucial patches not being installed. For more information, see the *Windows Server* tab in the topic [How security patches are selected](https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-selecting-patches.html) in the *AWS Systems Manager User Guide* .
|
|
668
674
|
:param pulumi.Input[_builtins.str] approve_until_date: The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically.
|
|
669
675
|
|
|
670
|
-
Enter dates in the format `YYYY-MM-DD` . For example, `
|
|
676
|
+
Enter dates in the format `YYYY-MM-DD` . For example, `2025-11-16` .
|
|
677
|
+
|
|
678
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If you enter the date `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
671
679
|
|
|
672
680
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveUntilDate` or `ApproveAfterDays` .
|
|
673
681
|
|
|
@@ -695,6 +703,8 @@ class PatchBaselineRuleArgs:
|
|
|
695
703
|
"""
|
|
696
704
|
The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of `7` means that patches are approved seven days after they are released.
|
|
697
705
|
|
|
706
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If the day represented by `7` is `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
707
|
+
|
|
698
708
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveAfterDays` or `ApproveUntilDate` .
|
|
699
709
|
|
|
700
710
|
Not supported for Debian Server or Ubuntu Server.
|
|
@@ -713,7 +723,9 @@ class PatchBaselineRuleArgs:
|
|
|
713
723
|
"""
|
|
714
724
|
The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically.
|
|
715
725
|
|
|
716
|
-
Enter dates in the format `YYYY-MM-DD` . For example, `
|
|
726
|
+
Enter dates in the format `YYYY-MM-DD` . For example, `2025-11-16` .
|
|
727
|
+
|
|
728
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If you enter the date `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
717
729
|
|
|
718
730
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveUntilDate` or `ApproveAfterDays` .
|
|
719
731
|
|
pulumi_aws_native/ssm/outputs.py
CHANGED
|
@@ -449,6 +449,8 @@ class PatchBaselineRule(dict):
|
|
|
449
449
|
Defines an approval rule for a patch baseline.
|
|
450
450
|
:param _builtins.int approve_after_days: The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of `7` means that patches are approved seven days after they are released.
|
|
451
451
|
|
|
452
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If the day represented by `7` is `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
453
|
+
|
|
452
454
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveAfterDays` or `ApproveUntilDate` .
|
|
453
455
|
|
|
454
456
|
Not supported for Debian Server or Ubuntu Server.
|
|
@@ -456,7 +458,9 @@ class PatchBaselineRule(dict):
|
|
|
456
458
|
> Use caution when setting this value for Windows Server patch baselines. Because patch updates that are replaced by later updates are removed, setting too broad a value for this parameter can result in crucial patches not being installed. For more information, see the *Windows Server* tab in the topic [How security patches are selected](https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-selecting-patches.html) in the *AWS Systems Manager User Guide* .
|
|
457
459
|
:param _builtins.str approve_until_date: The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically.
|
|
458
460
|
|
|
459
|
-
Enter dates in the format `YYYY-MM-DD` . For example, `
|
|
461
|
+
Enter dates in the format `YYYY-MM-DD` . For example, `2025-11-16` .
|
|
462
|
+
|
|
463
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If you enter the date `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
460
464
|
|
|
461
465
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveUntilDate` or `ApproveAfterDays` .
|
|
462
466
|
|
|
@@ -484,6 +488,8 @@ class PatchBaselineRule(dict):
|
|
|
484
488
|
"""
|
|
485
489
|
The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of `7` means that patches are approved seven days after they are released.
|
|
486
490
|
|
|
491
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If the day represented by `7` is `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
492
|
+
|
|
487
493
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveAfterDays` or `ApproveUntilDate` .
|
|
488
494
|
|
|
489
495
|
Not supported for Debian Server or Ubuntu Server.
|
|
@@ -498,7 +504,9 @@ class PatchBaselineRule(dict):
|
|
|
498
504
|
"""
|
|
499
505
|
The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically.
|
|
500
506
|
|
|
501
|
-
Enter dates in the format `YYYY-MM-DD` . For example, `
|
|
507
|
+
Enter dates in the format `YYYY-MM-DD` . For example, `2025-11-16` .
|
|
508
|
+
|
|
509
|
+
Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If you enter the date `2025-11-16` , patches released between `2025-11-16T00:00:00Z` and `2025-11-16T23:59:59Z` will be included in the approval.
|
|
502
510
|
|
|
503
511
|
This parameter is marked as `Required: No` , but your request must include a value for either `ApproveUntilDate` or `ApproveAfterDays` .
|
|
504
512
|
|
|
@@ -56,11 +56,17 @@ class GetLifecycleAutomationResult:
|
|
|
56
56
|
@_builtins.property
|
|
57
57
|
@pulumi.getter(name="automationParameters")
|
|
58
58
|
def automation_parameters(self) -> Optional[Mapping[str, Any]]:
|
|
59
|
+
"""
|
|
60
|
+
A map of key-value parameters passed to the Automation document during execution. Each parameter name maps to a list of values, even for single values. Parameters can include configuration-specific values for your automation workflow.
|
|
61
|
+
"""
|
|
59
62
|
return pulumi.get(self, "automation_parameters")
|
|
60
63
|
|
|
61
64
|
@_builtins.property
|
|
62
65
|
@pulumi.getter
|
|
63
66
|
def tags(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
67
|
+
"""
|
|
68
|
+
Tags applied to the underlying SSM Association created by this resource. Tags help identify and organize automation executions.
|
|
69
|
+
"""
|
|
64
70
|
return pulumi.get(self, "tags")
|
|
65
71
|
|
|
66
72
|
|
|
@@ -26,7 +26,9 @@ class LifecycleAutomationArgs:
|
|
|
26
26
|
"""
|
|
27
27
|
The set of arguments for constructing a LifecycleAutomation resource.
|
|
28
28
|
:param pulumi.Input[_builtins.str] automation_document: The name of the Automation document to execute
|
|
29
|
+
:param pulumi.Input[Mapping[str, Any]] automation_parameters: A map of key-value parameters passed to the Automation document during execution. Each parameter name maps to a list of values, even for single values. Parameters can include configuration-specific values for your automation workflow.
|
|
29
30
|
:param pulumi.Input[_builtins.str] resource_key: A unique identifier used for generating a unique logical ID for the custom resource
|
|
31
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Tags applied to the underlying SSM Association created by this resource. Tags help identify and organize automation executions.
|
|
30
32
|
"""
|
|
31
33
|
pulumi.set(__self__, "automation_document", automation_document)
|
|
32
34
|
pulumi.set(__self__, "automation_parameters", automation_parameters)
|
|
@@ -49,6 +51,9 @@ class LifecycleAutomationArgs:
|
|
|
49
51
|
@_builtins.property
|
|
50
52
|
@pulumi.getter(name="automationParameters")
|
|
51
53
|
def automation_parameters(self) -> pulumi.Input[Mapping[str, Any]]:
|
|
54
|
+
"""
|
|
55
|
+
A map of key-value parameters passed to the Automation document during execution. Each parameter name maps to a list of values, even for single values. Parameters can include configuration-specific values for your automation workflow.
|
|
56
|
+
"""
|
|
52
57
|
return pulumi.get(self, "automation_parameters")
|
|
53
58
|
|
|
54
59
|
@automation_parameters.setter
|
|
@@ -70,6 +75,9 @@ class LifecycleAutomationArgs:
|
|
|
70
75
|
@_builtins.property
|
|
71
76
|
@pulumi.getter
|
|
72
77
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
78
|
+
"""
|
|
79
|
+
Tags applied to the underlying SSM Association created by this resource. Tags help identify and organize automation executions.
|
|
80
|
+
"""
|
|
73
81
|
return pulumi.get(self, "tags")
|
|
74
82
|
|
|
75
83
|
@tags.setter
|
|
@@ -94,7 +102,9 @@ class LifecycleAutomation(pulumi.CustomResource):
|
|
|
94
102
|
:param str resource_name: The name of the resource.
|
|
95
103
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
96
104
|
:param pulumi.Input[_builtins.str] automation_document: The name of the Automation document to execute
|
|
105
|
+
:param pulumi.Input[Mapping[str, Any]] automation_parameters: A map of key-value parameters passed to the Automation document during execution. Each parameter name maps to a list of values, even for single values. Parameters can include configuration-specific values for your automation workflow.
|
|
97
106
|
:param pulumi.Input[_builtins.str] resource_key: A unique identifier used for generating a unique logical ID for the custom resource
|
|
107
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Tags applied to the underlying SSM Association created by this resource. Tags help identify and organize automation executions.
|
|
98
108
|
"""
|
|
99
109
|
...
|
|
100
110
|
@overload
|
|
@@ -194,6 +204,9 @@ class LifecycleAutomation(pulumi.CustomResource):
|
|
|
194
204
|
@_builtins.property
|
|
195
205
|
@pulumi.getter(name="automationParameters")
|
|
196
206
|
def automation_parameters(self) -> pulumi.Output[Mapping[str, Any]]:
|
|
207
|
+
"""
|
|
208
|
+
A map of key-value parameters passed to the Automation document during execution. Each parameter name maps to a list of values, even for single values. Parameters can include configuration-specific values for your automation workflow.
|
|
209
|
+
"""
|
|
197
210
|
return pulumi.get(self, "automation_parameters")
|
|
198
211
|
|
|
199
212
|
@_builtins.property
|
|
@@ -207,5 +220,8 @@ class LifecycleAutomation(pulumi.CustomResource):
|
|
|
207
220
|
@_builtins.property
|
|
208
221
|
@pulumi.getter
|
|
209
222
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
|
223
|
+
"""
|
|
224
|
+
Tags applied to the underlying SSM Association created by this resource. Tags help identify and organize automation executions.
|
|
225
|
+
"""
|
|
210
226
|
return pulumi.get(self, "tags")
|
|
211
227
|
|