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,519 @@
|
|
|
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__ = ['CloudFormationProductArgs', 'CloudFormationProduct']
|
|
23
|
+
|
|
24
|
+
@pulumi.input_type
|
|
25
|
+
class CloudFormationProductArgs:
|
|
26
|
+
def __init__(__self__, *,
|
|
27
|
+
owner: pulumi.Input[_builtins.str],
|
|
28
|
+
accept_language: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
|
+
distributor: Optional[pulumi.Input[_builtins.str]] = None,
|
|
31
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
|
+
product_type: Optional[pulumi.Input['CloudFormationProductProductType']] = None,
|
|
33
|
+
provisioning_artifact_parameters: Optional[pulumi.Input[Sequence[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesArgs']]]] = None,
|
|
34
|
+
replace_provisioning_artifacts: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
35
|
+
source_connection: Optional[pulumi.Input['CloudFormationProductSourceConnectionArgs']] = None,
|
|
36
|
+
support_description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
37
|
+
support_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
38
|
+
support_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
39
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
|
|
40
|
+
"""
|
|
41
|
+
The set of arguments for constructing a CloudFormationProduct resource.
|
|
42
|
+
:param pulumi.Input[_builtins.str] owner: The owner of the product.
|
|
43
|
+
:param pulumi.Input[_builtins.str] accept_language: The language code.
|
|
44
|
+
:param pulumi.Input[_builtins.str] description: The description of the product.
|
|
45
|
+
:param pulumi.Input[_builtins.str] distributor: The distributor of the product.
|
|
46
|
+
:param pulumi.Input[_builtins.str] name: The name of the product.
|
|
47
|
+
:param pulumi.Input['CloudFormationProductProductType'] product_type: The type of product.
|
|
48
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesArgs']]] provisioning_artifact_parameters: The configuration of the provisioning artifact (also known as a version).
|
|
49
|
+
:param pulumi.Input[_builtins.bool] replace_provisioning_artifacts: This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name.
|
|
50
|
+
:param pulumi.Input['CloudFormationProductSourceConnectionArgs'] source_connection: 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.
|
|
51
|
+
:param pulumi.Input[_builtins.str] support_description: The support information about the product.
|
|
52
|
+
:param pulumi.Input[_builtins.str] support_email: The contact email for product support.
|
|
53
|
+
:param pulumi.Input[_builtins.str] support_url: The contact URL for product support.
|
|
54
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: One or more tags.
|
|
55
|
+
"""
|
|
56
|
+
pulumi.set(__self__, "owner", owner)
|
|
57
|
+
if accept_language is not None:
|
|
58
|
+
pulumi.set(__self__, "accept_language", accept_language)
|
|
59
|
+
if description is not None:
|
|
60
|
+
pulumi.set(__self__, "description", description)
|
|
61
|
+
if distributor is not None:
|
|
62
|
+
pulumi.set(__self__, "distributor", distributor)
|
|
63
|
+
if name is not None:
|
|
64
|
+
pulumi.set(__self__, "name", name)
|
|
65
|
+
if product_type is not None:
|
|
66
|
+
pulumi.set(__self__, "product_type", product_type)
|
|
67
|
+
if provisioning_artifact_parameters is not None:
|
|
68
|
+
pulumi.set(__self__, "provisioning_artifact_parameters", provisioning_artifact_parameters)
|
|
69
|
+
if replace_provisioning_artifacts is not None:
|
|
70
|
+
pulumi.set(__self__, "replace_provisioning_artifacts", replace_provisioning_artifacts)
|
|
71
|
+
if source_connection is not None:
|
|
72
|
+
pulumi.set(__self__, "source_connection", source_connection)
|
|
73
|
+
if support_description is not None:
|
|
74
|
+
pulumi.set(__self__, "support_description", support_description)
|
|
75
|
+
if support_email is not None:
|
|
76
|
+
pulumi.set(__self__, "support_email", support_email)
|
|
77
|
+
if support_url is not None:
|
|
78
|
+
pulumi.set(__self__, "support_url", support_url)
|
|
79
|
+
if tags is not None:
|
|
80
|
+
pulumi.set(__self__, "tags", tags)
|
|
81
|
+
|
|
82
|
+
@_builtins.property
|
|
83
|
+
@pulumi.getter
|
|
84
|
+
def owner(self) -> pulumi.Input[_builtins.str]:
|
|
85
|
+
"""
|
|
86
|
+
The owner of the product.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "owner")
|
|
89
|
+
|
|
90
|
+
@owner.setter
|
|
91
|
+
def owner(self, value: pulumi.Input[_builtins.str]):
|
|
92
|
+
pulumi.set(self, "owner", value)
|
|
93
|
+
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter(name="acceptLanguage")
|
|
96
|
+
def accept_language(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97
|
+
"""
|
|
98
|
+
The language code.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "accept_language")
|
|
101
|
+
|
|
102
|
+
@accept_language.setter
|
|
103
|
+
def accept_language(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
104
|
+
pulumi.set(self, "accept_language", value)
|
|
105
|
+
|
|
106
|
+
@_builtins.property
|
|
107
|
+
@pulumi.getter
|
|
108
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
109
|
+
"""
|
|
110
|
+
The description of the product.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "description")
|
|
113
|
+
|
|
114
|
+
@description.setter
|
|
115
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
116
|
+
pulumi.set(self, "description", value)
|
|
117
|
+
|
|
118
|
+
@_builtins.property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def distributor(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
121
|
+
"""
|
|
122
|
+
The distributor of the product.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "distributor")
|
|
125
|
+
|
|
126
|
+
@distributor.setter
|
|
127
|
+
def distributor(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
128
|
+
pulumi.set(self, "distributor", value)
|
|
129
|
+
|
|
130
|
+
@_builtins.property
|
|
131
|
+
@pulumi.getter
|
|
132
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
133
|
+
"""
|
|
134
|
+
The name of the product.
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "name")
|
|
137
|
+
|
|
138
|
+
@name.setter
|
|
139
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
140
|
+
pulumi.set(self, "name", value)
|
|
141
|
+
|
|
142
|
+
@_builtins.property
|
|
143
|
+
@pulumi.getter(name="productType")
|
|
144
|
+
def product_type(self) -> Optional[pulumi.Input['CloudFormationProductProductType']]:
|
|
145
|
+
"""
|
|
146
|
+
The type of product.
|
|
147
|
+
"""
|
|
148
|
+
return pulumi.get(self, "product_type")
|
|
149
|
+
|
|
150
|
+
@product_type.setter
|
|
151
|
+
def product_type(self, value: Optional[pulumi.Input['CloudFormationProductProductType']]):
|
|
152
|
+
pulumi.set(self, "product_type", value)
|
|
153
|
+
|
|
154
|
+
@_builtins.property
|
|
155
|
+
@pulumi.getter(name="provisioningArtifactParameters")
|
|
156
|
+
def provisioning_artifact_parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesArgs']]]]:
|
|
157
|
+
"""
|
|
158
|
+
The configuration of the provisioning artifact (also known as a version).
|
|
159
|
+
"""
|
|
160
|
+
return pulumi.get(self, "provisioning_artifact_parameters")
|
|
161
|
+
|
|
162
|
+
@provisioning_artifact_parameters.setter
|
|
163
|
+
def provisioning_artifact_parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesArgs']]]]):
|
|
164
|
+
pulumi.set(self, "provisioning_artifact_parameters", value)
|
|
165
|
+
|
|
166
|
+
@_builtins.property
|
|
167
|
+
@pulumi.getter(name="replaceProvisioningArtifacts")
|
|
168
|
+
def replace_provisioning_artifacts(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
169
|
+
"""
|
|
170
|
+
This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name.
|
|
171
|
+
"""
|
|
172
|
+
return pulumi.get(self, "replace_provisioning_artifacts")
|
|
173
|
+
|
|
174
|
+
@replace_provisioning_artifacts.setter
|
|
175
|
+
def replace_provisioning_artifacts(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
176
|
+
pulumi.set(self, "replace_provisioning_artifacts", value)
|
|
177
|
+
|
|
178
|
+
@_builtins.property
|
|
179
|
+
@pulumi.getter(name="sourceConnection")
|
|
180
|
+
def source_connection(self) -> Optional[pulumi.Input['CloudFormationProductSourceConnectionArgs']]:
|
|
181
|
+
"""
|
|
182
|
+
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.
|
|
183
|
+
"""
|
|
184
|
+
return pulumi.get(self, "source_connection")
|
|
185
|
+
|
|
186
|
+
@source_connection.setter
|
|
187
|
+
def source_connection(self, value: Optional[pulumi.Input['CloudFormationProductSourceConnectionArgs']]):
|
|
188
|
+
pulumi.set(self, "source_connection", value)
|
|
189
|
+
|
|
190
|
+
@_builtins.property
|
|
191
|
+
@pulumi.getter(name="supportDescription")
|
|
192
|
+
def support_description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
193
|
+
"""
|
|
194
|
+
The support information about the product.
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "support_description")
|
|
197
|
+
|
|
198
|
+
@support_description.setter
|
|
199
|
+
def support_description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
200
|
+
pulumi.set(self, "support_description", value)
|
|
201
|
+
|
|
202
|
+
@_builtins.property
|
|
203
|
+
@pulumi.getter(name="supportEmail")
|
|
204
|
+
def support_email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
205
|
+
"""
|
|
206
|
+
The contact email for product support.
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "support_email")
|
|
209
|
+
|
|
210
|
+
@support_email.setter
|
|
211
|
+
def support_email(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
212
|
+
pulumi.set(self, "support_email", value)
|
|
213
|
+
|
|
214
|
+
@_builtins.property
|
|
215
|
+
@pulumi.getter(name="supportUrl")
|
|
216
|
+
def support_url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
217
|
+
"""
|
|
218
|
+
The contact URL for product support.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "support_url")
|
|
221
|
+
|
|
222
|
+
@support_url.setter
|
|
223
|
+
def support_url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
224
|
+
pulumi.set(self, "support_url", value)
|
|
225
|
+
|
|
226
|
+
@_builtins.property
|
|
227
|
+
@pulumi.getter
|
|
228
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
229
|
+
"""
|
|
230
|
+
One or more tags.
|
|
231
|
+
"""
|
|
232
|
+
return pulumi.get(self, "tags")
|
|
233
|
+
|
|
234
|
+
@tags.setter
|
|
235
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
|
|
236
|
+
pulumi.set(self, "tags", value)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
@pulumi.type_token("aws-native:servicecatalog:CloudFormationProduct")
|
|
240
|
+
class CloudFormationProduct(pulumi.CustomResource):
|
|
241
|
+
@overload
|
|
242
|
+
def __init__(__self__,
|
|
243
|
+
resource_name: str,
|
|
244
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
245
|
+
accept_language: Optional[pulumi.Input[_builtins.str]] = None,
|
|
246
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
247
|
+
distributor: Optional[pulumi.Input[_builtins.str]] = None,
|
|
248
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
249
|
+
owner: Optional[pulumi.Input[_builtins.str]] = None,
|
|
250
|
+
product_type: Optional[pulumi.Input['CloudFormationProductProductType']] = None,
|
|
251
|
+
provisioning_artifact_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudFormationProductProvisioningArtifactPropertiesArgs', 'CloudFormationProductProvisioningArtifactPropertiesArgsDict']]]]] = None,
|
|
252
|
+
replace_provisioning_artifacts: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
253
|
+
source_connection: Optional[pulumi.Input[Union['CloudFormationProductSourceConnectionArgs', 'CloudFormationProductSourceConnectionArgsDict']]] = None,
|
|
254
|
+
support_description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
255
|
+
support_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
256
|
+
support_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
257
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
258
|
+
__props__=None):
|
|
259
|
+
"""
|
|
260
|
+
Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
261
|
+
|
|
262
|
+
:param str resource_name: The name of the resource.
|
|
263
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
264
|
+
:param pulumi.Input[_builtins.str] accept_language: The language code.
|
|
265
|
+
:param pulumi.Input[_builtins.str] description: The description of the product.
|
|
266
|
+
:param pulumi.Input[_builtins.str] distributor: The distributor of the product.
|
|
267
|
+
:param pulumi.Input[_builtins.str] name: The name of the product.
|
|
268
|
+
:param pulumi.Input[_builtins.str] owner: The owner of the product.
|
|
269
|
+
:param pulumi.Input['CloudFormationProductProductType'] product_type: The type of product.
|
|
270
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CloudFormationProductProvisioningArtifactPropertiesArgs', 'CloudFormationProductProvisioningArtifactPropertiesArgsDict']]]] provisioning_artifact_parameters: The configuration of the provisioning artifact (also known as a version).
|
|
271
|
+
:param pulumi.Input[_builtins.bool] replace_provisioning_artifacts: This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name.
|
|
272
|
+
:param pulumi.Input[Union['CloudFormationProductSourceConnectionArgs', 'CloudFormationProductSourceConnectionArgsDict']] source_connection: 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.
|
|
273
|
+
:param pulumi.Input[_builtins.str] support_description: The support information about the product.
|
|
274
|
+
:param pulumi.Input[_builtins.str] support_email: The contact email for product support.
|
|
275
|
+
:param pulumi.Input[_builtins.str] support_url: The contact URL for product support.
|
|
276
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: One or more tags.
|
|
277
|
+
"""
|
|
278
|
+
...
|
|
279
|
+
@overload
|
|
280
|
+
def __init__(__self__,
|
|
281
|
+
resource_name: str,
|
|
282
|
+
args: CloudFormationProductArgs,
|
|
283
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
284
|
+
"""
|
|
285
|
+
Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
286
|
+
|
|
287
|
+
:param str resource_name: The name of the resource.
|
|
288
|
+
:param CloudFormationProductArgs args: The arguments to use to populate this resource's properties.
|
|
289
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
290
|
+
"""
|
|
291
|
+
...
|
|
292
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
293
|
+
resource_args, opts = _utilities.get_resource_args_opts(CloudFormationProductArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
294
|
+
if resource_args is not None:
|
|
295
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
296
|
+
else:
|
|
297
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
298
|
+
|
|
299
|
+
def _internal_init(__self__,
|
|
300
|
+
resource_name: str,
|
|
301
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
302
|
+
accept_language: Optional[pulumi.Input[_builtins.str]] = None,
|
|
303
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
304
|
+
distributor: Optional[pulumi.Input[_builtins.str]] = None,
|
|
305
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
306
|
+
owner: Optional[pulumi.Input[_builtins.str]] = None,
|
|
307
|
+
product_type: Optional[pulumi.Input['CloudFormationProductProductType']] = None,
|
|
308
|
+
provisioning_artifact_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudFormationProductProvisioningArtifactPropertiesArgs', 'CloudFormationProductProvisioningArtifactPropertiesArgsDict']]]]] = None,
|
|
309
|
+
replace_provisioning_artifacts: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
310
|
+
source_connection: Optional[pulumi.Input[Union['CloudFormationProductSourceConnectionArgs', 'CloudFormationProductSourceConnectionArgsDict']]] = None,
|
|
311
|
+
support_description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
312
|
+
support_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
313
|
+
support_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
314
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
315
|
+
__props__=None):
|
|
316
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
317
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
318
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
319
|
+
if opts.id is None:
|
|
320
|
+
if __props__ is not None:
|
|
321
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
322
|
+
__props__ = CloudFormationProductArgs.__new__(CloudFormationProductArgs)
|
|
323
|
+
|
|
324
|
+
__props__.__dict__["accept_language"] = accept_language
|
|
325
|
+
__props__.__dict__["description"] = description
|
|
326
|
+
__props__.__dict__["distributor"] = distributor
|
|
327
|
+
__props__.__dict__["name"] = name
|
|
328
|
+
if owner is None and not opts.urn:
|
|
329
|
+
raise TypeError("Missing required property 'owner'")
|
|
330
|
+
__props__.__dict__["owner"] = owner
|
|
331
|
+
__props__.__dict__["product_type"] = product_type
|
|
332
|
+
__props__.__dict__["provisioning_artifact_parameters"] = provisioning_artifact_parameters
|
|
333
|
+
__props__.__dict__["replace_provisioning_artifacts"] = replace_provisioning_artifacts
|
|
334
|
+
__props__.__dict__["source_connection"] = source_connection
|
|
335
|
+
__props__.__dict__["support_description"] = support_description
|
|
336
|
+
__props__.__dict__["support_email"] = support_email
|
|
337
|
+
__props__.__dict__["support_url"] = support_url
|
|
338
|
+
__props__.__dict__["tags"] = tags
|
|
339
|
+
__props__.__dict__["aws_id"] = None
|
|
340
|
+
__props__.__dict__["product_name"] = None
|
|
341
|
+
__props__.__dict__["provisioning_artifact_ids"] = None
|
|
342
|
+
__props__.__dict__["provisioning_artifact_names"] = None
|
|
343
|
+
super(CloudFormationProduct, __self__).__init__(
|
|
344
|
+
'aws-native:servicecatalog:CloudFormationProduct',
|
|
345
|
+
resource_name,
|
|
346
|
+
__props__,
|
|
347
|
+
opts)
|
|
348
|
+
|
|
349
|
+
@staticmethod
|
|
350
|
+
def get(resource_name: str,
|
|
351
|
+
id: pulumi.Input[str],
|
|
352
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'CloudFormationProduct':
|
|
353
|
+
"""
|
|
354
|
+
Get an existing CloudFormationProduct resource's state with the given name, id, and optional extra
|
|
355
|
+
properties used to qualify the lookup.
|
|
356
|
+
|
|
357
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
358
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
359
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
360
|
+
"""
|
|
361
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
362
|
+
|
|
363
|
+
__props__ = CloudFormationProductArgs.__new__(CloudFormationProductArgs)
|
|
364
|
+
|
|
365
|
+
__props__.__dict__["accept_language"] = None
|
|
366
|
+
__props__.__dict__["aws_id"] = None
|
|
367
|
+
__props__.__dict__["description"] = None
|
|
368
|
+
__props__.__dict__["distributor"] = None
|
|
369
|
+
__props__.__dict__["name"] = None
|
|
370
|
+
__props__.__dict__["owner"] = None
|
|
371
|
+
__props__.__dict__["product_name"] = None
|
|
372
|
+
__props__.__dict__["product_type"] = None
|
|
373
|
+
__props__.__dict__["provisioning_artifact_ids"] = None
|
|
374
|
+
__props__.__dict__["provisioning_artifact_names"] = None
|
|
375
|
+
__props__.__dict__["provisioning_artifact_parameters"] = None
|
|
376
|
+
__props__.__dict__["replace_provisioning_artifacts"] = None
|
|
377
|
+
__props__.__dict__["source_connection"] = None
|
|
378
|
+
__props__.__dict__["support_description"] = None
|
|
379
|
+
__props__.__dict__["support_email"] = None
|
|
380
|
+
__props__.__dict__["support_url"] = None
|
|
381
|
+
__props__.__dict__["tags"] = None
|
|
382
|
+
return CloudFormationProduct(resource_name, opts=opts, __props__=__props__)
|
|
383
|
+
|
|
384
|
+
@_builtins.property
|
|
385
|
+
@pulumi.getter(name="acceptLanguage")
|
|
386
|
+
def accept_language(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
387
|
+
"""
|
|
388
|
+
The language code.
|
|
389
|
+
"""
|
|
390
|
+
return pulumi.get(self, "accept_language")
|
|
391
|
+
|
|
392
|
+
@_builtins.property
|
|
393
|
+
@pulumi.getter(name="awsId")
|
|
394
|
+
def aws_id(self) -> pulumi.Output[_builtins.str]:
|
|
395
|
+
"""
|
|
396
|
+
The ID of the product, such as prod-tsjbmal34qvek
|
|
397
|
+
"""
|
|
398
|
+
return pulumi.get(self, "aws_id")
|
|
399
|
+
|
|
400
|
+
@_builtins.property
|
|
401
|
+
@pulumi.getter
|
|
402
|
+
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
403
|
+
"""
|
|
404
|
+
The description of the product.
|
|
405
|
+
"""
|
|
406
|
+
return pulumi.get(self, "description")
|
|
407
|
+
|
|
408
|
+
@_builtins.property
|
|
409
|
+
@pulumi.getter
|
|
410
|
+
def distributor(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
411
|
+
"""
|
|
412
|
+
The distributor of the product.
|
|
413
|
+
"""
|
|
414
|
+
return pulumi.get(self, "distributor")
|
|
415
|
+
|
|
416
|
+
@_builtins.property
|
|
417
|
+
@pulumi.getter
|
|
418
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
419
|
+
"""
|
|
420
|
+
The name of the product.
|
|
421
|
+
"""
|
|
422
|
+
return pulumi.get(self, "name")
|
|
423
|
+
|
|
424
|
+
@_builtins.property
|
|
425
|
+
@pulumi.getter
|
|
426
|
+
def owner(self) -> pulumi.Output[_builtins.str]:
|
|
427
|
+
"""
|
|
428
|
+
The owner of the product.
|
|
429
|
+
"""
|
|
430
|
+
return pulumi.get(self, "owner")
|
|
431
|
+
|
|
432
|
+
@_builtins.property
|
|
433
|
+
@pulumi.getter(name="productName")
|
|
434
|
+
def product_name(self) -> pulumi.Output[_builtins.str]:
|
|
435
|
+
"""
|
|
436
|
+
The name of the product.
|
|
437
|
+
"""
|
|
438
|
+
return pulumi.get(self, "product_name")
|
|
439
|
+
|
|
440
|
+
@_builtins.property
|
|
441
|
+
@pulumi.getter(name="productType")
|
|
442
|
+
def product_type(self) -> pulumi.Output[Optional['CloudFormationProductProductType']]:
|
|
443
|
+
"""
|
|
444
|
+
The type of product.
|
|
445
|
+
"""
|
|
446
|
+
return pulumi.get(self, "product_type")
|
|
447
|
+
|
|
448
|
+
@_builtins.property
|
|
449
|
+
@pulumi.getter(name="provisioningArtifactIds")
|
|
450
|
+
def provisioning_artifact_ids(self) -> pulumi.Output[_builtins.str]:
|
|
451
|
+
"""
|
|
452
|
+
The IDs of the provisioning artifacts
|
|
453
|
+
"""
|
|
454
|
+
return pulumi.get(self, "provisioning_artifact_ids")
|
|
455
|
+
|
|
456
|
+
@_builtins.property
|
|
457
|
+
@pulumi.getter(name="provisioningArtifactNames")
|
|
458
|
+
def provisioning_artifact_names(self) -> pulumi.Output[_builtins.str]:
|
|
459
|
+
"""
|
|
460
|
+
The names of the provisioning artifacts
|
|
461
|
+
"""
|
|
462
|
+
return pulumi.get(self, "provisioning_artifact_names")
|
|
463
|
+
|
|
464
|
+
@_builtins.property
|
|
465
|
+
@pulumi.getter(name="provisioningArtifactParameters")
|
|
466
|
+
def provisioning_artifact_parameters(self) -> pulumi.Output[Optional[Sequence['outputs.CloudFormationProductProvisioningArtifactProperties']]]:
|
|
467
|
+
"""
|
|
468
|
+
The configuration of the provisioning artifact (also known as a version).
|
|
469
|
+
"""
|
|
470
|
+
return pulumi.get(self, "provisioning_artifact_parameters")
|
|
471
|
+
|
|
472
|
+
@_builtins.property
|
|
473
|
+
@pulumi.getter(name="replaceProvisioningArtifacts")
|
|
474
|
+
def replace_provisioning_artifacts(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
475
|
+
"""
|
|
476
|
+
This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name.
|
|
477
|
+
"""
|
|
478
|
+
return pulumi.get(self, "replace_provisioning_artifacts")
|
|
479
|
+
|
|
480
|
+
@_builtins.property
|
|
481
|
+
@pulumi.getter(name="sourceConnection")
|
|
482
|
+
def source_connection(self) -> pulumi.Output[Optional['outputs.CloudFormationProductSourceConnection']]:
|
|
483
|
+
"""
|
|
484
|
+
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.
|
|
485
|
+
"""
|
|
486
|
+
return pulumi.get(self, "source_connection")
|
|
487
|
+
|
|
488
|
+
@_builtins.property
|
|
489
|
+
@pulumi.getter(name="supportDescription")
|
|
490
|
+
def support_description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
491
|
+
"""
|
|
492
|
+
The support information about the product.
|
|
493
|
+
"""
|
|
494
|
+
return pulumi.get(self, "support_description")
|
|
495
|
+
|
|
496
|
+
@_builtins.property
|
|
497
|
+
@pulumi.getter(name="supportEmail")
|
|
498
|
+
def support_email(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
499
|
+
"""
|
|
500
|
+
The contact email for product support.
|
|
501
|
+
"""
|
|
502
|
+
return pulumi.get(self, "support_email")
|
|
503
|
+
|
|
504
|
+
@_builtins.property
|
|
505
|
+
@pulumi.getter(name="supportUrl")
|
|
506
|
+
def support_url(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
507
|
+
"""
|
|
508
|
+
The contact URL for product support.
|
|
509
|
+
"""
|
|
510
|
+
return pulumi.get(self, "support_url")
|
|
511
|
+
|
|
512
|
+
@_builtins.property
|
|
513
|
+
@pulumi.getter
|
|
514
|
+
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
515
|
+
"""
|
|
516
|
+
One or more tags.
|
|
517
|
+
"""
|
|
518
|
+
return pulumi.get(self, "tags")
|
|
519
|
+
|