pulumi-aws-native 1.38.0a1761631437__py3-none-any.whl → 1.39.0a1762376209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_aws_native/__init__.py +19 -1
- 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/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 +34 -0
- pulumi_aws_native/batch/job_definition.py +29 -0
- pulumi_aws_native/batch/outputs.py +37 -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/_enums.py +1 -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/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +83 -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/get_volume.py +37 -15
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +23 -0
- pulumi_aws_native/ecs/_inputs.py +230 -23
- pulumi_aws_native/ecs/outputs.py +195 -15
- 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/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/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/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- 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 +20 -0
- pulumi_aws_native/networkfirewall/firewall.py +10 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
- pulumi_aws_native/networkfirewall/outputs.py +14 -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/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +44 -0
- pulumi_aws_native/rtbfabric/_inputs.py +330 -0
- pulumi_aws_native/rtbfabric/get_link.py +199 -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 +344 -0
- pulumi_aws_native/rtbfabric/outputs.py +306 -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/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +86 -0
- pulumi_aws_native/transfer/connector.py +86 -19
- pulumi_aws_native/transfer/get_connector.py +43 -1
- pulumi_aws_native/transfer/outputs.py +86 -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.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/RECORD +116 -96
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/top_level.txt +0 -0
|
@@ -53,7 +53,7 @@ class ApplicationArgs:
|
|
|
53
53
|
:param pulumi.Input['ApplicationIdentityType'] identity_type: The authentication type being used by a Amazon Q Business application.
|
|
54
54
|
:param pulumi.Input['ApplicationPersonalizationConfigurationArgs'] personalization_configuration: Configuration information about chat response personalization. For more information, see [Personalizing chat responses](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html) .
|
|
55
55
|
:param pulumi.Input['ApplicationQAppsConfigurationArgs'] q_apps_configuration: Configuration information about Amazon Q Apps.
|
|
56
|
-
:param pulumi.Input['ApplicationQuickSightConfigurationArgs'] quick_sight_configuration: The Amazon
|
|
56
|
+
:param pulumi.Input['ApplicationQuickSightConfigurationArgs'] quick_sight_configuration: The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
57
57
|
:param pulumi.Input[_builtins.str] role_arn: The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics. If this property is not specified, Amazon Q Business will create a [service linked role (SLR)](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions) and use it as the application's role.
|
|
58
58
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: A list of key-value pairs that identify or categorize your Amazon Q Business application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
|
|
59
59
|
"""
|
|
@@ -223,7 +223,7 @@ class ApplicationArgs:
|
|
|
223
223
|
@pulumi.getter(name="quickSightConfiguration")
|
|
224
224
|
def quick_sight_configuration(self) -> Optional[pulumi.Input['ApplicationQuickSightConfigurationArgs']]:
|
|
225
225
|
"""
|
|
226
|
-
The Amazon
|
|
226
|
+
The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
227
227
|
"""
|
|
228
228
|
return pulumi.get(self, "quick_sight_configuration")
|
|
229
229
|
|
|
@@ -295,7 +295,7 @@ class Application(pulumi.CustomResource):
|
|
|
295
295
|
:param pulumi.Input['ApplicationIdentityType'] identity_type: The authentication type being used by a Amazon Q Business application.
|
|
296
296
|
:param pulumi.Input[Union['ApplicationPersonalizationConfigurationArgs', 'ApplicationPersonalizationConfigurationArgsDict']] personalization_configuration: Configuration information about chat response personalization. For more information, see [Personalizing chat responses](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html) .
|
|
297
297
|
:param pulumi.Input[Union['ApplicationQAppsConfigurationArgs', 'ApplicationQAppsConfigurationArgsDict']] q_apps_configuration: Configuration information about Amazon Q Apps.
|
|
298
|
-
:param pulumi.Input[Union['ApplicationQuickSightConfigurationArgs', 'ApplicationQuickSightConfigurationArgsDict']] quick_sight_configuration: The Amazon
|
|
298
|
+
:param pulumi.Input[Union['ApplicationQuickSightConfigurationArgs', 'ApplicationQuickSightConfigurationArgsDict']] quick_sight_configuration: The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
299
299
|
:param pulumi.Input[_builtins.str] role_arn: The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics. If this property is not specified, Amazon Q Business will create a [service linked role (SLR)](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions) and use it as the application's role.
|
|
300
300
|
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: A list of key-value pairs that identify or categorize your Amazon Q Business application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
|
|
301
301
|
"""
|
|
@@ -540,7 +540,7 @@ class Application(pulumi.CustomResource):
|
|
|
540
540
|
@pulumi.getter(name="quickSightConfiguration")
|
|
541
541
|
def quick_sight_configuration(self) -> pulumi.Output[Optional['outputs.ApplicationQuickSightConfiguration']]:
|
|
542
542
|
"""
|
|
543
|
-
The Amazon
|
|
543
|
+
The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
544
544
|
"""
|
|
545
545
|
return pulumi.get(self, "quick_sight_configuration")
|
|
546
546
|
|
|
@@ -287,7 +287,7 @@ class ApplicationQuickSightConfiguration(dict):
|
|
|
287
287
|
def __init__(__self__, *,
|
|
288
288
|
client_namespace: _builtins.str):
|
|
289
289
|
"""
|
|
290
|
-
:param _builtins.str client_namespace: The Amazon
|
|
290
|
+
:param _builtins.str client_namespace: The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
291
291
|
"""
|
|
292
292
|
pulumi.set(__self__, "client_namespace", client_namespace)
|
|
293
293
|
|
|
@@ -295,7 +295,7 @@ class ApplicationQuickSightConfiguration(dict):
|
|
|
295
295
|
@pulumi.getter(name="clientNamespace")
|
|
296
296
|
def client_namespace(self) -> _builtins.str:
|
|
297
297
|
"""
|
|
298
|
-
The Amazon
|
|
298
|
+
The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
299
299
|
"""
|
|
300
300
|
return pulumi.get(self, "client_namespace")
|
|
301
301
|
|
|
@@ -38331,7 +38331,7 @@ if not MYPY:
|
|
|
38331
38331
|
"""
|
|
38332
38332
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
38333
38333
|
"""
|
|
38334
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
38334
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
38335
38335
|
"""
|
|
38336
38336
|
parameter_controls: NotRequired[pulumi.Input[Sequence[pulumi.Input['AnalysisParameterControlArgsDict']]]]
|
|
38337
38337
|
"""
|
|
@@ -38387,7 +38387,7 @@ class AnalysisSheetDefinitionArgs:
|
|
|
38387
38387
|
:param pulumi.Input[Sequence[pulumi.Input['AnalysisLayoutArgs']]] layouts: Layouts define how the components of a sheet are arranged.
|
|
38388
38388
|
|
|
38389
38389
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
38390
|
-
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
38390
|
+
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
38391
38391
|
:param pulumi.Input[Sequence[pulumi.Input['AnalysisParameterControlArgs']]] parameter_controls: The list of parameter controls that are on a sheet.
|
|
38392
38392
|
|
|
38393
38393
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -38503,7 +38503,7 @@ class AnalysisSheetDefinitionArgs:
|
|
|
38503
38503
|
@pulumi.getter
|
|
38504
38504
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
38505
38505
|
"""
|
|
38506
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
38506
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
38507
38507
|
"""
|
|
38508
38508
|
return pulumi.get(self, "name")
|
|
38509
38509
|
|
|
@@ -83259,7 +83259,7 @@ if not MYPY:
|
|
|
83259
83259
|
"""
|
|
83260
83260
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
83261
83261
|
"""
|
|
83262
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
83262
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
83263
83263
|
"""
|
|
83264
83264
|
parameter_controls: NotRequired[pulumi.Input[Sequence[pulumi.Input['DashboardParameterControlArgsDict']]]]
|
|
83265
83265
|
"""
|
|
@@ -83315,7 +83315,7 @@ class DashboardSheetDefinitionArgs:
|
|
|
83315
83315
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardLayoutArgs']]] layouts: Layouts define how the components of a sheet are arranged.
|
|
83316
83316
|
|
|
83317
83317
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
83318
|
-
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
83318
|
+
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
83319
83319
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardParameterControlArgs']]] parameter_controls: The list of parameter controls that are on a sheet.
|
|
83320
83320
|
|
|
83321
83321
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -83431,7 +83431,7 @@ class DashboardSheetDefinitionArgs:
|
|
|
83431
83431
|
@pulumi.getter
|
|
83432
83432
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
83433
83433
|
"""
|
|
83434
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
83434
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
83435
83435
|
"""
|
|
83436
83436
|
return pulumi.get(self, "name")
|
|
83437
83437
|
|
|
@@ -131618,7 +131618,7 @@ if not MYPY:
|
|
|
131618
131618
|
"""
|
|
131619
131619
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
131620
131620
|
"""
|
|
131621
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
131621
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
131622
131622
|
"""
|
|
131623
131623
|
parameter_controls: NotRequired[pulumi.Input[Sequence[pulumi.Input['TemplateParameterControlArgsDict']]]]
|
|
131624
131624
|
"""
|
|
@@ -131674,7 +131674,7 @@ class TemplateSheetDefinitionArgs:
|
|
|
131674
131674
|
:param pulumi.Input[Sequence[pulumi.Input['TemplateLayoutArgs']]] layouts: Layouts define how the components of a sheet are arranged.
|
|
131675
131675
|
|
|
131676
131676
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
131677
|
-
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
131677
|
+
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
131678
131678
|
:param pulumi.Input[Sequence[pulumi.Input['TemplateParameterControlArgs']]] parameter_controls: The list of parameter controls that are on a sheet.
|
|
131679
131679
|
|
|
131680
131680
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -131790,7 +131790,7 @@ class TemplateSheetDefinitionArgs:
|
|
|
131790
131790
|
@pulumi.getter
|
|
131791
131791
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
131792
131792
|
"""
|
|
131793
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
131793
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
131794
131794
|
"""
|
|
131795
131795
|
return pulumi.get(self, "name")
|
|
131796
131796
|
|
|
@@ -30322,7 +30322,7 @@ class AnalysisSheetDefinition(dict):
|
|
|
30322
30322
|
:param Sequence['AnalysisLayout'] layouts: Layouts define how the components of a sheet are arranged.
|
|
30323
30323
|
|
|
30324
30324
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
30325
|
-
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
30325
|
+
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
30326
30326
|
:param Sequence['AnalysisParameterControl'] parameter_controls: The list of parameter controls that are on a sheet.
|
|
30327
30327
|
|
|
30328
30328
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -30414,7 +30414,7 @@ class AnalysisSheetDefinition(dict):
|
|
|
30414
30414
|
@pulumi.getter
|
|
30415
30415
|
def name(self) -> Optional[_builtins.str]:
|
|
30416
30416
|
"""
|
|
30417
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
30417
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
30418
30418
|
"""
|
|
30419
30419
|
return pulumi.get(self, "name")
|
|
30420
30420
|
|
|
@@ -67147,7 +67147,7 @@ class DashboardSheetDefinition(dict):
|
|
|
67147
67147
|
:param Sequence['DashboardLayout'] layouts: Layouts define how the components of a sheet are arranged.
|
|
67148
67148
|
|
|
67149
67149
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
67150
|
-
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
67150
|
+
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
67151
67151
|
:param Sequence['DashboardParameterControl'] parameter_controls: The list of parameter controls that are on a sheet.
|
|
67152
67152
|
|
|
67153
67153
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -67239,7 +67239,7 @@ class DashboardSheetDefinition(dict):
|
|
|
67239
67239
|
@pulumi.getter
|
|
67240
67240
|
def name(self) -> Optional[_builtins.str]:
|
|
67241
67241
|
"""
|
|
67242
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
67242
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
67243
67243
|
"""
|
|
67244
67244
|
return pulumi.get(self, "name")
|
|
67245
67245
|
|
|
@@ -107015,7 +107015,7 @@ class TemplateSheetDefinition(dict):
|
|
|
107015
107015
|
:param Sequence['TemplateLayout'] layouts: Layouts define how the components of a sheet are arranged.
|
|
107016
107016
|
|
|
107017
107017
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
107018
|
-
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
107018
|
+
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
107019
107019
|
:param Sequence['TemplateParameterControl'] parameter_controls: The list of parameter controls that are on a sheet.
|
|
107020
107020
|
|
|
107021
107021
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -107107,7 +107107,7 @@ class TemplateSheetDefinition(dict):
|
|
|
107107
107107
|
@pulumi.getter
|
|
107108
107108
|
def name(self) -> Optional[_builtins.str]:
|
|
107109
107109
|
"""
|
|
107110
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
107110
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
107111
107111
|
"""
|
|
107112
107112
|
return pulumi.get(self, "name")
|
|
107113
107113
|
|
|
@@ -7,8 +7,10 @@ from .. import _utilities
|
|
|
7
7
|
import typing
|
|
8
8
|
# Export this package's modules as members:
|
|
9
9
|
from ._enums import *
|
|
10
|
+
from .get_link import *
|
|
10
11
|
from .get_requester_gateway import *
|
|
11
12
|
from .get_responder_gateway import *
|
|
13
|
+
from .link import *
|
|
12
14
|
from .requester_gateway import *
|
|
13
15
|
from .responder_gateway import *
|
|
14
16
|
from ._inputs import *
|
|
@@ -7,12 +7,56 @@ import pulumi
|
|
|
7
7
|
from enum import Enum
|
|
8
8
|
|
|
9
9
|
__all__ = [
|
|
10
|
+
'LinkDirection',
|
|
11
|
+
'LinkResponderErrorMaskingForHttpCodeAction',
|
|
12
|
+
'LinkResponderErrorMaskingLoggingType',
|
|
13
|
+
'LinkStatus',
|
|
10
14
|
'RequesterGatewayStatus',
|
|
11
15
|
'ResponderGatewayProtocol',
|
|
12
16
|
'ResponderGatewayStatus',
|
|
13
17
|
]
|
|
14
18
|
|
|
15
19
|
|
|
20
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkDirection")
|
|
21
|
+
class LinkDirection(_builtins.str, Enum):
|
|
22
|
+
REQUEST = "REQUEST"
|
|
23
|
+
RESPONSE = "RESPONSE"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingForHttpCodeAction")
|
|
27
|
+
class LinkResponderErrorMaskingForHttpCodeAction(_builtins.str, Enum):
|
|
28
|
+
"""
|
|
29
|
+
The action for the error..
|
|
30
|
+
"""
|
|
31
|
+
NO_BID = "NO_BID"
|
|
32
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingLoggingType")
|
|
36
|
+
class LinkResponderErrorMaskingLoggingType(_builtins.str, Enum):
|
|
37
|
+
NONE = "NONE"
|
|
38
|
+
METRIC = "METRIC"
|
|
39
|
+
RESPONSE = "RESPONSE"
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@pulumi.type_token("aws-native:rtbfabric:LinkStatus")
|
|
43
|
+
class LinkStatus(_builtins.str, Enum):
|
|
44
|
+
PENDING_CREATION = "PENDING_CREATION"
|
|
45
|
+
PENDING_REQUEST = "PENDING_REQUEST"
|
|
46
|
+
REQUESTED = "REQUESTED"
|
|
47
|
+
ACCEPTED = "ACCEPTED"
|
|
48
|
+
ACTIVE = "ACTIVE"
|
|
49
|
+
DECLINED = "DECLINED"
|
|
50
|
+
FAILED = "FAILED"
|
|
51
|
+
PENDING_DELETION = "PENDING_DELETION"
|
|
52
|
+
DELETED = "DELETED"
|
|
53
|
+
PENDING_UPDATE = "PENDING_UPDATE"
|
|
54
|
+
PENDING_ISOLATION = "PENDING_ISOLATION"
|
|
55
|
+
ISOLATED = "ISOLATED"
|
|
56
|
+
PENDING_RESTORATION = "PENDING_RESTORATION"
|
|
57
|
+
UNKNOWN_TO_SDK_VERSION = "UNKNOWN_TO_SDK_VERSION"
|
|
58
|
+
|
|
59
|
+
|
|
16
60
|
@pulumi.type_token("aws-native:rtbfabric:RequesterGatewayStatus")
|
|
17
61
|
class RequesterGatewayStatus(_builtins.str, Enum):
|
|
18
62
|
PENDING_CREATION = "PENDING_CREATION"
|
|
@@ -16,6 +16,20 @@ from .. import _utilities
|
|
|
16
16
|
from ._enums import *
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
|
+
'LinkAttributesArgs',
|
|
20
|
+
'LinkAttributesArgsDict',
|
|
21
|
+
'LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgs',
|
|
22
|
+
'LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgsDict',
|
|
23
|
+
'LinkLogSettingsApplicationLogsPropertiesArgs',
|
|
24
|
+
'LinkLogSettingsApplicationLogsPropertiesArgsDict',
|
|
25
|
+
'LinkLogSettingsArgs',
|
|
26
|
+
'LinkLogSettingsArgsDict',
|
|
27
|
+
'LinkModuleConfigurationArgs',
|
|
28
|
+
'LinkModuleConfigurationArgsDict',
|
|
29
|
+
'LinkModuleParametersArgs',
|
|
30
|
+
'LinkModuleParametersArgsDict',
|
|
31
|
+
'LinkResponderErrorMaskingForHttpCodeArgs',
|
|
32
|
+
'LinkResponderErrorMaskingForHttpCodeArgsDict',
|
|
19
33
|
'ResponderGatewayManagedEndpointConfigurationArgs',
|
|
20
34
|
'ResponderGatewayManagedEndpointConfigurationArgsDict',
|
|
21
35
|
'ResponderGatewayTrustStoreConfigurationArgs',
|
|
@@ -24,6 +38,313 @@ __all__ = [
|
|
|
24
38
|
|
|
25
39
|
MYPY = False
|
|
26
40
|
|
|
41
|
+
if not MYPY:
|
|
42
|
+
class LinkAttributesArgsDict(TypedDict):
|
|
43
|
+
customer_provided_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
44
|
+
"""
|
|
45
|
+
The customer-provided unique identifier of the link.
|
|
46
|
+
"""
|
|
47
|
+
responder_error_masking: NotRequired[pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgsDict']]]]
|
|
48
|
+
"""
|
|
49
|
+
Describes the masking for HTTP error codes.
|
|
50
|
+
"""
|
|
51
|
+
elif False:
|
|
52
|
+
LinkAttributesArgsDict: TypeAlias = Mapping[str, Any]
|
|
53
|
+
|
|
54
|
+
@pulumi.input_type
|
|
55
|
+
class LinkAttributesArgs:
|
|
56
|
+
def __init__(__self__, *,
|
|
57
|
+
customer_provided_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
58
|
+
responder_error_masking: Optional[pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgs']]]] = None):
|
|
59
|
+
"""
|
|
60
|
+
:param pulumi.Input[_builtins.str] customer_provided_id: The customer-provided unique identifier of the link.
|
|
61
|
+
:param pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgs']]] responder_error_masking: Describes the masking for HTTP error codes.
|
|
62
|
+
"""
|
|
63
|
+
if customer_provided_id is not None:
|
|
64
|
+
pulumi.set(__self__, "customer_provided_id", customer_provided_id)
|
|
65
|
+
if responder_error_masking is not None:
|
|
66
|
+
pulumi.set(__self__, "responder_error_masking", responder_error_masking)
|
|
67
|
+
|
|
68
|
+
@_builtins.property
|
|
69
|
+
@pulumi.getter(name="customerProvidedId")
|
|
70
|
+
def customer_provided_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
71
|
+
"""
|
|
72
|
+
The customer-provided unique identifier of the link.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "customer_provided_id")
|
|
75
|
+
|
|
76
|
+
@customer_provided_id.setter
|
|
77
|
+
def customer_provided_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
78
|
+
pulumi.set(self, "customer_provided_id", value)
|
|
79
|
+
|
|
80
|
+
@_builtins.property
|
|
81
|
+
@pulumi.getter(name="responderErrorMasking")
|
|
82
|
+
def responder_error_masking(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgs']]]]:
|
|
83
|
+
"""
|
|
84
|
+
Describes the masking for HTTP error codes.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "responder_error_masking")
|
|
87
|
+
|
|
88
|
+
@responder_error_masking.setter
|
|
89
|
+
def responder_error_masking(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgs']]]]):
|
|
90
|
+
pulumi.set(self, "responder_error_masking", value)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
if not MYPY:
|
|
94
|
+
class LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgsDict(TypedDict):
|
|
95
|
+
error_log: pulumi.Input[_builtins.float]
|
|
96
|
+
filter_log: pulumi.Input[_builtins.float]
|
|
97
|
+
elif False:
|
|
98
|
+
LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
99
|
+
|
|
100
|
+
@pulumi.input_type
|
|
101
|
+
class LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgs:
|
|
102
|
+
def __init__(__self__, *,
|
|
103
|
+
error_log: pulumi.Input[_builtins.float],
|
|
104
|
+
filter_log: pulumi.Input[_builtins.float]):
|
|
105
|
+
pulumi.set(__self__, "error_log", error_log)
|
|
106
|
+
pulumi.set(__self__, "filter_log", filter_log)
|
|
107
|
+
|
|
108
|
+
@_builtins.property
|
|
109
|
+
@pulumi.getter(name="errorLog")
|
|
110
|
+
def error_log(self) -> pulumi.Input[_builtins.float]:
|
|
111
|
+
return pulumi.get(self, "error_log")
|
|
112
|
+
|
|
113
|
+
@error_log.setter
|
|
114
|
+
def error_log(self, value: pulumi.Input[_builtins.float]):
|
|
115
|
+
pulumi.set(self, "error_log", value)
|
|
116
|
+
|
|
117
|
+
@_builtins.property
|
|
118
|
+
@pulumi.getter(name="filterLog")
|
|
119
|
+
def filter_log(self) -> pulumi.Input[_builtins.float]:
|
|
120
|
+
return pulumi.get(self, "filter_log")
|
|
121
|
+
|
|
122
|
+
@filter_log.setter
|
|
123
|
+
def filter_log(self, value: pulumi.Input[_builtins.float]):
|
|
124
|
+
pulumi.set(self, "filter_log", value)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
if not MYPY:
|
|
128
|
+
class LinkLogSettingsApplicationLogsPropertiesArgsDict(TypedDict):
|
|
129
|
+
"""
|
|
130
|
+
Describes the configuration of a link application log.
|
|
131
|
+
"""
|
|
132
|
+
link_application_log_sampling: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgsDict']
|
|
133
|
+
elif False:
|
|
134
|
+
LinkLogSettingsApplicationLogsPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
135
|
+
|
|
136
|
+
@pulumi.input_type
|
|
137
|
+
class LinkLogSettingsApplicationLogsPropertiesArgs:
|
|
138
|
+
def __init__(__self__, *,
|
|
139
|
+
link_application_log_sampling: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgs']):
|
|
140
|
+
"""
|
|
141
|
+
Describes the configuration of a link application log.
|
|
142
|
+
"""
|
|
143
|
+
pulumi.set(__self__, "link_application_log_sampling", link_application_log_sampling)
|
|
144
|
+
|
|
145
|
+
@_builtins.property
|
|
146
|
+
@pulumi.getter(name="linkApplicationLogSampling")
|
|
147
|
+
def link_application_log_sampling(self) -> pulumi.Input['LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgs']:
|
|
148
|
+
return pulumi.get(self, "link_application_log_sampling")
|
|
149
|
+
|
|
150
|
+
@link_application_log_sampling.setter
|
|
151
|
+
def link_application_log_sampling(self, value: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgs']):
|
|
152
|
+
pulumi.set(self, "link_application_log_sampling", value)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
if not MYPY:
|
|
156
|
+
class LinkLogSettingsArgsDict(TypedDict):
|
|
157
|
+
application_logs: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgsDict']
|
|
158
|
+
"""
|
|
159
|
+
Describes the configuration of a link application log.
|
|
160
|
+
"""
|
|
161
|
+
elif False:
|
|
162
|
+
LinkLogSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
|
163
|
+
|
|
164
|
+
@pulumi.input_type
|
|
165
|
+
class LinkLogSettingsArgs:
|
|
166
|
+
def __init__(__self__, *,
|
|
167
|
+
application_logs: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs']):
|
|
168
|
+
"""
|
|
169
|
+
:param pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs'] application_logs: Describes the configuration of a link application log.
|
|
170
|
+
"""
|
|
171
|
+
pulumi.set(__self__, "application_logs", application_logs)
|
|
172
|
+
|
|
173
|
+
@_builtins.property
|
|
174
|
+
@pulumi.getter(name="applicationLogs")
|
|
175
|
+
def application_logs(self) -> pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs']:
|
|
176
|
+
"""
|
|
177
|
+
Describes the configuration of a link application log.
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "application_logs")
|
|
180
|
+
|
|
181
|
+
@application_logs.setter
|
|
182
|
+
def application_logs(self, value: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs']):
|
|
183
|
+
pulumi.set(self, "application_logs", value)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
if not MYPY:
|
|
187
|
+
class LinkModuleConfigurationArgsDict(TypedDict):
|
|
188
|
+
name: pulumi.Input[_builtins.str]
|
|
189
|
+
depends_on: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
190
|
+
module_parameters: NotRequired[pulumi.Input['LinkModuleParametersArgsDict']]
|
|
191
|
+
version: NotRequired[pulumi.Input[_builtins.str]]
|
|
192
|
+
elif False:
|
|
193
|
+
LinkModuleConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
194
|
+
|
|
195
|
+
@pulumi.input_type
|
|
196
|
+
class LinkModuleConfigurationArgs:
|
|
197
|
+
def __init__(__self__, *,
|
|
198
|
+
name: pulumi.Input[_builtins.str],
|
|
199
|
+
depends_on: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
200
|
+
module_parameters: Optional[pulumi.Input['LinkModuleParametersArgs']] = None,
|
|
201
|
+
version: Optional[pulumi.Input[_builtins.str]] = None):
|
|
202
|
+
pulumi.set(__self__, "name", name)
|
|
203
|
+
if depends_on is not None:
|
|
204
|
+
pulumi.set(__self__, "depends_on", depends_on)
|
|
205
|
+
if module_parameters is not None:
|
|
206
|
+
pulumi.set(__self__, "module_parameters", module_parameters)
|
|
207
|
+
if version is not None:
|
|
208
|
+
pulumi.set(__self__, "version", version)
|
|
209
|
+
|
|
210
|
+
@_builtins.property
|
|
211
|
+
@pulumi.getter
|
|
212
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
213
|
+
return pulumi.get(self, "name")
|
|
214
|
+
|
|
215
|
+
@name.setter
|
|
216
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
217
|
+
pulumi.set(self, "name", value)
|
|
218
|
+
|
|
219
|
+
@_builtins.property
|
|
220
|
+
@pulumi.getter(name="dependsOn")
|
|
221
|
+
def depends_on(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
222
|
+
return pulumi.get(self, "depends_on")
|
|
223
|
+
|
|
224
|
+
@depends_on.setter
|
|
225
|
+
def depends_on(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
226
|
+
pulumi.set(self, "depends_on", value)
|
|
227
|
+
|
|
228
|
+
@_builtins.property
|
|
229
|
+
@pulumi.getter(name="moduleParameters")
|
|
230
|
+
def module_parameters(self) -> Optional[pulumi.Input['LinkModuleParametersArgs']]:
|
|
231
|
+
return pulumi.get(self, "module_parameters")
|
|
232
|
+
|
|
233
|
+
@module_parameters.setter
|
|
234
|
+
def module_parameters(self, value: Optional[pulumi.Input['LinkModuleParametersArgs']]):
|
|
235
|
+
pulumi.set(self, "module_parameters", value)
|
|
236
|
+
|
|
237
|
+
@_builtins.property
|
|
238
|
+
@pulumi.getter
|
|
239
|
+
def version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
240
|
+
return pulumi.get(self, "version")
|
|
241
|
+
|
|
242
|
+
@version.setter
|
|
243
|
+
def version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
244
|
+
pulumi.set(self, "version", value)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
if not MYPY:
|
|
248
|
+
class LinkModuleParametersArgsDict(TypedDict):
|
|
249
|
+
pass
|
|
250
|
+
elif False:
|
|
251
|
+
LinkModuleParametersArgsDict: TypeAlias = Mapping[str, Any]
|
|
252
|
+
|
|
253
|
+
@pulumi.input_type
|
|
254
|
+
class LinkModuleParametersArgs:
|
|
255
|
+
def __init__(__self__):
|
|
256
|
+
pass
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
if not MYPY:
|
|
260
|
+
class LinkResponderErrorMaskingForHttpCodeArgsDict(TypedDict):
|
|
261
|
+
action: pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction']
|
|
262
|
+
"""
|
|
263
|
+
The action for the error..
|
|
264
|
+
"""
|
|
265
|
+
http_code: pulumi.Input[_builtins.str]
|
|
266
|
+
"""
|
|
267
|
+
The HTTP error code.
|
|
268
|
+
"""
|
|
269
|
+
logging_types: pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]]
|
|
270
|
+
"""
|
|
271
|
+
The error log type.
|
|
272
|
+
"""
|
|
273
|
+
response_logging_percentage: NotRequired[pulumi.Input[_builtins.float]]
|
|
274
|
+
"""
|
|
275
|
+
The percentage of response logging.
|
|
276
|
+
"""
|
|
277
|
+
elif False:
|
|
278
|
+
LinkResponderErrorMaskingForHttpCodeArgsDict: TypeAlias = Mapping[str, Any]
|
|
279
|
+
|
|
280
|
+
@pulumi.input_type
|
|
281
|
+
class LinkResponderErrorMaskingForHttpCodeArgs:
|
|
282
|
+
def __init__(__self__, *,
|
|
283
|
+
action: pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction'],
|
|
284
|
+
http_code: pulumi.Input[_builtins.str],
|
|
285
|
+
logging_types: pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]],
|
|
286
|
+
response_logging_percentage: Optional[pulumi.Input[_builtins.float]] = None):
|
|
287
|
+
"""
|
|
288
|
+
:param pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction'] action: The action for the error..
|
|
289
|
+
:param pulumi.Input[_builtins.str] http_code: The HTTP error code.
|
|
290
|
+
:param pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]] logging_types: The error log type.
|
|
291
|
+
:param pulumi.Input[_builtins.float] response_logging_percentage: The percentage of response logging.
|
|
292
|
+
"""
|
|
293
|
+
pulumi.set(__self__, "action", action)
|
|
294
|
+
pulumi.set(__self__, "http_code", http_code)
|
|
295
|
+
pulumi.set(__self__, "logging_types", logging_types)
|
|
296
|
+
if response_logging_percentage is not None:
|
|
297
|
+
pulumi.set(__self__, "response_logging_percentage", response_logging_percentage)
|
|
298
|
+
|
|
299
|
+
@_builtins.property
|
|
300
|
+
@pulumi.getter
|
|
301
|
+
def action(self) -> pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction']:
|
|
302
|
+
"""
|
|
303
|
+
The action for the error..
|
|
304
|
+
"""
|
|
305
|
+
return pulumi.get(self, "action")
|
|
306
|
+
|
|
307
|
+
@action.setter
|
|
308
|
+
def action(self, value: pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction']):
|
|
309
|
+
pulumi.set(self, "action", value)
|
|
310
|
+
|
|
311
|
+
@_builtins.property
|
|
312
|
+
@pulumi.getter(name="httpCode")
|
|
313
|
+
def http_code(self) -> pulumi.Input[_builtins.str]:
|
|
314
|
+
"""
|
|
315
|
+
The HTTP error code.
|
|
316
|
+
"""
|
|
317
|
+
return pulumi.get(self, "http_code")
|
|
318
|
+
|
|
319
|
+
@http_code.setter
|
|
320
|
+
def http_code(self, value: pulumi.Input[_builtins.str]):
|
|
321
|
+
pulumi.set(self, "http_code", value)
|
|
322
|
+
|
|
323
|
+
@_builtins.property
|
|
324
|
+
@pulumi.getter(name="loggingTypes")
|
|
325
|
+
def logging_types(self) -> pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]]:
|
|
326
|
+
"""
|
|
327
|
+
The error log type.
|
|
328
|
+
"""
|
|
329
|
+
return pulumi.get(self, "logging_types")
|
|
330
|
+
|
|
331
|
+
@logging_types.setter
|
|
332
|
+
def logging_types(self, value: pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]]):
|
|
333
|
+
pulumi.set(self, "logging_types", value)
|
|
334
|
+
|
|
335
|
+
@_builtins.property
|
|
336
|
+
@pulumi.getter(name="responseLoggingPercentage")
|
|
337
|
+
def response_logging_percentage(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
338
|
+
"""
|
|
339
|
+
The percentage of response logging.
|
|
340
|
+
"""
|
|
341
|
+
return pulumi.get(self, "response_logging_percentage")
|
|
342
|
+
|
|
343
|
+
@response_logging_percentage.setter
|
|
344
|
+
def response_logging_percentage(self, value: Optional[pulumi.Input[_builtins.float]]):
|
|
345
|
+
pulumi.set(self, "response_logging_percentage", value)
|
|
346
|
+
|
|
347
|
+
|
|
27
348
|
if not MYPY:
|
|
28
349
|
class ResponderGatewayManagedEndpointConfigurationArgsDict(TypedDict):
|
|
29
350
|
pass
|
|
@@ -39,6 +360,9 @@ class ResponderGatewayManagedEndpointConfigurationArgs:
|
|
|
39
360
|
if not MYPY:
|
|
40
361
|
class ResponderGatewayTrustStoreConfigurationArgsDict(TypedDict):
|
|
41
362
|
certificate_authority_certificates: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
363
|
+
"""
|
|
364
|
+
The certificate authority certificate.
|
|
365
|
+
"""
|
|
42
366
|
elif False:
|
|
43
367
|
ResponderGatewayTrustStoreConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
44
368
|
|
|
@@ -46,11 +370,17 @@ elif False:
|
|
|
46
370
|
class ResponderGatewayTrustStoreConfigurationArgs:
|
|
47
371
|
def __init__(__self__, *,
|
|
48
372
|
certificate_authority_certificates: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
373
|
+
"""
|
|
374
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] certificate_authority_certificates: The certificate authority certificate.
|
|
375
|
+
"""
|
|
49
376
|
pulumi.set(__self__, "certificate_authority_certificates", certificate_authority_certificates)
|
|
50
377
|
|
|
51
378
|
@_builtins.property
|
|
52
379
|
@pulumi.getter(name="certificateAuthorityCertificates")
|
|
53
380
|
def certificate_authority_certificates(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
381
|
+
"""
|
|
382
|
+
The certificate authority certificate.
|
|
383
|
+
"""
|
|
54
384
|
return pulumi.get(self, "certificate_authority_certificates")
|
|
55
385
|
|
|
56
386
|
@certificate_authority_certificates.setter
|