pulumi-aws-native 1.39.0a1762385303__py3-none-any.whl → 1.39.0a1762580459__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 +2 -0
- pulumi_aws_native/backup/get_logically_air_gapped_backup_vault.py +12 -1
- pulumi_aws_native/backup/logically_air_gapped_backup_vault.py +21 -0
- pulumi_aws_native/cassandra/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/_enums.py +98 -0
- pulumi_aws_native/cleanrooms/_inputs.py +138 -12
- pulumi_aws_native/cleanrooms/collaboration.py +30 -1
- pulumi_aws_native/cleanrooms/get_privacy_budget_template.py +1 -0
- pulumi_aws_native/cleanrooms/outputs.py +106 -9
- pulumi_aws_native/cloudfront/_inputs.py +7 -0
- pulumi_aws_native/cloudfront/get_vpc_origin.py +3 -0
- pulumi_aws_native/cloudfront/outputs.py +4 -0
- pulumi_aws_native/cloudfront/vpc_origin.py +3 -0
- pulumi_aws_native/connect/_enums.py +9 -0
- pulumi_aws_native/connect/_inputs.py +168 -0
- pulumi_aws_native/connect/get_security_profile.py +13 -1
- pulumi_aws_native/connect/outputs.py +172 -0
- pulumi_aws_native/connect/security_profile.py +22 -0
- pulumi_aws_native/datazone/_enums.py +10 -0
- pulumi_aws_native/datazone/_inputs.py +99 -4
- pulumi_aws_native/datazone/connection.py +37 -8
- pulumi_aws_native/datazone/outputs.py +101 -6
- pulumi_aws_native/dynamodb/_inputs.py +6 -5
- pulumi_aws_native/dynamodb/outputs.py +4 -3
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository_creation_template.py +4 -4
- pulumi_aws_native/ecs/_inputs.py +6 -6
- pulumi_aws_native/ecs/outputs.py +4 -4
- pulumi_aws_native/ecs/task_definition.py +8 -8
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +23 -3
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +16 -2
- pulumi_aws_native/gamelift/_enums.py +1 -0
- pulumi_aws_native/kinesis/get_stream.py +15 -1
- pulumi_aws_native/kinesis/stream.py +29 -0
- pulumi_aws_native/kms/_enums.py +1 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/location/_inputs.py +86 -0
- pulumi_aws_native/location/outputs.py +88 -0
- pulumi_aws_native/opensearchserverless/collection.py +11 -1
- pulumi_aws_native/opensearchserverless/get_collection.py +11 -12
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +62 -0
- pulumi_aws_native/quicksight/_inputs.py +2571 -260
- pulumi_aws_native/quicksight/data_set.py +42 -24
- pulumi_aws_native/quicksight/get_data_set.py +23 -10
- pulumi_aws_native/quicksight/outputs.py +2247 -94
- pulumi_aws_native/servicecatalog/__init__.py +2 -0
- pulumi_aws_native/servicecatalog/_enums.py +28 -0
- pulumi_aws_native/servicecatalog/_inputs.py +364 -0
- pulumi_aws_native/servicecatalog/cloud_formation_product.py +519 -0
- pulumi_aws_native/servicecatalog/get_cloud_formation_product.py +276 -0
- pulumi_aws_native/servicecatalog/outputs.py +311 -0
- pulumi_aws_native/ses/__init__.py +2 -0
- pulumi_aws_native/ses/_inputs.py +54 -0
- pulumi_aws_native/ses/get_multi_region_endpoint.py +78 -0
- pulumi_aws_native/ses/multi_region_endpoint.py +190 -0
- pulumi_aws_native/ses/outputs.py +49 -0
- pulumi_aws_native/wafv2/_inputs.py +7 -0
- pulumi_aws_native/wafv2/outputs.py +4 -0
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/RECORD +65 -61
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,276 @@
|
|
|
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
|
+
'GetCloudFormationProductResult',
|
|
22
|
+
'AwaitableGetCloudFormationProductResult',
|
|
23
|
+
'get_cloud_formation_product',
|
|
24
|
+
'get_cloud_formation_product_output',
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
@pulumi.output_type
|
|
28
|
+
class GetCloudFormationProductResult:
|
|
29
|
+
def __init__(__self__, description=None, distributor=None, id=None, name=None, owner=None, product_name=None, product_type=None, provisioning_artifact_ids=None, provisioning_artifact_names=None, provisioning_artifact_parameters=None, source_connection=None, support_description=None, support_email=None, support_url=None, tags=None):
|
|
30
|
+
if description and not isinstance(description, str):
|
|
31
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
32
|
+
pulumi.set(__self__, "description", description)
|
|
33
|
+
if distributor and not isinstance(distributor, str):
|
|
34
|
+
raise TypeError("Expected argument 'distributor' to be a str")
|
|
35
|
+
pulumi.set(__self__, "distributor", distributor)
|
|
36
|
+
if id and not isinstance(id, str):
|
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "id", id)
|
|
39
|
+
if name and not isinstance(name, str):
|
|
40
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
41
|
+
pulumi.set(__self__, "name", name)
|
|
42
|
+
if owner and not isinstance(owner, str):
|
|
43
|
+
raise TypeError("Expected argument 'owner' to be a str")
|
|
44
|
+
pulumi.set(__self__, "owner", owner)
|
|
45
|
+
if product_name and not isinstance(product_name, str):
|
|
46
|
+
raise TypeError("Expected argument 'product_name' to be a str")
|
|
47
|
+
pulumi.set(__self__, "product_name", product_name)
|
|
48
|
+
if product_type and not isinstance(product_type, str):
|
|
49
|
+
raise TypeError("Expected argument 'product_type' to be a str")
|
|
50
|
+
pulumi.set(__self__, "product_type", product_type)
|
|
51
|
+
if provisioning_artifact_ids and not isinstance(provisioning_artifact_ids, str):
|
|
52
|
+
raise TypeError("Expected argument 'provisioning_artifact_ids' to be a str")
|
|
53
|
+
pulumi.set(__self__, "provisioning_artifact_ids", provisioning_artifact_ids)
|
|
54
|
+
if provisioning_artifact_names and not isinstance(provisioning_artifact_names, str):
|
|
55
|
+
raise TypeError("Expected argument 'provisioning_artifact_names' to be a str")
|
|
56
|
+
pulumi.set(__self__, "provisioning_artifact_names", provisioning_artifact_names)
|
|
57
|
+
if provisioning_artifact_parameters and not isinstance(provisioning_artifact_parameters, list):
|
|
58
|
+
raise TypeError("Expected argument 'provisioning_artifact_parameters' to be a list")
|
|
59
|
+
pulumi.set(__self__, "provisioning_artifact_parameters", provisioning_artifact_parameters)
|
|
60
|
+
if source_connection and not isinstance(source_connection, dict):
|
|
61
|
+
raise TypeError("Expected argument 'source_connection' to be a dict")
|
|
62
|
+
pulumi.set(__self__, "source_connection", source_connection)
|
|
63
|
+
if support_description and not isinstance(support_description, str):
|
|
64
|
+
raise TypeError("Expected argument 'support_description' to be a str")
|
|
65
|
+
pulumi.set(__self__, "support_description", support_description)
|
|
66
|
+
if support_email and not isinstance(support_email, str):
|
|
67
|
+
raise TypeError("Expected argument 'support_email' to be a str")
|
|
68
|
+
pulumi.set(__self__, "support_email", support_email)
|
|
69
|
+
if support_url and not isinstance(support_url, str):
|
|
70
|
+
raise TypeError("Expected argument 'support_url' to be a str")
|
|
71
|
+
pulumi.set(__self__, "support_url", support_url)
|
|
72
|
+
if tags and not isinstance(tags, list):
|
|
73
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
74
|
+
pulumi.set(__self__, "tags", tags)
|
|
75
|
+
|
|
76
|
+
@_builtins.property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def description(self) -> Optional[_builtins.str]:
|
|
79
|
+
"""
|
|
80
|
+
The description of the product.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "description")
|
|
83
|
+
|
|
84
|
+
@_builtins.property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def distributor(self) -> Optional[_builtins.str]:
|
|
87
|
+
"""
|
|
88
|
+
The distributor of the product.
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "distributor")
|
|
91
|
+
|
|
92
|
+
@_builtins.property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def id(self) -> Optional[_builtins.str]:
|
|
95
|
+
"""
|
|
96
|
+
The ID of the product, such as prod-tsjbmal34qvek
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "id")
|
|
99
|
+
|
|
100
|
+
@_builtins.property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def name(self) -> Optional[_builtins.str]:
|
|
103
|
+
"""
|
|
104
|
+
The name of the product.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "name")
|
|
107
|
+
|
|
108
|
+
@_builtins.property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def owner(self) -> Optional[_builtins.str]:
|
|
111
|
+
"""
|
|
112
|
+
The owner of the product.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "owner")
|
|
115
|
+
|
|
116
|
+
@_builtins.property
|
|
117
|
+
@pulumi.getter(name="productName")
|
|
118
|
+
def product_name(self) -> Optional[_builtins.str]:
|
|
119
|
+
"""
|
|
120
|
+
The name of the product.
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "product_name")
|
|
123
|
+
|
|
124
|
+
@_builtins.property
|
|
125
|
+
@pulumi.getter(name="productType")
|
|
126
|
+
def product_type(self) -> Optional['CloudFormationProductProductType']:
|
|
127
|
+
"""
|
|
128
|
+
The type of product.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "product_type")
|
|
131
|
+
|
|
132
|
+
@_builtins.property
|
|
133
|
+
@pulumi.getter(name="provisioningArtifactIds")
|
|
134
|
+
def provisioning_artifact_ids(self) -> Optional[_builtins.str]:
|
|
135
|
+
"""
|
|
136
|
+
The IDs of the provisioning artifacts
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "provisioning_artifact_ids")
|
|
139
|
+
|
|
140
|
+
@_builtins.property
|
|
141
|
+
@pulumi.getter(name="provisioningArtifactNames")
|
|
142
|
+
def provisioning_artifact_names(self) -> Optional[_builtins.str]:
|
|
143
|
+
"""
|
|
144
|
+
The names of the provisioning artifacts
|
|
145
|
+
"""
|
|
146
|
+
return pulumi.get(self, "provisioning_artifact_names")
|
|
147
|
+
|
|
148
|
+
@_builtins.property
|
|
149
|
+
@pulumi.getter(name="provisioningArtifactParameters")
|
|
150
|
+
def provisioning_artifact_parameters(self) -> Optional[Sequence['outputs.CloudFormationProductProvisioningArtifactProperties']]:
|
|
151
|
+
"""
|
|
152
|
+
The configuration of the provisioning artifact (also known as a version).
|
|
153
|
+
"""
|
|
154
|
+
return pulumi.get(self, "provisioning_artifact_parameters")
|
|
155
|
+
|
|
156
|
+
@_builtins.property
|
|
157
|
+
@pulumi.getter(name="sourceConnection")
|
|
158
|
+
def source_connection(self) -> Optional['outputs.CloudFormationProductSourceConnection']:
|
|
159
|
+
"""
|
|
160
|
+
A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response.
|
|
161
|
+
"""
|
|
162
|
+
return pulumi.get(self, "source_connection")
|
|
163
|
+
|
|
164
|
+
@_builtins.property
|
|
165
|
+
@pulumi.getter(name="supportDescription")
|
|
166
|
+
def support_description(self) -> Optional[_builtins.str]:
|
|
167
|
+
"""
|
|
168
|
+
The support information about the product.
|
|
169
|
+
"""
|
|
170
|
+
return pulumi.get(self, "support_description")
|
|
171
|
+
|
|
172
|
+
@_builtins.property
|
|
173
|
+
@pulumi.getter(name="supportEmail")
|
|
174
|
+
def support_email(self) -> Optional[_builtins.str]:
|
|
175
|
+
"""
|
|
176
|
+
The contact email for product support.
|
|
177
|
+
"""
|
|
178
|
+
return pulumi.get(self, "support_email")
|
|
179
|
+
|
|
180
|
+
@_builtins.property
|
|
181
|
+
@pulumi.getter(name="supportUrl")
|
|
182
|
+
def support_url(self) -> Optional[_builtins.str]:
|
|
183
|
+
"""
|
|
184
|
+
The contact URL for product support.
|
|
185
|
+
"""
|
|
186
|
+
return pulumi.get(self, "support_url")
|
|
187
|
+
|
|
188
|
+
@_builtins.property
|
|
189
|
+
@pulumi.getter
|
|
190
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
191
|
+
"""
|
|
192
|
+
One or more tags.
|
|
193
|
+
"""
|
|
194
|
+
return pulumi.get(self, "tags")
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
class AwaitableGetCloudFormationProductResult(GetCloudFormationProductResult):
|
|
198
|
+
# pylint: disable=using-constant-test
|
|
199
|
+
def __await__(self):
|
|
200
|
+
if False:
|
|
201
|
+
yield self
|
|
202
|
+
return GetCloudFormationProductResult(
|
|
203
|
+
description=self.description,
|
|
204
|
+
distributor=self.distributor,
|
|
205
|
+
id=self.id,
|
|
206
|
+
name=self.name,
|
|
207
|
+
owner=self.owner,
|
|
208
|
+
product_name=self.product_name,
|
|
209
|
+
product_type=self.product_type,
|
|
210
|
+
provisioning_artifact_ids=self.provisioning_artifact_ids,
|
|
211
|
+
provisioning_artifact_names=self.provisioning_artifact_names,
|
|
212
|
+
provisioning_artifact_parameters=self.provisioning_artifact_parameters,
|
|
213
|
+
source_connection=self.source_connection,
|
|
214
|
+
support_description=self.support_description,
|
|
215
|
+
support_email=self.support_email,
|
|
216
|
+
support_url=self.support_url,
|
|
217
|
+
tags=self.tags)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
def get_cloud_formation_product(id: Optional[_builtins.str] = None,
|
|
221
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudFormationProductResult:
|
|
222
|
+
"""
|
|
223
|
+
Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
:param _builtins.str id: The ID of the product, such as prod-tsjbmal34qvek
|
|
227
|
+
"""
|
|
228
|
+
__args__ = dict()
|
|
229
|
+
__args__['id'] = id
|
|
230
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
231
|
+
__ret__ = pulumi.runtime.invoke('aws-native:servicecatalog:getCloudFormationProduct', __args__, opts=opts, typ=GetCloudFormationProductResult).value
|
|
232
|
+
|
|
233
|
+
return AwaitableGetCloudFormationProductResult(
|
|
234
|
+
description=pulumi.get(__ret__, 'description'),
|
|
235
|
+
distributor=pulumi.get(__ret__, 'distributor'),
|
|
236
|
+
id=pulumi.get(__ret__, 'id'),
|
|
237
|
+
name=pulumi.get(__ret__, 'name'),
|
|
238
|
+
owner=pulumi.get(__ret__, 'owner'),
|
|
239
|
+
product_name=pulumi.get(__ret__, 'product_name'),
|
|
240
|
+
product_type=pulumi.get(__ret__, 'product_type'),
|
|
241
|
+
provisioning_artifact_ids=pulumi.get(__ret__, 'provisioning_artifact_ids'),
|
|
242
|
+
provisioning_artifact_names=pulumi.get(__ret__, 'provisioning_artifact_names'),
|
|
243
|
+
provisioning_artifact_parameters=pulumi.get(__ret__, 'provisioning_artifact_parameters'),
|
|
244
|
+
source_connection=pulumi.get(__ret__, 'source_connection'),
|
|
245
|
+
support_description=pulumi.get(__ret__, 'support_description'),
|
|
246
|
+
support_email=pulumi.get(__ret__, 'support_email'),
|
|
247
|
+
support_url=pulumi.get(__ret__, 'support_url'),
|
|
248
|
+
tags=pulumi.get(__ret__, 'tags'))
|
|
249
|
+
def get_cloud_formation_product_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
250
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudFormationProductResult]:
|
|
251
|
+
"""
|
|
252
|
+
Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
:param _builtins.str id: The ID of the product, such as prod-tsjbmal34qvek
|
|
256
|
+
"""
|
|
257
|
+
__args__ = dict()
|
|
258
|
+
__args__['id'] = id
|
|
259
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
260
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:servicecatalog:getCloudFormationProduct', __args__, opts=opts, typ=GetCloudFormationProductResult)
|
|
261
|
+
return __ret__.apply(lambda __response__: GetCloudFormationProductResult(
|
|
262
|
+
description=pulumi.get(__response__, 'description'),
|
|
263
|
+
distributor=pulumi.get(__response__, 'distributor'),
|
|
264
|
+
id=pulumi.get(__response__, 'id'),
|
|
265
|
+
name=pulumi.get(__response__, 'name'),
|
|
266
|
+
owner=pulumi.get(__response__, 'owner'),
|
|
267
|
+
product_name=pulumi.get(__response__, 'product_name'),
|
|
268
|
+
product_type=pulumi.get(__response__, 'product_type'),
|
|
269
|
+
provisioning_artifact_ids=pulumi.get(__response__, 'provisioning_artifact_ids'),
|
|
270
|
+
provisioning_artifact_names=pulumi.get(__response__, 'provisioning_artifact_names'),
|
|
271
|
+
provisioning_artifact_parameters=pulumi.get(__response__, 'provisioning_artifact_parameters'),
|
|
272
|
+
source_connection=pulumi.get(__response__, 'source_connection'),
|
|
273
|
+
support_description=pulumi.get(__response__, 'support_description'),
|
|
274
|
+
support_email=pulumi.get(__response__, 'support_email'),
|
|
275
|
+
support_url=pulumi.get(__response__, 'support_url'),
|
|
276
|
+
tags=pulumi.get(__response__, 'tags')))
|
|
@@ -13,14 +13,325 @@ 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
|
+
'CloudFormationProductCodeStarParameters',
|
|
21
|
+
'CloudFormationProductProvisioningArtifactProperties',
|
|
22
|
+
'CloudFormationProductProvisioningArtifactPropertiesInfoProperties',
|
|
23
|
+
'CloudFormationProductSourceConnection',
|
|
24
|
+
'CloudFormationProductSourceConnectionConnectionParametersProperties',
|
|
19
25
|
'CloudFormationProvisionedProductProvisioningParameter',
|
|
20
26
|
'CloudFormationProvisionedProductProvisioningPreferences',
|
|
21
27
|
'ServiceActionDefinitionParameter',
|
|
22
28
|
]
|
|
23
29
|
|
|
30
|
+
@pulumi.output_type
|
|
31
|
+
class CloudFormationProductCodeStarParameters(dict):
|
|
32
|
+
@staticmethod
|
|
33
|
+
def __key_warning(key: str):
|
|
34
|
+
suggest = None
|
|
35
|
+
if key == "artifactPath":
|
|
36
|
+
suggest = "artifact_path"
|
|
37
|
+
elif key == "connectionArn":
|
|
38
|
+
suggest = "connection_arn"
|
|
39
|
+
|
|
40
|
+
if suggest:
|
|
41
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudFormationProductCodeStarParameters. Access the value via the '{suggest}' property getter instead.")
|
|
42
|
+
|
|
43
|
+
def __getitem__(self, key: str) -> Any:
|
|
44
|
+
CloudFormationProductCodeStarParameters.__key_warning(key)
|
|
45
|
+
return super().__getitem__(key)
|
|
46
|
+
|
|
47
|
+
def get(self, key: str, default = None) -> Any:
|
|
48
|
+
CloudFormationProductCodeStarParameters.__key_warning(key)
|
|
49
|
+
return super().get(key, default)
|
|
50
|
+
|
|
51
|
+
def __init__(__self__, *,
|
|
52
|
+
artifact_path: _builtins.str,
|
|
53
|
+
branch: _builtins.str,
|
|
54
|
+
connection_arn: _builtins.str,
|
|
55
|
+
repository: _builtins.str):
|
|
56
|
+
"""
|
|
57
|
+
:param _builtins.str artifact_path: The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
|
|
58
|
+
:param _builtins.str branch: The specific branch where the artifact resides.
|
|
59
|
+
:param _builtins.str connection_arn: The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
|
|
60
|
+
:param _builtins.str repository: The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
|
|
61
|
+
"""
|
|
62
|
+
pulumi.set(__self__, "artifact_path", artifact_path)
|
|
63
|
+
pulumi.set(__self__, "branch", branch)
|
|
64
|
+
pulumi.set(__self__, "connection_arn", connection_arn)
|
|
65
|
+
pulumi.set(__self__, "repository", repository)
|
|
66
|
+
|
|
67
|
+
@_builtins.property
|
|
68
|
+
@pulumi.getter(name="artifactPath")
|
|
69
|
+
def artifact_path(self) -> _builtins.str:
|
|
70
|
+
"""
|
|
71
|
+
The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "artifact_path")
|
|
74
|
+
|
|
75
|
+
@_builtins.property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def branch(self) -> _builtins.str:
|
|
78
|
+
"""
|
|
79
|
+
The specific branch where the artifact resides.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "branch")
|
|
82
|
+
|
|
83
|
+
@_builtins.property
|
|
84
|
+
@pulumi.getter(name="connectionArn")
|
|
85
|
+
def connection_arn(self) -> _builtins.str:
|
|
86
|
+
"""
|
|
87
|
+
The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "connection_arn")
|
|
90
|
+
|
|
91
|
+
@_builtins.property
|
|
92
|
+
@pulumi.getter
|
|
93
|
+
def repository(self) -> _builtins.str:
|
|
94
|
+
"""
|
|
95
|
+
The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "repository")
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
@pulumi.output_type
|
|
101
|
+
class CloudFormationProductProvisioningArtifactProperties(dict):
|
|
102
|
+
@staticmethod
|
|
103
|
+
def __key_warning(key: str):
|
|
104
|
+
suggest = None
|
|
105
|
+
if key == "disableTemplateValidation":
|
|
106
|
+
suggest = "disable_template_validation"
|
|
107
|
+
|
|
108
|
+
if suggest:
|
|
109
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudFormationProductProvisioningArtifactProperties. Access the value via the '{suggest}' property getter instead.")
|
|
110
|
+
|
|
111
|
+
def __getitem__(self, key: str) -> Any:
|
|
112
|
+
CloudFormationProductProvisioningArtifactProperties.__key_warning(key)
|
|
113
|
+
return super().__getitem__(key)
|
|
114
|
+
|
|
115
|
+
def get(self, key: str, default = None) -> Any:
|
|
116
|
+
CloudFormationProductProvisioningArtifactProperties.__key_warning(key)
|
|
117
|
+
return super().get(key, default)
|
|
118
|
+
|
|
119
|
+
def __init__(__self__, *,
|
|
120
|
+
info: 'outputs.CloudFormationProductProvisioningArtifactPropertiesInfoProperties',
|
|
121
|
+
description: Optional[_builtins.str] = None,
|
|
122
|
+
disable_template_validation: Optional[_builtins.bool] = None,
|
|
123
|
+
name: Optional[_builtins.str] = None,
|
|
124
|
+
type: Optional['CloudFormationProductProvisioningArtifactPropertiesType'] = None):
|
|
125
|
+
"""
|
|
126
|
+
:param 'CloudFormationProductProvisioningArtifactPropertiesInfoProperties' info: Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
127
|
+
|
|
128
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
129
|
+
|
|
130
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
|
131
|
+
:param _builtins.str description: The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
|
|
132
|
+
:param _builtins.bool disable_template_validation: If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
|
|
133
|
+
:param _builtins.str name: The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
|
|
134
|
+
:param 'CloudFormationProductProvisioningArtifactPropertiesType' type: The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
|
|
135
|
+
"""
|
|
136
|
+
pulumi.set(__self__, "info", info)
|
|
137
|
+
if description is not None:
|
|
138
|
+
pulumi.set(__self__, "description", description)
|
|
139
|
+
if disable_template_validation is not None:
|
|
140
|
+
pulumi.set(__self__, "disable_template_validation", disable_template_validation)
|
|
141
|
+
if name is not None:
|
|
142
|
+
pulumi.set(__self__, "name", name)
|
|
143
|
+
if type is not None:
|
|
144
|
+
pulumi.set(__self__, "type", type)
|
|
145
|
+
|
|
146
|
+
@_builtins.property
|
|
147
|
+
@pulumi.getter
|
|
148
|
+
def info(self) -> 'outputs.CloudFormationProductProvisioningArtifactPropertiesInfoProperties':
|
|
149
|
+
"""
|
|
150
|
+
Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
151
|
+
|
|
152
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
153
|
+
|
|
154
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "info")
|
|
157
|
+
|
|
158
|
+
@_builtins.property
|
|
159
|
+
@pulumi.getter
|
|
160
|
+
def description(self) -> Optional[_builtins.str]:
|
|
161
|
+
"""
|
|
162
|
+
The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "description")
|
|
165
|
+
|
|
166
|
+
@_builtins.property
|
|
167
|
+
@pulumi.getter(name="disableTemplateValidation")
|
|
168
|
+
def disable_template_validation(self) -> Optional[_builtins.bool]:
|
|
169
|
+
"""
|
|
170
|
+
If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
|
|
171
|
+
"""
|
|
172
|
+
return pulumi.get(self, "disable_template_validation")
|
|
173
|
+
|
|
174
|
+
@_builtins.property
|
|
175
|
+
@pulumi.getter
|
|
176
|
+
def name(self) -> Optional[_builtins.str]:
|
|
177
|
+
"""
|
|
178
|
+
The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
|
|
179
|
+
"""
|
|
180
|
+
return pulumi.get(self, "name")
|
|
181
|
+
|
|
182
|
+
@_builtins.property
|
|
183
|
+
@pulumi.getter
|
|
184
|
+
def type(self) -> Optional['CloudFormationProductProvisioningArtifactPropertiesType']:
|
|
185
|
+
"""
|
|
186
|
+
The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "type")
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
@pulumi.output_type
|
|
192
|
+
class CloudFormationProductProvisioningArtifactPropertiesInfoProperties(dict):
|
|
193
|
+
"""
|
|
194
|
+
Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
195
|
+
|
|
196
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
197
|
+
|
|
198
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
|
199
|
+
"""
|
|
200
|
+
@staticmethod
|
|
201
|
+
def __key_warning(key: str):
|
|
202
|
+
suggest = None
|
|
203
|
+
if key == "importFromPhysicalId":
|
|
204
|
+
suggest = "import_from_physical_id"
|
|
205
|
+
elif key == "loadTemplateFromUrl":
|
|
206
|
+
suggest = "load_template_from_url"
|
|
207
|
+
|
|
208
|
+
if suggest:
|
|
209
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudFormationProductProvisioningArtifactPropertiesInfoProperties. Access the value via the '{suggest}' property getter instead.")
|
|
210
|
+
|
|
211
|
+
def __getitem__(self, key: str) -> Any:
|
|
212
|
+
CloudFormationProductProvisioningArtifactPropertiesInfoProperties.__key_warning(key)
|
|
213
|
+
return super().__getitem__(key)
|
|
214
|
+
|
|
215
|
+
def get(self, key: str, default = None) -> Any:
|
|
216
|
+
CloudFormationProductProvisioningArtifactPropertiesInfoProperties.__key_warning(key)
|
|
217
|
+
return super().get(key, default)
|
|
218
|
+
|
|
219
|
+
def __init__(__self__, *,
|
|
220
|
+
import_from_physical_id: Optional[_builtins.str] = None,
|
|
221
|
+
load_template_from_url: Optional[_builtins.str] = None):
|
|
222
|
+
"""
|
|
223
|
+
Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
224
|
+
|
|
225
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
226
|
+
|
|
227
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
|
228
|
+
:param _builtins.str import_from_physical_id: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
|
|
229
|
+
:param _builtins.str load_template_from_url: The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
|
|
230
|
+
"""
|
|
231
|
+
if import_from_physical_id is not None:
|
|
232
|
+
pulumi.set(__self__, "import_from_physical_id", import_from_physical_id)
|
|
233
|
+
if load_template_from_url is not None:
|
|
234
|
+
pulumi.set(__self__, "load_template_from_url", load_template_from_url)
|
|
235
|
+
|
|
236
|
+
@_builtins.property
|
|
237
|
+
@pulumi.getter(name="importFromPhysicalId")
|
|
238
|
+
def import_from_physical_id(self) -> Optional[_builtins.str]:
|
|
239
|
+
"""
|
|
240
|
+
The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
|
|
241
|
+
"""
|
|
242
|
+
return pulumi.get(self, "import_from_physical_id")
|
|
243
|
+
|
|
244
|
+
@_builtins.property
|
|
245
|
+
@pulumi.getter(name="loadTemplateFromUrl")
|
|
246
|
+
def load_template_from_url(self) -> Optional[_builtins.str]:
|
|
247
|
+
"""
|
|
248
|
+
The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
|
|
249
|
+
"""
|
|
250
|
+
return pulumi.get(self, "load_template_from_url")
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
@pulumi.output_type
|
|
254
|
+
class CloudFormationProductSourceConnection(dict):
|
|
255
|
+
@staticmethod
|
|
256
|
+
def __key_warning(key: str):
|
|
257
|
+
suggest = None
|
|
258
|
+
if key == "connectionParameters":
|
|
259
|
+
suggest = "connection_parameters"
|
|
260
|
+
|
|
261
|
+
if suggest:
|
|
262
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudFormationProductSourceConnection. Access the value via the '{suggest}' property getter instead.")
|
|
263
|
+
|
|
264
|
+
def __getitem__(self, key: str) -> Any:
|
|
265
|
+
CloudFormationProductSourceConnection.__key_warning(key)
|
|
266
|
+
return super().__getitem__(key)
|
|
267
|
+
|
|
268
|
+
def get(self, key: str, default = None) -> Any:
|
|
269
|
+
CloudFormationProductSourceConnection.__key_warning(key)
|
|
270
|
+
return super().get(key, default)
|
|
271
|
+
|
|
272
|
+
def __init__(__self__, *,
|
|
273
|
+
connection_parameters: 'outputs.CloudFormationProductSourceConnectionConnectionParametersProperties',
|
|
274
|
+
type: _builtins.str):
|
|
275
|
+
"""
|
|
276
|
+
:param 'CloudFormationProductSourceConnectionConnectionParametersProperties' connection_parameters: The connection details based on the connection Type.
|
|
277
|
+
:param _builtins.str type: The only supported SourceConnection type is Codestar.
|
|
278
|
+
"""
|
|
279
|
+
pulumi.set(__self__, "connection_parameters", connection_parameters)
|
|
280
|
+
pulumi.set(__self__, "type", type)
|
|
281
|
+
|
|
282
|
+
@_builtins.property
|
|
283
|
+
@pulumi.getter(name="connectionParameters")
|
|
284
|
+
def connection_parameters(self) -> 'outputs.CloudFormationProductSourceConnectionConnectionParametersProperties':
|
|
285
|
+
"""
|
|
286
|
+
The connection details based on the connection Type.
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "connection_parameters")
|
|
289
|
+
|
|
290
|
+
@_builtins.property
|
|
291
|
+
@pulumi.getter
|
|
292
|
+
def type(self) -> _builtins.str:
|
|
293
|
+
"""
|
|
294
|
+
The only supported SourceConnection type is Codestar.
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "type")
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
@pulumi.output_type
|
|
300
|
+
class CloudFormationProductSourceConnectionConnectionParametersProperties(dict):
|
|
301
|
+
"""
|
|
302
|
+
The connection details based on the connection Type.
|
|
303
|
+
"""
|
|
304
|
+
@staticmethod
|
|
305
|
+
def __key_warning(key: str):
|
|
306
|
+
suggest = None
|
|
307
|
+
if key == "codeStar":
|
|
308
|
+
suggest = "code_star"
|
|
309
|
+
|
|
310
|
+
if suggest:
|
|
311
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudFormationProductSourceConnectionConnectionParametersProperties. Access the value via the '{suggest}' property getter instead.")
|
|
312
|
+
|
|
313
|
+
def __getitem__(self, key: str) -> Any:
|
|
314
|
+
CloudFormationProductSourceConnectionConnectionParametersProperties.__key_warning(key)
|
|
315
|
+
return super().__getitem__(key)
|
|
316
|
+
|
|
317
|
+
def get(self, key: str, default = None) -> Any:
|
|
318
|
+
CloudFormationProductSourceConnectionConnectionParametersProperties.__key_warning(key)
|
|
319
|
+
return super().get(key, default)
|
|
320
|
+
|
|
321
|
+
def __init__(__self__, *,
|
|
322
|
+
code_star: Optional['outputs.CloudFormationProductCodeStarParameters'] = None):
|
|
323
|
+
"""
|
|
324
|
+
The connection details based on the connection Type.
|
|
325
|
+
"""
|
|
326
|
+
if code_star is not None:
|
|
327
|
+
pulumi.set(__self__, "code_star", code_star)
|
|
328
|
+
|
|
329
|
+
@_builtins.property
|
|
330
|
+
@pulumi.getter(name="codeStar")
|
|
331
|
+
def code_star(self) -> Optional['outputs.CloudFormationProductCodeStarParameters']:
|
|
332
|
+
return pulumi.get(self, "code_star")
|
|
333
|
+
|
|
334
|
+
|
|
24
335
|
@pulumi.output_type
|
|
25
336
|
class CloudFormationProvisionedProductProvisioningParameter(dict):
|
|
26
337
|
def __init__(__self__, *,
|
|
@@ -25,6 +25,7 @@ from .get_mail_manager_ingress_point import *
|
|
|
25
25
|
from .get_mail_manager_relay import *
|
|
26
26
|
from .get_mail_manager_rule_set import *
|
|
27
27
|
from .get_mail_manager_traffic_policy import *
|
|
28
|
+
from .get_multi_region_endpoint import *
|
|
28
29
|
from .get_template import *
|
|
29
30
|
from .get_vdm_attributes import *
|
|
30
31
|
from .mail_manager_addon_instance import *
|
|
@@ -35,6 +36,7 @@ from .mail_manager_ingress_point import *
|
|
|
35
36
|
from .mail_manager_relay import *
|
|
36
37
|
from .mail_manager_rule_set import *
|
|
37
38
|
from .mail_manager_traffic_policy import *
|
|
39
|
+
from .multi_region_endpoint import *
|
|
38
40
|
from .template import *
|
|
39
41
|
from .vdm_attributes import *
|
|
40
42
|
from ._inputs import *
|