pulumi-aws-native 1.38.0a1761286050__py3-none-any.whl → 1.38.0a1761310773__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 +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/top_level.txt +0 -0
|
@@ -204,7 +204,9 @@ class HealthCheckConfigProperties(dict):
|
|
|
204
204
|
The SSL/TLS certificate on your endpoint includes a domain name in the `Common Name` field and possibly several more in the `Subject Alternative Names` field. One of the domain names in the certificate should match the value that you specify for `FullyQualifiedDomainName` . If the endpoint responds to the `client_hello` message with a certificate that does not include the domain name that you specified in `FullyQualifiedDomainName` , a health checker will retry the handshake. In the second attempt, the health checker will omit `FullyQualifiedDomainName` from the `client_hello` message.
|
|
205
205
|
:param _builtins.int failure_threshold: The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
|
|
206
206
|
|
|
207
|
-
|
|
207
|
+
`FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
208
|
+
|
|
209
|
+
Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
|
|
208
210
|
:param _builtins.str fully_qualified_domain_name: Amazon Route 53 behavior depends on whether you specify a value for `IPAddress` .
|
|
209
211
|
|
|
210
212
|
*If you specify a value for* `IPAddress` :
|
|
@@ -262,6 +264,8 @@ class HealthCheckConfigProperties(dict):
|
|
|
262
264
|
When the value of `Type` is `CALCULATED` or `CLOUDWATCH_METRIC` , omit `IPAddress` .
|
|
263
265
|
:param _builtins.bool measure_latency: Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
|
|
264
266
|
|
|
267
|
+
`MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
268
|
+
|
|
265
269
|
> You can't change the value of `MeasureLatency` after you create a health check.
|
|
266
270
|
:param _builtins.int port: The port on the endpoint that you want Amazon Route 53 to perform health checks on.
|
|
267
271
|
|
|
@@ -273,6 +277,8 @@ class HealthCheckConfigProperties(dict):
|
|
|
273
277
|
If you update a health check to remove a region that has been performing health checks, Route 53 will briefly continue to perform checks from that region to ensure that some health checkers are always checking the endpoint (for example, if you replace three regions with four different regions).
|
|
274
278
|
:param _builtins.int request_interval: The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
|
|
275
279
|
|
|
280
|
+
`RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
281
|
+
|
|
276
282
|
> You can't change the value of `RequestInterval` after you create a health check.
|
|
277
283
|
|
|
278
284
|
If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
|
|
@@ -382,7 +388,9 @@ class HealthCheckConfigProperties(dict):
|
|
|
382
388
|
"""
|
|
383
389
|
The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
|
|
384
390
|
|
|
385
|
-
|
|
391
|
+
`FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
392
|
+
|
|
393
|
+
Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
|
|
386
394
|
"""
|
|
387
395
|
return pulumi.get(self, "failure_threshold")
|
|
388
396
|
|
|
@@ -482,6 +490,8 @@ class HealthCheckConfigProperties(dict):
|
|
|
482
490
|
"""
|
|
483
491
|
Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
|
|
484
492
|
|
|
493
|
+
`MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
494
|
+
|
|
485
495
|
> You can't change the value of `MeasureLatency` after you create a health check.
|
|
486
496
|
"""
|
|
487
497
|
return pulumi.get(self, "measure_latency")
|
|
@@ -514,6 +524,8 @@ class HealthCheckConfigProperties(dict):
|
|
|
514
524
|
"""
|
|
515
525
|
The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
|
|
516
526
|
|
|
527
|
+
`RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
528
|
+
|
|
517
529
|
> You can't change the value of `RequestInterval` after you create a health check.
|
|
518
530
|
|
|
519
531
|
If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
from .. import _utilities
|
|
7
|
+
import typing
|
|
8
|
+
# Export this package's modules as members:
|
|
9
|
+
from ._enums import *
|
|
10
|
+
from .get_requester_gateway import *
|
|
11
|
+
from .get_responder_gateway import *
|
|
12
|
+
from .requester_gateway import *
|
|
13
|
+
from .responder_gateway import *
|
|
14
|
+
from ._inputs import *
|
|
15
|
+
from . import outputs
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import pulumi
|
|
7
|
+
from enum import Enum
|
|
8
|
+
|
|
9
|
+
__all__ = [
|
|
10
|
+
'RequesterGatewayStatus',
|
|
11
|
+
'ResponderGatewayProtocol',
|
|
12
|
+
'ResponderGatewayStatus',
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@pulumi.type_token("aws-native:rtbfabric:RequesterGatewayStatus")
|
|
17
|
+
class RequesterGatewayStatus(_builtins.str, Enum):
|
|
18
|
+
PENDING_CREATION = "PENDING_CREATION"
|
|
19
|
+
ACTIVE = "ACTIVE"
|
|
20
|
+
PENDING_DELETION = "PENDING_DELETION"
|
|
21
|
+
DELETED = "DELETED"
|
|
22
|
+
ERROR = "ERROR"
|
|
23
|
+
PENDING_UPDATE = "PENDING_UPDATE"
|
|
24
|
+
ISOLATED = "ISOLATED"
|
|
25
|
+
PENDING_ISOLATION = "PENDING_ISOLATION"
|
|
26
|
+
PENDING_RESTORATION = "PENDING_RESTORATION"
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@pulumi.type_token("aws-native:rtbfabric:ResponderGatewayProtocol")
|
|
30
|
+
class ResponderGatewayProtocol(_builtins.str, Enum):
|
|
31
|
+
HTTP = "HTTP"
|
|
32
|
+
HTTPS = "HTTPS"
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
@pulumi.type_token("aws-native:rtbfabric:ResponderGatewayStatus")
|
|
36
|
+
class ResponderGatewayStatus(_builtins.str, Enum):
|
|
37
|
+
PENDING_CREATION = "PENDING_CREATION"
|
|
38
|
+
ACTIVE = "ACTIVE"
|
|
39
|
+
PENDING_DELETION = "PENDING_DELETION"
|
|
40
|
+
DELETED = "DELETED"
|
|
41
|
+
ERROR = "ERROR"
|
|
42
|
+
PENDING_UPDATE = "PENDING_UPDATE"
|
|
43
|
+
ISOLATED = "ISOLATED"
|
|
44
|
+
PENDING_ISOLATION = "PENDING_ISOLATION"
|
|
45
|
+
PENDING_RESTORATION = "PENDING_RESTORATION"
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from ._enums import *
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ResponderGatewayManagedEndpointConfigurationArgs',
|
|
20
|
+
'ResponderGatewayManagedEndpointConfigurationArgsDict',
|
|
21
|
+
'ResponderGatewayTrustStoreConfigurationArgs',
|
|
22
|
+
'ResponderGatewayTrustStoreConfigurationArgsDict',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
MYPY = False
|
|
26
|
+
|
|
27
|
+
if not MYPY:
|
|
28
|
+
class ResponderGatewayManagedEndpointConfigurationArgsDict(TypedDict):
|
|
29
|
+
pass
|
|
30
|
+
elif False:
|
|
31
|
+
ResponderGatewayManagedEndpointConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
32
|
+
|
|
33
|
+
@pulumi.input_type
|
|
34
|
+
class ResponderGatewayManagedEndpointConfigurationArgs:
|
|
35
|
+
def __init__(__self__):
|
|
36
|
+
pass
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
if not MYPY:
|
|
40
|
+
class ResponderGatewayTrustStoreConfigurationArgsDict(TypedDict):
|
|
41
|
+
certificate_authority_certificates: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
42
|
+
elif False:
|
|
43
|
+
ResponderGatewayTrustStoreConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
44
|
+
|
|
45
|
+
@pulumi.input_type
|
|
46
|
+
class ResponderGatewayTrustStoreConfigurationArgs:
|
|
47
|
+
def __init__(__self__, *,
|
|
48
|
+
certificate_authority_certificates: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
49
|
+
pulumi.set(__self__, "certificate_authority_certificates", certificate_authority_certificates)
|
|
50
|
+
|
|
51
|
+
@_builtins.property
|
|
52
|
+
@pulumi.getter(name="certificateAuthorityCertificates")
|
|
53
|
+
def certificate_authority_certificates(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
54
|
+
return pulumi.get(self, "certificate_authority_certificates")
|
|
55
|
+
|
|
56
|
+
@certificate_authority_certificates.setter
|
|
57
|
+
def certificate_authority_certificates(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
58
|
+
pulumi.set(self, "certificate_authority_certificates", value)
|
|
59
|
+
|
|
60
|
+
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from .. import outputs as _root_outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetRequesterGatewayResult',
|
|
21
|
+
'AwaitableGetRequesterGatewayResult',
|
|
22
|
+
'get_requester_gateway',
|
|
23
|
+
'get_requester_gateway_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetRequesterGatewayResult:
|
|
28
|
+
def __init__(__self__, active_links_count=None, arn=None, created_timestamp=None, description=None, domain_name=None, gateway_id=None, requester_gateway_status=None, security_group_ids=None, subnet_ids=None, tags=None, total_links_count=None, updated_timestamp=None, vpc_id=None):
|
|
29
|
+
if active_links_count and not isinstance(active_links_count, int):
|
|
30
|
+
raise TypeError("Expected argument 'active_links_count' to be a int")
|
|
31
|
+
pulumi.set(__self__, "active_links_count", active_links_count)
|
|
32
|
+
if arn and not isinstance(arn, str):
|
|
33
|
+
raise TypeError("Expected argument 'arn' to be a str")
|
|
34
|
+
pulumi.set(__self__, "arn", arn)
|
|
35
|
+
if created_timestamp and not isinstance(created_timestamp, str):
|
|
36
|
+
raise TypeError("Expected argument 'created_timestamp' to be a str")
|
|
37
|
+
pulumi.set(__self__, "created_timestamp", created_timestamp)
|
|
38
|
+
if description and not isinstance(description, str):
|
|
39
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
40
|
+
pulumi.set(__self__, "description", description)
|
|
41
|
+
if domain_name and not isinstance(domain_name, str):
|
|
42
|
+
raise TypeError("Expected argument 'domain_name' to be a str")
|
|
43
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
|
44
|
+
if gateway_id and not isinstance(gateway_id, str):
|
|
45
|
+
raise TypeError("Expected argument 'gateway_id' to be a str")
|
|
46
|
+
pulumi.set(__self__, "gateway_id", gateway_id)
|
|
47
|
+
if requester_gateway_status and not isinstance(requester_gateway_status, str):
|
|
48
|
+
raise TypeError("Expected argument 'requester_gateway_status' to be a str")
|
|
49
|
+
pulumi.set(__self__, "requester_gateway_status", requester_gateway_status)
|
|
50
|
+
if security_group_ids and not isinstance(security_group_ids, list):
|
|
51
|
+
raise TypeError("Expected argument 'security_group_ids' to be a list")
|
|
52
|
+
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
53
|
+
if subnet_ids and not isinstance(subnet_ids, list):
|
|
54
|
+
raise TypeError("Expected argument 'subnet_ids' to be a list")
|
|
55
|
+
pulumi.set(__self__, "subnet_ids", subnet_ids)
|
|
56
|
+
if tags and not isinstance(tags, list):
|
|
57
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
58
|
+
pulumi.set(__self__, "tags", tags)
|
|
59
|
+
if total_links_count and not isinstance(total_links_count, int):
|
|
60
|
+
raise TypeError("Expected argument 'total_links_count' to be a int")
|
|
61
|
+
pulumi.set(__self__, "total_links_count", total_links_count)
|
|
62
|
+
if updated_timestamp and not isinstance(updated_timestamp, str):
|
|
63
|
+
raise TypeError("Expected argument 'updated_timestamp' to be a str")
|
|
64
|
+
pulumi.set(__self__, "updated_timestamp", updated_timestamp)
|
|
65
|
+
if vpc_id and not isinstance(vpc_id, str):
|
|
66
|
+
raise TypeError("Expected argument 'vpc_id' to be a str")
|
|
67
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
68
|
+
|
|
69
|
+
@_builtins.property
|
|
70
|
+
@pulumi.getter(name="activeLinksCount")
|
|
71
|
+
def active_links_count(self) -> Optional[_builtins.int]:
|
|
72
|
+
return pulumi.get(self, "active_links_count")
|
|
73
|
+
|
|
74
|
+
@_builtins.property
|
|
75
|
+
@pulumi.getter
|
|
76
|
+
def arn(self) -> Optional[_builtins.str]:
|
|
77
|
+
return pulumi.get(self, "arn")
|
|
78
|
+
|
|
79
|
+
@_builtins.property
|
|
80
|
+
@pulumi.getter(name="createdTimestamp")
|
|
81
|
+
def created_timestamp(self) -> Optional[_builtins.str]:
|
|
82
|
+
return pulumi.get(self, "created_timestamp")
|
|
83
|
+
|
|
84
|
+
@_builtins.property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def description(self) -> Optional[_builtins.str]:
|
|
87
|
+
return pulumi.get(self, "description")
|
|
88
|
+
|
|
89
|
+
@_builtins.property
|
|
90
|
+
@pulumi.getter(name="domainName")
|
|
91
|
+
def domain_name(self) -> Optional[_builtins.str]:
|
|
92
|
+
return pulumi.get(self, "domain_name")
|
|
93
|
+
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter(name="gatewayId")
|
|
96
|
+
def gateway_id(self) -> Optional[_builtins.str]:
|
|
97
|
+
return pulumi.get(self, "gateway_id")
|
|
98
|
+
|
|
99
|
+
@_builtins.property
|
|
100
|
+
@pulumi.getter(name="requesterGatewayStatus")
|
|
101
|
+
def requester_gateway_status(self) -> Optional['RequesterGatewayStatus']:
|
|
102
|
+
return pulumi.get(self, "requester_gateway_status")
|
|
103
|
+
|
|
104
|
+
@_builtins.property
|
|
105
|
+
@pulumi.getter(name="securityGroupIds")
|
|
106
|
+
def security_group_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
107
|
+
return pulumi.get(self, "security_group_ids")
|
|
108
|
+
|
|
109
|
+
@_builtins.property
|
|
110
|
+
@pulumi.getter(name="subnetIds")
|
|
111
|
+
def subnet_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
112
|
+
return pulumi.get(self, "subnet_ids")
|
|
113
|
+
|
|
114
|
+
@_builtins.property
|
|
115
|
+
@pulumi.getter
|
|
116
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
117
|
+
return pulumi.get(self, "tags")
|
|
118
|
+
|
|
119
|
+
@_builtins.property
|
|
120
|
+
@pulumi.getter(name="totalLinksCount")
|
|
121
|
+
def total_links_count(self) -> Optional[_builtins.int]:
|
|
122
|
+
return pulumi.get(self, "total_links_count")
|
|
123
|
+
|
|
124
|
+
@_builtins.property
|
|
125
|
+
@pulumi.getter(name="updatedTimestamp")
|
|
126
|
+
def updated_timestamp(self) -> Optional[_builtins.str]:
|
|
127
|
+
return pulumi.get(self, "updated_timestamp")
|
|
128
|
+
|
|
129
|
+
@_builtins.property
|
|
130
|
+
@pulumi.getter(name="vpcId")
|
|
131
|
+
def vpc_id(self) -> Optional[_builtins.str]:
|
|
132
|
+
return pulumi.get(self, "vpc_id")
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
class AwaitableGetRequesterGatewayResult(GetRequesterGatewayResult):
|
|
136
|
+
# pylint: disable=using-constant-test
|
|
137
|
+
def __await__(self):
|
|
138
|
+
if False:
|
|
139
|
+
yield self
|
|
140
|
+
return GetRequesterGatewayResult(
|
|
141
|
+
active_links_count=self.active_links_count,
|
|
142
|
+
arn=self.arn,
|
|
143
|
+
created_timestamp=self.created_timestamp,
|
|
144
|
+
description=self.description,
|
|
145
|
+
domain_name=self.domain_name,
|
|
146
|
+
gateway_id=self.gateway_id,
|
|
147
|
+
requester_gateway_status=self.requester_gateway_status,
|
|
148
|
+
security_group_ids=self.security_group_ids,
|
|
149
|
+
subnet_ids=self.subnet_ids,
|
|
150
|
+
tags=self.tags,
|
|
151
|
+
total_links_count=self.total_links_count,
|
|
152
|
+
updated_timestamp=self.updated_timestamp,
|
|
153
|
+
vpc_id=self.vpc_id)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_requester_gateway(arn: Optional[_builtins.str] = None,
|
|
157
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRequesterGatewayResult:
|
|
158
|
+
"""
|
|
159
|
+
Resource Type definition for AWS::RTBFabric::RequesterGateway Resource Type.
|
|
160
|
+
"""
|
|
161
|
+
__args__ = dict()
|
|
162
|
+
__args__['arn'] = arn
|
|
163
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
164
|
+
__ret__ = pulumi.runtime.invoke('aws-native:rtbfabric:getRequesterGateway', __args__, opts=opts, typ=GetRequesterGatewayResult).value
|
|
165
|
+
|
|
166
|
+
return AwaitableGetRequesterGatewayResult(
|
|
167
|
+
active_links_count=pulumi.get(__ret__, 'active_links_count'),
|
|
168
|
+
arn=pulumi.get(__ret__, 'arn'),
|
|
169
|
+
created_timestamp=pulumi.get(__ret__, 'created_timestamp'),
|
|
170
|
+
description=pulumi.get(__ret__, 'description'),
|
|
171
|
+
domain_name=pulumi.get(__ret__, 'domain_name'),
|
|
172
|
+
gateway_id=pulumi.get(__ret__, 'gateway_id'),
|
|
173
|
+
requester_gateway_status=pulumi.get(__ret__, 'requester_gateway_status'),
|
|
174
|
+
security_group_ids=pulumi.get(__ret__, 'security_group_ids'),
|
|
175
|
+
subnet_ids=pulumi.get(__ret__, 'subnet_ids'),
|
|
176
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
177
|
+
total_links_count=pulumi.get(__ret__, 'total_links_count'),
|
|
178
|
+
updated_timestamp=pulumi.get(__ret__, 'updated_timestamp'),
|
|
179
|
+
vpc_id=pulumi.get(__ret__, 'vpc_id'))
|
|
180
|
+
def get_requester_gateway_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
181
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRequesterGatewayResult]:
|
|
182
|
+
"""
|
|
183
|
+
Resource Type definition for AWS::RTBFabric::RequesterGateway Resource Type.
|
|
184
|
+
"""
|
|
185
|
+
__args__ = dict()
|
|
186
|
+
__args__['arn'] = arn
|
|
187
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
188
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:rtbfabric:getRequesterGateway', __args__, opts=opts, typ=GetRequesterGatewayResult)
|
|
189
|
+
return __ret__.apply(lambda __response__: GetRequesterGatewayResult(
|
|
190
|
+
active_links_count=pulumi.get(__response__, 'active_links_count'),
|
|
191
|
+
arn=pulumi.get(__response__, 'arn'),
|
|
192
|
+
created_timestamp=pulumi.get(__response__, 'created_timestamp'),
|
|
193
|
+
description=pulumi.get(__response__, 'description'),
|
|
194
|
+
domain_name=pulumi.get(__response__, 'domain_name'),
|
|
195
|
+
gateway_id=pulumi.get(__response__, 'gateway_id'),
|
|
196
|
+
requester_gateway_status=pulumi.get(__response__, 'requester_gateway_status'),
|
|
197
|
+
security_group_ids=pulumi.get(__response__, 'security_group_ids'),
|
|
198
|
+
subnet_ids=pulumi.get(__response__, 'subnet_ids'),
|
|
199
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
200
|
+
total_links_count=pulumi.get(__response__, 'total_links_count'),
|
|
201
|
+
updated_timestamp=pulumi.get(__response__, 'updated_timestamp'),
|
|
202
|
+
vpc_id=pulumi.get(__response__, 'vpc_id')))
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from .. import outputs as _root_outputs
|
|
18
|
+
from ._enums import *
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
'GetResponderGatewayResult',
|
|
22
|
+
'AwaitableGetResponderGatewayResult',
|
|
23
|
+
'get_responder_gateway',
|
|
24
|
+
'get_responder_gateway_output',
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
@pulumi.output_type
|
|
28
|
+
class GetResponderGatewayResult:
|
|
29
|
+
def __init__(__self__, arn=None, created_timestamp=None, description=None, domain_name=None, gateway_id=None, managed_endpoint_configuration=None, port=None, protocol=None, responder_gateway_status=None, security_group_ids=None, subnet_ids=None, tags=None, trust_store_configuration=None, updated_timestamp=None, vpc_id=None):
|
|
30
|
+
if arn and not isinstance(arn, str):
|
|
31
|
+
raise TypeError("Expected argument 'arn' to be a str")
|
|
32
|
+
pulumi.set(__self__, "arn", arn)
|
|
33
|
+
if created_timestamp and not isinstance(created_timestamp, str):
|
|
34
|
+
raise TypeError("Expected argument 'created_timestamp' to be a str")
|
|
35
|
+
pulumi.set(__self__, "created_timestamp", created_timestamp)
|
|
36
|
+
if description and not isinstance(description, str):
|
|
37
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
38
|
+
pulumi.set(__self__, "description", description)
|
|
39
|
+
if domain_name and not isinstance(domain_name, str):
|
|
40
|
+
raise TypeError("Expected argument 'domain_name' to be a str")
|
|
41
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
|
42
|
+
if gateway_id and not isinstance(gateway_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'gateway_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "gateway_id", gateway_id)
|
|
45
|
+
if managed_endpoint_configuration and not isinstance(managed_endpoint_configuration, dict):
|
|
46
|
+
raise TypeError("Expected argument 'managed_endpoint_configuration' to be a dict")
|
|
47
|
+
pulumi.set(__self__, "managed_endpoint_configuration", managed_endpoint_configuration)
|
|
48
|
+
if port and not isinstance(port, int):
|
|
49
|
+
raise TypeError("Expected argument 'port' to be a int")
|
|
50
|
+
pulumi.set(__self__, "port", port)
|
|
51
|
+
if protocol and not isinstance(protocol, str):
|
|
52
|
+
raise TypeError("Expected argument 'protocol' to be a str")
|
|
53
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
54
|
+
if responder_gateway_status and not isinstance(responder_gateway_status, str):
|
|
55
|
+
raise TypeError("Expected argument 'responder_gateway_status' to be a str")
|
|
56
|
+
pulumi.set(__self__, "responder_gateway_status", responder_gateway_status)
|
|
57
|
+
if security_group_ids and not isinstance(security_group_ids, list):
|
|
58
|
+
raise TypeError("Expected argument 'security_group_ids' to be a list")
|
|
59
|
+
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
60
|
+
if subnet_ids and not isinstance(subnet_ids, list):
|
|
61
|
+
raise TypeError("Expected argument 'subnet_ids' to be a list")
|
|
62
|
+
pulumi.set(__self__, "subnet_ids", subnet_ids)
|
|
63
|
+
if tags and not isinstance(tags, list):
|
|
64
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
65
|
+
pulumi.set(__self__, "tags", tags)
|
|
66
|
+
if trust_store_configuration and not isinstance(trust_store_configuration, dict):
|
|
67
|
+
raise TypeError("Expected argument 'trust_store_configuration' to be a dict")
|
|
68
|
+
pulumi.set(__self__, "trust_store_configuration", trust_store_configuration)
|
|
69
|
+
if updated_timestamp and not isinstance(updated_timestamp, str):
|
|
70
|
+
raise TypeError("Expected argument 'updated_timestamp' to be a str")
|
|
71
|
+
pulumi.set(__self__, "updated_timestamp", updated_timestamp)
|
|
72
|
+
if vpc_id and not isinstance(vpc_id, str):
|
|
73
|
+
raise TypeError("Expected argument 'vpc_id' to be a str")
|
|
74
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
75
|
+
|
|
76
|
+
@_builtins.property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def arn(self) -> Optional[_builtins.str]:
|
|
79
|
+
return pulumi.get(self, "arn")
|
|
80
|
+
|
|
81
|
+
@_builtins.property
|
|
82
|
+
@pulumi.getter(name="createdTimestamp")
|
|
83
|
+
def created_timestamp(self) -> Optional[_builtins.str]:
|
|
84
|
+
return pulumi.get(self, "created_timestamp")
|
|
85
|
+
|
|
86
|
+
@_builtins.property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def description(self) -> Optional[_builtins.str]:
|
|
89
|
+
return pulumi.get(self, "description")
|
|
90
|
+
|
|
91
|
+
@_builtins.property
|
|
92
|
+
@pulumi.getter(name="domainName")
|
|
93
|
+
def domain_name(self) -> Optional[_builtins.str]:
|
|
94
|
+
return pulumi.get(self, "domain_name")
|
|
95
|
+
|
|
96
|
+
@_builtins.property
|
|
97
|
+
@pulumi.getter(name="gatewayId")
|
|
98
|
+
def gateway_id(self) -> Optional[_builtins.str]:
|
|
99
|
+
return pulumi.get(self, "gateway_id")
|
|
100
|
+
|
|
101
|
+
@_builtins.property
|
|
102
|
+
@pulumi.getter(name="managedEndpointConfiguration")
|
|
103
|
+
def managed_endpoint_configuration(self) -> Optional['outputs.ResponderGatewayManagedEndpointConfiguration']:
|
|
104
|
+
return pulumi.get(self, "managed_endpoint_configuration")
|
|
105
|
+
|
|
106
|
+
@_builtins.property
|
|
107
|
+
@pulumi.getter
|
|
108
|
+
def port(self) -> Optional[_builtins.int]:
|
|
109
|
+
return pulumi.get(self, "port")
|
|
110
|
+
|
|
111
|
+
@_builtins.property
|
|
112
|
+
@pulumi.getter
|
|
113
|
+
def protocol(self) -> Optional['ResponderGatewayProtocol']:
|
|
114
|
+
return pulumi.get(self, "protocol")
|
|
115
|
+
|
|
116
|
+
@_builtins.property
|
|
117
|
+
@pulumi.getter(name="responderGatewayStatus")
|
|
118
|
+
def responder_gateway_status(self) -> Optional['ResponderGatewayStatus']:
|
|
119
|
+
return pulumi.get(self, "responder_gateway_status")
|
|
120
|
+
|
|
121
|
+
@_builtins.property
|
|
122
|
+
@pulumi.getter(name="securityGroupIds")
|
|
123
|
+
def security_group_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
124
|
+
return pulumi.get(self, "security_group_ids")
|
|
125
|
+
|
|
126
|
+
@_builtins.property
|
|
127
|
+
@pulumi.getter(name="subnetIds")
|
|
128
|
+
def subnet_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
129
|
+
return pulumi.get(self, "subnet_ids")
|
|
130
|
+
|
|
131
|
+
@_builtins.property
|
|
132
|
+
@pulumi.getter
|
|
133
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
134
|
+
return pulumi.get(self, "tags")
|
|
135
|
+
|
|
136
|
+
@_builtins.property
|
|
137
|
+
@pulumi.getter(name="trustStoreConfiguration")
|
|
138
|
+
def trust_store_configuration(self) -> Optional['outputs.ResponderGatewayTrustStoreConfiguration']:
|
|
139
|
+
return pulumi.get(self, "trust_store_configuration")
|
|
140
|
+
|
|
141
|
+
@_builtins.property
|
|
142
|
+
@pulumi.getter(name="updatedTimestamp")
|
|
143
|
+
def updated_timestamp(self) -> Optional[_builtins.str]:
|
|
144
|
+
return pulumi.get(self, "updated_timestamp")
|
|
145
|
+
|
|
146
|
+
@_builtins.property
|
|
147
|
+
@pulumi.getter(name="vpcId")
|
|
148
|
+
def vpc_id(self) -> Optional[_builtins.str]:
|
|
149
|
+
return pulumi.get(self, "vpc_id")
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class AwaitableGetResponderGatewayResult(GetResponderGatewayResult):
|
|
153
|
+
# pylint: disable=using-constant-test
|
|
154
|
+
def __await__(self):
|
|
155
|
+
if False:
|
|
156
|
+
yield self
|
|
157
|
+
return GetResponderGatewayResult(
|
|
158
|
+
arn=self.arn,
|
|
159
|
+
created_timestamp=self.created_timestamp,
|
|
160
|
+
description=self.description,
|
|
161
|
+
domain_name=self.domain_name,
|
|
162
|
+
gateway_id=self.gateway_id,
|
|
163
|
+
managed_endpoint_configuration=self.managed_endpoint_configuration,
|
|
164
|
+
port=self.port,
|
|
165
|
+
protocol=self.protocol,
|
|
166
|
+
responder_gateway_status=self.responder_gateway_status,
|
|
167
|
+
security_group_ids=self.security_group_ids,
|
|
168
|
+
subnet_ids=self.subnet_ids,
|
|
169
|
+
tags=self.tags,
|
|
170
|
+
trust_store_configuration=self.trust_store_configuration,
|
|
171
|
+
updated_timestamp=self.updated_timestamp,
|
|
172
|
+
vpc_id=self.vpc_id)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
def get_responder_gateway(arn: Optional[_builtins.str] = None,
|
|
176
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResponderGatewayResult:
|
|
177
|
+
"""
|
|
178
|
+
Resource Type definition for AWS::RTBFabric::ResponderGateway Resource Type
|
|
179
|
+
"""
|
|
180
|
+
__args__ = dict()
|
|
181
|
+
__args__['arn'] = arn
|
|
182
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
183
|
+
__ret__ = pulumi.runtime.invoke('aws-native:rtbfabric:getResponderGateway', __args__, opts=opts, typ=GetResponderGatewayResult).value
|
|
184
|
+
|
|
185
|
+
return AwaitableGetResponderGatewayResult(
|
|
186
|
+
arn=pulumi.get(__ret__, 'arn'),
|
|
187
|
+
created_timestamp=pulumi.get(__ret__, 'created_timestamp'),
|
|
188
|
+
description=pulumi.get(__ret__, 'description'),
|
|
189
|
+
domain_name=pulumi.get(__ret__, 'domain_name'),
|
|
190
|
+
gateway_id=pulumi.get(__ret__, 'gateway_id'),
|
|
191
|
+
managed_endpoint_configuration=pulumi.get(__ret__, 'managed_endpoint_configuration'),
|
|
192
|
+
port=pulumi.get(__ret__, 'port'),
|
|
193
|
+
protocol=pulumi.get(__ret__, 'protocol'),
|
|
194
|
+
responder_gateway_status=pulumi.get(__ret__, 'responder_gateway_status'),
|
|
195
|
+
security_group_ids=pulumi.get(__ret__, 'security_group_ids'),
|
|
196
|
+
subnet_ids=pulumi.get(__ret__, 'subnet_ids'),
|
|
197
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
198
|
+
trust_store_configuration=pulumi.get(__ret__, 'trust_store_configuration'),
|
|
199
|
+
updated_timestamp=pulumi.get(__ret__, 'updated_timestamp'),
|
|
200
|
+
vpc_id=pulumi.get(__ret__, 'vpc_id'))
|
|
201
|
+
def get_responder_gateway_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
202
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetResponderGatewayResult]:
|
|
203
|
+
"""
|
|
204
|
+
Resource Type definition for AWS::RTBFabric::ResponderGateway Resource Type
|
|
205
|
+
"""
|
|
206
|
+
__args__ = dict()
|
|
207
|
+
__args__['arn'] = arn
|
|
208
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
209
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:rtbfabric:getResponderGateway', __args__, opts=opts, typ=GetResponderGatewayResult)
|
|
210
|
+
return __ret__.apply(lambda __response__: GetResponderGatewayResult(
|
|
211
|
+
arn=pulumi.get(__response__, 'arn'),
|
|
212
|
+
created_timestamp=pulumi.get(__response__, 'created_timestamp'),
|
|
213
|
+
description=pulumi.get(__response__, 'description'),
|
|
214
|
+
domain_name=pulumi.get(__response__, 'domain_name'),
|
|
215
|
+
gateway_id=pulumi.get(__response__, 'gateway_id'),
|
|
216
|
+
managed_endpoint_configuration=pulumi.get(__response__, 'managed_endpoint_configuration'),
|
|
217
|
+
port=pulumi.get(__response__, 'port'),
|
|
218
|
+
protocol=pulumi.get(__response__, 'protocol'),
|
|
219
|
+
responder_gateway_status=pulumi.get(__response__, 'responder_gateway_status'),
|
|
220
|
+
security_group_ids=pulumi.get(__response__, 'security_group_ids'),
|
|
221
|
+
subnet_ids=pulumi.get(__response__, 'subnet_ids'),
|
|
222
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
223
|
+
trust_store_configuration=pulumi.get(__response__, 'trust_store_configuration'),
|
|
224
|
+
updated_timestamp=pulumi.get(__response__, 'updated_timestamp'),
|
|
225
|
+
vpc_id=pulumi.get(__response__, 'vpc_id')))
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from ._enums import *
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ResponderGatewayManagedEndpointConfiguration',
|
|
20
|
+
'ResponderGatewayTrustStoreConfiguration',
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
@pulumi.output_type
|
|
24
|
+
class ResponderGatewayManagedEndpointConfiguration(dict):
|
|
25
|
+
def __init__(__self__):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@pulumi.output_type
|
|
30
|
+
class ResponderGatewayTrustStoreConfiguration(dict):
|
|
31
|
+
@staticmethod
|
|
32
|
+
def __key_warning(key: str):
|
|
33
|
+
suggest = None
|
|
34
|
+
if key == "certificateAuthorityCertificates":
|
|
35
|
+
suggest = "certificate_authority_certificates"
|
|
36
|
+
|
|
37
|
+
if suggest:
|
|
38
|
+
pulumi.log.warn(f"Key '{key}' not found in ResponderGatewayTrustStoreConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
39
|
+
|
|
40
|
+
def __getitem__(self, key: str) -> Any:
|
|
41
|
+
ResponderGatewayTrustStoreConfiguration.__key_warning(key)
|
|
42
|
+
return super().__getitem__(key)
|
|
43
|
+
|
|
44
|
+
def get(self, key: str, default = None) -> Any:
|
|
45
|
+
ResponderGatewayTrustStoreConfiguration.__key_warning(key)
|
|
46
|
+
return super().get(key, default)
|
|
47
|
+
|
|
48
|
+
def __init__(__self__, *,
|
|
49
|
+
certificate_authority_certificates: Sequence[_builtins.str]):
|
|
50
|
+
pulumi.set(__self__, "certificate_authority_certificates", certificate_authority_certificates)
|
|
51
|
+
|
|
52
|
+
@_builtins.property
|
|
53
|
+
@pulumi.getter(name="certificateAuthorityCertificates")
|
|
54
|
+
def certificate_authority_certificates(self) -> Sequence[_builtins.str]:
|
|
55
|
+
return pulumi.get(self, "certificate_authority_certificates")
|
|
56
|
+
|
|
57
|
+
|