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
|
@@ -309,7 +309,7 @@ class DataSourceConfiguration(dict):
|
|
|
309
309
|
:param 'DataSourceSharePointConfiguration' share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
|
|
310
310
|
:param 'DataSourceTemplateConfiguration' template_configuration: Provides a template for the configuration information to connect to your data source.
|
|
311
311
|
:param 'DataSourceWebCrawlerConfiguration' web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
|
|
312
|
-
:param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to
|
|
312
|
+
:param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
|
|
313
313
|
"""
|
|
314
314
|
if confluence_configuration is not None:
|
|
315
315
|
pulumi.set(__self__, "confluence_configuration", confluence_configuration)
|
|
@@ -426,7 +426,7 @@ class DataSourceConfiguration(dict):
|
|
|
426
426
|
@pulumi.getter(name="workDocsConfiguration")
|
|
427
427
|
def work_docs_configuration(self) -> Optional['outputs.DataSourceWorkDocsConfiguration']:
|
|
428
428
|
"""
|
|
429
|
-
Provides the configuration information to connect to
|
|
429
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
430
430
|
"""
|
|
431
431
|
return pulumi.get(self, "work_docs_configuration")
|
|
432
432
|
|
|
@@ -3875,16 +3875,16 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3875
3875
|
inclusion_patterns: Optional[Sequence[_builtins.str]] = None,
|
|
3876
3876
|
use_change_log: Optional[_builtins.bool] = None):
|
|
3877
3877
|
"""
|
|
3878
|
-
:param _builtins.str organization_id: The identifier of the directory corresponding to your
|
|
3878
|
+
:param _builtins.str organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
|
|
3879
3879
|
|
|
3880
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
3880
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
3881
3881
|
:param _builtins.bool crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
|
|
3882
3882
|
|
|
3883
3883
|
The default is set to `FALSE` .
|
|
3884
|
-
:param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your
|
|
3885
|
-
:param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map
|
|
3886
|
-
:param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your
|
|
3887
|
-
:param _builtins.bool use_change_log: `TRUE` to use the
|
|
3884
|
+
:param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3885
|
+
:param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
3886
|
+
:param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3887
|
+
:param _builtins.bool use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
3888
3888
|
"""
|
|
3889
3889
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
3890
3890
|
if crawl_comments is not None:
|
|
@@ -3902,9 +3902,9 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3902
3902
|
@pulumi.getter(name="organizationId")
|
|
3903
3903
|
def organization_id(self) -> _builtins.str:
|
|
3904
3904
|
"""
|
|
3905
|
-
The identifier of the directory corresponding to your
|
|
3905
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
3906
3906
|
|
|
3907
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
3907
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
3908
3908
|
"""
|
|
3909
3909
|
return pulumi.get(self, "organization_id")
|
|
3910
3910
|
|
|
@@ -3922,7 +3922,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3922
3922
|
@pulumi.getter(name="exclusionPatterns")
|
|
3923
3923
|
def exclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
|
|
3924
3924
|
"""
|
|
3925
|
-
A list of regular expression patterns to exclude certain files in your
|
|
3925
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3926
3926
|
"""
|
|
3927
3927
|
return pulumi.get(self, "exclusion_patterns")
|
|
3928
3928
|
|
|
@@ -3930,7 +3930,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3930
3930
|
@pulumi.getter(name="fieldMappings")
|
|
3931
3931
|
def field_mappings(self) -> Optional[Sequence['outputs.DataSourceToIndexFieldMapping']]:
|
|
3932
3932
|
"""
|
|
3933
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
3933
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
3934
3934
|
"""
|
|
3935
3935
|
return pulumi.get(self, "field_mappings")
|
|
3936
3936
|
|
|
@@ -3938,7 +3938,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3938
3938
|
@pulumi.getter(name="inclusionPatterns")
|
|
3939
3939
|
def inclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
|
|
3940
3940
|
"""
|
|
3941
|
-
A list of regular expression patterns to include certain files in your
|
|
3941
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3942
3942
|
"""
|
|
3943
3943
|
return pulumi.get(self, "inclusion_patterns")
|
|
3944
3944
|
|
|
@@ -3946,7 +3946,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3946
3946
|
@pulumi.getter(name="useChangeLog")
|
|
3947
3947
|
def use_change_log(self) -> Optional[_builtins.bool]:
|
|
3948
3948
|
"""
|
|
3949
|
-
`TRUE` to use the
|
|
3949
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
3950
3950
|
"""
|
|
3951
3951
|
return pulumi.get(self, "use_change_log")
|
|
3952
3952
|
|
|
@@ -672,6 +672,9 @@ if not MYPY:
|
|
|
672
672
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
673
673
|
"""
|
|
674
674
|
enable_tls_session_holding: NotRequired[pulumi.Input[_builtins.bool]]
|
|
675
|
+
"""
|
|
676
|
+
When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
677
|
+
"""
|
|
675
678
|
policy_variables: NotRequired[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgsDict']]
|
|
676
679
|
"""
|
|
677
680
|
Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
@@ -736,6 +739,7 @@ class FirewallPolicyArgs:
|
|
|
736
739
|
You must specify one of the standard actions: `aws:pass` , `aws:drop` , or `aws:forward_to_sfe` . In addition, you can specify custom actions that are compatible with your standard section choice.
|
|
737
740
|
|
|
738
741
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
742
|
+
:param pulumi.Input[_builtins.bool] enable_tls_session_holding: When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
739
743
|
:param pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgs'] policy_variables: Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
740
744
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] stateful_default_actions: The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order.
|
|
741
745
|
|
|
@@ -807,6 +811,9 @@ class FirewallPolicyArgs:
|
|
|
807
811
|
@_builtins.property
|
|
808
812
|
@pulumi.getter(name="enableTlsSessionHolding")
|
|
809
813
|
def enable_tls_session_holding(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
814
|
+
"""
|
|
815
|
+
When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
816
|
+
"""
|
|
810
817
|
return pulumi.get(self, "enable_tls_session_holding")
|
|
811
818
|
|
|
812
819
|
@enable_tls_session_holding.setter
|
|
@@ -530,6 +530,9 @@ class Firewall(pulumi.CustomResource):
|
|
|
530
530
|
@_builtins.property
|
|
531
531
|
@pulumi.getter(name="transitGatewayAttachmentId")
|
|
532
532
|
def transit_gateway_attachment_id(self) -> pulumi.Output[_builtins.str]:
|
|
533
|
+
"""
|
|
534
|
+
The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls.
|
|
535
|
+
"""
|
|
533
536
|
return pulumi.get(self, "transit_gateway_attachment_id")
|
|
534
537
|
|
|
535
538
|
@_builtins.property
|
|
@@ -188,6 +188,9 @@ class GetFirewallResult:
|
|
|
188
188
|
@_builtins.property
|
|
189
189
|
@pulumi.getter(name="transitGatewayAttachmentId")
|
|
190
190
|
def transit_gateway_attachment_id(self) -> Optional[_builtins.str]:
|
|
191
|
+
"""
|
|
192
|
+
The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls.
|
|
193
|
+
"""
|
|
191
194
|
return pulumi.get(self, "transit_gateway_attachment_id")
|
|
192
195
|
|
|
193
196
|
@_builtins.property
|
|
@@ -161,6 +161,7 @@ class FirewallPolicy(dict):
|
|
|
161
161
|
You must specify one of the standard actions: `aws:pass` , `aws:drop` , or `aws:forward_to_sfe` . In addition, you can specify custom actions that are compatible with your standard section choice.
|
|
162
162
|
|
|
163
163
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
164
|
+
:param _builtins.bool enable_tls_session_holding: When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
164
165
|
:param 'FirewallPolicyPolicyVariablesProperties' policy_variables: Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
165
166
|
:param Sequence[_builtins.str] stateful_default_actions: The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order.
|
|
166
167
|
|
|
@@ -224,6 +225,9 @@ class FirewallPolicy(dict):
|
|
|
224
225
|
@_builtins.property
|
|
225
226
|
@pulumi.getter(name="enableTlsSessionHolding")
|
|
226
227
|
def enable_tls_session_holding(self) -> Optional[_builtins.bool]:
|
|
228
|
+
"""
|
|
229
|
+
When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
230
|
+
"""
|
|
227
231
|
return pulumi.get(self, "enable_tls_session_holding")
|
|
228
232
|
|
|
229
233
|
@_builtins.property
|
|
@@ -308,7 +308,7 @@ if not MYPY:
|
|
|
308
308
|
class ApplicationQuickSightConfigurationArgsDict(TypedDict):
|
|
309
309
|
client_namespace: pulumi.Input[_builtins.str]
|
|
310
310
|
"""
|
|
311
|
-
The Amazon
|
|
311
|
+
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) .
|
|
312
312
|
"""
|
|
313
313
|
elif False:
|
|
314
314
|
ApplicationQuickSightConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -318,7 +318,7 @@ class ApplicationQuickSightConfigurationArgs:
|
|
|
318
318
|
def __init__(__self__, *,
|
|
319
319
|
client_namespace: pulumi.Input[_builtins.str]):
|
|
320
320
|
"""
|
|
321
|
-
:param pulumi.Input[_builtins.str] client_namespace: The Amazon
|
|
321
|
+
:param pulumi.Input[_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) .
|
|
322
322
|
"""
|
|
323
323
|
pulumi.set(__self__, "client_namespace", client_namespace)
|
|
324
324
|
|
|
@@ -326,7 +326,7 @@ class ApplicationQuickSightConfigurationArgs:
|
|
|
326
326
|
@pulumi.getter(name="clientNamespace")
|
|
327
327
|
def client_namespace(self) -> pulumi.Input[_builtins.str]:
|
|
328
328
|
"""
|
|
329
|
-
The Amazon
|
|
329
|
+
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) .
|
|
330
330
|
"""
|
|
331
331
|
return pulumi.get(self, "client_namespace")
|
|
332
332
|
|
|
@@ -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
|
|
|
@@ -25,6 +25,9 @@ class LinkDirection(_builtins.str, Enum):
|
|
|
25
25
|
|
|
26
26
|
@pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingForHttpCodeAction")
|
|
27
27
|
class LinkResponderErrorMaskingForHttpCodeAction(_builtins.str, Enum):
|
|
28
|
+
"""
|
|
29
|
+
The action for the error..
|
|
30
|
+
"""
|
|
28
31
|
NO_BID = "NO_BID"
|
|
29
32
|
PASSTHROUGH = "PASSTHROUGH"
|
|
30
33
|
|
|
@@ -41,7 +41,13 @@ MYPY = False
|
|
|
41
41
|
if not MYPY:
|
|
42
42
|
class LinkAttributesArgsDict(TypedDict):
|
|
43
43
|
customer_provided_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
44
|
+
"""
|
|
45
|
+
The customer-provided unique identifier of the link.
|
|
46
|
+
"""
|
|
44
47
|
responder_error_masking: NotRequired[pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgsDict']]]]
|
|
48
|
+
"""
|
|
49
|
+
Describes the masking for HTTP error codes.
|
|
50
|
+
"""
|
|
45
51
|
elif False:
|
|
46
52
|
LinkAttributesArgsDict: TypeAlias = Mapping[str, Any]
|
|
47
53
|
|
|
@@ -50,6 +56,10 @@ class LinkAttributesArgs:
|
|
|
50
56
|
def __init__(__self__, *,
|
|
51
57
|
customer_provided_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
52
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
|
+
"""
|
|
53
63
|
if customer_provided_id is not None:
|
|
54
64
|
pulumi.set(__self__, "customer_provided_id", customer_provided_id)
|
|
55
65
|
if responder_error_masking is not None:
|
|
@@ -58,6 +68,9 @@ class LinkAttributesArgs:
|
|
|
58
68
|
@_builtins.property
|
|
59
69
|
@pulumi.getter(name="customerProvidedId")
|
|
60
70
|
def customer_provided_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
71
|
+
"""
|
|
72
|
+
The customer-provided unique identifier of the link.
|
|
73
|
+
"""
|
|
61
74
|
return pulumi.get(self, "customer_provided_id")
|
|
62
75
|
|
|
63
76
|
@customer_provided_id.setter
|
|
@@ -67,6 +80,9 @@ class LinkAttributesArgs:
|
|
|
67
80
|
@_builtins.property
|
|
68
81
|
@pulumi.getter(name="responderErrorMasking")
|
|
69
82
|
def responder_error_masking(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingForHttpCodeArgs']]]]:
|
|
83
|
+
"""
|
|
84
|
+
Describes the masking for HTTP error codes.
|
|
85
|
+
"""
|
|
70
86
|
return pulumi.get(self, "responder_error_masking")
|
|
71
87
|
|
|
72
88
|
@responder_error_masking.setter
|
|
@@ -110,6 +126,9 @@ class LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperti
|
|
|
110
126
|
|
|
111
127
|
if not MYPY:
|
|
112
128
|
class LinkLogSettingsApplicationLogsPropertiesArgsDict(TypedDict):
|
|
129
|
+
"""
|
|
130
|
+
Describes the configuration of a link application log.
|
|
131
|
+
"""
|
|
113
132
|
link_application_log_sampling: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgsDict']
|
|
114
133
|
elif False:
|
|
115
134
|
LinkLogSettingsApplicationLogsPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -118,6 +137,9 @@ elif False:
|
|
|
118
137
|
class LinkLogSettingsApplicationLogsPropertiesArgs:
|
|
119
138
|
def __init__(__self__, *,
|
|
120
139
|
link_application_log_sampling: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingPropertiesArgs']):
|
|
140
|
+
"""
|
|
141
|
+
Describes the configuration of a link application log.
|
|
142
|
+
"""
|
|
121
143
|
pulumi.set(__self__, "link_application_log_sampling", link_application_log_sampling)
|
|
122
144
|
|
|
123
145
|
@_builtins.property
|
|
@@ -133,6 +155,9 @@ class LinkLogSettingsApplicationLogsPropertiesArgs:
|
|
|
133
155
|
if not MYPY:
|
|
134
156
|
class LinkLogSettingsArgsDict(TypedDict):
|
|
135
157
|
application_logs: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgsDict']
|
|
158
|
+
"""
|
|
159
|
+
Describes the configuration of a link application log.
|
|
160
|
+
"""
|
|
136
161
|
elif False:
|
|
137
162
|
LinkLogSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
|
138
163
|
|
|
@@ -140,11 +165,17 @@ elif False:
|
|
|
140
165
|
class LinkLogSettingsArgs:
|
|
141
166
|
def __init__(__self__, *,
|
|
142
167
|
application_logs: pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs']):
|
|
168
|
+
"""
|
|
169
|
+
:param pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs'] application_logs: Describes the configuration of a link application log.
|
|
170
|
+
"""
|
|
143
171
|
pulumi.set(__self__, "application_logs", application_logs)
|
|
144
172
|
|
|
145
173
|
@_builtins.property
|
|
146
174
|
@pulumi.getter(name="applicationLogs")
|
|
147
175
|
def application_logs(self) -> pulumi.Input['LinkLogSettingsApplicationLogsPropertiesArgs']:
|
|
176
|
+
"""
|
|
177
|
+
Describes the configuration of a link application log.
|
|
178
|
+
"""
|
|
148
179
|
return pulumi.get(self, "application_logs")
|
|
149
180
|
|
|
150
181
|
@application_logs.setter
|
|
@@ -228,9 +259,21 @@ class LinkModuleParametersArgs:
|
|
|
228
259
|
if not MYPY:
|
|
229
260
|
class LinkResponderErrorMaskingForHttpCodeArgsDict(TypedDict):
|
|
230
261
|
action: pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction']
|
|
262
|
+
"""
|
|
263
|
+
The action for the error..
|
|
264
|
+
"""
|
|
231
265
|
http_code: pulumi.Input[_builtins.str]
|
|
266
|
+
"""
|
|
267
|
+
The HTTP error code.
|
|
268
|
+
"""
|
|
232
269
|
logging_types: pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]]
|
|
270
|
+
"""
|
|
271
|
+
The error log type.
|
|
272
|
+
"""
|
|
233
273
|
response_logging_percentage: NotRequired[pulumi.Input[_builtins.float]]
|
|
274
|
+
"""
|
|
275
|
+
The percentage of response logging.
|
|
276
|
+
"""
|
|
234
277
|
elif False:
|
|
235
278
|
LinkResponderErrorMaskingForHttpCodeArgsDict: TypeAlias = Mapping[str, Any]
|
|
236
279
|
|
|
@@ -241,6 +284,12 @@ class LinkResponderErrorMaskingForHttpCodeArgs:
|
|
|
241
284
|
http_code: pulumi.Input[_builtins.str],
|
|
242
285
|
logging_types: pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]],
|
|
243
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
|
+
"""
|
|
244
293
|
pulumi.set(__self__, "action", action)
|
|
245
294
|
pulumi.set(__self__, "http_code", http_code)
|
|
246
295
|
pulumi.set(__self__, "logging_types", logging_types)
|
|
@@ -250,6 +299,9 @@ class LinkResponderErrorMaskingForHttpCodeArgs:
|
|
|
250
299
|
@_builtins.property
|
|
251
300
|
@pulumi.getter
|
|
252
301
|
def action(self) -> pulumi.Input['LinkResponderErrorMaskingForHttpCodeAction']:
|
|
302
|
+
"""
|
|
303
|
+
The action for the error..
|
|
304
|
+
"""
|
|
253
305
|
return pulumi.get(self, "action")
|
|
254
306
|
|
|
255
307
|
@action.setter
|
|
@@ -259,6 +311,9 @@ class LinkResponderErrorMaskingForHttpCodeArgs:
|
|
|
259
311
|
@_builtins.property
|
|
260
312
|
@pulumi.getter(name="httpCode")
|
|
261
313
|
def http_code(self) -> pulumi.Input[_builtins.str]:
|
|
314
|
+
"""
|
|
315
|
+
The HTTP error code.
|
|
316
|
+
"""
|
|
262
317
|
return pulumi.get(self, "http_code")
|
|
263
318
|
|
|
264
319
|
@http_code.setter
|
|
@@ -268,6 +323,9 @@ class LinkResponderErrorMaskingForHttpCodeArgs:
|
|
|
268
323
|
@_builtins.property
|
|
269
324
|
@pulumi.getter(name="loggingTypes")
|
|
270
325
|
def logging_types(self) -> pulumi.Input[Sequence[pulumi.Input['LinkResponderErrorMaskingLoggingType']]]:
|
|
326
|
+
"""
|
|
327
|
+
The error log type.
|
|
328
|
+
"""
|
|
271
329
|
return pulumi.get(self, "logging_types")
|
|
272
330
|
|
|
273
331
|
@logging_types.setter
|
|
@@ -277,6 +335,9 @@ class LinkResponderErrorMaskingForHttpCodeArgs:
|
|
|
277
335
|
@_builtins.property
|
|
278
336
|
@pulumi.getter(name="responseLoggingPercentage")
|
|
279
337
|
def response_logging_percentage(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
338
|
+
"""
|
|
339
|
+
The percentage of response logging.
|
|
340
|
+
"""
|
|
280
341
|
return pulumi.get(self, "response_logging_percentage")
|
|
281
342
|
|
|
282
343
|
@response_logging_percentage.setter
|
|
@@ -299,6 +360,9 @@ class ResponderGatewayManagedEndpointConfigurationArgs:
|
|
|
299
360
|
if not MYPY:
|
|
300
361
|
class ResponderGatewayTrustStoreConfigurationArgsDict(TypedDict):
|
|
301
362
|
certificate_authority_certificates: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
363
|
+
"""
|
|
364
|
+
The certificate authority certificate.
|
|
365
|
+
"""
|
|
302
366
|
elif False:
|
|
303
367
|
ResponderGatewayTrustStoreConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
304
368
|
|
|
@@ -306,11 +370,17 @@ elif False:
|
|
|
306
370
|
class ResponderGatewayTrustStoreConfigurationArgs:
|
|
307
371
|
def __init__(__self__, *,
|
|
308
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
|
+
"""
|
|
309
376
|
pulumi.set(__self__, "certificate_authority_certificates", certificate_authority_certificates)
|
|
310
377
|
|
|
311
378
|
@_builtins.property
|
|
312
379
|
@pulumi.getter(name="certificateAuthorityCertificates")
|
|
313
380
|
def certificate_authority_certificates(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
381
|
+
"""
|
|
382
|
+
The certificate authority certificate.
|
|
383
|
+
"""
|
|
314
384
|
return pulumi.get(self, "certificate_authority_certificates")
|
|
315
385
|
|
|
316
386
|
@certificate_authority_certificates.setter
|