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
|
@@ -0,0 +1,199 @@
|
|
|
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
|
+
'GetLinkResult',
|
|
22
|
+
'AwaitableGetLinkResult',
|
|
23
|
+
'get_link',
|
|
24
|
+
'get_link_output',
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
@pulumi.output_type
|
|
28
|
+
class GetLinkResult:
|
|
29
|
+
def __init__(__self__, arn=None, created_timestamp=None, gateway_id=None, link_attributes=None, link_direction=None, link_id=None, link_log_settings=None, link_status=None, peer_gateway_id=None, tags=None, updated_timestamp=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 gateway_id and not isinstance(gateway_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'gateway_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "gateway_id", gateway_id)
|
|
39
|
+
if link_attributes and not isinstance(link_attributes, dict):
|
|
40
|
+
raise TypeError("Expected argument 'link_attributes' to be a dict")
|
|
41
|
+
pulumi.set(__self__, "link_attributes", link_attributes)
|
|
42
|
+
if link_direction and not isinstance(link_direction, str):
|
|
43
|
+
raise TypeError("Expected argument 'link_direction' to be a str")
|
|
44
|
+
pulumi.set(__self__, "link_direction", link_direction)
|
|
45
|
+
if link_id and not isinstance(link_id, str):
|
|
46
|
+
raise TypeError("Expected argument 'link_id' to be a str")
|
|
47
|
+
pulumi.set(__self__, "link_id", link_id)
|
|
48
|
+
if link_log_settings and not isinstance(link_log_settings, dict):
|
|
49
|
+
raise TypeError("Expected argument 'link_log_settings' to be a dict")
|
|
50
|
+
pulumi.set(__self__, "link_log_settings", link_log_settings)
|
|
51
|
+
if link_status and not isinstance(link_status, str):
|
|
52
|
+
raise TypeError("Expected argument 'link_status' to be a str")
|
|
53
|
+
pulumi.set(__self__, "link_status", link_status)
|
|
54
|
+
if peer_gateway_id and not isinstance(peer_gateway_id, str):
|
|
55
|
+
raise TypeError("Expected argument 'peer_gateway_id' to be a str")
|
|
56
|
+
pulumi.set(__self__, "peer_gateway_id", peer_gateway_id)
|
|
57
|
+
if tags and not isinstance(tags, list):
|
|
58
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
59
|
+
pulumi.set(__self__, "tags", tags)
|
|
60
|
+
if updated_timestamp and not isinstance(updated_timestamp, str):
|
|
61
|
+
raise TypeError("Expected argument 'updated_timestamp' to be a str")
|
|
62
|
+
pulumi.set(__self__, "updated_timestamp", updated_timestamp)
|
|
63
|
+
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def arn(self) -> Optional[_builtins.str]:
|
|
67
|
+
return pulumi.get(self, "arn")
|
|
68
|
+
|
|
69
|
+
@_builtins.property
|
|
70
|
+
@pulumi.getter(name="createdTimestamp")
|
|
71
|
+
def created_timestamp(self) -> Optional[_builtins.str]:
|
|
72
|
+
return pulumi.get(self, "created_timestamp")
|
|
73
|
+
|
|
74
|
+
@_builtins.property
|
|
75
|
+
@pulumi.getter(name="gatewayId")
|
|
76
|
+
def gateway_id(self) -> Optional[_builtins.str]:
|
|
77
|
+
"""
|
|
78
|
+
The unique identifier of the gateway.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "gateway_id")
|
|
81
|
+
|
|
82
|
+
@_builtins.property
|
|
83
|
+
@pulumi.getter(name="linkAttributes")
|
|
84
|
+
def link_attributes(self) -> Optional['outputs.LinkAttributes']:
|
|
85
|
+
"""
|
|
86
|
+
Attributes of the link.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "link_attributes")
|
|
89
|
+
|
|
90
|
+
@_builtins.property
|
|
91
|
+
@pulumi.getter(name="linkDirection")
|
|
92
|
+
def link_direction(self) -> Optional['LinkDirection']:
|
|
93
|
+
return pulumi.get(self, "link_direction")
|
|
94
|
+
|
|
95
|
+
@_builtins.property
|
|
96
|
+
@pulumi.getter(name="linkId")
|
|
97
|
+
def link_id(self) -> Optional[_builtins.str]:
|
|
98
|
+
"""
|
|
99
|
+
The unique identifier of the link.
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "link_id")
|
|
102
|
+
|
|
103
|
+
@_builtins.property
|
|
104
|
+
@pulumi.getter(name="linkLogSettings")
|
|
105
|
+
def link_log_settings(self) -> Optional['outputs.LinkLogSettings']:
|
|
106
|
+
"""
|
|
107
|
+
Settings for the application logs.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "link_log_settings")
|
|
110
|
+
|
|
111
|
+
@_builtins.property
|
|
112
|
+
@pulumi.getter(name="linkStatus")
|
|
113
|
+
def link_status(self) -> Optional['LinkStatus']:
|
|
114
|
+
return pulumi.get(self, "link_status")
|
|
115
|
+
|
|
116
|
+
@_builtins.property
|
|
117
|
+
@pulumi.getter(name="peerGatewayId")
|
|
118
|
+
def peer_gateway_id(self) -> Optional[_builtins.str]:
|
|
119
|
+
"""
|
|
120
|
+
The unique identifier of the peer gateway.
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "peer_gateway_id")
|
|
123
|
+
|
|
124
|
+
@_builtins.property
|
|
125
|
+
@pulumi.getter
|
|
126
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
127
|
+
"""
|
|
128
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "tags")
|
|
131
|
+
|
|
132
|
+
@_builtins.property
|
|
133
|
+
@pulumi.getter(name="updatedTimestamp")
|
|
134
|
+
def updated_timestamp(self) -> Optional[_builtins.str]:
|
|
135
|
+
return pulumi.get(self, "updated_timestamp")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetLinkResult(GetLinkResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetLinkResult(
|
|
144
|
+
arn=self.arn,
|
|
145
|
+
created_timestamp=self.created_timestamp,
|
|
146
|
+
gateway_id=self.gateway_id,
|
|
147
|
+
link_attributes=self.link_attributes,
|
|
148
|
+
link_direction=self.link_direction,
|
|
149
|
+
link_id=self.link_id,
|
|
150
|
+
link_log_settings=self.link_log_settings,
|
|
151
|
+
link_status=self.link_status,
|
|
152
|
+
peer_gateway_id=self.peer_gateway_id,
|
|
153
|
+
tags=self.tags,
|
|
154
|
+
updated_timestamp=self.updated_timestamp)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
def get_link(arn: Optional[_builtins.str] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLinkResult:
|
|
159
|
+
"""
|
|
160
|
+
Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
161
|
+
"""
|
|
162
|
+
__args__ = dict()
|
|
163
|
+
__args__['arn'] = arn
|
|
164
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
165
|
+
__ret__ = pulumi.runtime.invoke('aws-native:rtbfabric:getLink', __args__, opts=opts, typ=GetLinkResult).value
|
|
166
|
+
|
|
167
|
+
return AwaitableGetLinkResult(
|
|
168
|
+
arn=pulumi.get(__ret__, 'arn'),
|
|
169
|
+
created_timestamp=pulumi.get(__ret__, 'created_timestamp'),
|
|
170
|
+
gateway_id=pulumi.get(__ret__, 'gateway_id'),
|
|
171
|
+
link_attributes=pulumi.get(__ret__, 'link_attributes'),
|
|
172
|
+
link_direction=pulumi.get(__ret__, 'link_direction'),
|
|
173
|
+
link_id=pulumi.get(__ret__, 'link_id'),
|
|
174
|
+
link_log_settings=pulumi.get(__ret__, 'link_log_settings'),
|
|
175
|
+
link_status=pulumi.get(__ret__, 'link_status'),
|
|
176
|
+
peer_gateway_id=pulumi.get(__ret__, 'peer_gateway_id'),
|
|
177
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
178
|
+
updated_timestamp=pulumi.get(__ret__, 'updated_timestamp'))
|
|
179
|
+
def get_link_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
180
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLinkResult]:
|
|
181
|
+
"""
|
|
182
|
+
Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
183
|
+
"""
|
|
184
|
+
__args__ = dict()
|
|
185
|
+
__args__['arn'] = arn
|
|
186
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
187
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:rtbfabric:getLink', __args__, opts=opts, typ=GetLinkResult)
|
|
188
|
+
return __ret__.apply(lambda __response__: GetLinkResult(
|
|
189
|
+
arn=pulumi.get(__response__, 'arn'),
|
|
190
|
+
created_timestamp=pulumi.get(__response__, 'created_timestamp'),
|
|
191
|
+
gateway_id=pulumi.get(__response__, 'gateway_id'),
|
|
192
|
+
link_attributes=pulumi.get(__response__, 'link_attributes'),
|
|
193
|
+
link_direction=pulumi.get(__response__, 'link_direction'),
|
|
194
|
+
link_id=pulumi.get(__response__, 'link_id'),
|
|
195
|
+
link_log_settings=pulumi.get(__response__, 'link_log_settings'),
|
|
196
|
+
link_status=pulumi.get(__response__, 'link_status'),
|
|
197
|
+
peer_gateway_id=pulumi.get(__response__, 'peer_gateway_id'),
|
|
198
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
199
|
+
updated_timestamp=pulumi.get(__response__, 'updated_timestamp')))
|
|
@@ -84,6 +84,9 @@ class GetRequesterGatewayResult:
|
|
|
84
84
|
@_builtins.property
|
|
85
85
|
@pulumi.getter
|
|
86
86
|
def description(self) -> Optional[_builtins.str]:
|
|
87
|
+
"""
|
|
88
|
+
An optional description for the requester gateway.
|
|
89
|
+
"""
|
|
87
90
|
return pulumi.get(self, "description")
|
|
88
91
|
|
|
89
92
|
@_builtins.property
|
|
@@ -104,16 +107,25 @@ class GetRequesterGatewayResult:
|
|
|
104
107
|
@_builtins.property
|
|
105
108
|
@pulumi.getter(name="securityGroupIds")
|
|
106
109
|
def security_group_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
110
|
+
"""
|
|
111
|
+
The unique identifiers of the security groups.
|
|
112
|
+
"""
|
|
107
113
|
return pulumi.get(self, "security_group_ids")
|
|
108
114
|
|
|
109
115
|
@_builtins.property
|
|
110
116
|
@pulumi.getter(name="subnetIds")
|
|
111
117
|
def subnet_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
118
|
+
"""
|
|
119
|
+
The unique identifiers of the subnets.
|
|
120
|
+
"""
|
|
112
121
|
return pulumi.get(self, "subnet_ids")
|
|
113
122
|
|
|
114
123
|
@_builtins.property
|
|
115
124
|
@pulumi.getter
|
|
116
125
|
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
126
|
+
"""
|
|
127
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
128
|
+
"""
|
|
117
129
|
return pulumi.get(self, "tags")
|
|
118
130
|
|
|
119
131
|
@_builtins.property
|
|
@@ -129,6 +141,9 @@ class GetRequesterGatewayResult:
|
|
|
129
141
|
@_builtins.property
|
|
130
142
|
@pulumi.getter(name="vpcId")
|
|
131
143
|
def vpc_id(self) -> Optional[_builtins.str]:
|
|
144
|
+
"""
|
|
145
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
146
|
+
"""
|
|
132
147
|
return pulumi.get(self, "vpc_id")
|
|
133
148
|
|
|
134
149
|
|
|
@@ -86,11 +86,17 @@ class GetResponderGatewayResult:
|
|
|
86
86
|
@_builtins.property
|
|
87
87
|
@pulumi.getter
|
|
88
88
|
def description(self) -> Optional[_builtins.str]:
|
|
89
|
+
"""
|
|
90
|
+
An optional description for the responder gateway.
|
|
91
|
+
"""
|
|
89
92
|
return pulumi.get(self, "description")
|
|
90
93
|
|
|
91
94
|
@_builtins.property
|
|
92
95
|
@pulumi.getter(name="domainName")
|
|
93
96
|
def domain_name(self) -> Optional[_builtins.str]:
|
|
97
|
+
"""
|
|
98
|
+
The domain name for the responder gateway.
|
|
99
|
+
"""
|
|
94
100
|
return pulumi.get(self, "domain_name")
|
|
95
101
|
|
|
96
102
|
@_builtins.property
|
|
@@ -101,16 +107,25 @@ class GetResponderGatewayResult:
|
|
|
101
107
|
@_builtins.property
|
|
102
108
|
@pulumi.getter(name="managedEndpointConfiguration")
|
|
103
109
|
def managed_endpoint_configuration(self) -> Optional['outputs.ResponderGatewayManagedEndpointConfiguration']:
|
|
110
|
+
"""
|
|
111
|
+
The configuration for the managed endpoint.
|
|
112
|
+
"""
|
|
104
113
|
return pulumi.get(self, "managed_endpoint_configuration")
|
|
105
114
|
|
|
106
115
|
@_builtins.property
|
|
107
116
|
@pulumi.getter
|
|
108
117
|
def port(self) -> Optional[_builtins.int]:
|
|
118
|
+
"""
|
|
119
|
+
The networking port to use.
|
|
120
|
+
"""
|
|
109
121
|
return pulumi.get(self, "port")
|
|
110
122
|
|
|
111
123
|
@_builtins.property
|
|
112
124
|
@pulumi.getter
|
|
113
125
|
def protocol(self) -> Optional['ResponderGatewayProtocol']:
|
|
126
|
+
"""
|
|
127
|
+
The networking protocol to use.
|
|
128
|
+
"""
|
|
114
129
|
return pulumi.get(self, "protocol")
|
|
115
130
|
|
|
116
131
|
@_builtins.property
|
|
@@ -121,21 +136,33 @@ class GetResponderGatewayResult:
|
|
|
121
136
|
@_builtins.property
|
|
122
137
|
@pulumi.getter(name="securityGroupIds")
|
|
123
138
|
def security_group_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
139
|
+
"""
|
|
140
|
+
The unique identifiers of the security groups.
|
|
141
|
+
"""
|
|
124
142
|
return pulumi.get(self, "security_group_ids")
|
|
125
143
|
|
|
126
144
|
@_builtins.property
|
|
127
145
|
@pulumi.getter(name="subnetIds")
|
|
128
146
|
def subnet_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
147
|
+
"""
|
|
148
|
+
The unique identifiers of the subnets.
|
|
149
|
+
"""
|
|
129
150
|
return pulumi.get(self, "subnet_ids")
|
|
130
151
|
|
|
131
152
|
@_builtins.property
|
|
132
153
|
@pulumi.getter
|
|
133
154
|
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
155
|
+
"""
|
|
156
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
157
|
+
"""
|
|
134
158
|
return pulumi.get(self, "tags")
|
|
135
159
|
|
|
136
160
|
@_builtins.property
|
|
137
161
|
@pulumi.getter(name="trustStoreConfiguration")
|
|
138
162
|
def trust_store_configuration(self) -> Optional['outputs.ResponderGatewayTrustStoreConfiguration']:
|
|
163
|
+
"""
|
|
164
|
+
The configuration of the trust store.
|
|
165
|
+
"""
|
|
139
166
|
return pulumi.get(self, "trust_store_configuration")
|
|
140
167
|
|
|
141
168
|
@_builtins.property
|
|
@@ -146,6 +173,9 @@ class GetResponderGatewayResult:
|
|
|
146
173
|
@_builtins.property
|
|
147
174
|
@pulumi.getter(name="vpcId")
|
|
148
175
|
def vpc_id(self) -> Optional[_builtins.str]:
|
|
176
|
+
"""
|
|
177
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
178
|
+
"""
|
|
149
179
|
return pulumi.get(self, "vpc_id")
|
|
150
180
|
|
|
151
181
|
|
|
@@ -0,0 +1,344 @@
|
|
|
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 _inputs as _root_inputs
|
|
18
|
+
from .. import outputs as _root_outputs
|
|
19
|
+
from ._enums import *
|
|
20
|
+
from ._inputs import *
|
|
21
|
+
|
|
22
|
+
__all__ = ['LinkArgs', 'Link']
|
|
23
|
+
|
|
24
|
+
@pulumi.input_type
|
|
25
|
+
class LinkArgs:
|
|
26
|
+
def __init__(__self__, *,
|
|
27
|
+
gateway_id: pulumi.Input[_builtins.str],
|
|
28
|
+
link_log_settings: pulumi.Input['LinkLogSettingsArgs'],
|
|
29
|
+
peer_gateway_id: pulumi.Input[_builtins.str],
|
|
30
|
+
http_responder_allowed: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
31
|
+
link_attributes: Optional[pulumi.Input['LinkAttributesArgs']] = None,
|
|
32
|
+
module_configuration_list: Optional[pulumi.Input[Sequence[pulumi.Input['LinkModuleConfigurationArgs']]]] = None,
|
|
33
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
|
|
34
|
+
"""
|
|
35
|
+
The set of arguments for constructing a Link resource.
|
|
36
|
+
:param pulumi.Input[_builtins.str] gateway_id: The unique identifier of the gateway.
|
|
37
|
+
:param pulumi.Input['LinkLogSettingsArgs'] link_log_settings: Settings for the application logs.
|
|
38
|
+
:param pulumi.Input[_builtins.str] peer_gateway_id: The unique identifier of the peer gateway.
|
|
39
|
+
:param pulumi.Input[_builtins.bool] http_responder_allowed: Boolean to specify if an HTTP responder is allowed.
|
|
40
|
+
:param pulumi.Input['LinkAttributesArgs'] link_attributes: Attributes of the link.
|
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
42
|
+
"""
|
|
43
|
+
pulumi.set(__self__, "gateway_id", gateway_id)
|
|
44
|
+
pulumi.set(__self__, "link_log_settings", link_log_settings)
|
|
45
|
+
pulumi.set(__self__, "peer_gateway_id", peer_gateway_id)
|
|
46
|
+
if http_responder_allowed is not None:
|
|
47
|
+
pulumi.set(__self__, "http_responder_allowed", http_responder_allowed)
|
|
48
|
+
if link_attributes is not None:
|
|
49
|
+
pulumi.set(__self__, "link_attributes", link_attributes)
|
|
50
|
+
if module_configuration_list is not None:
|
|
51
|
+
pulumi.set(__self__, "module_configuration_list", module_configuration_list)
|
|
52
|
+
if tags is not None:
|
|
53
|
+
pulumi.set(__self__, "tags", tags)
|
|
54
|
+
|
|
55
|
+
@_builtins.property
|
|
56
|
+
@pulumi.getter(name="gatewayId")
|
|
57
|
+
def gateway_id(self) -> pulumi.Input[_builtins.str]:
|
|
58
|
+
"""
|
|
59
|
+
The unique identifier of the gateway.
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "gateway_id")
|
|
62
|
+
|
|
63
|
+
@gateway_id.setter
|
|
64
|
+
def gateway_id(self, value: pulumi.Input[_builtins.str]):
|
|
65
|
+
pulumi.set(self, "gateway_id", value)
|
|
66
|
+
|
|
67
|
+
@_builtins.property
|
|
68
|
+
@pulumi.getter(name="linkLogSettings")
|
|
69
|
+
def link_log_settings(self) -> pulumi.Input['LinkLogSettingsArgs']:
|
|
70
|
+
"""
|
|
71
|
+
Settings for the application logs.
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "link_log_settings")
|
|
74
|
+
|
|
75
|
+
@link_log_settings.setter
|
|
76
|
+
def link_log_settings(self, value: pulumi.Input['LinkLogSettingsArgs']):
|
|
77
|
+
pulumi.set(self, "link_log_settings", value)
|
|
78
|
+
|
|
79
|
+
@_builtins.property
|
|
80
|
+
@pulumi.getter(name="peerGatewayId")
|
|
81
|
+
def peer_gateway_id(self) -> pulumi.Input[_builtins.str]:
|
|
82
|
+
"""
|
|
83
|
+
The unique identifier of the peer gateway.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "peer_gateway_id")
|
|
86
|
+
|
|
87
|
+
@peer_gateway_id.setter
|
|
88
|
+
def peer_gateway_id(self, value: pulumi.Input[_builtins.str]):
|
|
89
|
+
pulumi.set(self, "peer_gateway_id", value)
|
|
90
|
+
|
|
91
|
+
@_builtins.property
|
|
92
|
+
@pulumi.getter(name="httpResponderAllowed")
|
|
93
|
+
def http_responder_allowed(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94
|
+
"""
|
|
95
|
+
Boolean to specify if an HTTP responder is allowed.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "http_responder_allowed")
|
|
98
|
+
|
|
99
|
+
@http_responder_allowed.setter
|
|
100
|
+
def http_responder_allowed(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
101
|
+
pulumi.set(self, "http_responder_allowed", value)
|
|
102
|
+
|
|
103
|
+
@_builtins.property
|
|
104
|
+
@pulumi.getter(name="linkAttributes")
|
|
105
|
+
def link_attributes(self) -> Optional[pulumi.Input['LinkAttributesArgs']]:
|
|
106
|
+
"""
|
|
107
|
+
Attributes of the link.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "link_attributes")
|
|
110
|
+
|
|
111
|
+
@link_attributes.setter
|
|
112
|
+
def link_attributes(self, value: Optional[pulumi.Input['LinkAttributesArgs']]):
|
|
113
|
+
pulumi.set(self, "link_attributes", value)
|
|
114
|
+
|
|
115
|
+
@_builtins.property
|
|
116
|
+
@pulumi.getter(name="moduleConfigurationList")
|
|
117
|
+
def module_configuration_list(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LinkModuleConfigurationArgs']]]]:
|
|
118
|
+
return pulumi.get(self, "module_configuration_list")
|
|
119
|
+
|
|
120
|
+
@module_configuration_list.setter
|
|
121
|
+
def module_configuration_list(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LinkModuleConfigurationArgs']]]]):
|
|
122
|
+
pulumi.set(self, "module_configuration_list", value)
|
|
123
|
+
|
|
124
|
+
@_builtins.property
|
|
125
|
+
@pulumi.getter
|
|
126
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
127
|
+
"""
|
|
128
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "tags")
|
|
131
|
+
|
|
132
|
+
@tags.setter
|
|
133
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
|
|
134
|
+
pulumi.set(self, "tags", value)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
@pulumi.type_token("aws-native:rtbfabric:Link")
|
|
138
|
+
class Link(pulumi.CustomResource):
|
|
139
|
+
@overload
|
|
140
|
+
def __init__(__self__,
|
|
141
|
+
resource_name: str,
|
|
142
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
143
|
+
gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
144
|
+
http_responder_allowed: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
145
|
+
link_attributes: Optional[pulumi.Input[Union['LinkAttributesArgs', 'LinkAttributesArgsDict']]] = None,
|
|
146
|
+
link_log_settings: Optional[pulumi.Input[Union['LinkLogSettingsArgs', 'LinkLogSettingsArgsDict']]] = None,
|
|
147
|
+
module_configuration_list: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LinkModuleConfigurationArgs', 'LinkModuleConfigurationArgsDict']]]]] = None,
|
|
148
|
+
peer_gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
149
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
150
|
+
__props__=None):
|
|
151
|
+
"""
|
|
152
|
+
Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
153
|
+
|
|
154
|
+
:param str resource_name: The name of the resource.
|
|
155
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
156
|
+
:param pulumi.Input[_builtins.str] gateway_id: The unique identifier of the gateway.
|
|
157
|
+
:param pulumi.Input[_builtins.bool] http_responder_allowed: Boolean to specify if an HTTP responder is allowed.
|
|
158
|
+
:param pulumi.Input[Union['LinkAttributesArgs', 'LinkAttributesArgsDict']] link_attributes: Attributes of the link.
|
|
159
|
+
:param pulumi.Input[Union['LinkLogSettingsArgs', 'LinkLogSettingsArgsDict']] link_log_settings: Settings for the application logs.
|
|
160
|
+
:param pulumi.Input[_builtins.str] peer_gateway_id: The unique identifier of the peer gateway.
|
|
161
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
162
|
+
"""
|
|
163
|
+
...
|
|
164
|
+
@overload
|
|
165
|
+
def __init__(__self__,
|
|
166
|
+
resource_name: str,
|
|
167
|
+
args: LinkArgs,
|
|
168
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
169
|
+
"""
|
|
170
|
+
Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
171
|
+
|
|
172
|
+
:param str resource_name: The name of the resource.
|
|
173
|
+
:param LinkArgs args: The arguments to use to populate this resource's properties.
|
|
174
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
175
|
+
"""
|
|
176
|
+
...
|
|
177
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
178
|
+
resource_args, opts = _utilities.get_resource_args_opts(LinkArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
179
|
+
if resource_args is not None:
|
|
180
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
181
|
+
else:
|
|
182
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
183
|
+
|
|
184
|
+
def _internal_init(__self__,
|
|
185
|
+
resource_name: str,
|
|
186
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
187
|
+
gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
188
|
+
http_responder_allowed: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
189
|
+
link_attributes: Optional[pulumi.Input[Union['LinkAttributesArgs', 'LinkAttributesArgsDict']]] = None,
|
|
190
|
+
link_log_settings: Optional[pulumi.Input[Union['LinkLogSettingsArgs', 'LinkLogSettingsArgsDict']]] = None,
|
|
191
|
+
module_configuration_list: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LinkModuleConfigurationArgs', 'LinkModuleConfigurationArgsDict']]]]] = None,
|
|
192
|
+
peer_gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
193
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
194
|
+
__props__=None):
|
|
195
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
196
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
197
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
198
|
+
if opts.id is None:
|
|
199
|
+
if __props__ is not None:
|
|
200
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
201
|
+
__props__ = LinkArgs.__new__(LinkArgs)
|
|
202
|
+
|
|
203
|
+
if gateway_id is None and not opts.urn:
|
|
204
|
+
raise TypeError("Missing required property 'gateway_id'")
|
|
205
|
+
__props__.__dict__["gateway_id"] = gateway_id
|
|
206
|
+
__props__.__dict__["http_responder_allowed"] = http_responder_allowed
|
|
207
|
+
__props__.__dict__["link_attributes"] = link_attributes
|
|
208
|
+
if link_log_settings is None and not opts.urn:
|
|
209
|
+
raise TypeError("Missing required property 'link_log_settings'")
|
|
210
|
+
__props__.__dict__["link_log_settings"] = link_log_settings
|
|
211
|
+
__props__.__dict__["module_configuration_list"] = module_configuration_list
|
|
212
|
+
if peer_gateway_id is None and not opts.urn:
|
|
213
|
+
raise TypeError("Missing required property 'peer_gateway_id'")
|
|
214
|
+
__props__.__dict__["peer_gateway_id"] = peer_gateway_id
|
|
215
|
+
__props__.__dict__["tags"] = tags
|
|
216
|
+
__props__.__dict__["arn"] = None
|
|
217
|
+
__props__.__dict__["created_timestamp"] = None
|
|
218
|
+
__props__.__dict__["link_direction"] = None
|
|
219
|
+
__props__.__dict__["link_id"] = None
|
|
220
|
+
__props__.__dict__["link_status"] = None
|
|
221
|
+
__props__.__dict__["updated_timestamp"] = None
|
|
222
|
+
super(Link, __self__).__init__(
|
|
223
|
+
'aws-native:rtbfabric:Link',
|
|
224
|
+
resource_name,
|
|
225
|
+
__props__,
|
|
226
|
+
opts)
|
|
227
|
+
|
|
228
|
+
@staticmethod
|
|
229
|
+
def get(resource_name: str,
|
|
230
|
+
id: pulumi.Input[str],
|
|
231
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Link':
|
|
232
|
+
"""
|
|
233
|
+
Get an existing Link resource's state with the given name, id, and optional extra
|
|
234
|
+
properties used to qualify the lookup.
|
|
235
|
+
|
|
236
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
237
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
238
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
239
|
+
"""
|
|
240
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
241
|
+
|
|
242
|
+
__props__ = LinkArgs.__new__(LinkArgs)
|
|
243
|
+
|
|
244
|
+
__props__.__dict__["arn"] = None
|
|
245
|
+
__props__.__dict__["created_timestamp"] = None
|
|
246
|
+
__props__.__dict__["gateway_id"] = None
|
|
247
|
+
__props__.__dict__["http_responder_allowed"] = None
|
|
248
|
+
__props__.__dict__["link_attributes"] = None
|
|
249
|
+
__props__.__dict__["link_direction"] = None
|
|
250
|
+
__props__.__dict__["link_id"] = None
|
|
251
|
+
__props__.__dict__["link_log_settings"] = None
|
|
252
|
+
__props__.__dict__["link_status"] = None
|
|
253
|
+
__props__.__dict__["module_configuration_list"] = None
|
|
254
|
+
__props__.__dict__["peer_gateway_id"] = None
|
|
255
|
+
__props__.__dict__["tags"] = None
|
|
256
|
+
__props__.__dict__["updated_timestamp"] = None
|
|
257
|
+
return Link(resource_name, opts=opts, __props__=__props__)
|
|
258
|
+
|
|
259
|
+
@_builtins.property
|
|
260
|
+
@pulumi.getter
|
|
261
|
+
def arn(self) -> pulumi.Output[_builtins.str]:
|
|
262
|
+
return pulumi.get(self, "arn")
|
|
263
|
+
|
|
264
|
+
@_builtins.property
|
|
265
|
+
@pulumi.getter(name="createdTimestamp")
|
|
266
|
+
def created_timestamp(self) -> pulumi.Output[_builtins.str]:
|
|
267
|
+
return pulumi.get(self, "created_timestamp")
|
|
268
|
+
|
|
269
|
+
@_builtins.property
|
|
270
|
+
@pulumi.getter(name="gatewayId")
|
|
271
|
+
def gateway_id(self) -> pulumi.Output[_builtins.str]:
|
|
272
|
+
"""
|
|
273
|
+
The unique identifier of the gateway.
|
|
274
|
+
"""
|
|
275
|
+
return pulumi.get(self, "gateway_id")
|
|
276
|
+
|
|
277
|
+
@_builtins.property
|
|
278
|
+
@pulumi.getter(name="httpResponderAllowed")
|
|
279
|
+
def http_responder_allowed(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
280
|
+
"""
|
|
281
|
+
Boolean to specify if an HTTP responder is allowed.
|
|
282
|
+
"""
|
|
283
|
+
return pulumi.get(self, "http_responder_allowed")
|
|
284
|
+
|
|
285
|
+
@_builtins.property
|
|
286
|
+
@pulumi.getter(name="linkAttributes")
|
|
287
|
+
def link_attributes(self) -> pulumi.Output[Optional['outputs.LinkAttributes']]:
|
|
288
|
+
"""
|
|
289
|
+
Attributes of the link.
|
|
290
|
+
"""
|
|
291
|
+
return pulumi.get(self, "link_attributes")
|
|
292
|
+
|
|
293
|
+
@_builtins.property
|
|
294
|
+
@pulumi.getter(name="linkDirection")
|
|
295
|
+
def link_direction(self) -> pulumi.Output['LinkDirection']:
|
|
296
|
+
return pulumi.get(self, "link_direction")
|
|
297
|
+
|
|
298
|
+
@_builtins.property
|
|
299
|
+
@pulumi.getter(name="linkId")
|
|
300
|
+
def link_id(self) -> pulumi.Output[_builtins.str]:
|
|
301
|
+
"""
|
|
302
|
+
The unique identifier of the link.
|
|
303
|
+
"""
|
|
304
|
+
return pulumi.get(self, "link_id")
|
|
305
|
+
|
|
306
|
+
@_builtins.property
|
|
307
|
+
@pulumi.getter(name="linkLogSettings")
|
|
308
|
+
def link_log_settings(self) -> pulumi.Output['outputs.LinkLogSettings']:
|
|
309
|
+
"""
|
|
310
|
+
Settings for the application logs.
|
|
311
|
+
"""
|
|
312
|
+
return pulumi.get(self, "link_log_settings")
|
|
313
|
+
|
|
314
|
+
@_builtins.property
|
|
315
|
+
@pulumi.getter(name="linkStatus")
|
|
316
|
+
def link_status(self) -> pulumi.Output['LinkStatus']:
|
|
317
|
+
return pulumi.get(self, "link_status")
|
|
318
|
+
|
|
319
|
+
@_builtins.property
|
|
320
|
+
@pulumi.getter(name="moduleConfigurationList")
|
|
321
|
+
def module_configuration_list(self) -> pulumi.Output[Optional[Sequence['outputs.LinkModuleConfiguration']]]:
|
|
322
|
+
return pulumi.get(self, "module_configuration_list")
|
|
323
|
+
|
|
324
|
+
@_builtins.property
|
|
325
|
+
@pulumi.getter(name="peerGatewayId")
|
|
326
|
+
def peer_gateway_id(self) -> pulumi.Output[_builtins.str]:
|
|
327
|
+
"""
|
|
328
|
+
The unique identifier of the peer gateway.
|
|
329
|
+
"""
|
|
330
|
+
return pulumi.get(self, "peer_gateway_id")
|
|
331
|
+
|
|
332
|
+
@_builtins.property
|
|
333
|
+
@pulumi.getter
|
|
334
|
+
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
335
|
+
"""
|
|
336
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
337
|
+
"""
|
|
338
|
+
return pulumi.get(self, "tags")
|
|
339
|
+
|
|
340
|
+
@_builtins.property
|
|
341
|
+
@pulumi.getter(name="updatedTimestamp")
|
|
342
|
+
def updated_timestamp(self) -> pulumi.Output[_builtins.str]:
|
|
343
|
+
return pulumi.get(self, "updated_timestamp")
|
|
344
|
+
|