pulumi-aws 7.11.1__py3-none-any.whl → 7.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_aws/__init__.py +57 -0
- pulumi_aws/acm/certificate.py +20 -20
- pulumi_aws/acmpca/certificate.py +8 -8
- pulumi_aws/apigateway/account.py +0 -4
- pulumi_aws/appflow/_inputs.py +33 -0
- pulumi_aws/appflow/outputs.py +22 -0
- pulumi_aws/appsync/graph_ql_api.py +84 -0
- pulumi_aws/bedrock/_inputs.py +97 -21
- pulumi_aws/bedrock/agent_agent_alias.py +94 -0
- pulumi_aws/bedrock/agentcore_agent_runtime.py +4 -4
- pulumi_aws/bedrock/agentcore_browser.py +42 -0
- pulumi_aws/bedrock/agentcore_gateway_target.py +217 -7
- pulumi_aws/bedrock/agentcore_memory.py +37 -9
- pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +38 -0
- pulumi_aws/bedrock/outputs.py +64 -17
- pulumi_aws/cloudfront/_inputs.py +15 -14
- pulumi_aws/cloudfront/distribution.py +28 -0
- pulumi_aws/cloudfront/outputs.py +10 -9
- pulumi_aws/cloudhsmv2/cluster.py +64 -0
- pulumi_aws/cloudwatch/_inputs.py +9 -8
- pulumi_aws/cloudwatch/contributor_managed_insight_rule.py +20 -0
- pulumi_aws/cloudwatch/log_delivery_destination.py +53 -12
- pulumi_aws/cloudwatch/outputs.py +6 -5
- pulumi_aws/codebuild/webhook.py +16 -16
- pulumi_aws/codepipeline/webhook.py +16 -16
- pulumi_aws/connect/_inputs.py +50 -4
- pulumi_aws/connect/outputs.py +95 -4
- pulumi_aws/connect/routing_profile.py +42 -18
- pulumi_aws/datasync/location_fsx_ontap_file_system.py +34 -0
- pulumi_aws/datazone/project.py +24 -0
- pulumi_aws/detective/organization_configuration.py +20 -0
- pulumi_aws/dms/_inputs.py +3 -3
- pulumi_aws/dms/outputs.py +2 -2
- pulumi_aws/ec2/__init__.py +1 -0
- pulumi_aws/ec2/_inputs.py +182 -0
- pulumi_aws/ec2/allowed_images_settings.py +338 -0
- pulumi_aws/ec2/get_coip_pools.py +24 -0
- pulumi_aws/ec2/image_block_public_access.py +48 -1
- pulumi_aws/ec2/outputs.py +167 -0
- pulumi_aws/ec2/security_group.py +6 -6
- pulumi_aws/ec2/serial_console_access.py +50 -3
- pulumi_aws/ec2/vpc_endpoint.py +92 -0
- pulumi_aws/ec2clientvpn/authorization_rule.py +7 -7
- pulumi_aws/ec2clientvpn/route.py +7 -7
- pulumi_aws/ec2transitgateway/instance_connect_endpoint.py +47 -0
- pulumi_aws/ecrpublic/get_images.py +24 -0
- pulumi_aws/ecs/_inputs.py +172 -33
- pulumi_aws/ecs/get_service.py +318 -7
- pulumi_aws/ecs/outputs.py +957 -86
- pulumi_aws/ecs/service.py +76 -0
- pulumi_aws/eks/_inputs.py +195 -5
- pulumi_aws/eks/outputs.py +164 -4
- pulumi_aws/elasticache/_inputs.py +154 -0
- pulumi_aws/elasticache/get_replication_group.py +23 -9
- pulumi_aws/elasticache/outputs.py +204 -0
- pulumi_aws/elasticache/replication_group.py +115 -0
- pulumi_aws/elasticache/reserved_cache_node.py +28 -0
- pulumi_aws/finspace/kx_cluster.py +76 -0
- pulumi_aws/fis/__init__.py +1 -0
- pulumi_aws/fis/target_account_configuration.py +401 -0
- pulumi_aws/glue/job.py +7 -7
- pulumi_aws/guardduty/malware_protection_plan.py +50 -0
- pulumi_aws/guardduty/member_detector_feature.py +42 -0
- pulumi_aws/invoicing/__init__.py +11 -0
- pulumi_aws/invoicing/_inputs.py +128 -0
- pulumi_aws/invoicing/invoice_unit.py +620 -0
- pulumi_aws/invoicing/outputs.py +99 -0
- pulumi_aws/iot/ca_certificate.py +32 -32
- pulumi_aws/iot/get_registration_code.py +8 -8
- pulumi_aws/ivschat/logging_configuration.py +28 -0
- pulumi_aws/kinesis/get_stream.py +15 -1
- pulumi_aws/kinesis/stream.py +47 -0
- pulumi_aws/kms/key.py +7 -7
- pulumi_aws/licensemanager/license_grant.py +36 -0
- pulumi_aws/m2/environment.py +150 -0
- pulumi_aws/networkfirewall/tls_inspection_configuration.py +84 -0
- pulumi_aws/networkflowmonitor/__init__.py +12 -0
- pulumi_aws/networkflowmonitor/_inputs.py +412 -0
- pulumi_aws/networkflowmonitor/monitor.py +568 -0
- pulumi_aws/networkflowmonitor/outputs.py +302 -0
- pulumi_aws/networkflowmonitor/scope.py +443 -0
- pulumi_aws/observabilityadmin/__init__.py +11 -0
- pulumi_aws/observabilityadmin/_inputs.py +506 -0
- pulumi_aws/observabilityadmin/centralization_rule_for_organization.py +637 -0
- pulumi_aws/observabilityadmin/outputs.py +415 -0
- pulumi_aws/opensearch/_inputs.py +92 -133
- pulumi_aws/opensearch/authorize_vpc_endpoint_access.py +4 -4
- pulumi_aws/opensearch/domain.py +60 -0
- pulumi_aws/opensearch/get_domain.py +16 -9
- pulumi_aws/opensearch/outputs.py +131 -2
- pulumi_aws/organizations/get_policies.py +2 -2
- pulumi_aws/organizations/get_policies_for_target.py +2 -2
- pulumi_aws/organizations/get_policy.py +1 -1
- pulumi_aws/organizations/organization.py +7 -7
- pulumi_aws/organizations/policy.py +35 -7
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/quicksight/analysis.py +108 -0
- pulumi_aws/quicksight/dashboard.py +110 -0
- pulumi_aws/quicksight/template.py +126 -0
- pulumi_aws/redshift/cluster_snapshot.py +28 -0
- pulumi_aws/redshift/get_cluster.py +52 -0
- pulumi_aws/redshift/snapshot_copy_grant.py +22 -0
- pulumi_aws/route53/profiles_association.py +30 -0
- pulumi_aws/route53/profiles_resource_association.py +34 -0
- pulumi_aws/s3control/multi_region_access_point_policy.py +76 -0
- pulumi_aws/s3tables/table.py +76 -1
- pulumi_aws/s3tables/table_bucket.py +78 -3
- pulumi_aws/sagemaker/_inputs.py +225 -232
- pulumi_aws/sagemaker/endpoint_configuration.py +111 -64
- pulumi_aws/sagemaker/outputs.py +154 -158
- pulumi_aws/ssmincidents/get_response_plan.py +14 -0
- pulumi_aws/ssoadmin/account_assignment.py +4 -4
- pulumi_aws/transfer/profile.py +20 -0
- pulumi_aws/transfer/server.py +7 -0
- pulumi_aws/transfer/ssh_key.py +6 -6
- pulumi_aws/wafv2/rule_group.py +440 -0
- pulumi_aws/workspacesweb/session_logger_association.py +80 -0
- pulumi_aws/workspacesweb/trust_store_association.py +24 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/RECORD +122 -107
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/top_level.txt +0 -0
pulumi_aws/ecs/get_service.py
CHANGED
|
@@ -27,19 +27,52 @@ class GetServiceResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getService.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, arn=None, availability_zone_rebalancing=None, cluster_arn=None, desired_count=None, id=None, launch_type=None, load_balancers=None, region=None, scheduling_strategy=None, service_name=None, tags=None, task_definition=None):
|
|
30
|
+
def __init__(__self__, arn=None, availability_zone_rebalancing=None, capacity_provider_strategies=None, cluster_arn=None, created_at=None, created_by=None, deployment_configurations=None, deployment_controllers=None, deployments=None, desired_count=None, enable_ecs_managed_tags=None, enable_execute_command=None, events=None, health_check_grace_period_seconds=None, iam_role=None, id=None, launch_type=None, load_balancers=None, network_configurations=None, ordered_placement_strategies=None, pending_count=None, placement_constraints=None, platform_family=None, platform_version=None, propagate_tags=None, region=None, running_count=None, scheduling_strategy=None, service_name=None, service_registries=None, status=None, tags=None, task_definition=None, task_sets=None):
|
|
31
31
|
if arn and not isinstance(arn, str):
|
|
32
32
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
33
33
|
pulumi.set(__self__, "arn", arn)
|
|
34
34
|
if availability_zone_rebalancing and not isinstance(availability_zone_rebalancing, str):
|
|
35
35
|
raise TypeError("Expected argument 'availability_zone_rebalancing' to be a str")
|
|
36
36
|
pulumi.set(__self__, "availability_zone_rebalancing", availability_zone_rebalancing)
|
|
37
|
+
if capacity_provider_strategies and not isinstance(capacity_provider_strategies, list):
|
|
38
|
+
raise TypeError("Expected argument 'capacity_provider_strategies' to be a list")
|
|
39
|
+
pulumi.set(__self__, "capacity_provider_strategies", capacity_provider_strategies)
|
|
37
40
|
if cluster_arn and not isinstance(cluster_arn, str):
|
|
38
41
|
raise TypeError("Expected argument 'cluster_arn' to be a str")
|
|
39
42
|
pulumi.set(__self__, "cluster_arn", cluster_arn)
|
|
43
|
+
if created_at and not isinstance(created_at, str):
|
|
44
|
+
raise TypeError("Expected argument 'created_at' to be a str")
|
|
45
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
46
|
+
if created_by and not isinstance(created_by, str):
|
|
47
|
+
raise TypeError("Expected argument 'created_by' to be a str")
|
|
48
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
49
|
+
if deployment_configurations and not isinstance(deployment_configurations, list):
|
|
50
|
+
raise TypeError("Expected argument 'deployment_configurations' to be a list")
|
|
51
|
+
pulumi.set(__self__, "deployment_configurations", deployment_configurations)
|
|
52
|
+
if deployment_controllers and not isinstance(deployment_controllers, list):
|
|
53
|
+
raise TypeError("Expected argument 'deployment_controllers' to be a list")
|
|
54
|
+
pulumi.set(__self__, "deployment_controllers", deployment_controllers)
|
|
55
|
+
if deployments and not isinstance(deployments, list):
|
|
56
|
+
raise TypeError("Expected argument 'deployments' to be a list")
|
|
57
|
+
pulumi.set(__self__, "deployments", deployments)
|
|
40
58
|
if desired_count and not isinstance(desired_count, int):
|
|
41
59
|
raise TypeError("Expected argument 'desired_count' to be a int")
|
|
42
60
|
pulumi.set(__self__, "desired_count", desired_count)
|
|
61
|
+
if enable_ecs_managed_tags and not isinstance(enable_ecs_managed_tags, bool):
|
|
62
|
+
raise TypeError("Expected argument 'enable_ecs_managed_tags' to be a bool")
|
|
63
|
+
pulumi.set(__self__, "enable_ecs_managed_tags", enable_ecs_managed_tags)
|
|
64
|
+
if enable_execute_command and not isinstance(enable_execute_command, bool):
|
|
65
|
+
raise TypeError("Expected argument 'enable_execute_command' to be a bool")
|
|
66
|
+
pulumi.set(__self__, "enable_execute_command", enable_execute_command)
|
|
67
|
+
if events and not isinstance(events, list):
|
|
68
|
+
raise TypeError("Expected argument 'events' to be a list")
|
|
69
|
+
pulumi.set(__self__, "events", events)
|
|
70
|
+
if health_check_grace_period_seconds and not isinstance(health_check_grace_period_seconds, int):
|
|
71
|
+
raise TypeError("Expected argument 'health_check_grace_period_seconds' to be a int")
|
|
72
|
+
pulumi.set(__self__, "health_check_grace_period_seconds", health_check_grace_period_seconds)
|
|
73
|
+
if iam_role and not isinstance(iam_role, str):
|
|
74
|
+
raise TypeError("Expected argument 'iam_role' to be a str")
|
|
75
|
+
pulumi.set(__self__, "iam_role", iam_role)
|
|
43
76
|
if id and not isinstance(id, str):
|
|
44
77
|
raise TypeError("Expected argument 'id' to be a str")
|
|
45
78
|
pulumi.set(__self__, "id", id)
|
|
@@ -49,48 +82,172 @@ class GetServiceResult:
|
|
|
49
82
|
if load_balancers and not isinstance(load_balancers, list):
|
|
50
83
|
raise TypeError("Expected argument 'load_balancers' to be a list")
|
|
51
84
|
pulumi.set(__self__, "load_balancers", load_balancers)
|
|
85
|
+
if network_configurations and not isinstance(network_configurations, list):
|
|
86
|
+
raise TypeError("Expected argument 'network_configurations' to be a list")
|
|
87
|
+
pulumi.set(__self__, "network_configurations", network_configurations)
|
|
88
|
+
if ordered_placement_strategies and not isinstance(ordered_placement_strategies, list):
|
|
89
|
+
raise TypeError("Expected argument 'ordered_placement_strategies' to be a list")
|
|
90
|
+
pulumi.set(__self__, "ordered_placement_strategies", ordered_placement_strategies)
|
|
91
|
+
if pending_count and not isinstance(pending_count, int):
|
|
92
|
+
raise TypeError("Expected argument 'pending_count' to be a int")
|
|
93
|
+
pulumi.set(__self__, "pending_count", pending_count)
|
|
94
|
+
if placement_constraints and not isinstance(placement_constraints, list):
|
|
95
|
+
raise TypeError("Expected argument 'placement_constraints' to be a list")
|
|
96
|
+
pulumi.set(__self__, "placement_constraints", placement_constraints)
|
|
97
|
+
if platform_family and not isinstance(platform_family, str):
|
|
98
|
+
raise TypeError("Expected argument 'platform_family' to be a str")
|
|
99
|
+
pulumi.set(__self__, "platform_family", platform_family)
|
|
100
|
+
if platform_version and not isinstance(platform_version, str):
|
|
101
|
+
raise TypeError("Expected argument 'platform_version' to be a str")
|
|
102
|
+
pulumi.set(__self__, "platform_version", platform_version)
|
|
103
|
+
if propagate_tags and not isinstance(propagate_tags, str):
|
|
104
|
+
raise TypeError("Expected argument 'propagate_tags' to be a str")
|
|
105
|
+
pulumi.set(__self__, "propagate_tags", propagate_tags)
|
|
52
106
|
if region and not isinstance(region, str):
|
|
53
107
|
raise TypeError("Expected argument 'region' to be a str")
|
|
54
108
|
pulumi.set(__self__, "region", region)
|
|
109
|
+
if running_count and not isinstance(running_count, int):
|
|
110
|
+
raise TypeError("Expected argument 'running_count' to be a int")
|
|
111
|
+
pulumi.set(__self__, "running_count", running_count)
|
|
55
112
|
if scheduling_strategy and not isinstance(scheduling_strategy, str):
|
|
56
113
|
raise TypeError("Expected argument 'scheduling_strategy' to be a str")
|
|
57
114
|
pulumi.set(__self__, "scheduling_strategy", scheduling_strategy)
|
|
58
115
|
if service_name and not isinstance(service_name, str):
|
|
59
116
|
raise TypeError("Expected argument 'service_name' to be a str")
|
|
60
117
|
pulumi.set(__self__, "service_name", service_name)
|
|
118
|
+
if service_registries and not isinstance(service_registries, list):
|
|
119
|
+
raise TypeError("Expected argument 'service_registries' to be a list")
|
|
120
|
+
pulumi.set(__self__, "service_registries", service_registries)
|
|
121
|
+
if status and not isinstance(status, str):
|
|
122
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
123
|
+
pulumi.set(__self__, "status", status)
|
|
61
124
|
if tags and not isinstance(tags, dict):
|
|
62
125
|
raise TypeError("Expected argument 'tags' to be a dict")
|
|
63
126
|
pulumi.set(__self__, "tags", tags)
|
|
64
127
|
if task_definition and not isinstance(task_definition, str):
|
|
65
128
|
raise TypeError("Expected argument 'task_definition' to be a str")
|
|
66
129
|
pulumi.set(__self__, "task_definition", task_definition)
|
|
130
|
+
if task_sets and not isinstance(task_sets, list):
|
|
131
|
+
raise TypeError("Expected argument 'task_sets' to be a list")
|
|
132
|
+
pulumi.set(__self__, "task_sets", task_sets)
|
|
67
133
|
|
|
68
134
|
@_builtins.property
|
|
69
135
|
@pulumi.getter
|
|
70
136
|
def arn(self) -> _builtins.str:
|
|
71
137
|
"""
|
|
72
|
-
ARN of the
|
|
138
|
+
ARN of the task set
|
|
73
139
|
"""
|
|
74
140
|
return pulumi.get(self, "arn")
|
|
75
141
|
|
|
76
142
|
@_builtins.property
|
|
77
143
|
@pulumi.getter(name="availabilityZoneRebalancing")
|
|
78
144
|
def availability_zone_rebalancing(self) -> _builtins.str:
|
|
145
|
+
"""
|
|
146
|
+
Whether Availability Zone rebalancing is enabled
|
|
147
|
+
"""
|
|
79
148
|
return pulumi.get(self, "availability_zone_rebalancing")
|
|
80
149
|
|
|
150
|
+
@_builtins.property
|
|
151
|
+
@pulumi.getter(name="capacityProviderStrategies")
|
|
152
|
+
def capacity_provider_strategies(self) -> Sequence['outputs.GetServiceCapacityProviderStrategyResult']:
|
|
153
|
+
"""
|
|
154
|
+
Capacity provider strategy for the service. See `capacity_provider_strategy` Block for details.
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "capacity_provider_strategies")
|
|
157
|
+
|
|
81
158
|
@_builtins.property
|
|
82
159
|
@pulumi.getter(name="clusterArn")
|
|
83
160
|
def cluster_arn(self) -> _builtins.str:
|
|
84
161
|
return pulumi.get(self, "cluster_arn")
|
|
85
162
|
|
|
163
|
+
@_builtins.property
|
|
164
|
+
@pulumi.getter(name="createdAt")
|
|
165
|
+
def created_at(self) -> _builtins.str:
|
|
166
|
+
"""
|
|
167
|
+
Time when task set was created (RFC3339 format)
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "created_at")
|
|
170
|
+
|
|
171
|
+
@_builtins.property
|
|
172
|
+
@pulumi.getter(name="createdBy")
|
|
173
|
+
def created_by(self) -> _builtins.str:
|
|
174
|
+
"""
|
|
175
|
+
Principal that created the service
|
|
176
|
+
"""
|
|
177
|
+
return pulumi.get(self, "created_by")
|
|
178
|
+
|
|
179
|
+
@_builtins.property
|
|
180
|
+
@pulumi.getter(name="deploymentConfigurations")
|
|
181
|
+
def deployment_configurations(self) -> Sequence['outputs.GetServiceDeploymentConfigurationResult']:
|
|
182
|
+
"""
|
|
183
|
+
Deployment configuration for the service. See `deployment_configuration` Block for details.
|
|
184
|
+
"""
|
|
185
|
+
return pulumi.get(self, "deployment_configurations")
|
|
186
|
+
|
|
187
|
+
@_builtins.property
|
|
188
|
+
@pulumi.getter(name="deploymentControllers")
|
|
189
|
+
def deployment_controllers(self) -> Sequence['outputs.GetServiceDeploymentControllerResult']:
|
|
190
|
+
"""
|
|
191
|
+
Deployment controller configuration. See `deployment_controller` Block for details.
|
|
192
|
+
"""
|
|
193
|
+
return pulumi.get(self, "deployment_controllers")
|
|
194
|
+
|
|
195
|
+
@_builtins.property
|
|
196
|
+
@pulumi.getter
|
|
197
|
+
def deployments(self) -> Sequence['outputs.GetServiceDeploymentResult']:
|
|
198
|
+
"""
|
|
199
|
+
Current deployments for the service. See `deployments` Block for details.
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "deployments")
|
|
202
|
+
|
|
86
203
|
@_builtins.property
|
|
87
204
|
@pulumi.getter(name="desiredCount")
|
|
88
205
|
def desired_count(self) -> _builtins.int:
|
|
89
206
|
"""
|
|
90
|
-
|
|
207
|
+
Desired number of tasks
|
|
91
208
|
"""
|
|
92
209
|
return pulumi.get(self, "desired_count")
|
|
93
210
|
|
|
211
|
+
@_builtins.property
|
|
212
|
+
@pulumi.getter(name="enableEcsManagedTags")
|
|
213
|
+
def enable_ecs_managed_tags(self) -> _builtins.bool:
|
|
214
|
+
"""
|
|
215
|
+
Whether ECS managed tags are enabled
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "enable_ecs_managed_tags")
|
|
218
|
+
|
|
219
|
+
@_builtins.property
|
|
220
|
+
@pulumi.getter(name="enableExecuteCommand")
|
|
221
|
+
def enable_execute_command(self) -> _builtins.bool:
|
|
222
|
+
"""
|
|
223
|
+
Whether execute command functionality is enabled
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "enable_execute_command")
|
|
226
|
+
|
|
227
|
+
@_builtins.property
|
|
228
|
+
@pulumi.getter
|
|
229
|
+
def events(self) -> Sequence['outputs.GetServiceEventResult']:
|
|
230
|
+
"""
|
|
231
|
+
Recent service events. See `events` Block for details.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "events")
|
|
234
|
+
|
|
235
|
+
@_builtins.property
|
|
236
|
+
@pulumi.getter(name="healthCheckGracePeriodSeconds")
|
|
237
|
+
def health_check_grace_period_seconds(self) -> _builtins.int:
|
|
238
|
+
"""
|
|
239
|
+
Grace period for health checks
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "health_check_grace_period_seconds")
|
|
242
|
+
|
|
243
|
+
@_builtins.property
|
|
244
|
+
@pulumi.getter(name="iamRole")
|
|
245
|
+
def iam_role(self) -> _builtins.str:
|
|
246
|
+
"""
|
|
247
|
+
ARN of the IAM role associated with the service
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "iam_role")
|
|
250
|
+
|
|
94
251
|
@_builtins.property
|
|
95
252
|
@pulumi.getter
|
|
96
253
|
def id(self) -> _builtins.str:
|
|
@@ -115,11 +272,75 @@ class GetServiceResult:
|
|
|
115
272
|
"""
|
|
116
273
|
return pulumi.get(self, "load_balancers")
|
|
117
274
|
|
|
275
|
+
@_builtins.property
|
|
276
|
+
@pulumi.getter(name="networkConfigurations")
|
|
277
|
+
def network_configurations(self) -> Sequence['outputs.GetServiceNetworkConfigurationResult']:
|
|
278
|
+
"""
|
|
279
|
+
Network configuration for the service. See `network_configuration` Block for details.
|
|
280
|
+
"""
|
|
281
|
+
return pulumi.get(self, "network_configurations")
|
|
282
|
+
|
|
283
|
+
@_builtins.property
|
|
284
|
+
@pulumi.getter(name="orderedPlacementStrategies")
|
|
285
|
+
def ordered_placement_strategies(self) -> Sequence['outputs.GetServiceOrderedPlacementStrategyResult']:
|
|
286
|
+
"""
|
|
287
|
+
Placement strategy for tasks. See `ordered_placement_strategy` Block for details.
|
|
288
|
+
"""
|
|
289
|
+
return pulumi.get(self, "ordered_placement_strategies")
|
|
290
|
+
|
|
291
|
+
@_builtins.property
|
|
292
|
+
@pulumi.getter(name="pendingCount")
|
|
293
|
+
def pending_count(self) -> _builtins.int:
|
|
294
|
+
"""
|
|
295
|
+
Number of pending tasks
|
|
296
|
+
"""
|
|
297
|
+
return pulumi.get(self, "pending_count")
|
|
298
|
+
|
|
299
|
+
@_builtins.property
|
|
300
|
+
@pulumi.getter(name="placementConstraints")
|
|
301
|
+
def placement_constraints(self) -> Sequence['outputs.GetServicePlacementConstraintResult']:
|
|
302
|
+
"""
|
|
303
|
+
Placement constraints for tasks. See `placement_constraints` Block for details.
|
|
304
|
+
"""
|
|
305
|
+
return pulumi.get(self, "placement_constraints")
|
|
306
|
+
|
|
307
|
+
@_builtins.property
|
|
308
|
+
@pulumi.getter(name="platformFamily")
|
|
309
|
+
def platform_family(self) -> _builtins.str:
|
|
310
|
+
"""
|
|
311
|
+
Platform family for Fargate tasks
|
|
312
|
+
"""
|
|
313
|
+
return pulumi.get(self, "platform_family")
|
|
314
|
+
|
|
315
|
+
@_builtins.property
|
|
316
|
+
@pulumi.getter(name="platformVersion")
|
|
317
|
+
def platform_version(self) -> _builtins.str:
|
|
318
|
+
"""
|
|
319
|
+
Platform version for Fargate tasks
|
|
320
|
+
"""
|
|
321
|
+
return pulumi.get(self, "platform_version")
|
|
322
|
+
|
|
323
|
+
@_builtins.property
|
|
324
|
+
@pulumi.getter(name="propagateTags")
|
|
325
|
+
def propagate_tags(self) -> _builtins.str:
|
|
326
|
+
"""
|
|
327
|
+
Whether tags are propagated from task definition or service
|
|
328
|
+
"""
|
|
329
|
+
return pulumi.get(self, "propagate_tags")
|
|
330
|
+
|
|
118
331
|
@_builtins.property
|
|
119
332
|
@pulumi.getter
|
|
120
333
|
def region(self) -> _builtins.str:
|
|
121
334
|
return pulumi.get(self, "region")
|
|
122
335
|
|
|
336
|
+
@_builtins.property
|
|
337
|
+
@pulumi.getter(name="runningCount")
|
|
338
|
+
def running_count(self) -> _builtins.int:
|
|
339
|
+
"""
|
|
340
|
+
Number of running tasks
|
|
341
|
+
"""
|
|
342
|
+
return pulumi.get(self, "running_count")
|
|
343
|
+
|
|
123
344
|
@_builtins.property
|
|
124
345
|
@pulumi.getter(name="schedulingStrategy")
|
|
125
346
|
def scheduling_strategy(self) -> _builtins.str:
|
|
@@ -133,6 +354,22 @@ class GetServiceResult:
|
|
|
133
354
|
def service_name(self) -> _builtins.str:
|
|
134
355
|
return pulumi.get(self, "service_name")
|
|
135
356
|
|
|
357
|
+
@_builtins.property
|
|
358
|
+
@pulumi.getter(name="serviceRegistries")
|
|
359
|
+
def service_registries(self) -> Sequence['outputs.GetServiceServiceRegistryResult']:
|
|
360
|
+
"""
|
|
361
|
+
Service discovery registries. See `service_registries` Block for details.
|
|
362
|
+
"""
|
|
363
|
+
return pulumi.get(self, "service_registries")
|
|
364
|
+
|
|
365
|
+
@_builtins.property
|
|
366
|
+
@pulumi.getter
|
|
367
|
+
def status(self) -> _builtins.str:
|
|
368
|
+
"""
|
|
369
|
+
Task set status
|
|
370
|
+
"""
|
|
371
|
+
return pulumi.get(self, "status")
|
|
372
|
+
|
|
136
373
|
@_builtins.property
|
|
137
374
|
@pulumi.getter
|
|
138
375
|
def tags(self) -> Mapping[str, _builtins.str]:
|
|
@@ -145,10 +382,18 @@ class GetServiceResult:
|
|
|
145
382
|
@pulumi.getter(name="taskDefinition")
|
|
146
383
|
def task_definition(self) -> _builtins.str:
|
|
147
384
|
"""
|
|
148
|
-
|
|
385
|
+
Task definition ARN
|
|
149
386
|
"""
|
|
150
387
|
return pulumi.get(self, "task_definition")
|
|
151
388
|
|
|
389
|
+
@_builtins.property
|
|
390
|
+
@pulumi.getter(name="taskSets")
|
|
391
|
+
def task_sets(self) -> Sequence['outputs.GetServiceTaskSetResult']:
|
|
392
|
+
"""
|
|
393
|
+
Task sets for the service. See `task_sets` Block for details.
|
|
394
|
+
"""
|
|
395
|
+
return pulumi.get(self, "task_sets")
|
|
396
|
+
|
|
152
397
|
|
|
153
398
|
class AwaitableGetServiceResult(GetServiceResult):
|
|
154
399
|
# pylint: disable=using-constant-test
|
|
@@ -158,16 +403,38 @@ class AwaitableGetServiceResult(GetServiceResult):
|
|
|
158
403
|
return GetServiceResult(
|
|
159
404
|
arn=self.arn,
|
|
160
405
|
availability_zone_rebalancing=self.availability_zone_rebalancing,
|
|
406
|
+
capacity_provider_strategies=self.capacity_provider_strategies,
|
|
161
407
|
cluster_arn=self.cluster_arn,
|
|
408
|
+
created_at=self.created_at,
|
|
409
|
+
created_by=self.created_by,
|
|
410
|
+
deployment_configurations=self.deployment_configurations,
|
|
411
|
+
deployment_controllers=self.deployment_controllers,
|
|
412
|
+
deployments=self.deployments,
|
|
162
413
|
desired_count=self.desired_count,
|
|
414
|
+
enable_ecs_managed_tags=self.enable_ecs_managed_tags,
|
|
415
|
+
enable_execute_command=self.enable_execute_command,
|
|
416
|
+
events=self.events,
|
|
417
|
+
health_check_grace_period_seconds=self.health_check_grace_period_seconds,
|
|
418
|
+
iam_role=self.iam_role,
|
|
163
419
|
id=self.id,
|
|
164
420
|
launch_type=self.launch_type,
|
|
165
421
|
load_balancers=self.load_balancers,
|
|
422
|
+
network_configurations=self.network_configurations,
|
|
423
|
+
ordered_placement_strategies=self.ordered_placement_strategies,
|
|
424
|
+
pending_count=self.pending_count,
|
|
425
|
+
placement_constraints=self.placement_constraints,
|
|
426
|
+
platform_family=self.platform_family,
|
|
427
|
+
platform_version=self.platform_version,
|
|
428
|
+
propagate_tags=self.propagate_tags,
|
|
166
429
|
region=self.region,
|
|
430
|
+
running_count=self.running_count,
|
|
167
431
|
scheduling_strategy=self.scheduling_strategy,
|
|
168
432
|
service_name=self.service_name,
|
|
433
|
+
service_registries=self.service_registries,
|
|
434
|
+
status=self.status,
|
|
169
435
|
tags=self.tags,
|
|
170
|
-
task_definition=self.task_definition
|
|
436
|
+
task_definition=self.task_definition,
|
|
437
|
+
task_sets=self.task_sets)
|
|
171
438
|
|
|
172
439
|
|
|
173
440
|
def get_service(cluster_arn: Optional[_builtins.str] = None,
|
|
@@ -206,16 +473,38 @@ def get_service(cluster_arn: Optional[_builtins.str] = None,
|
|
|
206
473
|
return AwaitableGetServiceResult(
|
|
207
474
|
arn=pulumi.get(__ret__, 'arn'),
|
|
208
475
|
availability_zone_rebalancing=pulumi.get(__ret__, 'availability_zone_rebalancing'),
|
|
476
|
+
capacity_provider_strategies=pulumi.get(__ret__, 'capacity_provider_strategies'),
|
|
209
477
|
cluster_arn=pulumi.get(__ret__, 'cluster_arn'),
|
|
478
|
+
created_at=pulumi.get(__ret__, 'created_at'),
|
|
479
|
+
created_by=pulumi.get(__ret__, 'created_by'),
|
|
480
|
+
deployment_configurations=pulumi.get(__ret__, 'deployment_configurations'),
|
|
481
|
+
deployment_controllers=pulumi.get(__ret__, 'deployment_controllers'),
|
|
482
|
+
deployments=pulumi.get(__ret__, 'deployments'),
|
|
210
483
|
desired_count=pulumi.get(__ret__, 'desired_count'),
|
|
484
|
+
enable_ecs_managed_tags=pulumi.get(__ret__, 'enable_ecs_managed_tags'),
|
|
485
|
+
enable_execute_command=pulumi.get(__ret__, 'enable_execute_command'),
|
|
486
|
+
events=pulumi.get(__ret__, 'events'),
|
|
487
|
+
health_check_grace_period_seconds=pulumi.get(__ret__, 'health_check_grace_period_seconds'),
|
|
488
|
+
iam_role=pulumi.get(__ret__, 'iam_role'),
|
|
211
489
|
id=pulumi.get(__ret__, 'id'),
|
|
212
490
|
launch_type=pulumi.get(__ret__, 'launch_type'),
|
|
213
491
|
load_balancers=pulumi.get(__ret__, 'load_balancers'),
|
|
492
|
+
network_configurations=pulumi.get(__ret__, 'network_configurations'),
|
|
493
|
+
ordered_placement_strategies=pulumi.get(__ret__, 'ordered_placement_strategies'),
|
|
494
|
+
pending_count=pulumi.get(__ret__, 'pending_count'),
|
|
495
|
+
placement_constraints=pulumi.get(__ret__, 'placement_constraints'),
|
|
496
|
+
platform_family=pulumi.get(__ret__, 'platform_family'),
|
|
497
|
+
platform_version=pulumi.get(__ret__, 'platform_version'),
|
|
498
|
+
propagate_tags=pulumi.get(__ret__, 'propagate_tags'),
|
|
214
499
|
region=pulumi.get(__ret__, 'region'),
|
|
500
|
+
running_count=pulumi.get(__ret__, 'running_count'),
|
|
215
501
|
scheduling_strategy=pulumi.get(__ret__, 'scheduling_strategy'),
|
|
216
502
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
503
|
+
service_registries=pulumi.get(__ret__, 'service_registries'),
|
|
504
|
+
status=pulumi.get(__ret__, 'status'),
|
|
217
505
|
tags=pulumi.get(__ret__, 'tags'),
|
|
218
|
-
task_definition=pulumi.get(__ret__, 'task_definition')
|
|
506
|
+
task_definition=pulumi.get(__ret__, 'task_definition'),
|
|
507
|
+
task_sets=pulumi.get(__ret__, 'task_sets'))
|
|
219
508
|
def get_service_output(cluster_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
220
509
|
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
221
510
|
service_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -251,13 +540,35 @@ def get_service_output(cluster_arn: Optional[pulumi.Input[_builtins.str]] = None
|
|
|
251
540
|
return __ret__.apply(lambda __response__: GetServiceResult(
|
|
252
541
|
arn=pulumi.get(__response__, 'arn'),
|
|
253
542
|
availability_zone_rebalancing=pulumi.get(__response__, 'availability_zone_rebalancing'),
|
|
543
|
+
capacity_provider_strategies=pulumi.get(__response__, 'capacity_provider_strategies'),
|
|
254
544
|
cluster_arn=pulumi.get(__response__, 'cluster_arn'),
|
|
545
|
+
created_at=pulumi.get(__response__, 'created_at'),
|
|
546
|
+
created_by=pulumi.get(__response__, 'created_by'),
|
|
547
|
+
deployment_configurations=pulumi.get(__response__, 'deployment_configurations'),
|
|
548
|
+
deployment_controllers=pulumi.get(__response__, 'deployment_controllers'),
|
|
549
|
+
deployments=pulumi.get(__response__, 'deployments'),
|
|
255
550
|
desired_count=pulumi.get(__response__, 'desired_count'),
|
|
551
|
+
enable_ecs_managed_tags=pulumi.get(__response__, 'enable_ecs_managed_tags'),
|
|
552
|
+
enable_execute_command=pulumi.get(__response__, 'enable_execute_command'),
|
|
553
|
+
events=pulumi.get(__response__, 'events'),
|
|
554
|
+
health_check_grace_period_seconds=pulumi.get(__response__, 'health_check_grace_period_seconds'),
|
|
555
|
+
iam_role=pulumi.get(__response__, 'iam_role'),
|
|
256
556
|
id=pulumi.get(__response__, 'id'),
|
|
257
557
|
launch_type=pulumi.get(__response__, 'launch_type'),
|
|
258
558
|
load_balancers=pulumi.get(__response__, 'load_balancers'),
|
|
559
|
+
network_configurations=pulumi.get(__response__, 'network_configurations'),
|
|
560
|
+
ordered_placement_strategies=pulumi.get(__response__, 'ordered_placement_strategies'),
|
|
561
|
+
pending_count=pulumi.get(__response__, 'pending_count'),
|
|
562
|
+
placement_constraints=pulumi.get(__response__, 'placement_constraints'),
|
|
563
|
+
platform_family=pulumi.get(__response__, 'platform_family'),
|
|
564
|
+
platform_version=pulumi.get(__response__, 'platform_version'),
|
|
565
|
+
propagate_tags=pulumi.get(__response__, 'propagate_tags'),
|
|
259
566
|
region=pulumi.get(__response__, 'region'),
|
|
567
|
+
running_count=pulumi.get(__response__, 'running_count'),
|
|
260
568
|
scheduling_strategy=pulumi.get(__response__, 'scheduling_strategy'),
|
|
261
569
|
service_name=pulumi.get(__response__, 'service_name'),
|
|
570
|
+
service_registries=pulumi.get(__response__, 'service_registries'),
|
|
571
|
+
status=pulumi.get(__response__, 'status'),
|
|
262
572
|
tags=pulumi.get(__response__, 'tags'),
|
|
263
|
-
task_definition=pulumi.get(__response__, 'task_definition')
|
|
573
|
+
task_definition=pulumi.get(__response__, 'task_definition'),
|
|
574
|
+
task_sets=pulumi.get(__response__, 'task_sets')))
|