pulumi-aws-native 1.38.0a1761716526__py3-none-any.whl → 1.38.0a1761739268__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +2 -0
- pulumi_aws_native/amazonmq/_enums.py +4 -12
- pulumi_aws_native/amazonmq/_inputs.py +21 -91
- pulumi_aws_native/amazonmq/broker.py +56 -67
- pulumi_aws_native/amazonmq/get_broker.py +6 -13
- pulumi_aws_native/amazonmq/outputs.py +14 -54
- pulumi_aws_native/batch/_inputs.py +25 -0
- pulumi_aws_native/batch/job_definition.py +21 -0
- pulumi_aws_native/batch/outputs.py +31 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +54 -26
- pulumi_aws_native/datazone/outputs.py +84 -0
- pulumi_aws_native/ec2/__init__.py +2 -0
- pulumi_aws_native/ec2/_enums.py +19 -0
- pulumi_aws_native/ec2/_inputs.py +15 -12
- pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
- pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ecs/_enums.py +14 -0
- pulumi_aws_native/ecs/_inputs.py +134 -8
- pulumi_aws_native/ecs/outputs.py +135 -5
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
- pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
- pulumi_aws_native/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
- pulumi_aws_native/mediapackagev2/outputs.py +4 -0
- pulumi_aws_native/networkfirewall/_enums.py +2 -0
- pulumi_aws_native/networkfirewall/_inputs.py +13 -0
- pulumi_aws_native/networkfirewall/firewall.py +7 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +12 -1
- pulumi_aws_native/networkfirewall/outputs.py +10 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +41 -0
- pulumi_aws_native/rtbfabric/_inputs.py +260 -0
- pulumi_aws_native/rtbfabric/get_link.py +181 -0
- pulumi_aws_native/rtbfabric/link.py +293 -0
- pulumi_aws_native/rtbfabric/outputs.py +260 -0
- pulumi_aws_native/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +77 -0
- pulumi_aws_native/transfer/connector.py +83 -19
- pulumi_aws_native/transfer/get_connector.py +40 -1
- pulumi_aws_native/transfer/outputs.py +80 -0
- {pulumi_aws_native-1.38.0a1761716526.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761716526.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/RECORD +54 -50
- {pulumi_aws_native-1.38.0a1761716526.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761716526.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,293 @@
|
|
|
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
|
+
"""
|
|
37
|
+
pulumi.set(__self__, "gateway_id", gateway_id)
|
|
38
|
+
pulumi.set(__self__, "link_log_settings", link_log_settings)
|
|
39
|
+
pulumi.set(__self__, "peer_gateway_id", peer_gateway_id)
|
|
40
|
+
if http_responder_allowed is not None:
|
|
41
|
+
pulumi.set(__self__, "http_responder_allowed", http_responder_allowed)
|
|
42
|
+
if link_attributes is not None:
|
|
43
|
+
pulumi.set(__self__, "link_attributes", link_attributes)
|
|
44
|
+
if module_configuration_list is not None:
|
|
45
|
+
pulumi.set(__self__, "module_configuration_list", module_configuration_list)
|
|
46
|
+
if tags is not None:
|
|
47
|
+
pulumi.set(__self__, "tags", tags)
|
|
48
|
+
|
|
49
|
+
@_builtins.property
|
|
50
|
+
@pulumi.getter(name="gatewayId")
|
|
51
|
+
def gateway_id(self) -> pulumi.Input[_builtins.str]:
|
|
52
|
+
return pulumi.get(self, "gateway_id")
|
|
53
|
+
|
|
54
|
+
@gateway_id.setter
|
|
55
|
+
def gateway_id(self, value: pulumi.Input[_builtins.str]):
|
|
56
|
+
pulumi.set(self, "gateway_id", value)
|
|
57
|
+
|
|
58
|
+
@_builtins.property
|
|
59
|
+
@pulumi.getter(name="linkLogSettings")
|
|
60
|
+
def link_log_settings(self) -> pulumi.Input['LinkLogSettingsArgs']:
|
|
61
|
+
return pulumi.get(self, "link_log_settings")
|
|
62
|
+
|
|
63
|
+
@link_log_settings.setter
|
|
64
|
+
def link_log_settings(self, value: pulumi.Input['LinkLogSettingsArgs']):
|
|
65
|
+
pulumi.set(self, "link_log_settings", value)
|
|
66
|
+
|
|
67
|
+
@_builtins.property
|
|
68
|
+
@pulumi.getter(name="peerGatewayId")
|
|
69
|
+
def peer_gateway_id(self) -> pulumi.Input[_builtins.str]:
|
|
70
|
+
return pulumi.get(self, "peer_gateway_id")
|
|
71
|
+
|
|
72
|
+
@peer_gateway_id.setter
|
|
73
|
+
def peer_gateway_id(self, value: pulumi.Input[_builtins.str]):
|
|
74
|
+
pulumi.set(self, "peer_gateway_id", value)
|
|
75
|
+
|
|
76
|
+
@_builtins.property
|
|
77
|
+
@pulumi.getter(name="httpResponderAllowed")
|
|
78
|
+
def http_responder_allowed(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
79
|
+
return pulumi.get(self, "http_responder_allowed")
|
|
80
|
+
|
|
81
|
+
@http_responder_allowed.setter
|
|
82
|
+
def http_responder_allowed(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
83
|
+
pulumi.set(self, "http_responder_allowed", value)
|
|
84
|
+
|
|
85
|
+
@_builtins.property
|
|
86
|
+
@pulumi.getter(name="linkAttributes")
|
|
87
|
+
def link_attributes(self) -> Optional[pulumi.Input['LinkAttributesArgs']]:
|
|
88
|
+
return pulumi.get(self, "link_attributes")
|
|
89
|
+
|
|
90
|
+
@link_attributes.setter
|
|
91
|
+
def link_attributes(self, value: Optional[pulumi.Input['LinkAttributesArgs']]):
|
|
92
|
+
pulumi.set(self, "link_attributes", value)
|
|
93
|
+
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter(name="moduleConfigurationList")
|
|
96
|
+
def module_configuration_list(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LinkModuleConfigurationArgs']]]]:
|
|
97
|
+
return pulumi.get(self, "module_configuration_list")
|
|
98
|
+
|
|
99
|
+
@module_configuration_list.setter
|
|
100
|
+
def module_configuration_list(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LinkModuleConfigurationArgs']]]]):
|
|
101
|
+
pulumi.set(self, "module_configuration_list", value)
|
|
102
|
+
|
|
103
|
+
@_builtins.property
|
|
104
|
+
@pulumi.getter
|
|
105
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
106
|
+
return pulumi.get(self, "tags")
|
|
107
|
+
|
|
108
|
+
@tags.setter
|
|
109
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
|
|
110
|
+
pulumi.set(self, "tags", value)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
@pulumi.type_token("aws-native:rtbfabric:Link")
|
|
114
|
+
class Link(pulumi.CustomResource):
|
|
115
|
+
@overload
|
|
116
|
+
def __init__(__self__,
|
|
117
|
+
resource_name: str,
|
|
118
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
119
|
+
gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
120
|
+
http_responder_allowed: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
121
|
+
link_attributes: Optional[pulumi.Input[Union['LinkAttributesArgs', 'LinkAttributesArgsDict']]] = None,
|
|
122
|
+
link_log_settings: Optional[pulumi.Input[Union['LinkLogSettingsArgs', 'LinkLogSettingsArgsDict']]] = None,
|
|
123
|
+
module_configuration_list: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LinkModuleConfigurationArgs', 'LinkModuleConfigurationArgsDict']]]]] = None,
|
|
124
|
+
peer_gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
125
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
126
|
+
__props__=None):
|
|
127
|
+
"""
|
|
128
|
+
Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
129
|
+
|
|
130
|
+
:param str resource_name: The name of the resource.
|
|
131
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
132
|
+
"""
|
|
133
|
+
...
|
|
134
|
+
@overload
|
|
135
|
+
def __init__(__self__,
|
|
136
|
+
resource_name: str,
|
|
137
|
+
args: LinkArgs,
|
|
138
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
139
|
+
"""
|
|
140
|
+
Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
141
|
+
|
|
142
|
+
:param str resource_name: The name of the resource.
|
|
143
|
+
:param LinkArgs args: The arguments to use to populate this resource's properties.
|
|
144
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
145
|
+
"""
|
|
146
|
+
...
|
|
147
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
148
|
+
resource_args, opts = _utilities.get_resource_args_opts(LinkArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
149
|
+
if resource_args is not None:
|
|
150
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
151
|
+
else:
|
|
152
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
153
|
+
|
|
154
|
+
def _internal_init(__self__,
|
|
155
|
+
resource_name: str,
|
|
156
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
157
|
+
gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
158
|
+
http_responder_allowed: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
159
|
+
link_attributes: Optional[pulumi.Input[Union['LinkAttributesArgs', 'LinkAttributesArgsDict']]] = None,
|
|
160
|
+
link_log_settings: Optional[pulumi.Input[Union['LinkLogSettingsArgs', 'LinkLogSettingsArgsDict']]] = None,
|
|
161
|
+
module_configuration_list: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LinkModuleConfigurationArgs', 'LinkModuleConfigurationArgsDict']]]]] = None,
|
|
162
|
+
peer_gateway_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
163
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
164
|
+
__props__=None):
|
|
165
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
166
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
167
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
168
|
+
if opts.id is None:
|
|
169
|
+
if __props__ is not None:
|
|
170
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
171
|
+
__props__ = LinkArgs.__new__(LinkArgs)
|
|
172
|
+
|
|
173
|
+
if gateway_id is None and not opts.urn:
|
|
174
|
+
raise TypeError("Missing required property 'gateway_id'")
|
|
175
|
+
__props__.__dict__["gateway_id"] = gateway_id
|
|
176
|
+
__props__.__dict__["http_responder_allowed"] = http_responder_allowed
|
|
177
|
+
__props__.__dict__["link_attributes"] = link_attributes
|
|
178
|
+
if link_log_settings is None and not opts.urn:
|
|
179
|
+
raise TypeError("Missing required property 'link_log_settings'")
|
|
180
|
+
__props__.__dict__["link_log_settings"] = link_log_settings
|
|
181
|
+
__props__.__dict__["module_configuration_list"] = module_configuration_list
|
|
182
|
+
if peer_gateway_id is None and not opts.urn:
|
|
183
|
+
raise TypeError("Missing required property 'peer_gateway_id'")
|
|
184
|
+
__props__.__dict__["peer_gateway_id"] = peer_gateway_id
|
|
185
|
+
__props__.__dict__["tags"] = tags
|
|
186
|
+
__props__.__dict__["arn"] = None
|
|
187
|
+
__props__.__dict__["created_timestamp"] = None
|
|
188
|
+
__props__.__dict__["link_direction"] = None
|
|
189
|
+
__props__.__dict__["link_id"] = None
|
|
190
|
+
__props__.__dict__["link_status"] = None
|
|
191
|
+
__props__.__dict__["updated_timestamp"] = None
|
|
192
|
+
super(Link, __self__).__init__(
|
|
193
|
+
'aws-native:rtbfabric:Link',
|
|
194
|
+
resource_name,
|
|
195
|
+
__props__,
|
|
196
|
+
opts)
|
|
197
|
+
|
|
198
|
+
@staticmethod
|
|
199
|
+
def get(resource_name: str,
|
|
200
|
+
id: pulumi.Input[str],
|
|
201
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Link':
|
|
202
|
+
"""
|
|
203
|
+
Get an existing Link resource's state with the given name, id, and optional extra
|
|
204
|
+
properties used to qualify the lookup.
|
|
205
|
+
|
|
206
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
207
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
208
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
209
|
+
"""
|
|
210
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
211
|
+
|
|
212
|
+
__props__ = LinkArgs.__new__(LinkArgs)
|
|
213
|
+
|
|
214
|
+
__props__.__dict__["arn"] = None
|
|
215
|
+
__props__.__dict__["created_timestamp"] = None
|
|
216
|
+
__props__.__dict__["gateway_id"] = None
|
|
217
|
+
__props__.__dict__["http_responder_allowed"] = None
|
|
218
|
+
__props__.__dict__["link_attributes"] = None
|
|
219
|
+
__props__.__dict__["link_direction"] = None
|
|
220
|
+
__props__.__dict__["link_id"] = None
|
|
221
|
+
__props__.__dict__["link_log_settings"] = None
|
|
222
|
+
__props__.__dict__["link_status"] = None
|
|
223
|
+
__props__.__dict__["module_configuration_list"] = None
|
|
224
|
+
__props__.__dict__["peer_gateway_id"] = None
|
|
225
|
+
__props__.__dict__["tags"] = None
|
|
226
|
+
__props__.__dict__["updated_timestamp"] = None
|
|
227
|
+
return Link(resource_name, opts=opts, __props__=__props__)
|
|
228
|
+
|
|
229
|
+
@_builtins.property
|
|
230
|
+
@pulumi.getter
|
|
231
|
+
def arn(self) -> pulumi.Output[_builtins.str]:
|
|
232
|
+
return pulumi.get(self, "arn")
|
|
233
|
+
|
|
234
|
+
@_builtins.property
|
|
235
|
+
@pulumi.getter(name="createdTimestamp")
|
|
236
|
+
def created_timestamp(self) -> pulumi.Output[_builtins.str]:
|
|
237
|
+
return pulumi.get(self, "created_timestamp")
|
|
238
|
+
|
|
239
|
+
@_builtins.property
|
|
240
|
+
@pulumi.getter(name="gatewayId")
|
|
241
|
+
def gateway_id(self) -> pulumi.Output[_builtins.str]:
|
|
242
|
+
return pulumi.get(self, "gateway_id")
|
|
243
|
+
|
|
244
|
+
@_builtins.property
|
|
245
|
+
@pulumi.getter(name="httpResponderAllowed")
|
|
246
|
+
def http_responder_allowed(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
247
|
+
return pulumi.get(self, "http_responder_allowed")
|
|
248
|
+
|
|
249
|
+
@_builtins.property
|
|
250
|
+
@pulumi.getter(name="linkAttributes")
|
|
251
|
+
def link_attributes(self) -> pulumi.Output[Optional['outputs.LinkAttributes']]:
|
|
252
|
+
return pulumi.get(self, "link_attributes")
|
|
253
|
+
|
|
254
|
+
@_builtins.property
|
|
255
|
+
@pulumi.getter(name="linkDirection")
|
|
256
|
+
def link_direction(self) -> pulumi.Output['LinkDirection']:
|
|
257
|
+
return pulumi.get(self, "link_direction")
|
|
258
|
+
|
|
259
|
+
@_builtins.property
|
|
260
|
+
@pulumi.getter(name="linkId")
|
|
261
|
+
def link_id(self) -> pulumi.Output[_builtins.str]:
|
|
262
|
+
return pulumi.get(self, "link_id")
|
|
263
|
+
|
|
264
|
+
@_builtins.property
|
|
265
|
+
@pulumi.getter(name="linkLogSettings")
|
|
266
|
+
def link_log_settings(self) -> pulumi.Output['outputs.LinkLogSettings']:
|
|
267
|
+
return pulumi.get(self, "link_log_settings")
|
|
268
|
+
|
|
269
|
+
@_builtins.property
|
|
270
|
+
@pulumi.getter(name="linkStatus")
|
|
271
|
+
def link_status(self) -> pulumi.Output['LinkStatus']:
|
|
272
|
+
return pulumi.get(self, "link_status")
|
|
273
|
+
|
|
274
|
+
@_builtins.property
|
|
275
|
+
@pulumi.getter(name="moduleConfigurationList")
|
|
276
|
+
def module_configuration_list(self) -> pulumi.Output[Optional[Sequence['outputs.LinkModuleConfiguration']]]:
|
|
277
|
+
return pulumi.get(self, "module_configuration_list")
|
|
278
|
+
|
|
279
|
+
@_builtins.property
|
|
280
|
+
@pulumi.getter(name="peerGatewayId")
|
|
281
|
+
def peer_gateway_id(self) -> pulumi.Output[_builtins.str]:
|
|
282
|
+
return pulumi.get(self, "peer_gateway_id")
|
|
283
|
+
|
|
284
|
+
@_builtins.property
|
|
285
|
+
@pulumi.getter
|
|
286
|
+
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
287
|
+
return pulumi.get(self, "tags")
|
|
288
|
+
|
|
289
|
+
@_builtins.property
|
|
290
|
+
@pulumi.getter(name="updatedTimestamp")
|
|
291
|
+
def updated_timestamp(self) -> pulumi.Output[_builtins.str]:
|
|
292
|
+
return pulumi.get(self, "updated_timestamp")
|
|
293
|
+
|
|
@@ -13,13 +13,273 @@ if sys.version_info >= (3, 11):
|
|
|
13
13
|
else:
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
16
17
|
from ._enums import *
|
|
17
18
|
|
|
18
19
|
__all__ = [
|
|
20
|
+
'LinkAttributes',
|
|
21
|
+
'LinkLogSettings',
|
|
22
|
+
'LinkLogSettingsApplicationLogsProperties',
|
|
23
|
+
'LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties',
|
|
24
|
+
'LinkModuleConfiguration',
|
|
25
|
+
'LinkModuleParameters',
|
|
26
|
+
'LinkResponderErrorMaskingForHttpCode',
|
|
19
27
|
'ResponderGatewayManagedEndpointConfiguration',
|
|
20
28
|
'ResponderGatewayTrustStoreConfiguration',
|
|
21
29
|
]
|
|
22
30
|
|
|
31
|
+
@pulumi.output_type
|
|
32
|
+
class LinkAttributes(dict):
|
|
33
|
+
@staticmethod
|
|
34
|
+
def __key_warning(key: str):
|
|
35
|
+
suggest = None
|
|
36
|
+
if key == "customerProvidedId":
|
|
37
|
+
suggest = "customer_provided_id"
|
|
38
|
+
elif key == "responderErrorMasking":
|
|
39
|
+
suggest = "responder_error_masking"
|
|
40
|
+
|
|
41
|
+
if suggest:
|
|
42
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkAttributes. Access the value via the '{suggest}' property getter instead.")
|
|
43
|
+
|
|
44
|
+
def __getitem__(self, key: str) -> Any:
|
|
45
|
+
LinkAttributes.__key_warning(key)
|
|
46
|
+
return super().__getitem__(key)
|
|
47
|
+
|
|
48
|
+
def get(self, key: str, default = None) -> Any:
|
|
49
|
+
LinkAttributes.__key_warning(key)
|
|
50
|
+
return super().get(key, default)
|
|
51
|
+
|
|
52
|
+
def __init__(__self__, *,
|
|
53
|
+
customer_provided_id: Optional[_builtins.str] = None,
|
|
54
|
+
responder_error_masking: Optional[Sequence['outputs.LinkResponderErrorMaskingForHttpCode']] = None):
|
|
55
|
+
if customer_provided_id is not None:
|
|
56
|
+
pulumi.set(__self__, "customer_provided_id", customer_provided_id)
|
|
57
|
+
if responder_error_masking is not None:
|
|
58
|
+
pulumi.set(__self__, "responder_error_masking", responder_error_masking)
|
|
59
|
+
|
|
60
|
+
@_builtins.property
|
|
61
|
+
@pulumi.getter(name="customerProvidedId")
|
|
62
|
+
def customer_provided_id(self) -> Optional[_builtins.str]:
|
|
63
|
+
return pulumi.get(self, "customer_provided_id")
|
|
64
|
+
|
|
65
|
+
@_builtins.property
|
|
66
|
+
@pulumi.getter(name="responderErrorMasking")
|
|
67
|
+
def responder_error_masking(self) -> Optional[Sequence['outputs.LinkResponderErrorMaskingForHttpCode']]:
|
|
68
|
+
return pulumi.get(self, "responder_error_masking")
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
@pulumi.output_type
|
|
72
|
+
class LinkLogSettings(dict):
|
|
73
|
+
@staticmethod
|
|
74
|
+
def __key_warning(key: str):
|
|
75
|
+
suggest = None
|
|
76
|
+
if key == "applicationLogs":
|
|
77
|
+
suggest = "application_logs"
|
|
78
|
+
|
|
79
|
+
if suggest:
|
|
80
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkLogSettings. Access the value via the '{suggest}' property getter instead.")
|
|
81
|
+
|
|
82
|
+
def __getitem__(self, key: str) -> Any:
|
|
83
|
+
LinkLogSettings.__key_warning(key)
|
|
84
|
+
return super().__getitem__(key)
|
|
85
|
+
|
|
86
|
+
def get(self, key: str, default = None) -> Any:
|
|
87
|
+
LinkLogSettings.__key_warning(key)
|
|
88
|
+
return super().get(key, default)
|
|
89
|
+
|
|
90
|
+
def __init__(__self__, *,
|
|
91
|
+
application_logs: 'outputs.LinkLogSettingsApplicationLogsProperties'):
|
|
92
|
+
pulumi.set(__self__, "application_logs", application_logs)
|
|
93
|
+
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter(name="applicationLogs")
|
|
96
|
+
def application_logs(self) -> 'outputs.LinkLogSettingsApplicationLogsProperties':
|
|
97
|
+
return pulumi.get(self, "application_logs")
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
@pulumi.output_type
|
|
101
|
+
class LinkLogSettingsApplicationLogsProperties(dict):
|
|
102
|
+
@staticmethod
|
|
103
|
+
def __key_warning(key: str):
|
|
104
|
+
suggest = None
|
|
105
|
+
if key == "linkApplicationLogSampling":
|
|
106
|
+
suggest = "link_application_log_sampling"
|
|
107
|
+
|
|
108
|
+
if suggest:
|
|
109
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkLogSettingsApplicationLogsProperties. Access the value via the '{suggest}' property getter instead.")
|
|
110
|
+
|
|
111
|
+
def __getitem__(self, key: str) -> Any:
|
|
112
|
+
LinkLogSettingsApplicationLogsProperties.__key_warning(key)
|
|
113
|
+
return super().__getitem__(key)
|
|
114
|
+
|
|
115
|
+
def get(self, key: str, default = None) -> Any:
|
|
116
|
+
LinkLogSettingsApplicationLogsProperties.__key_warning(key)
|
|
117
|
+
return super().get(key, default)
|
|
118
|
+
|
|
119
|
+
def __init__(__self__, *,
|
|
120
|
+
link_application_log_sampling: 'outputs.LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties'):
|
|
121
|
+
pulumi.set(__self__, "link_application_log_sampling", link_application_log_sampling)
|
|
122
|
+
|
|
123
|
+
@_builtins.property
|
|
124
|
+
@pulumi.getter(name="linkApplicationLogSampling")
|
|
125
|
+
def link_application_log_sampling(self) -> 'outputs.LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties':
|
|
126
|
+
return pulumi.get(self, "link_application_log_sampling")
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
@pulumi.output_type
|
|
130
|
+
class LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties(dict):
|
|
131
|
+
@staticmethod
|
|
132
|
+
def __key_warning(key: str):
|
|
133
|
+
suggest = None
|
|
134
|
+
if key == "errorLog":
|
|
135
|
+
suggest = "error_log"
|
|
136
|
+
elif key == "filterLog":
|
|
137
|
+
suggest = "filter_log"
|
|
138
|
+
|
|
139
|
+
if suggest:
|
|
140
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties. Access the value via the '{suggest}' property getter instead.")
|
|
141
|
+
|
|
142
|
+
def __getitem__(self, key: str) -> Any:
|
|
143
|
+
LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties.__key_warning(key)
|
|
144
|
+
return super().__getitem__(key)
|
|
145
|
+
|
|
146
|
+
def get(self, key: str, default = None) -> Any:
|
|
147
|
+
LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties.__key_warning(key)
|
|
148
|
+
return super().get(key, default)
|
|
149
|
+
|
|
150
|
+
def __init__(__self__, *,
|
|
151
|
+
error_log: _builtins.float,
|
|
152
|
+
filter_log: _builtins.float):
|
|
153
|
+
pulumi.set(__self__, "error_log", error_log)
|
|
154
|
+
pulumi.set(__self__, "filter_log", filter_log)
|
|
155
|
+
|
|
156
|
+
@_builtins.property
|
|
157
|
+
@pulumi.getter(name="errorLog")
|
|
158
|
+
def error_log(self) -> _builtins.float:
|
|
159
|
+
return pulumi.get(self, "error_log")
|
|
160
|
+
|
|
161
|
+
@_builtins.property
|
|
162
|
+
@pulumi.getter(name="filterLog")
|
|
163
|
+
def filter_log(self) -> _builtins.float:
|
|
164
|
+
return pulumi.get(self, "filter_log")
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
@pulumi.output_type
|
|
168
|
+
class LinkModuleConfiguration(dict):
|
|
169
|
+
@staticmethod
|
|
170
|
+
def __key_warning(key: str):
|
|
171
|
+
suggest = None
|
|
172
|
+
if key == "dependsOn":
|
|
173
|
+
suggest = "depends_on"
|
|
174
|
+
elif key == "moduleParameters":
|
|
175
|
+
suggest = "module_parameters"
|
|
176
|
+
|
|
177
|
+
if suggest:
|
|
178
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkModuleConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
179
|
+
|
|
180
|
+
def __getitem__(self, key: str) -> Any:
|
|
181
|
+
LinkModuleConfiguration.__key_warning(key)
|
|
182
|
+
return super().__getitem__(key)
|
|
183
|
+
|
|
184
|
+
def get(self, key: str, default = None) -> Any:
|
|
185
|
+
LinkModuleConfiguration.__key_warning(key)
|
|
186
|
+
return super().get(key, default)
|
|
187
|
+
|
|
188
|
+
def __init__(__self__, *,
|
|
189
|
+
name: _builtins.str,
|
|
190
|
+
depends_on: Optional[Sequence[_builtins.str]] = None,
|
|
191
|
+
module_parameters: Optional['outputs.LinkModuleParameters'] = None,
|
|
192
|
+
version: Optional[_builtins.str] = None):
|
|
193
|
+
pulumi.set(__self__, "name", name)
|
|
194
|
+
if depends_on is not None:
|
|
195
|
+
pulumi.set(__self__, "depends_on", depends_on)
|
|
196
|
+
if module_parameters is not None:
|
|
197
|
+
pulumi.set(__self__, "module_parameters", module_parameters)
|
|
198
|
+
if version is not None:
|
|
199
|
+
pulumi.set(__self__, "version", version)
|
|
200
|
+
|
|
201
|
+
@_builtins.property
|
|
202
|
+
@pulumi.getter
|
|
203
|
+
def name(self) -> _builtins.str:
|
|
204
|
+
return pulumi.get(self, "name")
|
|
205
|
+
|
|
206
|
+
@_builtins.property
|
|
207
|
+
@pulumi.getter(name="dependsOn")
|
|
208
|
+
def depends_on(self) -> Optional[Sequence[_builtins.str]]:
|
|
209
|
+
return pulumi.get(self, "depends_on")
|
|
210
|
+
|
|
211
|
+
@_builtins.property
|
|
212
|
+
@pulumi.getter(name="moduleParameters")
|
|
213
|
+
def module_parameters(self) -> Optional['outputs.LinkModuleParameters']:
|
|
214
|
+
return pulumi.get(self, "module_parameters")
|
|
215
|
+
|
|
216
|
+
@_builtins.property
|
|
217
|
+
@pulumi.getter
|
|
218
|
+
def version(self) -> Optional[_builtins.str]:
|
|
219
|
+
return pulumi.get(self, "version")
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
@pulumi.output_type
|
|
223
|
+
class LinkModuleParameters(dict):
|
|
224
|
+
def __init__(__self__):
|
|
225
|
+
pass
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
@pulumi.output_type
|
|
229
|
+
class LinkResponderErrorMaskingForHttpCode(dict):
|
|
230
|
+
@staticmethod
|
|
231
|
+
def __key_warning(key: str):
|
|
232
|
+
suggest = None
|
|
233
|
+
if key == "httpCode":
|
|
234
|
+
suggest = "http_code"
|
|
235
|
+
elif key == "loggingTypes":
|
|
236
|
+
suggest = "logging_types"
|
|
237
|
+
elif key == "responseLoggingPercentage":
|
|
238
|
+
suggest = "response_logging_percentage"
|
|
239
|
+
|
|
240
|
+
if suggest:
|
|
241
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkResponderErrorMaskingForHttpCode. Access the value via the '{suggest}' property getter instead.")
|
|
242
|
+
|
|
243
|
+
def __getitem__(self, key: str) -> Any:
|
|
244
|
+
LinkResponderErrorMaskingForHttpCode.__key_warning(key)
|
|
245
|
+
return super().__getitem__(key)
|
|
246
|
+
|
|
247
|
+
def get(self, key: str, default = None) -> Any:
|
|
248
|
+
LinkResponderErrorMaskingForHttpCode.__key_warning(key)
|
|
249
|
+
return super().get(key, default)
|
|
250
|
+
|
|
251
|
+
def __init__(__self__, *,
|
|
252
|
+
action: 'LinkResponderErrorMaskingForHttpCodeAction',
|
|
253
|
+
http_code: _builtins.str,
|
|
254
|
+
logging_types: Sequence['LinkResponderErrorMaskingLoggingType'],
|
|
255
|
+
response_logging_percentage: Optional[_builtins.float] = None):
|
|
256
|
+
pulumi.set(__self__, "action", action)
|
|
257
|
+
pulumi.set(__self__, "http_code", http_code)
|
|
258
|
+
pulumi.set(__self__, "logging_types", logging_types)
|
|
259
|
+
if response_logging_percentage is not None:
|
|
260
|
+
pulumi.set(__self__, "response_logging_percentage", response_logging_percentage)
|
|
261
|
+
|
|
262
|
+
@_builtins.property
|
|
263
|
+
@pulumi.getter
|
|
264
|
+
def action(self) -> 'LinkResponderErrorMaskingForHttpCodeAction':
|
|
265
|
+
return pulumi.get(self, "action")
|
|
266
|
+
|
|
267
|
+
@_builtins.property
|
|
268
|
+
@pulumi.getter(name="httpCode")
|
|
269
|
+
def http_code(self) -> _builtins.str:
|
|
270
|
+
return pulumi.get(self, "http_code")
|
|
271
|
+
|
|
272
|
+
@_builtins.property
|
|
273
|
+
@pulumi.getter(name="loggingTypes")
|
|
274
|
+
def logging_types(self) -> Sequence['LinkResponderErrorMaskingLoggingType']:
|
|
275
|
+
return pulumi.get(self, "logging_types")
|
|
276
|
+
|
|
277
|
+
@_builtins.property
|
|
278
|
+
@pulumi.getter(name="responseLoggingPercentage")
|
|
279
|
+
def response_logging_percentage(self) -> Optional[_builtins.float]:
|
|
280
|
+
return pulumi.get(self, "response_logging_percentage")
|
|
281
|
+
|
|
282
|
+
|
|
23
283
|
@pulumi.output_type
|
|
24
284
|
class ResponderGatewayManagedEndpointConfiguration(dict):
|
|
25
285
|
def __init__(__self__):
|