pulumi-aws-native 1.38.0a1761718100__py3-none-any.whl → 1.38.0a1761750358__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +2 -0
- pulumi_aws_native/amazonmq/_enums.py +4 -12
- pulumi_aws_native/amazonmq/_inputs.py +21 -91
- pulumi_aws_native/amazonmq/broker.py +56 -67
- pulumi_aws_native/amazonmq/get_broker.py +6 -13
- pulumi_aws_native/amazonmq/outputs.py +14 -54
- pulumi_aws_native/batch/_inputs.py +25 -0
- pulumi_aws_native/batch/job_definition.py +21 -0
- pulumi_aws_native/batch/outputs.py +31 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +54 -26
- pulumi_aws_native/datazone/outputs.py +84 -0
- pulumi_aws_native/ec2/__init__.py +2 -0
- pulumi_aws_native/ec2/_enums.py +19 -0
- pulumi_aws_native/ec2/_inputs.py +15 -12
- pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
- pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ecs/_enums.py +14 -0
- pulumi_aws_native/ecs/_inputs.py +134 -8
- pulumi_aws_native/ecs/outputs.py +135 -5
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
- pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
- pulumi_aws_native/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
- pulumi_aws_native/mediapackagev2/outputs.py +4 -0
- pulumi_aws_native/networkfirewall/_enums.py +2 -0
- pulumi_aws_native/networkfirewall/_inputs.py +13 -0
- pulumi_aws_native/networkfirewall/firewall.py +7 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +12 -1
- pulumi_aws_native/networkfirewall/outputs.py +10 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +41 -0
- pulumi_aws_native/rtbfabric/_inputs.py +260 -0
- pulumi_aws_native/rtbfabric/get_link.py +181 -0
- pulumi_aws_native/rtbfabric/link.py +293 -0
- pulumi_aws_native/rtbfabric/outputs.py +260 -0
- pulumi_aws_native/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +77 -0
- pulumi_aws_native/transfer/connector.py +83 -19
- pulumi_aws_native/transfer/get_connector.py +40 -1
- pulumi_aws_native/transfer/outputs.py +80 -0
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/RECORD +54 -50
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/top_level.txt +0 -0
pulumi_aws_native/ecs/_inputs.py
CHANGED
|
@@ -68,8 +68,12 @@ __all__ = [
|
|
|
68
68
|
'ServiceAdvancedConfigurationArgsDict',
|
|
69
69
|
'ServiceAwsVpcConfigurationArgs',
|
|
70
70
|
'ServiceAwsVpcConfigurationArgsDict',
|
|
71
|
+
'ServiceCanaryConfigurationArgs',
|
|
72
|
+
'ServiceCanaryConfigurationArgsDict',
|
|
71
73
|
'ServiceCapacityProviderStrategyItemArgs',
|
|
72
74
|
'ServiceCapacityProviderStrategyItemArgsDict',
|
|
75
|
+
'ServiceConnectAccessLogConfigurationArgs',
|
|
76
|
+
'ServiceConnectAccessLogConfigurationArgsDict',
|
|
73
77
|
'ServiceConnectClientAliasArgs',
|
|
74
78
|
'ServiceConnectClientAliasArgsDict',
|
|
75
79
|
'ServiceConnectConfigurationArgs',
|
|
@@ -100,6 +104,8 @@ __all__ = [
|
|
|
100
104
|
'ServiceEbsTagSpecificationArgsDict',
|
|
101
105
|
'ServiceForceNewDeploymentArgs',
|
|
102
106
|
'ServiceForceNewDeploymentArgsDict',
|
|
107
|
+
'ServiceLinearConfigurationArgs',
|
|
108
|
+
'ServiceLinearConfigurationArgsDict',
|
|
103
109
|
'ServiceLoadBalancerArgs',
|
|
104
110
|
'ServiceLoadBalancerArgsDict',
|
|
105
111
|
'ServiceLogConfigurationArgs',
|
|
@@ -2508,6 +2514,42 @@ class ServiceAwsVpcConfigurationArgs:
|
|
|
2508
2514
|
pulumi.set(self, "subnets", value)
|
|
2509
2515
|
|
|
2510
2516
|
|
|
2517
|
+
if not MYPY:
|
|
2518
|
+
class ServiceCanaryConfigurationArgsDict(TypedDict):
|
|
2519
|
+
canary_bake_time_in_minutes: NotRequired[pulumi.Input[_builtins.int]]
|
|
2520
|
+
canary_percent: NotRequired[pulumi.Input[_builtins.float]]
|
|
2521
|
+
elif False:
|
|
2522
|
+
ServiceCanaryConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
2523
|
+
|
|
2524
|
+
@pulumi.input_type
|
|
2525
|
+
class ServiceCanaryConfigurationArgs:
|
|
2526
|
+
def __init__(__self__, *,
|
|
2527
|
+
canary_bake_time_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2528
|
+
canary_percent: Optional[pulumi.Input[_builtins.float]] = None):
|
|
2529
|
+
if canary_bake_time_in_minutes is not None:
|
|
2530
|
+
pulumi.set(__self__, "canary_bake_time_in_minutes", canary_bake_time_in_minutes)
|
|
2531
|
+
if canary_percent is not None:
|
|
2532
|
+
pulumi.set(__self__, "canary_percent", canary_percent)
|
|
2533
|
+
|
|
2534
|
+
@_builtins.property
|
|
2535
|
+
@pulumi.getter(name="canaryBakeTimeInMinutes")
|
|
2536
|
+
def canary_bake_time_in_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2537
|
+
return pulumi.get(self, "canary_bake_time_in_minutes")
|
|
2538
|
+
|
|
2539
|
+
@canary_bake_time_in_minutes.setter
|
|
2540
|
+
def canary_bake_time_in_minutes(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2541
|
+
pulumi.set(self, "canary_bake_time_in_minutes", value)
|
|
2542
|
+
|
|
2543
|
+
@_builtins.property
|
|
2544
|
+
@pulumi.getter(name="canaryPercent")
|
|
2545
|
+
def canary_percent(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
2546
|
+
return pulumi.get(self, "canary_percent")
|
|
2547
|
+
|
|
2548
|
+
@canary_percent.setter
|
|
2549
|
+
def canary_percent(self, value: Optional[pulumi.Input[_builtins.float]]):
|
|
2550
|
+
pulumi.set(self, "canary_percent", value)
|
|
2551
|
+
|
|
2552
|
+
|
|
2511
2553
|
if not MYPY:
|
|
2512
2554
|
class ServiceCapacityProviderStrategyItemArgsDict(TypedDict):
|
|
2513
2555
|
"""
|
|
@@ -2650,6 +2692,41 @@ class ServiceCapacityProviderStrategyItemArgs:
|
|
|
2650
2692
|
pulumi.set(self, "weight", value)
|
|
2651
2693
|
|
|
2652
2694
|
|
|
2695
|
+
if not MYPY:
|
|
2696
|
+
class ServiceConnectAccessLogConfigurationArgsDict(TypedDict):
|
|
2697
|
+
format: pulumi.Input['ServiceConnectAccessLogConfigurationFormat']
|
|
2698
|
+
include_query_parameters: NotRequired[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']]
|
|
2699
|
+
elif False:
|
|
2700
|
+
ServiceConnectAccessLogConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
2701
|
+
|
|
2702
|
+
@pulumi.input_type
|
|
2703
|
+
class ServiceConnectAccessLogConfigurationArgs:
|
|
2704
|
+
def __init__(__self__, *,
|
|
2705
|
+
format: pulumi.Input['ServiceConnectAccessLogConfigurationFormat'],
|
|
2706
|
+
include_query_parameters: Optional[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']] = None):
|
|
2707
|
+
pulumi.set(__self__, "format", format)
|
|
2708
|
+
if include_query_parameters is not None:
|
|
2709
|
+
pulumi.set(__self__, "include_query_parameters", include_query_parameters)
|
|
2710
|
+
|
|
2711
|
+
@_builtins.property
|
|
2712
|
+
@pulumi.getter
|
|
2713
|
+
def format(self) -> pulumi.Input['ServiceConnectAccessLogConfigurationFormat']:
|
|
2714
|
+
return pulumi.get(self, "format")
|
|
2715
|
+
|
|
2716
|
+
@format.setter
|
|
2717
|
+
def format(self, value: pulumi.Input['ServiceConnectAccessLogConfigurationFormat']):
|
|
2718
|
+
pulumi.set(self, "format", value)
|
|
2719
|
+
|
|
2720
|
+
@_builtins.property
|
|
2721
|
+
@pulumi.getter(name="includeQueryParameters")
|
|
2722
|
+
def include_query_parameters(self) -> Optional[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']]:
|
|
2723
|
+
return pulumi.get(self, "include_query_parameters")
|
|
2724
|
+
|
|
2725
|
+
@include_query_parameters.setter
|
|
2726
|
+
def include_query_parameters(self, value: Optional[pulumi.Input['ServiceConnectAccessLogConfigurationIncludeQueryParameters']]):
|
|
2727
|
+
pulumi.set(self, "include_query_parameters", value)
|
|
2728
|
+
|
|
2729
|
+
|
|
2653
2730
|
if not MYPY:
|
|
2654
2731
|
class ServiceConnectClientAliasArgsDict(TypedDict):
|
|
2655
2732
|
"""
|
|
@@ -2748,6 +2825,7 @@ if not MYPY:
|
|
|
2748
2825
|
"""
|
|
2749
2826
|
Specifies whether to use Service Connect with this service.
|
|
2750
2827
|
"""
|
|
2828
|
+
access_log_configuration: NotRequired[pulumi.Input['ServiceConnectAccessLogConfigurationArgsDict']]
|
|
2751
2829
|
log_configuration: NotRequired[pulumi.Input['ServiceLogConfigurationArgsDict']]
|
|
2752
2830
|
"""
|
|
2753
2831
|
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.
|
|
@@ -2777,6 +2855,7 @@ elif False:
|
|
|
2777
2855
|
class ServiceConnectConfigurationArgs:
|
|
2778
2856
|
def __init__(__self__, *,
|
|
2779
2857
|
enabled: pulumi.Input[_builtins.bool],
|
|
2858
|
+
access_log_configuration: Optional[pulumi.Input['ServiceConnectAccessLogConfigurationArgs']] = None,
|
|
2780
2859
|
log_configuration: Optional[pulumi.Input['ServiceLogConfigurationArgs']] = None,
|
|
2781
2860
|
namespace: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2782
2861
|
services: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceConnectServiceArgs']]]] = None):
|
|
@@ -2799,6 +2878,8 @@ class ServiceConnectConfigurationArgs:
|
|
|
2799
2878
|
An object selects a port from the task definition, assigns a name for the CMAPlong service, and a list of aliases (endpoints) and ports for client applications to refer to this service.
|
|
2800
2879
|
"""
|
|
2801
2880
|
pulumi.set(__self__, "enabled", enabled)
|
|
2881
|
+
if access_log_configuration is not None:
|
|
2882
|
+
pulumi.set(__self__, "access_log_configuration", access_log_configuration)
|
|
2802
2883
|
if log_configuration is not None:
|
|
2803
2884
|
pulumi.set(__self__, "log_configuration", log_configuration)
|
|
2804
2885
|
if namespace is not None:
|
|
@@ -2818,6 +2899,15 @@ class ServiceConnectConfigurationArgs:
|
|
|
2818
2899
|
def enabled(self, value: pulumi.Input[_builtins.bool]):
|
|
2819
2900
|
pulumi.set(self, "enabled", value)
|
|
2820
2901
|
|
|
2902
|
+
@_builtins.property
|
|
2903
|
+
@pulumi.getter(name="accessLogConfiguration")
|
|
2904
|
+
def access_log_configuration(self) -> Optional[pulumi.Input['ServiceConnectAccessLogConfigurationArgs']]:
|
|
2905
|
+
return pulumi.get(self, "access_log_configuration")
|
|
2906
|
+
|
|
2907
|
+
@access_log_configuration.setter
|
|
2908
|
+
def access_log_configuration(self, value: Optional[pulumi.Input['ServiceConnectAccessLogConfigurationArgs']]):
|
|
2909
|
+
pulumi.set(self, "access_log_configuration", value)
|
|
2910
|
+
|
|
2821
2911
|
@_builtins.property
|
|
2822
2912
|
@pulumi.getter(name="logConfiguration")
|
|
2823
2913
|
def log_configuration(self) -> Optional[pulumi.Input['ServiceLogConfigurationArgs']]:
|
|
@@ -3377,7 +3467,7 @@ if not MYPY:
|
|
|
3377
3467
|
+ 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).
|
|
3378
3468
|
+ For all other cases, the value is set to 36 hours (2160 minutes).
|
|
3379
3469
|
"""
|
|
3380
|
-
canary_configuration: NotRequired[
|
|
3470
|
+
canary_configuration: NotRequired[pulumi.Input['ServiceCanaryConfigurationArgsDict']]
|
|
3381
3471
|
deployment_circuit_breaker: NotRequired[pulumi.Input['ServiceDeploymentCircuitBreakerArgsDict']]
|
|
3382
3472
|
"""
|
|
3383
3473
|
The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
@@ -3387,7 +3477,7 @@ if not MYPY:
|
|
|
3387
3477
|
"""
|
|
3388
3478
|
An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
3389
3479
|
"""
|
|
3390
|
-
linear_configuration: NotRequired[
|
|
3480
|
+
linear_configuration: NotRequired[pulumi.Input['ServiceLinearConfigurationArgsDict']]
|
|
3391
3481
|
maximum_percent: NotRequired[pulumi.Input[_builtins.int]]
|
|
3392
3482
|
"""
|
|
3393
3483
|
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%.
|
|
@@ -3429,10 +3519,10 @@ class ServiceDeploymentConfigurationArgs:
|
|
|
3429
3519
|
def __init__(__self__, *,
|
|
3430
3520
|
alarms: Optional[pulumi.Input['ServiceDeploymentAlarmsArgs']] = None,
|
|
3431
3521
|
bake_time_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3432
|
-
canary_configuration: Optional[
|
|
3522
|
+
canary_configuration: Optional[pulumi.Input['ServiceCanaryConfigurationArgs']] = None,
|
|
3433
3523
|
deployment_circuit_breaker: Optional[pulumi.Input['ServiceDeploymentCircuitBreakerArgs']] = None,
|
|
3434
3524
|
lifecycle_hooks: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceDeploymentLifecycleHookArgs']]]] = None,
|
|
3435
|
-
linear_configuration: Optional[
|
|
3525
|
+
linear_configuration: Optional[pulumi.Input['ServiceLinearConfigurationArgs']] = None,
|
|
3436
3526
|
maximum_percent: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3437
3527
|
minimum_healthy_percent: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3438
3528
|
strategy: Optional[pulumi.Input['ServiceDeploymentConfigurationStrategy']] = None):
|
|
@@ -3521,11 +3611,11 @@ class ServiceDeploymentConfigurationArgs:
|
|
|
3521
3611
|
|
|
3522
3612
|
@_builtins.property
|
|
3523
3613
|
@pulumi.getter(name="canaryConfiguration")
|
|
3524
|
-
def canary_configuration(self) -> Optional[
|
|
3614
|
+
def canary_configuration(self) -> Optional[pulumi.Input['ServiceCanaryConfigurationArgs']]:
|
|
3525
3615
|
return pulumi.get(self, "canary_configuration")
|
|
3526
3616
|
|
|
3527
3617
|
@canary_configuration.setter
|
|
3528
|
-
def canary_configuration(self, value: Optional[
|
|
3618
|
+
def canary_configuration(self, value: Optional[pulumi.Input['ServiceCanaryConfigurationArgs']]):
|
|
3529
3619
|
pulumi.set(self, "canary_configuration", value)
|
|
3530
3620
|
|
|
3531
3621
|
@_builtins.property
|
|
@@ -3555,11 +3645,11 @@ class ServiceDeploymentConfigurationArgs:
|
|
|
3555
3645
|
|
|
3556
3646
|
@_builtins.property
|
|
3557
3647
|
@pulumi.getter(name="linearConfiguration")
|
|
3558
|
-
def linear_configuration(self) -> Optional[
|
|
3648
|
+
def linear_configuration(self) -> Optional[pulumi.Input['ServiceLinearConfigurationArgs']]:
|
|
3559
3649
|
return pulumi.get(self, "linear_configuration")
|
|
3560
3650
|
|
|
3561
3651
|
@linear_configuration.setter
|
|
3562
|
-
def linear_configuration(self, value: Optional[
|
|
3652
|
+
def linear_configuration(self, value: Optional[pulumi.Input['ServiceLinearConfigurationArgs']]):
|
|
3563
3653
|
pulumi.set(self, "linear_configuration", value)
|
|
3564
3654
|
|
|
3565
3655
|
@_builtins.property
|
|
@@ -4067,6 +4157,42 @@ class ServiceForceNewDeploymentArgs:
|
|
|
4067
4157
|
pulumi.set(self, "force_new_deployment_nonce", value)
|
|
4068
4158
|
|
|
4069
4159
|
|
|
4160
|
+
if not MYPY:
|
|
4161
|
+
class ServiceLinearConfigurationArgsDict(TypedDict):
|
|
4162
|
+
step_bake_time_in_minutes: NotRequired[pulumi.Input[_builtins.int]]
|
|
4163
|
+
step_percent: NotRequired[pulumi.Input[_builtins.float]]
|
|
4164
|
+
elif False:
|
|
4165
|
+
ServiceLinearConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
4166
|
+
|
|
4167
|
+
@pulumi.input_type
|
|
4168
|
+
class ServiceLinearConfigurationArgs:
|
|
4169
|
+
def __init__(__self__, *,
|
|
4170
|
+
step_bake_time_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4171
|
+
step_percent: Optional[pulumi.Input[_builtins.float]] = None):
|
|
4172
|
+
if step_bake_time_in_minutes is not None:
|
|
4173
|
+
pulumi.set(__self__, "step_bake_time_in_minutes", step_bake_time_in_minutes)
|
|
4174
|
+
if step_percent is not None:
|
|
4175
|
+
pulumi.set(__self__, "step_percent", step_percent)
|
|
4176
|
+
|
|
4177
|
+
@_builtins.property
|
|
4178
|
+
@pulumi.getter(name="stepBakeTimeInMinutes")
|
|
4179
|
+
def step_bake_time_in_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4180
|
+
return pulumi.get(self, "step_bake_time_in_minutes")
|
|
4181
|
+
|
|
4182
|
+
@step_bake_time_in_minutes.setter
|
|
4183
|
+
def step_bake_time_in_minutes(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4184
|
+
pulumi.set(self, "step_bake_time_in_minutes", value)
|
|
4185
|
+
|
|
4186
|
+
@_builtins.property
|
|
4187
|
+
@pulumi.getter(name="stepPercent")
|
|
4188
|
+
def step_percent(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
4189
|
+
return pulumi.get(self, "step_percent")
|
|
4190
|
+
|
|
4191
|
+
@step_percent.setter
|
|
4192
|
+
def step_percent(self, value: Optional[pulumi.Input[_builtins.float]]):
|
|
4193
|
+
pulumi.set(self, "step_percent", value)
|
|
4194
|
+
|
|
4195
|
+
|
|
4070
4196
|
if not MYPY:
|
|
4071
4197
|
class ServiceLoadBalancerArgsDict(TypedDict):
|
|
4072
4198
|
"""
|
pulumi_aws_native/ecs/outputs.py
CHANGED
|
@@ -43,7 +43,9 @@ __all__ = [
|
|
|
43
43
|
'ClusterSettings',
|
|
44
44
|
'ServiceAdvancedConfiguration',
|
|
45
45
|
'ServiceAwsVpcConfiguration',
|
|
46
|
+
'ServiceCanaryConfiguration',
|
|
46
47
|
'ServiceCapacityProviderStrategyItem',
|
|
48
|
+
'ServiceConnectAccessLogConfiguration',
|
|
47
49
|
'ServiceConnectClientAlias',
|
|
48
50
|
'ServiceConnectConfiguration',
|
|
49
51
|
'ServiceConnectService',
|
|
@@ -59,6 +61,7 @@ __all__ = [
|
|
|
59
61
|
'ServiceDeploymentLifecycleHook',
|
|
60
62
|
'ServiceEbsTagSpecification',
|
|
61
63
|
'ServiceForceNewDeployment',
|
|
64
|
+
'ServiceLinearConfiguration',
|
|
62
65
|
'ServiceLoadBalancer',
|
|
63
66
|
'ServiceLogConfiguration',
|
|
64
67
|
'ServiceManagedEbsVolumeConfiguration',
|
|
@@ -1858,6 +1861,46 @@ class ServiceAwsVpcConfiguration(dict):
|
|
|
1858
1861
|
return pulumi.get(self, "subnets")
|
|
1859
1862
|
|
|
1860
1863
|
|
|
1864
|
+
@pulumi.output_type
|
|
1865
|
+
class ServiceCanaryConfiguration(dict):
|
|
1866
|
+
@staticmethod
|
|
1867
|
+
def __key_warning(key: str):
|
|
1868
|
+
suggest = None
|
|
1869
|
+
if key == "canaryBakeTimeInMinutes":
|
|
1870
|
+
suggest = "canary_bake_time_in_minutes"
|
|
1871
|
+
elif key == "canaryPercent":
|
|
1872
|
+
suggest = "canary_percent"
|
|
1873
|
+
|
|
1874
|
+
if suggest:
|
|
1875
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceCanaryConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
1876
|
+
|
|
1877
|
+
def __getitem__(self, key: str) -> Any:
|
|
1878
|
+
ServiceCanaryConfiguration.__key_warning(key)
|
|
1879
|
+
return super().__getitem__(key)
|
|
1880
|
+
|
|
1881
|
+
def get(self, key: str, default = None) -> Any:
|
|
1882
|
+
ServiceCanaryConfiguration.__key_warning(key)
|
|
1883
|
+
return super().get(key, default)
|
|
1884
|
+
|
|
1885
|
+
def __init__(__self__, *,
|
|
1886
|
+
canary_bake_time_in_minutes: Optional[_builtins.int] = None,
|
|
1887
|
+
canary_percent: Optional[_builtins.float] = None):
|
|
1888
|
+
if canary_bake_time_in_minutes is not None:
|
|
1889
|
+
pulumi.set(__self__, "canary_bake_time_in_minutes", canary_bake_time_in_minutes)
|
|
1890
|
+
if canary_percent is not None:
|
|
1891
|
+
pulumi.set(__self__, "canary_percent", canary_percent)
|
|
1892
|
+
|
|
1893
|
+
@_builtins.property
|
|
1894
|
+
@pulumi.getter(name="canaryBakeTimeInMinutes")
|
|
1895
|
+
def canary_bake_time_in_minutes(self) -> Optional[_builtins.int]:
|
|
1896
|
+
return pulumi.get(self, "canary_bake_time_in_minutes")
|
|
1897
|
+
|
|
1898
|
+
@_builtins.property
|
|
1899
|
+
@pulumi.getter(name="canaryPercent")
|
|
1900
|
+
def canary_percent(self) -> Optional[_builtins.float]:
|
|
1901
|
+
return pulumi.get(self, "canary_percent")
|
|
1902
|
+
|
|
1903
|
+
|
|
1861
1904
|
@pulumi.output_type
|
|
1862
1905
|
class ServiceCapacityProviderStrategyItem(dict):
|
|
1863
1906
|
"""
|
|
@@ -1968,6 +2011,43 @@ class ServiceCapacityProviderStrategyItem(dict):
|
|
|
1968
2011
|
return pulumi.get(self, "weight")
|
|
1969
2012
|
|
|
1970
2013
|
|
|
2014
|
+
@pulumi.output_type
|
|
2015
|
+
class ServiceConnectAccessLogConfiguration(dict):
|
|
2016
|
+
@staticmethod
|
|
2017
|
+
def __key_warning(key: str):
|
|
2018
|
+
suggest = None
|
|
2019
|
+
if key == "includeQueryParameters":
|
|
2020
|
+
suggest = "include_query_parameters"
|
|
2021
|
+
|
|
2022
|
+
if suggest:
|
|
2023
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceConnectAccessLogConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
2024
|
+
|
|
2025
|
+
def __getitem__(self, key: str) -> Any:
|
|
2026
|
+
ServiceConnectAccessLogConfiguration.__key_warning(key)
|
|
2027
|
+
return super().__getitem__(key)
|
|
2028
|
+
|
|
2029
|
+
def get(self, key: str, default = None) -> Any:
|
|
2030
|
+
ServiceConnectAccessLogConfiguration.__key_warning(key)
|
|
2031
|
+
return super().get(key, default)
|
|
2032
|
+
|
|
2033
|
+
def __init__(__self__, *,
|
|
2034
|
+
format: 'ServiceConnectAccessLogConfigurationFormat',
|
|
2035
|
+
include_query_parameters: Optional['ServiceConnectAccessLogConfigurationIncludeQueryParameters'] = None):
|
|
2036
|
+
pulumi.set(__self__, "format", format)
|
|
2037
|
+
if include_query_parameters is not None:
|
|
2038
|
+
pulumi.set(__self__, "include_query_parameters", include_query_parameters)
|
|
2039
|
+
|
|
2040
|
+
@_builtins.property
|
|
2041
|
+
@pulumi.getter
|
|
2042
|
+
def format(self) -> 'ServiceConnectAccessLogConfigurationFormat':
|
|
2043
|
+
return pulumi.get(self, "format")
|
|
2044
|
+
|
|
2045
|
+
@_builtins.property
|
|
2046
|
+
@pulumi.getter(name="includeQueryParameters")
|
|
2047
|
+
def include_query_parameters(self) -> Optional['ServiceConnectAccessLogConfigurationIncludeQueryParameters']:
|
|
2048
|
+
return pulumi.get(self, "include_query_parameters")
|
|
2049
|
+
|
|
2050
|
+
|
|
1971
2051
|
@pulumi.output_type
|
|
1972
2052
|
class ServiceConnectClientAlias(dict):
|
|
1973
2053
|
"""
|
|
@@ -2052,7 +2132,9 @@ class ServiceConnectConfiguration(dict):
|
|
|
2052
2132
|
@staticmethod
|
|
2053
2133
|
def __key_warning(key: str):
|
|
2054
2134
|
suggest = None
|
|
2055
|
-
if key == "
|
|
2135
|
+
if key == "accessLogConfiguration":
|
|
2136
|
+
suggest = "access_log_configuration"
|
|
2137
|
+
elif key == "logConfiguration":
|
|
2056
2138
|
suggest = "log_configuration"
|
|
2057
2139
|
|
|
2058
2140
|
if suggest:
|
|
@@ -2068,6 +2150,7 @@ class ServiceConnectConfiguration(dict):
|
|
|
2068
2150
|
|
|
2069
2151
|
def __init__(__self__, *,
|
|
2070
2152
|
enabled: _builtins.bool,
|
|
2153
|
+
access_log_configuration: Optional['outputs.ServiceConnectAccessLogConfiguration'] = None,
|
|
2071
2154
|
log_configuration: Optional['outputs.ServiceLogConfiguration'] = None,
|
|
2072
2155
|
namespace: Optional[_builtins.str] = None,
|
|
2073
2156
|
services: Optional[Sequence['outputs.ServiceConnectService']] = None):
|
|
@@ -2090,6 +2173,8 @@ class ServiceConnectConfiguration(dict):
|
|
|
2090
2173
|
An object selects a port from the task definition, assigns a name for the CMAPlong service, and a list of aliases (endpoints) and ports for client applications to refer to this service.
|
|
2091
2174
|
"""
|
|
2092
2175
|
pulumi.set(__self__, "enabled", enabled)
|
|
2176
|
+
if access_log_configuration is not None:
|
|
2177
|
+
pulumi.set(__self__, "access_log_configuration", access_log_configuration)
|
|
2093
2178
|
if log_configuration is not None:
|
|
2094
2179
|
pulumi.set(__self__, "log_configuration", log_configuration)
|
|
2095
2180
|
if namespace is not None:
|
|
@@ -2105,6 +2190,11 @@ class ServiceConnectConfiguration(dict):
|
|
|
2105
2190
|
"""
|
|
2106
2191
|
return pulumi.get(self, "enabled")
|
|
2107
2192
|
|
|
2193
|
+
@_builtins.property
|
|
2194
|
+
@pulumi.getter(name="accessLogConfiguration")
|
|
2195
|
+
def access_log_configuration(self) -> Optional['outputs.ServiceConnectAccessLogConfiguration']:
|
|
2196
|
+
return pulumi.get(self, "access_log_configuration")
|
|
2197
|
+
|
|
2108
2198
|
@_builtins.property
|
|
2109
2199
|
@pulumi.getter(name="logConfiguration")
|
|
2110
2200
|
def log_configuration(self) -> Optional['outputs.ServiceLogConfiguration']:
|
|
@@ -2561,10 +2651,10 @@ class ServiceDeploymentConfiguration(dict):
|
|
|
2561
2651
|
def __init__(__self__, *,
|
|
2562
2652
|
alarms: Optional['outputs.ServiceDeploymentAlarms'] = None,
|
|
2563
2653
|
bake_time_in_minutes: Optional[_builtins.int] = None,
|
|
2564
|
-
canary_configuration: Optional[
|
|
2654
|
+
canary_configuration: Optional['outputs.ServiceCanaryConfiguration'] = None,
|
|
2565
2655
|
deployment_circuit_breaker: Optional['outputs.ServiceDeploymentCircuitBreaker'] = None,
|
|
2566
2656
|
lifecycle_hooks: Optional[Sequence['outputs.ServiceDeploymentLifecycleHook']] = None,
|
|
2567
|
-
linear_configuration: Optional[
|
|
2657
|
+
linear_configuration: Optional['outputs.ServiceLinearConfiguration'] = None,
|
|
2568
2658
|
maximum_percent: Optional[_builtins.int] = None,
|
|
2569
2659
|
minimum_healthy_percent: Optional[_builtins.int] = None,
|
|
2570
2660
|
strategy: Optional['ServiceDeploymentConfigurationStrategy'] = None):
|
|
@@ -2645,7 +2735,7 @@ class ServiceDeploymentConfiguration(dict):
|
|
|
2645
2735
|
|
|
2646
2736
|
@_builtins.property
|
|
2647
2737
|
@pulumi.getter(name="canaryConfiguration")
|
|
2648
|
-
def canary_configuration(self) -> Optional[
|
|
2738
|
+
def canary_configuration(self) -> Optional['outputs.ServiceCanaryConfiguration']:
|
|
2649
2739
|
return pulumi.get(self, "canary_configuration")
|
|
2650
2740
|
|
|
2651
2741
|
@_builtins.property
|
|
@@ -2667,7 +2757,7 @@ class ServiceDeploymentConfiguration(dict):
|
|
|
2667
2757
|
|
|
2668
2758
|
@_builtins.property
|
|
2669
2759
|
@pulumi.getter(name="linearConfiguration")
|
|
2670
|
-
def linear_configuration(self) -> Optional[
|
|
2760
|
+
def linear_configuration(self) -> Optional['outputs.ServiceLinearConfiguration']:
|
|
2671
2761
|
return pulumi.get(self, "linear_configuration")
|
|
2672
2762
|
|
|
2673
2763
|
@_builtins.property
|
|
@@ -3062,6 +3152,46 @@ class ServiceForceNewDeployment(dict):
|
|
|
3062
3152
|
return pulumi.get(self, "force_new_deployment_nonce")
|
|
3063
3153
|
|
|
3064
3154
|
|
|
3155
|
+
@pulumi.output_type
|
|
3156
|
+
class ServiceLinearConfiguration(dict):
|
|
3157
|
+
@staticmethod
|
|
3158
|
+
def __key_warning(key: str):
|
|
3159
|
+
suggest = None
|
|
3160
|
+
if key == "stepBakeTimeInMinutes":
|
|
3161
|
+
suggest = "step_bake_time_in_minutes"
|
|
3162
|
+
elif key == "stepPercent":
|
|
3163
|
+
suggest = "step_percent"
|
|
3164
|
+
|
|
3165
|
+
if suggest:
|
|
3166
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceLinearConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
3167
|
+
|
|
3168
|
+
def __getitem__(self, key: str) -> Any:
|
|
3169
|
+
ServiceLinearConfiguration.__key_warning(key)
|
|
3170
|
+
return super().__getitem__(key)
|
|
3171
|
+
|
|
3172
|
+
def get(self, key: str, default = None) -> Any:
|
|
3173
|
+
ServiceLinearConfiguration.__key_warning(key)
|
|
3174
|
+
return super().get(key, default)
|
|
3175
|
+
|
|
3176
|
+
def __init__(__self__, *,
|
|
3177
|
+
step_bake_time_in_minutes: Optional[_builtins.int] = None,
|
|
3178
|
+
step_percent: Optional[_builtins.float] = None):
|
|
3179
|
+
if step_bake_time_in_minutes is not None:
|
|
3180
|
+
pulumi.set(__self__, "step_bake_time_in_minutes", step_bake_time_in_minutes)
|
|
3181
|
+
if step_percent is not None:
|
|
3182
|
+
pulumi.set(__self__, "step_percent", step_percent)
|
|
3183
|
+
|
|
3184
|
+
@_builtins.property
|
|
3185
|
+
@pulumi.getter(name="stepBakeTimeInMinutes")
|
|
3186
|
+
def step_bake_time_in_minutes(self) -> Optional[_builtins.int]:
|
|
3187
|
+
return pulumi.get(self, "step_bake_time_in_minutes")
|
|
3188
|
+
|
|
3189
|
+
@_builtins.property
|
|
3190
|
+
@pulumi.getter(name="stepPercent")
|
|
3191
|
+
def step_percent(self) -> Optional[_builtins.float]:
|
|
3192
|
+
return pulumi.get(self, "step_percent")
|
|
3193
|
+
|
|
3194
|
+
|
|
3065
3195
|
@pulumi.output_type
|
|
3066
3196
|
class ServiceLoadBalancer(dict):
|
|
3067
3197
|
"""
|
|
@@ -2035,7 +2035,7 @@ if not MYPY:
|
|
|
2035
2035
|
regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2036
2036
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2037
2037
|
"""
|
|
2038
|
-
The host names. The maximum
|
|
2038
|
+
The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
2039
2039
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
2040
2040
|
"""
|
|
2041
2041
|
elif False:
|
|
@@ -2048,7 +2048,7 @@ class ListenerRuleHostHeaderConfigArgs:
|
|
|
2048
2048
|
values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
2049
2049
|
"""
|
|
2050
2050
|
Information about a host header condition.
|
|
2051
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The host names. The maximum
|
|
2051
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
2052
2052
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
2053
2053
|
"""
|
|
2054
2054
|
if regex_values is not None:
|
|
@@ -2069,7 +2069,7 @@ class ListenerRuleHostHeaderConfigArgs:
|
|
|
2069
2069
|
@pulumi.getter
|
|
2070
2070
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2071
2071
|
"""
|
|
2072
|
-
The host names. The maximum
|
|
2072
|
+
The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
2073
2073
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
2074
2074
|
"""
|
|
2075
2075
|
return pulumi.get(self, "values")
|
|
@@ -2092,7 +2092,7 @@ if not MYPY:
|
|
|
2092
2092
|
regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2093
2093
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2094
2094
|
"""
|
|
2095
|
-
The strings to compare against the value of the HTTP header. The maximum
|
|
2095
|
+
The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
2096
2096
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
2097
2097
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
2098
2098
|
"""
|
|
@@ -2109,7 +2109,7 @@ class ListenerRuleHttpHeaderConfigArgs:
|
|
|
2109
2109
|
Information about an HTTP header condition.
|
|
2110
2110
|
There is a set of standard HTTP header fields. You can also define custom HTTP header fields.
|
|
2111
2111
|
:param pulumi.Input[_builtins.str] http_header_name: The name of the HTTP header field. The maximum size is 40 characters. The header name is case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not supported.
|
|
2112
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The strings to compare against the value of the HTTP header. The maximum
|
|
2112
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
2113
2113
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
2114
2114
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
2115
2115
|
"""
|
|
@@ -2145,7 +2145,7 @@ class ListenerRuleHttpHeaderConfigArgs:
|
|
|
2145
2145
|
@pulumi.getter
|
|
2146
2146
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2147
2147
|
"""
|
|
2148
|
-
The strings to compare against the value of the HTTP header. The maximum
|
|
2148
|
+
The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
2149
2149
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
2150
2150
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
2151
2151
|
"""
|
|
@@ -2164,7 +2164,7 @@ if not MYPY:
|
|
|
2164
2164
|
"""
|
|
2165
2165
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2166
2166
|
"""
|
|
2167
|
-
The name of the request method. The maximum
|
|
2167
|
+
The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
2168
2168
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
2169
2169
|
"""
|
|
2170
2170
|
elif False:
|
|
@@ -2177,7 +2177,7 @@ class ListenerRuleHttpRequestMethodConfigArgs:
|
|
|
2177
2177
|
"""
|
|
2178
2178
|
Information about an HTTP method condition.
|
|
2179
2179
|
HTTP defines a set of request methods, also referred to as HTTP verbs. For more information, see the [HTTP Method Registry](https://docs.aws.amazon.com/https://www.iana.org/assignments/http-methods/http-methods.xhtml). You can also define custom HTTP methods.
|
|
2180
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The name of the request method. The maximum
|
|
2180
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
2181
2181
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
2182
2182
|
"""
|
|
2183
2183
|
if values is not None:
|
|
@@ -2187,7 +2187,7 @@ class ListenerRuleHttpRequestMethodConfigArgs:
|
|
|
2187
2187
|
@pulumi.getter
|
|
2188
2188
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2189
2189
|
"""
|
|
2190
|
-
The name of the request method. The maximum
|
|
2190
|
+
The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
2191
2191
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
2192
2192
|
"""
|
|
2193
2193
|
return pulumi.get(self, "values")
|
|
@@ -2257,7 +2257,7 @@ if not MYPY:
|
|
|
2257
2257
|
"""
|
|
2258
2258
|
values: NotRequired[pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgsDict']]]]
|
|
2259
2259
|
"""
|
|
2260
|
-
The key/value pairs or values to find in the query string. The maximum
|
|
2260
|
+
The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
2261
2261
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
2262
2262
|
"""
|
|
2263
2263
|
elif False:
|
|
@@ -2270,7 +2270,7 @@ class ListenerRuleQueryStringConfigArgs:
|
|
|
2270
2270
|
"""
|
|
2271
2271
|
Information about a query string condition.
|
|
2272
2272
|
The query string component of a URI starts after the first '?' character and is terminated by either a '#' character or the end of the URI. A typical query string contains key/value pairs separated by '&' characters. The allowed characters are specified by RFC 3986. Any character can be percentage encoded.
|
|
2273
|
-
:param pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]] values: The key/value pairs or values to find in the query string. The maximum
|
|
2273
|
+
:param pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]] values: The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
2274
2274
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
2275
2275
|
"""
|
|
2276
2276
|
if values is not None:
|
|
@@ -2280,7 +2280,7 @@ class ListenerRuleQueryStringConfigArgs:
|
|
|
2280
2280
|
@pulumi.getter
|
|
2281
2281
|
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]]]:
|
|
2282
2282
|
"""
|
|
2283
|
-
The key/value pairs or values to find in the query string. The maximum
|
|
2283
|
+
The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
|
|
2284
2284
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
2285
2285
|
"""
|
|
2286
2286
|
return pulumi.get(self, "values")
|
|
@@ -39,7 +39,7 @@ class LoadBalancerArgs:
|
|
|
39
39
|
type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
40
40
|
"""
|
|
41
41
|
The set of arguments for constructing a LoadBalancer resource.
|
|
42
|
-
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
42
|
+
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
43
43
|
:param pulumi.Input[_builtins.str] enable_prefix_for_ipv6_source_nat: [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack``. The default value is ``off``.
|
|
44
44
|
:param pulumi.Input[_builtins.str] enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
|
|
45
45
|
You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
@@ -104,7 +104,7 @@ class LoadBalancerArgs:
|
|
|
104
104
|
@pulumi.getter(name="enableCapacityReservationProvisionStabilize")
|
|
105
105
|
def enable_capacity_reservation_provision_stabilize(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
106
106
|
"""
|
|
107
|
-
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
107
|
+
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
108
108
|
"""
|
|
109
109
|
return pulumi.get(self, "enable_capacity_reservation_provision_stabilize")
|
|
110
110
|
|
|
@@ -312,7 +312,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
312
312
|
|
|
313
313
|
:param str resource_name: The name of the resource.
|
|
314
314
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
315
|
-
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
315
|
+
:param pulumi.Input[_builtins.bool] enable_capacity_reservation_provision_stabilize: Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
316
316
|
:param pulumi.Input[_builtins.str] enable_prefix_for_ipv6_source_nat: [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack``. The default value is ``off``.
|
|
317
317
|
:param pulumi.Input[_builtins.str] enforce_security_group_inbound_rules_on_private_link_traffic: Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
|
|
318
318
|
You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
|
@@ -475,7 +475,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
475
475
|
@pulumi.getter(name="enableCapacityReservationProvisionStabilize")
|
|
476
476
|
def enable_capacity_reservation_provision_stabilize(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
477
477
|
"""
|
|
478
|
-
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is
|
|
478
|
+
Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
479
479
|
"""
|
|
480
480
|
return pulumi.get(self, "enable_capacity_reservation_provision_stabilize")
|
|
481
481
|
|