pulumi-aws-native 1.38.0a1761803003__py3-none-any.whl → 1.38.0a1762272920__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 +17 -1
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +9 -0
- pulumi_aws_native/batch/job_definition.py +8 -0
- pulumi_aws_native/batch/outputs.py +6 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/connection.py +30 -1
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +9 -0
- pulumi_aws_native/ecs/_inputs.py +96 -15
- pulumi_aws_native/ecs/outputs.py +60 -10
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/networkfirewall/_inputs.py +7 -0
- pulumi_aws_native/networkfirewall/firewall.py +3 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +3 -0
- pulumi_aws_native/networkfirewall/outputs.py +4 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/_enums.py +3 -0
- pulumi_aws_native/rtbfabric/_inputs.py +70 -0
- pulumi_aws_native/rtbfabric/get_link.py +18 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +51 -0
- pulumi_aws_native/rtbfabric/outputs.py +46 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_inputs.py +9 -0
- pulumi_aws_native/transfer/connector.py +3 -0
- pulumi_aws_native/transfer/get_connector.py +3 -0
- pulumi_aws_native/transfer/outputs.py +6 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +88 -72
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
pulumi_aws_native/ecs/_inputs.py
CHANGED
|
@@ -2517,7 +2517,13 @@ class ServiceAwsVpcConfigurationArgs:
|
|
|
2517
2517
|
if not MYPY:
|
|
2518
2518
|
class ServiceCanaryConfigurationArgsDict(TypedDict):
|
|
2519
2519
|
canary_bake_time_in_minutes: NotRequired[pulumi.Input[_builtins.int]]
|
|
2520
|
+
"""
|
|
2521
|
+
The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
|
|
2522
|
+
"""
|
|
2520
2523
|
canary_percent: NotRequired[pulumi.Input[_builtins.float]]
|
|
2524
|
+
"""
|
|
2525
|
+
The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
|
|
2526
|
+
"""
|
|
2521
2527
|
elif False:
|
|
2522
2528
|
ServiceCanaryConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
2523
2529
|
|
|
@@ -2526,6 +2532,10 @@ class ServiceCanaryConfigurationArgs:
|
|
|
2526
2532
|
def __init__(__self__, *,
|
|
2527
2533
|
canary_bake_time_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2528
2534
|
canary_percent: Optional[pulumi.Input[_builtins.float]] = None):
|
|
2535
|
+
"""
|
|
2536
|
+
:param pulumi.Input[_builtins.int] canary_bake_time_in_minutes: The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
|
|
2537
|
+
:param pulumi.Input[_builtins.float] canary_percent: The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
|
|
2538
|
+
"""
|
|
2529
2539
|
if canary_bake_time_in_minutes is not None:
|
|
2530
2540
|
pulumi.set(__self__, "canary_bake_time_in_minutes", canary_bake_time_in_minutes)
|
|
2531
2541
|
if canary_percent is not None:
|
|
@@ -2534,6 +2544,9 @@ class ServiceCanaryConfigurationArgs:
|
|
|
2534
2544
|
@_builtins.property
|
|
2535
2545
|
@pulumi.getter(name="canaryBakeTimeInMinutes")
|
|
2536
2546
|
def canary_bake_time_in_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2547
|
+
"""
|
|
2548
|
+
The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
|
|
2549
|
+
"""
|
|
2537
2550
|
return pulumi.get(self, "canary_bake_time_in_minutes")
|
|
2538
2551
|
|
|
2539
2552
|
@canary_bake_time_in_minutes.setter
|
|
@@ -2543,6 +2556,9 @@ class ServiceCanaryConfigurationArgs:
|
|
|
2543
2556
|
@_builtins.property
|
|
2544
2557
|
@pulumi.getter(name="canaryPercent")
|
|
2545
2558
|
def canary_percent(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
2559
|
+
"""
|
|
2560
|
+
The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
|
|
2561
|
+
"""
|
|
2546
2562
|
return pulumi.get(self, "canary_percent")
|
|
2547
2563
|
|
|
2548
2564
|
@canary_percent.setter
|
|
@@ -2695,7 +2711,15 @@ class ServiceCapacityProviderStrategyItemArgs:
|
|
|
2695
2711
|
if not MYPY:
|
|
2696
2712
|
class ServiceConnectAccessLogConfigurationArgsDict(TypedDict):
|
|
2697
2713
|
format: pulumi.Input['ServiceConnectAccessLogConfigurationFormat']
|
|
2714
|
+
"""
|
|
2715
|
+
The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
|
|
2716
|
+
"""
|
|
2698
2717
|
include_query_parameters: NotRequired[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']]
|
|
2718
|
+
"""
|
|
2719
|
+
Specifies whether to include query parameters in Service Connect access logs.
|
|
2720
|
+
|
|
2721
|
+
When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is `DISABLED` .
|
|
2722
|
+
"""
|
|
2699
2723
|
elif False:
|
|
2700
2724
|
ServiceConnectAccessLogConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
2701
2725
|
|
|
@@ -2704,6 +2728,12 @@ class ServiceConnectAccessLogConfigurationArgs:
|
|
|
2704
2728
|
def __init__(__self__, *,
|
|
2705
2729
|
format: pulumi.Input['ServiceConnectAccessLogConfigurationFormat'],
|
|
2706
2730
|
include_query_parameters: Optional[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']] = None):
|
|
2731
|
+
"""
|
|
2732
|
+
:param pulumi.Input['ServiceConnectAccessLogConfigurationFormat'] format: The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
|
|
2733
|
+
:param pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters'] include_query_parameters: Specifies whether to include query parameters in Service Connect access logs.
|
|
2734
|
+
|
|
2735
|
+
When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is `DISABLED` .
|
|
2736
|
+
"""
|
|
2707
2737
|
pulumi.set(__self__, "format", format)
|
|
2708
2738
|
if include_query_parameters is not None:
|
|
2709
2739
|
pulumi.set(__self__, "include_query_parameters", include_query_parameters)
|
|
@@ -2711,6 +2741,9 @@ class ServiceConnectAccessLogConfigurationArgs:
|
|
|
2711
2741
|
@_builtins.property
|
|
2712
2742
|
@pulumi.getter
|
|
2713
2743
|
def format(self) -> pulumi.Input['ServiceConnectAccessLogConfigurationFormat']:
|
|
2744
|
+
"""
|
|
2745
|
+
The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
|
|
2746
|
+
"""
|
|
2714
2747
|
return pulumi.get(self, "format")
|
|
2715
2748
|
|
|
2716
2749
|
@format.setter
|
|
@@ -2720,6 +2753,11 @@ class ServiceConnectAccessLogConfigurationArgs:
|
|
|
2720
2753
|
@_builtins.property
|
|
2721
2754
|
@pulumi.getter(name="includeQueryParameters")
|
|
2722
2755
|
def include_query_parameters(self) -> Optional[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']]:
|
|
2756
|
+
"""
|
|
2757
|
+
Specifies whether to include query parameters in Service Connect access logs.
|
|
2758
|
+
|
|
2759
|
+
When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is `DISABLED` .
|
|
2760
|
+
"""
|
|
2723
2761
|
return pulumi.get(self, "include_query_parameters")
|
|
2724
2762
|
|
|
2725
2763
|
@include_query_parameters.setter
|
|
@@ -2826,6 +2864,11 @@ if not MYPY:
|
|
|
2826
2864
|
Specifies whether to use Service Connect with this service.
|
|
2827
2865
|
"""
|
|
2828
2866
|
access_log_configuration: NotRequired[pulumi.Input['ServiceConnectAccessLogConfigurationArgsDict']]
|
|
2867
|
+
"""
|
|
2868
|
+
The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
|
|
2869
|
+
|
|
2870
|
+
> To enable access logs, you must also specify a `logConfiguration` in the `serviceConnectConfiguration` .
|
|
2871
|
+
"""
|
|
2829
2872
|
log_configuration: NotRequired[pulumi.Input['ServiceLogConfigurationArgsDict']]
|
|
2830
2873
|
"""
|
|
2831
2874
|
The log configuration for the container. This parameter maps to ``LogConfig`` in the docker container create command and the ``--log-driver`` option to docker run.
|
|
@@ -2863,6 +2906,9 @@ class ServiceConnectConfigurationArgs:
|
|
|
2863
2906
|
The Service Connect configuration of your Amazon ECS service. The configuration for this service to discover and connect to services, and be discovered by, and connected from, other services within a namespace.
|
|
2864
2907
|
Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see [Service Connect](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
2865
2908
|
:param pulumi.Input[_builtins.bool] enabled: Specifies whether to use Service Connect with this service.
|
|
2909
|
+
:param pulumi.Input['ServiceConnectAccessLogConfigurationArgs'] access_log_configuration: The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
|
|
2910
|
+
|
|
2911
|
+
> To enable access logs, you must also specify a `logConfiguration` in the `serviceConnectConfiguration` .
|
|
2866
2912
|
:param pulumi.Input['ServiceLogConfigurationArgs'] log_configuration: The log configuration for the container. This parameter maps to ``LogConfig`` in the docker container create command and the ``--log-driver`` option to docker run.
|
|
2867
2913
|
By default, containers use the same logging driver that the Docker daemon uses. However, the container might use a different logging driver than the Docker daemon by specifying a log driver configuration in the container definition.
|
|
2868
2914
|
Understand the following when specifying a log configuration for your containers.
|
|
@@ -2902,6 +2948,11 @@ class ServiceConnectConfigurationArgs:
|
|
|
2902
2948
|
@_builtins.property
|
|
2903
2949
|
@pulumi.getter(name="accessLogConfiguration")
|
|
2904
2950
|
def access_log_configuration(self) -> Optional[pulumi.Input['ServiceConnectAccessLogConfigurationArgs']]:
|
|
2951
|
+
"""
|
|
2952
|
+
The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
|
|
2953
|
+
|
|
2954
|
+
> To enable access logs, you must also specify a `logConfiguration` in the `serviceConnectConfiguration` .
|
|
2955
|
+
"""
|
|
2905
2956
|
return pulumi.get(self, "access_log_configuration")
|
|
2906
2957
|
|
|
2907
2958
|
@access_log_configuration.setter
|
|
@@ -3468,6 +3519,9 @@ if not MYPY:
|
|
|
3468
3519
|
+ For all other cases, the value is set to 36 hours (2160 minutes).
|
|
3469
3520
|
"""
|
|
3470
3521
|
canary_configuration: NotRequired[pulumi.Input['ServiceCanaryConfigurationArgsDict']]
|
|
3522
|
+
"""
|
|
3523
|
+
Configuration for canary deployment strategy. Only valid when the deployment strategy is `CANARY` . This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
|
|
3524
|
+
"""
|
|
3471
3525
|
deployment_circuit_breaker: NotRequired[pulumi.Input['ServiceDeploymentCircuitBreakerArgsDict']]
|
|
3472
3526
|
"""
|
|
3473
3527
|
The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
@@ -3478,6 +3532,9 @@ if not MYPY:
|
|
|
3478
3532
|
An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
3479
3533
|
"""
|
|
3480
3534
|
linear_configuration: NotRequired[pulumi.Input['ServiceLinearConfigurationArgsDict']]
|
|
3535
|
+
"""
|
|
3536
|
+
Configuration for linear deployment strategy. Only valid when the deployment strategy is `LINEAR` . This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
|
|
3537
|
+
"""
|
|
3481
3538
|
maximum_percent: NotRequired[pulumi.Input[_builtins.int]]
|
|
3482
3539
|
"""
|
|
3483
3540
|
If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
@@ -3534,9 +3591,11 @@ class ServiceDeploymentConfigurationArgs:
|
|
|
3534
3591
|
+ For rolling deployments, the value is set to 3 hours (180 minutes).
|
|
3535
3592
|
+ When you use an external deployment controller (``EXTERNAL``), or the ACD blue/green deployment controller (``CODE_DEPLOY``), the value is set to 3 hours (180 minutes).
|
|
3536
3593
|
+ For all other cases, the value is set to 36 hours (2160 minutes).
|
|
3594
|
+
:param pulumi.Input['ServiceCanaryConfigurationArgs'] canary_configuration: Configuration for canary deployment strategy. Only valid when the deployment strategy is `CANARY` . This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
|
|
3537
3595
|
:param pulumi.Input['ServiceDeploymentCircuitBreakerArgs'] deployment_circuit_breaker: The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
3538
3596
|
The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
|
|
3539
3597
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceDeploymentLifecycleHookArgs']]] lifecycle_hooks: An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
3598
|
+
:param pulumi.Input['ServiceLinearConfigurationArgs'] linear_configuration: Configuration for linear deployment strategy. Only valid when the deployment strategy is `LINEAR` . This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
|
|
3540
3599
|
:param pulumi.Input[_builtins.int] maximum_percent: If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
3541
3600
|
The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
|
|
3542
3601
|
If a service is using either the blue/green (``CODE_DEPLOY``) or ``EXTERNAL`` deployment types, and tasks in the service use the EC2 launch type, the *maximum percent* value is set to the default value. The *maximum percent* value is used to define the upper limit on the number of the tasks in the service that remain in the ``RUNNING`` state while the container instances are in the ``DRAINING`` state.
|
|
@@ -3612,6 +3671,9 @@ class ServiceDeploymentConfigurationArgs:
|
|
|
3612
3671
|
@_builtins.property
|
|
3613
3672
|
@pulumi.getter(name="canaryConfiguration")
|
|
3614
3673
|
def canary_configuration(self) -> Optional[pulumi.Input['ServiceCanaryConfigurationArgs']]:
|
|
3674
|
+
"""
|
|
3675
|
+
Configuration for canary deployment strategy. Only valid when the deployment strategy is `CANARY` . This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
|
|
3676
|
+
"""
|
|
3615
3677
|
return pulumi.get(self, "canary_configuration")
|
|
3616
3678
|
|
|
3617
3679
|
@canary_configuration.setter
|
|
@@ -3646,6 +3708,9 @@ class ServiceDeploymentConfigurationArgs:
|
|
|
3646
3708
|
@_builtins.property
|
|
3647
3709
|
@pulumi.getter(name="linearConfiguration")
|
|
3648
3710
|
def linear_configuration(self) -> Optional[pulumi.Input['ServiceLinearConfigurationArgs']]:
|
|
3711
|
+
"""
|
|
3712
|
+
Configuration for linear deployment strategy. Only valid when the deployment strategy is `LINEAR` . This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
|
|
3713
|
+
"""
|
|
3649
3714
|
return pulumi.get(self, "linear_configuration")
|
|
3650
3715
|
|
|
3651
3716
|
@linear_configuration.setter
|
|
@@ -4160,7 +4225,13 @@ class ServiceForceNewDeploymentArgs:
|
|
|
4160
4225
|
if not MYPY:
|
|
4161
4226
|
class ServiceLinearConfigurationArgsDict(TypedDict):
|
|
4162
4227
|
step_bake_time_in_minutes: NotRequired[pulumi.Input[_builtins.int]]
|
|
4228
|
+
"""
|
|
4229
|
+
The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
|
|
4230
|
+
"""
|
|
4163
4231
|
step_percent: NotRequired[pulumi.Input[_builtins.float]]
|
|
4232
|
+
"""
|
|
4233
|
+
The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
|
|
4234
|
+
"""
|
|
4164
4235
|
elif False:
|
|
4165
4236
|
ServiceLinearConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
4166
4237
|
|
|
@@ -4169,6 +4240,10 @@ class ServiceLinearConfigurationArgs:
|
|
|
4169
4240
|
def __init__(__self__, *,
|
|
4170
4241
|
step_bake_time_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4171
4242
|
step_percent: Optional[pulumi.Input[_builtins.float]] = None):
|
|
4243
|
+
"""
|
|
4244
|
+
:param pulumi.Input[_builtins.int] step_bake_time_in_minutes: The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
|
|
4245
|
+
:param pulumi.Input[_builtins.float] step_percent: The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
|
|
4246
|
+
"""
|
|
4172
4247
|
if step_bake_time_in_minutes is not None:
|
|
4173
4248
|
pulumi.set(__self__, "step_bake_time_in_minutes", step_bake_time_in_minutes)
|
|
4174
4249
|
if step_percent is not None:
|
|
@@ -4177,6 +4252,9 @@ class ServiceLinearConfigurationArgs:
|
|
|
4177
4252
|
@_builtins.property
|
|
4178
4253
|
@pulumi.getter(name="stepBakeTimeInMinutes")
|
|
4179
4254
|
def step_bake_time_in_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4255
|
+
"""
|
|
4256
|
+
The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
|
|
4257
|
+
"""
|
|
4180
4258
|
return pulumi.get(self, "step_bake_time_in_minutes")
|
|
4181
4259
|
|
|
4182
4260
|
@step_bake_time_in_minutes.setter
|
|
@@ -4186,6 +4264,9 @@ class ServiceLinearConfigurationArgs:
|
|
|
4186
4264
|
@_builtins.property
|
|
4187
4265
|
@pulumi.getter(name="stepPercent")
|
|
4188
4266
|
def step_percent(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
4267
|
+
"""
|
|
4268
|
+
The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
|
|
4269
|
+
"""
|
|
4189
4270
|
return pulumi.get(self, "step_percent")
|
|
4190
4271
|
|
|
4191
4272
|
@step_percent.setter
|
|
@@ -9278,13 +9359,13 @@ if not MYPY:
|
|
|
9278
9359
|
Base value characteristics:
|
|
9279
9360
|
|
|
9280
9361
|
- Only one capacity provider in a strategy can have a base defined
|
|
9281
|
-
-
|
|
9282
|
-
-
|
|
9362
|
+
- The default value is `0` if not specified
|
|
9363
|
+
- The valid range is 0 to 100,000
|
|
9283
9364
|
- Base requirements are satisfied first before weight distribution
|
|
9284
9365
|
"""
|
|
9285
9366
|
capacity_provider: NotRequired[pulumi.Input[_builtins.str]]
|
|
9286
9367
|
"""
|
|
9287
|
-
The short name of the capacity provider.
|
|
9368
|
+
The short name of the capacity provider. This can be either an AWS managed capacity provider ( `FARGATE` or `FARGATE_SPOT` ) or the name of a custom capacity provider that you created.
|
|
9288
9369
|
"""
|
|
9289
9370
|
weight: NotRequired[pulumi.Input[_builtins.int]]
|
|
9290
9371
|
"""
|
|
@@ -9295,8 +9376,8 @@ if not MYPY:
|
|
|
9295
9376
|
Weight value characteristics:
|
|
9296
9377
|
|
|
9297
9378
|
- Weight is considered after the base value is satisfied
|
|
9298
|
-
-
|
|
9299
|
-
-
|
|
9379
|
+
- The default value is `0` if not specified
|
|
9380
|
+
- The valid range is 0 to 1,000
|
|
9300
9381
|
- At least one capacity provider must have a weight greater than zero
|
|
9301
9382
|
- Capacity providers with weight of `0` cannot place tasks
|
|
9302
9383
|
|
|
@@ -9326,10 +9407,10 @@ class TaskSetCapacityProviderStrategyItemArgs:
|
|
|
9326
9407
|
Base value characteristics:
|
|
9327
9408
|
|
|
9328
9409
|
- Only one capacity provider in a strategy can have a base defined
|
|
9329
|
-
-
|
|
9330
|
-
-
|
|
9410
|
+
- The default value is `0` if not specified
|
|
9411
|
+
- The valid range is 0 to 100,000
|
|
9331
9412
|
- Base requirements are satisfied first before weight distribution
|
|
9332
|
-
:param pulumi.Input[_builtins.str] capacity_provider: The short name of the capacity provider.
|
|
9413
|
+
:param pulumi.Input[_builtins.str] capacity_provider: The short name of the capacity provider. This can be either an AWS managed capacity provider ( `FARGATE` or `FARGATE_SPOT` ) or the name of a custom capacity provider that you created.
|
|
9333
9414
|
:param pulumi.Input[_builtins.int] weight: The *weight* value designates the relative percentage of the total number of tasks launched that should use the specified capacity provider. The `weight` value is taken into consideration after the `base` value, if defined, is satisfied.
|
|
9334
9415
|
|
|
9335
9416
|
If no `weight` value is specified, the default value of `0` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of `0` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of `0` , any `RunTask` or `CreateService` actions using the capacity provider strategy will fail.
|
|
@@ -9337,8 +9418,8 @@ class TaskSetCapacityProviderStrategyItemArgs:
|
|
|
9337
9418
|
Weight value characteristics:
|
|
9338
9419
|
|
|
9339
9420
|
- Weight is considered after the base value is satisfied
|
|
9340
|
-
-
|
|
9341
|
-
-
|
|
9421
|
+
- The default value is `0` if not specified
|
|
9422
|
+
- The valid range is 0 to 1,000
|
|
9342
9423
|
- At least one capacity provider must have a weight greater than zero
|
|
9343
9424
|
- Capacity providers with weight of `0` cannot place tasks
|
|
9344
9425
|
|
|
@@ -9369,8 +9450,8 @@ class TaskSetCapacityProviderStrategyItemArgs:
|
|
|
9369
9450
|
Base value characteristics:
|
|
9370
9451
|
|
|
9371
9452
|
- Only one capacity provider in a strategy can have a base defined
|
|
9372
|
-
-
|
|
9373
|
-
-
|
|
9453
|
+
- The default value is `0` if not specified
|
|
9454
|
+
- The valid range is 0 to 100,000
|
|
9374
9455
|
- Base requirements are satisfied first before weight distribution
|
|
9375
9456
|
"""
|
|
9376
9457
|
return pulumi.get(self, "base")
|
|
@@ -9383,7 +9464,7 @@ class TaskSetCapacityProviderStrategyItemArgs:
|
|
|
9383
9464
|
@pulumi.getter(name="capacityProvider")
|
|
9384
9465
|
def capacity_provider(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
9385
9466
|
"""
|
|
9386
|
-
The short name of the capacity provider.
|
|
9467
|
+
The short name of the capacity provider. This can be either an AWS managed capacity provider ( `FARGATE` or `FARGATE_SPOT` ) or the name of a custom capacity provider that you created.
|
|
9387
9468
|
"""
|
|
9388
9469
|
return pulumi.get(self, "capacity_provider")
|
|
9389
9470
|
|
|
@@ -9402,8 +9483,8 @@ class TaskSetCapacityProviderStrategyItemArgs:
|
|
|
9402
9483
|
Weight value characteristics:
|
|
9403
9484
|
|
|
9404
9485
|
- Weight is considered after the base value is satisfied
|
|
9405
|
-
-
|
|
9406
|
-
-
|
|
9486
|
+
- The default value is `0` if not specified
|
|
9487
|
+
- The valid range is 0 to 1,000
|
|
9407
9488
|
- At least one capacity provider must have a weight greater than zero
|
|
9408
9489
|
- Capacity providers with weight of `0` cannot place tasks
|
|
9409
9490
|
|
pulumi_aws_native/ecs/outputs.py
CHANGED
|
@@ -1885,6 +1885,10 @@ class ServiceCanaryConfiguration(dict):
|
|
|
1885
1885
|
def __init__(__self__, *,
|
|
1886
1886
|
canary_bake_time_in_minutes: Optional[_builtins.int] = None,
|
|
1887
1887
|
canary_percent: Optional[_builtins.float] = None):
|
|
1888
|
+
"""
|
|
1889
|
+
:param _builtins.int canary_bake_time_in_minutes: The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
|
|
1890
|
+
:param _builtins.float canary_percent: The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
|
|
1891
|
+
"""
|
|
1888
1892
|
if canary_bake_time_in_minutes is not None:
|
|
1889
1893
|
pulumi.set(__self__, "canary_bake_time_in_minutes", canary_bake_time_in_minutes)
|
|
1890
1894
|
if canary_percent is not None:
|
|
@@ -1893,11 +1897,17 @@ class ServiceCanaryConfiguration(dict):
|
|
|
1893
1897
|
@_builtins.property
|
|
1894
1898
|
@pulumi.getter(name="canaryBakeTimeInMinutes")
|
|
1895
1899
|
def canary_bake_time_in_minutes(self) -> Optional[_builtins.int]:
|
|
1900
|
+
"""
|
|
1901
|
+
The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
|
|
1902
|
+
"""
|
|
1896
1903
|
return pulumi.get(self, "canary_bake_time_in_minutes")
|
|
1897
1904
|
|
|
1898
1905
|
@_builtins.property
|
|
1899
1906
|
@pulumi.getter(name="canaryPercent")
|
|
1900
1907
|
def canary_percent(self) -> Optional[_builtins.float]:
|
|
1908
|
+
"""
|
|
1909
|
+
The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
|
|
1910
|
+
"""
|
|
1901
1911
|
return pulumi.get(self, "canary_percent")
|
|
1902
1912
|
|
|
1903
1913
|
|
|
@@ -2033,6 +2043,12 @@ class ServiceConnectAccessLogConfiguration(dict):
|
|
|
2033
2043
|
def __init__(__self__, *,
|
|
2034
2044
|
format: 'ServiceConnectAccessLogConfigurationFormat',
|
|
2035
2045
|
include_query_parameters: Optional['ServiceConnectAccessLogConfigurationIncludeQueryParameters'] = None):
|
|
2046
|
+
"""
|
|
2047
|
+
:param 'ServiceConnectAccessLogConfigurationFormat' format: The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
|
|
2048
|
+
:param 'ServiceConnectAccessLogConfigurationIncludeQueryParameters' include_query_parameters: Specifies whether to include query parameters in Service Connect access logs.
|
|
2049
|
+
|
|
2050
|
+
When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is `DISABLED` .
|
|
2051
|
+
"""
|
|
2036
2052
|
pulumi.set(__self__, "format", format)
|
|
2037
2053
|
if include_query_parameters is not None:
|
|
2038
2054
|
pulumi.set(__self__, "include_query_parameters", include_query_parameters)
|
|
@@ -2040,11 +2056,19 @@ class ServiceConnectAccessLogConfiguration(dict):
|
|
|
2040
2056
|
@_builtins.property
|
|
2041
2057
|
@pulumi.getter
|
|
2042
2058
|
def format(self) -> 'ServiceConnectAccessLogConfigurationFormat':
|
|
2059
|
+
"""
|
|
2060
|
+
The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
|
|
2061
|
+
"""
|
|
2043
2062
|
return pulumi.get(self, "format")
|
|
2044
2063
|
|
|
2045
2064
|
@_builtins.property
|
|
2046
2065
|
@pulumi.getter(name="includeQueryParameters")
|
|
2047
2066
|
def include_query_parameters(self) -> Optional['ServiceConnectAccessLogConfigurationIncludeQueryParameters']:
|
|
2067
|
+
"""
|
|
2068
|
+
Specifies whether to include query parameters in Service Connect access logs.
|
|
2069
|
+
|
|
2070
|
+
When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is `DISABLED` .
|
|
2071
|
+
"""
|
|
2048
2072
|
return pulumi.get(self, "include_query_parameters")
|
|
2049
2073
|
|
|
2050
2074
|
|
|
@@ -2158,6 +2182,9 @@ class ServiceConnectConfiguration(dict):
|
|
|
2158
2182
|
The Service Connect configuration of your Amazon ECS service. The configuration for this service to discover and connect to services, and be discovered by, and connected from, other services within a namespace.
|
|
2159
2183
|
Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see [Service Connect](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
2160
2184
|
:param _builtins.bool enabled: Specifies whether to use Service Connect with this service.
|
|
2185
|
+
:param 'ServiceConnectAccessLogConfiguration' access_log_configuration: The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
|
|
2186
|
+
|
|
2187
|
+
> To enable access logs, you must also specify a `logConfiguration` in the `serviceConnectConfiguration` .
|
|
2161
2188
|
:param 'ServiceLogConfiguration' log_configuration: The log configuration for the container. This parameter maps to ``LogConfig`` in the docker container create command and the ``--log-driver`` option to docker run.
|
|
2162
2189
|
By default, containers use the same logging driver that the Docker daemon uses. However, the container might use a different logging driver than the Docker daemon by specifying a log driver configuration in the container definition.
|
|
2163
2190
|
Understand the following when specifying a log configuration for your containers.
|
|
@@ -2193,6 +2220,11 @@ class ServiceConnectConfiguration(dict):
|
|
|
2193
2220
|
@_builtins.property
|
|
2194
2221
|
@pulumi.getter(name="accessLogConfiguration")
|
|
2195
2222
|
def access_log_configuration(self) -> Optional['outputs.ServiceConnectAccessLogConfiguration']:
|
|
2223
|
+
"""
|
|
2224
|
+
The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
|
|
2225
|
+
|
|
2226
|
+
> To enable access logs, you must also specify a `logConfiguration` in the `serviceConnectConfiguration` .
|
|
2227
|
+
"""
|
|
2196
2228
|
return pulumi.get(self, "access_log_configuration")
|
|
2197
2229
|
|
|
2198
2230
|
@_builtins.property
|
|
@@ -2666,9 +2698,11 @@ class ServiceDeploymentConfiguration(dict):
|
|
|
2666
2698
|
+ For rolling deployments, the value is set to 3 hours (180 minutes).
|
|
2667
2699
|
+ When you use an external deployment controller (``EXTERNAL``), or the ACD blue/green deployment controller (``CODE_DEPLOY``), the value is set to 3 hours (180 minutes).
|
|
2668
2700
|
+ For all other cases, the value is set to 36 hours (2160 minutes).
|
|
2701
|
+
:param 'ServiceCanaryConfiguration' canary_configuration: Configuration for canary deployment strategy. Only valid when the deployment strategy is `CANARY` . This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
|
|
2669
2702
|
:param 'ServiceDeploymentCircuitBreaker' deployment_circuit_breaker: The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
2670
2703
|
The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
|
|
2671
2704
|
:param Sequence['ServiceDeploymentLifecycleHook'] lifecycle_hooks: An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
2705
|
+
:param 'ServiceLinearConfiguration' linear_configuration: Configuration for linear deployment strategy. Only valid when the deployment strategy is `LINEAR` . This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
|
|
2672
2706
|
:param _builtins.int maximum_percent: If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
2673
2707
|
The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
|
|
2674
2708
|
If a service is using either the blue/green (``CODE_DEPLOY``) or ``EXTERNAL`` deployment types, and tasks in the service use the EC2 launch type, the *maximum percent* value is set to the default value. The *maximum percent* value is used to define the upper limit on the number of the tasks in the service that remain in the ``RUNNING`` state while the container instances are in the ``DRAINING`` state.
|
|
@@ -2736,6 +2770,9 @@ class ServiceDeploymentConfiguration(dict):
|
|
|
2736
2770
|
@_builtins.property
|
|
2737
2771
|
@pulumi.getter(name="canaryConfiguration")
|
|
2738
2772
|
def canary_configuration(self) -> Optional['outputs.ServiceCanaryConfiguration']:
|
|
2773
|
+
"""
|
|
2774
|
+
Configuration for canary deployment strategy. Only valid when the deployment strategy is `CANARY` . This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
|
|
2775
|
+
"""
|
|
2739
2776
|
return pulumi.get(self, "canary_configuration")
|
|
2740
2777
|
|
|
2741
2778
|
@_builtins.property
|
|
@@ -2758,6 +2795,9 @@ class ServiceDeploymentConfiguration(dict):
|
|
|
2758
2795
|
@_builtins.property
|
|
2759
2796
|
@pulumi.getter(name="linearConfiguration")
|
|
2760
2797
|
def linear_configuration(self) -> Optional['outputs.ServiceLinearConfiguration']:
|
|
2798
|
+
"""
|
|
2799
|
+
Configuration for linear deployment strategy. Only valid when the deployment strategy is `LINEAR` . This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
|
|
2800
|
+
"""
|
|
2761
2801
|
return pulumi.get(self, "linear_configuration")
|
|
2762
2802
|
|
|
2763
2803
|
@_builtins.property
|
|
@@ -3176,6 +3216,10 @@ class ServiceLinearConfiguration(dict):
|
|
|
3176
3216
|
def __init__(__self__, *,
|
|
3177
3217
|
step_bake_time_in_minutes: Optional[_builtins.int] = None,
|
|
3178
3218
|
step_percent: Optional[_builtins.float] = None):
|
|
3219
|
+
"""
|
|
3220
|
+
:param _builtins.int step_bake_time_in_minutes: The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
|
|
3221
|
+
:param _builtins.float step_percent: The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
|
|
3222
|
+
"""
|
|
3179
3223
|
if step_bake_time_in_minutes is not None:
|
|
3180
3224
|
pulumi.set(__self__, "step_bake_time_in_minutes", step_bake_time_in_minutes)
|
|
3181
3225
|
if step_percent is not None:
|
|
@@ -3184,11 +3228,17 @@ class ServiceLinearConfiguration(dict):
|
|
|
3184
3228
|
@_builtins.property
|
|
3185
3229
|
@pulumi.getter(name="stepBakeTimeInMinutes")
|
|
3186
3230
|
def step_bake_time_in_minutes(self) -> Optional[_builtins.int]:
|
|
3231
|
+
"""
|
|
3232
|
+
The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
|
|
3233
|
+
"""
|
|
3187
3234
|
return pulumi.get(self, "step_bake_time_in_minutes")
|
|
3188
3235
|
|
|
3189
3236
|
@_builtins.property
|
|
3190
3237
|
@pulumi.getter(name="stepPercent")
|
|
3191
3238
|
def step_percent(self) -> Optional[_builtins.float]:
|
|
3239
|
+
"""
|
|
3240
|
+
The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
|
|
3241
|
+
"""
|
|
3192
3242
|
return pulumi.get(self, "step_percent")
|
|
3193
3243
|
|
|
3194
3244
|
|
|
@@ -7185,10 +7235,10 @@ class TaskSetCapacityProviderStrategyItem(dict):
|
|
|
7185
7235
|
Base value characteristics:
|
|
7186
7236
|
|
|
7187
7237
|
- Only one capacity provider in a strategy can have a base defined
|
|
7188
|
-
-
|
|
7189
|
-
-
|
|
7238
|
+
- The default value is `0` if not specified
|
|
7239
|
+
- The valid range is 0 to 100,000
|
|
7190
7240
|
- Base requirements are satisfied first before weight distribution
|
|
7191
|
-
:param _builtins.str capacity_provider: The short name of the capacity provider.
|
|
7241
|
+
:param _builtins.str capacity_provider: The short name of the capacity provider. This can be either an AWS managed capacity provider ( `FARGATE` or `FARGATE_SPOT` ) or the name of a custom capacity provider that you created.
|
|
7192
7242
|
:param _builtins.int weight: The *weight* value designates the relative percentage of the total number of tasks launched that should use the specified capacity provider. The `weight` value is taken into consideration after the `base` value, if defined, is satisfied.
|
|
7193
7243
|
|
|
7194
7244
|
If no `weight` value is specified, the default value of `0` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of `0` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of `0` , any `RunTask` or `CreateService` actions using the capacity provider strategy will fail.
|
|
@@ -7196,8 +7246,8 @@ class TaskSetCapacityProviderStrategyItem(dict):
|
|
|
7196
7246
|
Weight value characteristics:
|
|
7197
7247
|
|
|
7198
7248
|
- Weight is considered after the base value is satisfied
|
|
7199
|
-
-
|
|
7200
|
-
-
|
|
7249
|
+
- The default value is `0` if not specified
|
|
7250
|
+
- The valid range is 0 to 1,000
|
|
7201
7251
|
- At least one capacity provider must have a weight greater than zero
|
|
7202
7252
|
- Capacity providers with weight of `0` cannot place tasks
|
|
7203
7253
|
|
|
@@ -7228,8 +7278,8 @@ class TaskSetCapacityProviderStrategyItem(dict):
|
|
|
7228
7278
|
Base value characteristics:
|
|
7229
7279
|
|
|
7230
7280
|
- Only one capacity provider in a strategy can have a base defined
|
|
7231
|
-
-
|
|
7232
|
-
-
|
|
7281
|
+
- The default value is `0` if not specified
|
|
7282
|
+
- The valid range is 0 to 100,000
|
|
7233
7283
|
- Base requirements are satisfied first before weight distribution
|
|
7234
7284
|
"""
|
|
7235
7285
|
return pulumi.get(self, "base")
|
|
@@ -7238,7 +7288,7 @@ class TaskSetCapacityProviderStrategyItem(dict):
|
|
|
7238
7288
|
@pulumi.getter(name="capacityProvider")
|
|
7239
7289
|
def capacity_provider(self) -> Optional[_builtins.str]:
|
|
7240
7290
|
"""
|
|
7241
|
-
The short name of the capacity provider.
|
|
7291
|
+
The short name of the capacity provider. This can be either an AWS managed capacity provider ( `FARGATE` or `FARGATE_SPOT` ) or the name of a custom capacity provider that you created.
|
|
7242
7292
|
"""
|
|
7243
7293
|
return pulumi.get(self, "capacity_provider")
|
|
7244
7294
|
|
|
@@ -7253,8 +7303,8 @@ class TaskSetCapacityProviderStrategyItem(dict):
|
|
|
7253
7303
|
Weight value characteristics:
|
|
7254
7304
|
|
|
7255
7305
|
- Weight is considered after the base value is satisfied
|
|
7256
|
-
-
|
|
7257
|
-
-
|
|
7306
|
+
- The default value is `0` if not specified
|
|
7307
|
+
- The valid range is 0 to 1,000
|
|
7258
7308
|
- At least one capacity provider must have a weight greater than zero
|
|
7259
7309
|
- Capacity providers with weight of `0` cannot place tasks
|
|
7260
7310
|
|
pulumi_aws_native/eks/_enums.py
CHANGED
|
@@ -14,6 +14,7 @@ __all__ = [
|
|
|
14
14
|
'ClusterLoggingTypeConfigType',
|
|
15
15
|
'ClusterUpgradePolicySupportType',
|
|
16
16
|
'IdentityProviderConfigType',
|
|
17
|
+
'NodegroupNodeRepairConfigOverridesRepairAction',
|
|
17
18
|
]
|
|
18
19
|
|
|
19
20
|
|
|
@@ -82,3 +83,13 @@ class IdentityProviderConfigType(_builtins.str, Enum):
|
|
|
82
83
|
The type of the identity provider configuration.
|
|
83
84
|
"""
|
|
84
85
|
OIDC = "oidc"
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
@pulumi.type_token("aws-native:eks:NodegroupNodeRepairConfigOverridesRepairAction")
|
|
89
|
+
class NodegroupNodeRepairConfigOverridesRepairAction(_builtins.str, Enum):
|
|
90
|
+
"""
|
|
91
|
+
Specify the repair action to take for nodes when all of the specified conditions are met.
|
|
92
|
+
"""
|
|
93
|
+
REPLACE = "Replace"
|
|
94
|
+
REBOOT = "Reboot"
|
|
95
|
+
NO_ACTION = "NoAction"
|