@pulumi/aws 6.4.0-alpha.1696270400 → 6.4.0
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.
- package/batch/jobQueue.d.ts +6 -9
- package/batch/jobQueue.js.map +1 -1
- package/cleanrooms/configuredTable.d.ts +194 -0
- package/cleanrooms/configuredTable.js +114 -0
- package/cleanrooms/configuredTable.js.map +1 -0
- package/cleanrooms/index.d.ts +3 -0
- package/cleanrooms/index.js +6 -1
- package/cleanrooms/index.js.map +1 -1
- package/cloud9/environmentEC2.d.ts +6 -0
- package/cloud9/environmentEC2.js.map +1 -1
- package/cloudfront/distribution.d.ts +1 -1
- package/connect/getInstanceStorageConfig.d.ts +2 -2
- package/connect/instanceStorageConfig.d.ts +3 -3
- package/dms/index.d.ts +3 -0
- package/dms/index.js +6 -1
- package/dms/index.js.map +1 -1
- package/dms/replicationConfig.d.ts +239 -0
- package/dms/replicationConfig.js +132 -0
- package/dms/replicationConfig.js.map +1 -0
- package/fsx/ontapFileSystem.d.ts +3 -3
- package/fsx/ontapVolume.d.ts +57 -0
- package/fsx/ontapVolume.js +8 -0
- package/fsx/ontapVolume.js.map +1 -1
- package/fsx/openZfsVolume.d.ts +12 -0
- package/fsx/openZfsVolume.js +2 -0
- package/fsx/openZfsVolume.js.map +1 -1
- package/lex/index.d.ts +3 -0
- package/lex/index.js +6 -1
- package/lex/index.js.map +1 -1
- package/lex/v2modelsBot.d.ts +190 -0
- package/lex/v2modelsBot.js +106 -0
- package/lex/v2modelsBot.js.map +1 -0
- package/lightsail/bucket.d.ts +12 -0
- package/lightsail/bucket.js +2 -0
- package/lightsail/bucket.js.map +1 -1
- package/opensearch/outboundConnection.d.ts +37 -0
- package/opensearch/outboundConnection.js +7 -0
- package/opensearch/outboundConnection.js.map +1 -1
- package/package.json +1 -1
- package/rds/customDbEngineVersion.d.ts +345 -0
- package/rds/customDbEngineVersion.js +188 -0
- package/rds/customDbEngineVersion.js.map +1 -0
- package/rds/index.d.ts +3 -0
- package/rds/index.js +6 -1
- package/rds/index.js.map +1 -1
- package/route53/hostedZoneDnsSec.d.ts +2 -0
- package/route53/hostedZoneDnsSec.js +2 -0
- package/route53/hostedZoneDnsSec.js.map +1 -1
- package/s3/getBucketObject.d.ts +1 -1
- package/s3/getObject.d.ts +1 -1
- package/types/input.d.ts +537 -11
- package/types/output.d.ts +537 -11
- package/vpclattice/getService.d.ts +2 -2
- package/vpclattice/getServiceNetwork.d.ts +4 -4
- package/vpclattice/getServiceNetwork.js +2 -2
- package/vpclattice/listenerRule.d.ts +7 -7
- package/vpclattice/targetGroup.d.ts +22 -3
- package/vpclattice/targetGroup.js +22 -3
- package/vpclattice/targetGroup.js.map +1 -1
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides an custom engine version (CEV) resource for Amazon RDS Custom. For additional information, see [Working with CEVs for RDS Custom for Oracle](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html) and [Working with CEVs for RDS Custom for SQL Server](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev-sqlserver.html) in the the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html).
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
* ### RDS Custom for Oracle Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as aws from "@pulumi/aws";
|
|
11
|
+
*
|
|
12
|
+
* const exampleKey = new aws.kms.Key("exampleKey", {description: "KMS symmetric key for RDS Custom for Oracle"});
|
|
13
|
+
* const exampleCustomDbEngineVersion = new aws.rds.CustomDbEngineVersion("exampleCustomDbEngineVersion", {
|
|
14
|
+
* databaseInstallationFilesS3BucketName: "DOC-EXAMPLE-BUCKET",
|
|
15
|
+
* databaseInstallationFilesS3Prefix: "1915_GI/",
|
|
16
|
+
* engine: "custom-oracle-ee-cdb",
|
|
17
|
+
* engineVersion: "19.cdb_cev1",
|
|
18
|
+
* kmsKeyId: exampleKey.arn,
|
|
19
|
+
* manifest: ` {
|
|
20
|
+
* "databaseInstallationFileNames":["V982063-01.zip"]
|
|
21
|
+
* }
|
|
22
|
+
* `,
|
|
23
|
+
* tags: {
|
|
24
|
+
* Name: "example",
|
|
25
|
+
* Key: "value",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
* ### RDS Custom for Oracle External Manifest Usage
|
|
30
|
+
*
|
|
31
|
+
* ```typescript
|
|
32
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
33
|
+
* import * as aws from "@pulumi/aws";
|
|
34
|
+
* import * as crypto from "crypto";
|
|
35
|
+
* import * as fs from "fs";
|
|
36
|
+
*
|
|
37
|
+
* function computeFilebase64sha256(path string) string {
|
|
38
|
+
* const fileData = Buffer.from(fs.readFileSync(path), 'binary')
|
|
39
|
+
* return crypto.createHash('sha256').update(fileData).digest('hex')
|
|
40
|
+
* }
|
|
41
|
+
*
|
|
42
|
+
* const exampleKey = new aws.kms.Key("exampleKey", {description: "KMS symmetric key for RDS Custom for Oracle"});
|
|
43
|
+
* const exampleCustomDbEngineVersion = new aws.rds.CustomDbEngineVersion("exampleCustomDbEngineVersion", {
|
|
44
|
+
* databaseInstallationFilesS3BucketName: "DOC-EXAMPLE-BUCKET",
|
|
45
|
+
* databaseInstallationFilesS3Prefix: "1915_GI/",
|
|
46
|
+
* engine: "custom-oracle-ee-cdb",
|
|
47
|
+
* engineVersion: "19.cdb_cev1",
|
|
48
|
+
* kmsKeyId: exampleKey.arn,
|
|
49
|
+
* filename: "manifest_1915_GI.json",
|
|
50
|
+
* manifestHash: computeFilebase64sha256(manifest_1915_GI.json),
|
|
51
|
+
* tags: {
|
|
52
|
+
* Name: "example",
|
|
53
|
+
* Key: "value",
|
|
54
|
+
* },
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
* ### RDS Custom for SQL Server Usage
|
|
58
|
+
*
|
|
59
|
+
* ```typescript
|
|
60
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
61
|
+
* import * as aws from "@pulumi/aws";
|
|
62
|
+
*
|
|
63
|
+
* // CEV creation requires an AMI owned by the operator
|
|
64
|
+
* const test = new aws.rds.CustomDbEngineVersion("test", {
|
|
65
|
+
* engine: "custom-sqlserver-se",
|
|
66
|
+
* engineVersion: "15.00.4249.2.cev-1",
|
|
67
|
+
* sourceImageId: "ami-0aa12345678a12ab1",
|
|
68
|
+
* });
|
|
69
|
+
* ```
|
|
70
|
+
* ### RDS Custom for SQL Server Usage with AMI from another region
|
|
71
|
+
*
|
|
72
|
+
* ```typescript
|
|
73
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
74
|
+
* import * as aws from "@pulumi/aws";
|
|
75
|
+
*
|
|
76
|
+
* const example = new aws.ec2.AmiCopy("example", {
|
|
77
|
+
* description: "A copy of ami-xxxxxxxx",
|
|
78
|
+
* sourceAmiId: "ami-xxxxxxxx",
|
|
79
|
+
* sourceAmiRegion: "us-east-1",
|
|
80
|
+
* });
|
|
81
|
+
* // CEV creation requires an AMI owned by the operator
|
|
82
|
+
* const test = new aws.rds.CustomDbEngineVersion("test", {
|
|
83
|
+
* engine: "custom-sqlserver-se",
|
|
84
|
+
* engineVersion: "15.00.4249.2.cev-1",
|
|
85
|
+
* sourceImageId: example.id,
|
|
86
|
+
* });
|
|
87
|
+
* ```
|
|
88
|
+
*
|
|
89
|
+
* ## Import
|
|
90
|
+
*
|
|
91
|
+
* In TODO v1.5.0 and later, use an `import` block to import custom engine versions for Amazon RDS custom using the `engine` and `engine_version` separated by a colon (`:`). For exampleterraform import {
|
|
92
|
+
*
|
|
93
|
+
* to = aws_rds_custom_db_engine_version.example
|
|
94
|
+
*
|
|
95
|
+
* id = "custom-oracle-ee-cdb:19.cdb_cev1" } Using `TODO import`, import custom engine versions for Amazon RDS custom using the `engine` and `engine_version` separated by a colon (`:`). For exampleconsole % TODO import aws_rds_custom_db_engine_version.example custom-oracle-ee-cdb:19.cdb_cev1
|
|
96
|
+
*/
|
|
97
|
+
export declare class CustomDbEngineVersion extends pulumi.CustomResource {
|
|
98
|
+
/**
|
|
99
|
+
* Get an existing CustomDbEngineVersion resource's state with the given name, ID, and optional extra
|
|
100
|
+
* properties used to qualify the lookup.
|
|
101
|
+
*
|
|
102
|
+
* @param name The _unique_ name of the resulting resource.
|
|
103
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
104
|
+
* @param state Any extra arguments used during the lookup.
|
|
105
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
106
|
+
*/
|
|
107
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CustomDbEngineVersionState, opts?: pulumi.CustomResourceOptions): CustomDbEngineVersion;
|
|
108
|
+
/**
|
|
109
|
+
* Returns true if the given object is an instance of CustomDbEngineVersion. This is designed to work even
|
|
110
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
111
|
+
*/
|
|
112
|
+
static isInstance(obj: any): obj is CustomDbEngineVersion;
|
|
113
|
+
/**
|
|
114
|
+
* The Amazon Resource Name (ARN) for the custom engine version.
|
|
115
|
+
*/
|
|
116
|
+
readonly arn: pulumi.Output<string>;
|
|
117
|
+
/**
|
|
118
|
+
* The date and time that the CEV was created.
|
|
119
|
+
*/
|
|
120
|
+
readonly createTime: pulumi.Output<string>;
|
|
121
|
+
/**
|
|
122
|
+
* The name of the Amazon S3 bucket that contains the database installation files.
|
|
123
|
+
*/
|
|
124
|
+
readonly databaseInstallationFilesS3BucketName: pulumi.Output<string | undefined>;
|
|
125
|
+
/**
|
|
126
|
+
* The prefix for the Amazon S3 bucket that contains the database installation files.
|
|
127
|
+
*/
|
|
128
|
+
readonly databaseInstallationFilesS3Prefix: pulumi.Output<string | undefined>;
|
|
129
|
+
/**
|
|
130
|
+
* The name of the DB parameter group family for the CEV.
|
|
131
|
+
*/
|
|
132
|
+
readonly dbParameterGroupFamily: pulumi.Output<string>;
|
|
133
|
+
/**
|
|
134
|
+
* The description of the CEV.
|
|
135
|
+
*/
|
|
136
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
137
|
+
/**
|
|
138
|
+
* The name of the database engine. Valid values are `custom-oracle*`, `custom-sqlserver*`.
|
|
139
|
+
*/
|
|
140
|
+
readonly engine: pulumi.Output<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The version of the database engine.
|
|
143
|
+
*/
|
|
144
|
+
readonly engineVersion: pulumi.Output<string>;
|
|
145
|
+
/**
|
|
146
|
+
* The name of the manifest file within the local filesystem. Conflicts with `manifest`.
|
|
147
|
+
*/
|
|
148
|
+
readonly filename: pulumi.Output<string | undefined>;
|
|
149
|
+
/**
|
|
150
|
+
* The ID of the AMI that was created with the CEV.
|
|
151
|
+
*/
|
|
152
|
+
readonly imageId: pulumi.Output<string>;
|
|
153
|
+
/**
|
|
154
|
+
* The ARN of the AWS KMS key that is used to encrypt the database installation files. Required for RDS Custom for Oracle.
|
|
155
|
+
*/
|
|
156
|
+
readonly kmsKeyId: pulumi.Output<string>;
|
|
157
|
+
/**
|
|
158
|
+
* The major version of the database engine.
|
|
159
|
+
*/
|
|
160
|
+
readonly majorEngineVersion: pulumi.Output<string>;
|
|
161
|
+
/**
|
|
162
|
+
* The manifest file, in JSON format, that contains the list of database installation files. Conflicts with `filename`.
|
|
163
|
+
*/
|
|
164
|
+
readonly manifest: pulumi.Output<string | undefined>;
|
|
165
|
+
/**
|
|
166
|
+
* The returned manifest file, in JSON format, service generated and often different from input `manifest`.
|
|
167
|
+
*/
|
|
168
|
+
readonly manifestComputed: pulumi.Output<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the manifest source specified with `filename`. The usual way to set this is filebase64sha256("manifest.json") where "manifest.json" is the local filename of the manifest source.
|
|
171
|
+
*/
|
|
172
|
+
readonly manifestHash: pulumi.Output<string | undefined>;
|
|
173
|
+
/**
|
|
174
|
+
* The ID of the AMI to create the CEV from. Required for RDS Custom for SQL Server. For RDS Custom for Oracle, you can specify an AMI ID that was used in a different Oracle CEV.
|
|
175
|
+
*/
|
|
176
|
+
readonly sourceImageId: pulumi.Output<string | undefined>;
|
|
177
|
+
/**
|
|
178
|
+
* The status of the CEV. Valid values are `available`, `inactive`, `inactive-except-restore`.
|
|
179
|
+
*/
|
|
180
|
+
readonly status: pulumi.Output<string>;
|
|
181
|
+
/**
|
|
182
|
+
* A mapping of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
183
|
+
*/
|
|
184
|
+
readonly tags: pulumi.Output<{
|
|
185
|
+
[key: string]: string;
|
|
186
|
+
} | undefined>;
|
|
187
|
+
/**
|
|
188
|
+
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
189
|
+
*
|
|
190
|
+
* @deprecated Please use `tags` instead.
|
|
191
|
+
*/
|
|
192
|
+
readonly tagsAll: pulumi.Output<{
|
|
193
|
+
[key: string]: string;
|
|
194
|
+
}>;
|
|
195
|
+
/**
|
|
196
|
+
* Create a CustomDbEngineVersion resource with the given unique name, arguments, and options.
|
|
197
|
+
*
|
|
198
|
+
* @param name The _unique_ name of the resource.
|
|
199
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
200
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
201
|
+
*/
|
|
202
|
+
constructor(name: string, args: CustomDbEngineVersionArgs, opts?: pulumi.CustomResourceOptions);
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Input properties used for looking up and filtering CustomDbEngineVersion resources.
|
|
206
|
+
*/
|
|
207
|
+
export interface CustomDbEngineVersionState {
|
|
208
|
+
/**
|
|
209
|
+
* The Amazon Resource Name (ARN) for the custom engine version.
|
|
210
|
+
*/
|
|
211
|
+
arn?: pulumi.Input<string>;
|
|
212
|
+
/**
|
|
213
|
+
* The date and time that the CEV was created.
|
|
214
|
+
*/
|
|
215
|
+
createTime?: pulumi.Input<string>;
|
|
216
|
+
/**
|
|
217
|
+
* The name of the Amazon S3 bucket that contains the database installation files.
|
|
218
|
+
*/
|
|
219
|
+
databaseInstallationFilesS3BucketName?: pulumi.Input<string>;
|
|
220
|
+
/**
|
|
221
|
+
* The prefix for the Amazon S3 bucket that contains the database installation files.
|
|
222
|
+
*/
|
|
223
|
+
databaseInstallationFilesS3Prefix?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* The name of the DB parameter group family for the CEV.
|
|
226
|
+
*/
|
|
227
|
+
dbParameterGroupFamily?: pulumi.Input<string>;
|
|
228
|
+
/**
|
|
229
|
+
* The description of the CEV.
|
|
230
|
+
*/
|
|
231
|
+
description?: pulumi.Input<string>;
|
|
232
|
+
/**
|
|
233
|
+
* The name of the database engine. Valid values are `custom-oracle*`, `custom-sqlserver*`.
|
|
234
|
+
*/
|
|
235
|
+
engine?: pulumi.Input<string>;
|
|
236
|
+
/**
|
|
237
|
+
* The version of the database engine.
|
|
238
|
+
*/
|
|
239
|
+
engineVersion?: pulumi.Input<string>;
|
|
240
|
+
/**
|
|
241
|
+
* The name of the manifest file within the local filesystem. Conflicts with `manifest`.
|
|
242
|
+
*/
|
|
243
|
+
filename?: pulumi.Input<string>;
|
|
244
|
+
/**
|
|
245
|
+
* The ID of the AMI that was created with the CEV.
|
|
246
|
+
*/
|
|
247
|
+
imageId?: pulumi.Input<string>;
|
|
248
|
+
/**
|
|
249
|
+
* The ARN of the AWS KMS key that is used to encrypt the database installation files. Required for RDS Custom for Oracle.
|
|
250
|
+
*/
|
|
251
|
+
kmsKeyId?: pulumi.Input<string>;
|
|
252
|
+
/**
|
|
253
|
+
* The major version of the database engine.
|
|
254
|
+
*/
|
|
255
|
+
majorEngineVersion?: pulumi.Input<string>;
|
|
256
|
+
/**
|
|
257
|
+
* The manifest file, in JSON format, that contains the list of database installation files. Conflicts with `filename`.
|
|
258
|
+
*/
|
|
259
|
+
manifest?: pulumi.Input<string>;
|
|
260
|
+
/**
|
|
261
|
+
* The returned manifest file, in JSON format, service generated and often different from input `manifest`.
|
|
262
|
+
*/
|
|
263
|
+
manifestComputed?: pulumi.Input<string>;
|
|
264
|
+
/**
|
|
265
|
+
* Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the manifest source specified with `filename`. The usual way to set this is filebase64sha256("manifest.json") where "manifest.json" is the local filename of the manifest source.
|
|
266
|
+
*/
|
|
267
|
+
manifestHash?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* The ID of the AMI to create the CEV from. Required for RDS Custom for SQL Server. For RDS Custom for Oracle, you can specify an AMI ID that was used in a different Oracle CEV.
|
|
270
|
+
*/
|
|
271
|
+
sourceImageId?: pulumi.Input<string>;
|
|
272
|
+
/**
|
|
273
|
+
* The status of the CEV. Valid values are `available`, `inactive`, `inactive-except-restore`.
|
|
274
|
+
*/
|
|
275
|
+
status?: pulumi.Input<string>;
|
|
276
|
+
/**
|
|
277
|
+
* A mapping of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
278
|
+
*/
|
|
279
|
+
tags?: pulumi.Input<{
|
|
280
|
+
[key: string]: pulumi.Input<string>;
|
|
281
|
+
}>;
|
|
282
|
+
/**
|
|
283
|
+
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
284
|
+
*
|
|
285
|
+
* @deprecated Please use `tags` instead.
|
|
286
|
+
*/
|
|
287
|
+
tagsAll?: pulumi.Input<{
|
|
288
|
+
[key: string]: pulumi.Input<string>;
|
|
289
|
+
}>;
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* The set of arguments for constructing a CustomDbEngineVersion resource.
|
|
293
|
+
*/
|
|
294
|
+
export interface CustomDbEngineVersionArgs {
|
|
295
|
+
/**
|
|
296
|
+
* The name of the Amazon S3 bucket that contains the database installation files.
|
|
297
|
+
*/
|
|
298
|
+
databaseInstallationFilesS3BucketName?: pulumi.Input<string>;
|
|
299
|
+
/**
|
|
300
|
+
* The prefix for the Amazon S3 bucket that contains the database installation files.
|
|
301
|
+
*/
|
|
302
|
+
databaseInstallationFilesS3Prefix?: pulumi.Input<string>;
|
|
303
|
+
/**
|
|
304
|
+
* The description of the CEV.
|
|
305
|
+
*/
|
|
306
|
+
description?: pulumi.Input<string>;
|
|
307
|
+
/**
|
|
308
|
+
* The name of the database engine. Valid values are `custom-oracle*`, `custom-sqlserver*`.
|
|
309
|
+
*/
|
|
310
|
+
engine: pulumi.Input<string>;
|
|
311
|
+
/**
|
|
312
|
+
* The version of the database engine.
|
|
313
|
+
*/
|
|
314
|
+
engineVersion: pulumi.Input<string>;
|
|
315
|
+
/**
|
|
316
|
+
* The name of the manifest file within the local filesystem. Conflicts with `manifest`.
|
|
317
|
+
*/
|
|
318
|
+
filename?: pulumi.Input<string>;
|
|
319
|
+
/**
|
|
320
|
+
* The ARN of the AWS KMS key that is used to encrypt the database installation files. Required for RDS Custom for Oracle.
|
|
321
|
+
*/
|
|
322
|
+
kmsKeyId?: pulumi.Input<string>;
|
|
323
|
+
/**
|
|
324
|
+
* The manifest file, in JSON format, that contains the list of database installation files. Conflicts with `filename`.
|
|
325
|
+
*/
|
|
326
|
+
manifest?: pulumi.Input<string>;
|
|
327
|
+
/**
|
|
328
|
+
* Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the manifest source specified with `filename`. The usual way to set this is filebase64sha256("manifest.json") where "manifest.json" is the local filename of the manifest source.
|
|
329
|
+
*/
|
|
330
|
+
manifestHash?: pulumi.Input<string>;
|
|
331
|
+
/**
|
|
332
|
+
* The ID of the AMI to create the CEV from. Required for RDS Custom for SQL Server. For RDS Custom for Oracle, you can specify an AMI ID that was used in a different Oracle CEV.
|
|
333
|
+
*/
|
|
334
|
+
sourceImageId?: pulumi.Input<string>;
|
|
335
|
+
/**
|
|
336
|
+
* The status of the CEV. Valid values are `available`, `inactive`, `inactive-except-restore`.
|
|
337
|
+
*/
|
|
338
|
+
status?: pulumi.Input<string>;
|
|
339
|
+
/**
|
|
340
|
+
* A mapping of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
341
|
+
*/
|
|
342
|
+
tags?: pulumi.Input<{
|
|
343
|
+
[key: string]: pulumi.Input<string>;
|
|
344
|
+
}>;
|
|
345
|
+
}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.CustomDbEngineVersion = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides an custom engine version (CEV) resource for Amazon RDS Custom. For additional information, see [Working with CEVs for RDS Custom for Oracle](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html) and [Working with CEVs for RDS Custom for SQL Server](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev-sqlserver.html) in the the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html).
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### RDS Custom for Oracle Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
*
|
|
18
|
+
* const exampleKey = new aws.kms.Key("exampleKey", {description: "KMS symmetric key for RDS Custom for Oracle"});
|
|
19
|
+
* const exampleCustomDbEngineVersion = new aws.rds.CustomDbEngineVersion("exampleCustomDbEngineVersion", {
|
|
20
|
+
* databaseInstallationFilesS3BucketName: "DOC-EXAMPLE-BUCKET",
|
|
21
|
+
* databaseInstallationFilesS3Prefix: "1915_GI/",
|
|
22
|
+
* engine: "custom-oracle-ee-cdb",
|
|
23
|
+
* engineVersion: "19.cdb_cev1",
|
|
24
|
+
* kmsKeyId: exampleKey.arn,
|
|
25
|
+
* manifest: ` {
|
|
26
|
+
* "databaseInstallationFileNames":["V982063-01.zip"]
|
|
27
|
+
* }
|
|
28
|
+
* `,
|
|
29
|
+
* tags: {
|
|
30
|
+
* Name: "example",
|
|
31
|
+
* Key: "value",
|
|
32
|
+
* },
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
* ### RDS Custom for Oracle External Manifest Usage
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as aws from "@pulumi/aws";
|
|
40
|
+
* import * as crypto from "crypto";
|
|
41
|
+
* import * as fs from "fs";
|
|
42
|
+
*
|
|
43
|
+
* function computeFilebase64sha256(path string) string {
|
|
44
|
+
* const fileData = Buffer.from(fs.readFileSync(path), 'binary')
|
|
45
|
+
* return crypto.createHash('sha256').update(fileData).digest('hex')
|
|
46
|
+
* }
|
|
47
|
+
*
|
|
48
|
+
* const exampleKey = new aws.kms.Key("exampleKey", {description: "KMS symmetric key for RDS Custom for Oracle"});
|
|
49
|
+
* const exampleCustomDbEngineVersion = new aws.rds.CustomDbEngineVersion("exampleCustomDbEngineVersion", {
|
|
50
|
+
* databaseInstallationFilesS3BucketName: "DOC-EXAMPLE-BUCKET",
|
|
51
|
+
* databaseInstallationFilesS3Prefix: "1915_GI/",
|
|
52
|
+
* engine: "custom-oracle-ee-cdb",
|
|
53
|
+
* engineVersion: "19.cdb_cev1",
|
|
54
|
+
* kmsKeyId: exampleKey.arn,
|
|
55
|
+
* filename: "manifest_1915_GI.json",
|
|
56
|
+
* manifestHash: computeFilebase64sha256(manifest_1915_GI.json),
|
|
57
|
+
* tags: {
|
|
58
|
+
* Name: "example",
|
|
59
|
+
* Key: "value",
|
|
60
|
+
* },
|
|
61
|
+
* });
|
|
62
|
+
* ```
|
|
63
|
+
* ### RDS Custom for SQL Server Usage
|
|
64
|
+
*
|
|
65
|
+
* ```typescript
|
|
66
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
67
|
+
* import * as aws from "@pulumi/aws";
|
|
68
|
+
*
|
|
69
|
+
* // CEV creation requires an AMI owned by the operator
|
|
70
|
+
* const test = new aws.rds.CustomDbEngineVersion("test", {
|
|
71
|
+
* engine: "custom-sqlserver-se",
|
|
72
|
+
* engineVersion: "15.00.4249.2.cev-1",
|
|
73
|
+
* sourceImageId: "ami-0aa12345678a12ab1",
|
|
74
|
+
* });
|
|
75
|
+
* ```
|
|
76
|
+
* ### RDS Custom for SQL Server Usage with AMI from another region
|
|
77
|
+
*
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
+
* import * as aws from "@pulumi/aws";
|
|
81
|
+
*
|
|
82
|
+
* const example = new aws.ec2.AmiCopy("example", {
|
|
83
|
+
* description: "A copy of ami-xxxxxxxx",
|
|
84
|
+
* sourceAmiId: "ami-xxxxxxxx",
|
|
85
|
+
* sourceAmiRegion: "us-east-1",
|
|
86
|
+
* });
|
|
87
|
+
* // CEV creation requires an AMI owned by the operator
|
|
88
|
+
* const test = new aws.rds.CustomDbEngineVersion("test", {
|
|
89
|
+
* engine: "custom-sqlserver-se",
|
|
90
|
+
* engineVersion: "15.00.4249.2.cev-1",
|
|
91
|
+
* sourceImageId: example.id,
|
|
92
|
+
* });
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
95
|
+
* ## Import
|
|
96
|
+
*
|
|
97
|
+
* In TODO v1.5.0 and later, use an `import` block to import custom engine versions for Amazon RDS custom using the `engine` and `engine_version` separated by a colon (`:`). For exampleterraform import {
|
|
98
|
+
*
|
|
99
|
+
* to = aws_rds_custom_db_engine_version.example
|
|
100
|
+
*
|
|
101
|
+
* id = "custom-oracle-ee-cdb:19.cdb_cev1" } Using `TODO import`, import custom engine versions for Amazon RDS custom using the `engine` and `engine_version` separated by a colon (`:`). For exampleconsole % TODO import aws_rds_custom_db_engine_version.example custom-oracle-ee-cdb:19.cdb_cev1
|
|
102
|
+
*/
|
|
103
|
+
class CustomDbEngineVersion extends pulumi.CustomResource {
|
|
104
|
+
/**
|
|
105
|
+
* Get an existing CustomDbEngineVersion resource's state with the given name, ID, and optional extra
|
|
106
|
+
* properties used to qualify the lookup.
|
|
107
|
+
*
|
|
108
|
+
* @param name The _unique_ name of the resulting resource.
|
|
109
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
110
|
+
* @param state Any extra arguments used during the lookup.
|
|
111
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
112
|
+
*/
|
|
113
|
+
static get(name, id, state, opts) {
|
|
114
|
+
return new CustomDbEngineVersion(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Returns true if the given object is an instance of CustomDbEngineVersion. This is designed to work even
|
|
118
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
119
|
+
*/
|
|
120
|
+
static isInstance(obj) {
|
|
121
|
+
if (obj === undefined || obj === null) {
|
|
122
|
+
return false;
|
|
123
|
+
}
|
|
124
|
+
return obj['__pulumiType'] === CustomDbEngineVersion.__pulumiType;
|
|
125
|
+
}
|
|
126
|
+
constructor(name, argsOrState, opts) {
|
|
127
|
+
let resourceInputs = {};
|
|
128
|
+
opts = opts || {};
|
|
129
|
+
if (opts.id) {
|
|
130
|
+
const state = argsOrState;
|
|
131
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
132
|
+
resourceInputs["createTime"] = state ? state.createTime : undefined;
|
|
133
|
+
resourceInputs["databaseInstallationFilesS3BucketName"] = state ? state.databaseInstallationFilesS3BucketName : undefined;
|
|
134
|
+
resourceInputs["databaseInstallationFilesS3Prefix"] = state ? state.databaseInstallationFilesS3Prefix : undefined;
|
|
135
|
+
resourceInputs["dbParameterGroupFamily"] = state ? state.dbParameterGroupFamily : undefined;
|
|
136
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
137
|
+
resourceInputs["engine"] = state ? state.engine : undefined;
|
|
138
|
+
resourceInputs["engineVersion"] = state ? state.engineVersion : undefined;
|
|
139
|
+
resourceInputs["filename"] = state ? state.filename : undefined;
|
|
140
|
+
resourceInputs["imageId"] = state ? state.imageId : undefined;
|
|
141
|
+
resourceInputs["kmsKeyId"] = state ? state.kmsKeyId : undefined;
|
|
142
|
+
resourceInputs["majorEngineVersion"] = state ? state.majorEngineVersion : undefined;
|
|
143
|
+
resourceInputs["manifest"] = state ? state.manifest : undefined;
|
|
144
|
+
resourceInputs["manifestComputed"] = state ? state.manifestComputed : undefined;
|
|
145
|
+
resourceInputs["manifestHash"] = state ? state.manifestHash : undefined;
|
|
146
|
+
resourceInputs["sourceImageId"] = state ? state.sourceImageId : undefined;
|
|
147
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
148
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
149
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
150
|
+
}
|
|
151
|
+
else {
|
|
152
|
+
const args = argsOrState;
|
|
153
|
+
if ((!args || args.engine === undefined) && !opts.urn) {
|
|
154
|
+
throw new Error("Missing required property 'engine'");
|
|
155
|
+
}
|
|
156
|
+
if ((!args || args.engineVersion === undefined) && !opts.urn) {
|
|
157
|
+
throw new Error("Missing required property 'engineVersion'");
|
|
158
|
+
}
|
|
159
|
+
resourceInputs["databaseInstallationFilesS3BucketName"] = args ? args.databaseInstallationFilesS3BucketName : undefined;
|
|
160
|
+
resourceInputs["databaseInstallationFilesS3Prefix"] = args ? args.databaseInstallationFilesS3Prefix : undefined;
|
|
161
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
162
|
+
resourceInputs["engine"] = args ? args.engine : undefined;
|
|
163
|
+
resourceInputs["engineVersion"] = args ? args.engineVersion : undefined;
|
|
164
|
+
resourceInputs["filename"] = args ? args.filename : undefined;
|
|
165
|
+
resourceInputs["kmsKeyId"] = args ? args.kmsKeyId : undefined;
|
|
166
|
+
resourceInputs["manifest"] = args ? args.manifest : undefined;
|
|
167
|
+
resourceInputs["manifestHash"] = args ? args.manifestHash : undefined;
|
|
168
|
+
resourceInputs["sourceImageId"] = args ? args.sourceImageId : undefined;
|
|
169
|
+
resourceInputs["status"] = args ? args.status : undefined;
|
|
170
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
171
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
172
|
+
resourceInputs["createTime"] = undefined /*out*/;
|
|
173
|
+
resourceInputs["dbParameterGroupFamily"] = undefined /*out*/;
|
|
174
|
+
resourceInputs["imageId"] = undefined /*out*/;
|
|
175
|
+
resourceInputs["majorEngineVersion"] = undefined /*out*/;
|
|
176
|
+
resourceInputs["manifestComputed"] = undefined /*out*/;
|
|
177
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
178
|
+
}
|
|
179
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
180
|
+
const secretOpts = { additionalSecretOutputs: ["tagsAll"] };
|
|
181
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
182
|
+
super(CustomDbEngineVersion.__pulumiType, name, resourceInputs, opts);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
exports.CustomDbEngineVersion = CustomDbEngineVersion;
|
|
186
|
+
/** @internal */
|
|
187
|
+
CustomDbEngineVersion.__pulumiType = 'aws:rds/customDbEngineVersion:CustomDbEngineVersion';
|
|
188
|
+
//# sourceMappingURL=customDbEngineVersion.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customDbEngineVersion.js","sourceRoot":"","sources":["../../rds/customDbEngineVersion.ts"],"names":[],"mappings":"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"}
|
package/rds/index.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ export declare const ClusterRoleAssociation: typeof import("./clusterRoleAssocia
|
|
|
19
19
|
export { ClusterSnapshotArgs, ClusterSnapshotState } from "./clusterSnapshot";
|
|
20
20
|
export type ClusterSnapshot = import("./clusterSnapshot").ClusterSnapshot;
|
|
21
21
|
export declare const ClusterSnapshot: typeof import("./clusterSnapshot").ClusterSnapshot;
|
|
22
|
+
export { CustomDbEngineVersionArgs, CustomDbEngineVersionState } from "./customDbEngineVersion";
|
|
23
|
+
export type CustomDbEngineVersion = import("./customDbEngineVersion").CustomDbEngineVersion;
|
|
24
|
+
export declare const CustomDbEngineVersion: typeof import("./customDbEngineVersion").CustomDbEngineVersion;
|
|
22
25
|
export * from "./engineMode";
|
|
23
26
|
export * from "./engineType";
|
|
24
27
|
export { EventSubscriptionArgs, EventSubscriptionState } from "./eventSubscription";
|
package/rds/index.js
CHANGED
|
@@ -16,7 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.SubnetGroup = exports.SnapshotCopy = exports.Snapshot = exports.RoleAssociation = exports.ReservedInstance = exports.ProxyTarget = exports.ProxyEndpoint = exports.ProxyDefaultTargetGroup = exports.Proxy = exports.ParameterGroup = exports.OptionGroup = exports.InstanceAutomatedBackupsReplication = exports.Instance = exports.GlobalCluster = exports.getSubnetGroupOutput = exports.getSubnetGroup = exports.getSnapshotOutput = exports.getSnapshot = exports.getReservedInstanceOfferingOutput = exports.getReservedInstanceOffering = exports.getProxyOutput = exports.getProxy = exports.getOrderableDbInstanceOutput = exports.getOrderableDbInstance = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getEventCategoriesOutput = exports.getEventCategories = exports.getEngineVersionOutput = exports.getEngineVersion = exports.getClustersOutput = exports.getClusters = exports.getClusterSnapshotOutput = exports.getClusterSnapshot = exports.getClusterOutput = exports.getCluster = exports.getCertificateOutput = exports.getCertificate = exports.ExportTask = exports.EventSubscription = exports.ClusterSnapshot = exports.ClusterRoleAssociation = exports.ClusterParameterGroup = exports.ClusterInstance = exports.ClusterEndpoint = exports.ClusterActivityStream = exports.Cluster = void 0;
|
|
19
|
+
exports.SubnetGroup = exports.SnapshotCopy = exports.Snapshot = exports.RoleAssociation = exports.ReservedInstance = exports.ProxyTarget = exports.ProxyEndpoint = exports.ProxyDefaultTargetGroup = exports.Proxy = exports.ParameterGroup = exports.OptionGroup = exports.InstanceAutomatedBackupsReplication = exports.Instance = exports.GlobalCluster = exports.getSubnetGroupOutput = exports.getSubnetGroup = exports.getSnapshotOutput = exports.getSnapshot = exports.getReservedInstanceOfferingOutput = exports.getReservedInstanceOffering = exports.getProxyOutput = exports.getProxy = exports.getOrderableDbInstanceOutput = exports.getOrderableDbInstance = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getEventCategoriesOutput = exports.getEventCategories = exports.getEngineVersionOutput = exports.getEngineVersion = exports.getClustersOutput = exports.getClusters = exports.getClusterSnapshotOutput = exports.getClusterSnapshot = exports.getClusterOutput = exports.getCluster = exports.getCertificateOutput = exports.getCertificate = exports.ExportTask = exports.EventSubscription = exports.CustomDbEngineVersion = exports.ClusterSnapshot = exports.ClusterRoleAssociation = exports.ClusterParameterGroup = exports.ClusterInstance = exports.ClusterEndpoint = exports.ClusterActivityStream = exports.Cluster = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("../utilities");
|
|
22
22
|
exports.Cluster = null;
|
|
@@ -33,6 +33,8 @@ exports.ClusterRoleAssociation = null;
|
|
|
33
33
|
utilities.lazyLoad(exports, ["ClusterRoleAssociation"], () => require("./clusterRoleAssociation"));
|
|
34
34
|
exports.ClusterSnapshot = null;
|
|
35
35
|
utilities.lazyLoad(exports, ["ClusterSnapshot"], () => require("./clusterSnapshot"));
|
|
36
|
+
exports.CustomDbEngineVersion = null;
|
|
37
|
+
utilities.lazyLoad(exports, ["CustomDbEngineVersion"], () => require("./customDbEngineVersion"));
|
|
36
38
|
__exportStar(require("./engineMode"), exports);
|
|
37
39
|
__exportStar(require("./engineType"), exports);
|
|
38
40
|
exports.EventSubscription = null;
|
|
@@ -128,6 +130,8 @@ const _module = {
|
|
|
128
130
|
return new exports.ClusterRoleAssociation(name, undefined, { urn });
|
|
129
131
|
case "aws:rds/clusterSnapshot:ClusterSnapshot":
|
|
130
132
|
return new exports.ClusterSnapshot(name, undefined, { urn });
|
|
133
|
+
case "aws:rds/customDbEngineVersion:CustomDbEngineVersion":
|
|
134
|
+
return new exports.CustomDbEngineVersion(name, undefined, { urn });
|
|
131
135
|
case "aws:rds/eventSubscription:EventSubscription":
|
|
132
136
|
return new exports.EventSubscription(name, undefined, { urn });
|
|
133
137
|
case "aws:rds/exportTask:ExportTask":
|
|
@@ -172,6 +176,7 @@ pulumi.runtime.registerResourceModule("aws", "rds/clusterInstance", _module);
|
|
|
172
176
|
pulumi.runtime.registerResourceModule("aws", "rds/clusterParameterGroup", _module);
|
|
173
177
|
pulumi.runtime.registerResourceModule("aws", "rds/clusterRoleAssociation", _module);
|
|
174
178
|
pulumi.runtime.registerResourceModule("aws", "rds/clusterSnapshot", _module);
|
|
179
|
+
pulumi.runtime.registerResourceModule("aws", "rds/customDbEngineVersion", _module);
|
|
175
180
|
pulumi.runtime.registerResourceModule("aws", "rds/eventSubscription", _module);
|
|
176
181
|
pulumi.runtime.registerResourceModule("aws", "rds/exportTask", _module);
|
|
177
182
|
pulumi.runtime.registerResourceModule("aws", "rds/globalCluster", _module);
|
package/rds/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rds/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAItF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAErF,+CAA6B;AAC7B,+CAA6B;AAGhB,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAG9D,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAG7F,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGzG,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAGnG,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGzG,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACvG,QAAA,4BAA4B,GAA2E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,EAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAGrH,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG3E,QAAA,2BAA2B,GAA+E,IAAW,CAAC;AACtH,QAAA,iCAAiC,GAAqF,IAAW,CAAC;AAC/I,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,6BAA6B,EAAC,mCAAmC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,+BAA+B,CAAC,CAAC,CAAC;AAGpI,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAI7F,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,mCAAmC,GAA+F,IAAW,CAAC;AAC3J,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qCAAqC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uCAAuC,CAAC,CAAC,CAAC;AAE7H,iDAA+B;AAGlB,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIhE,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,KAAK,GAAmC,IAAW,CAAC;AACjE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;AAIpD,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AACvH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAIxF,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIhE,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAE/E,gDAA8B;AAGjB,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAG7E,gBAAgB;AAChB,qDAAmC;AAEnC,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,yBAAyB;gBAC1B,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,qDAAqD;gBACtD,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,qDAAqD;gBACtD,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,uDAAuD;gBACxD,OAAO,IAAI,8BAAsB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpE,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,+BAA+B;gBAChC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,qCAAqC;gBACtC,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,2BAA2B;gBAC5B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,iFAAiF;gBAClF,OAAO,IAAI,2CAAmC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjF,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,uCAAuC;gBACxC,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,qBAAqB;gBACtB,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,+BAAuB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrE,KAAK,qCAAqC;gBACtC,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,2BAA2B;gBAC5B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,mCAAmC;gBACpC,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,aAAa,EAAE,OAAO,CAAC,CAAA;AACpE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AACvE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACrE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yCAAyC,EAAE,OAAO,CAAC,CAAA;AAChG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;AAClE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACrE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AACzE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rds/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAItF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAEjG,+CAA6B;AAC7B,+CAA6B;AAGhB,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAG9D,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAG7F,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGzG,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAGnG,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGzG,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACvG,QAAA,4BAA4B,GAA2E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,EAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAGrH,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG3E,QAAA,2BAA2B,GAA+E,IAAW,CAAC;AACtH,QAAA,iCAAiC,GAAqF,IAAW,CAAC;AAC/I,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,6BAA6B,EAAC,mCAAmC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,+BAA+B,CAAC,CAAC,CAAC;AAGpI,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAI7F,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,mCAAmC,GAA+F,IAAW,CAAC;AAC3J,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qCAAqC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uCAAuC,CAAC,CAAC,CAAC;AAE7H,iDAA+B;AAGlB,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIhE,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,KAAK,GAAmC,IAAW,CAAC;AACjE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;AAIpD,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AACvH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAIxF,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIhE,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAE/E,gDAA8B;AAGjB,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAG7E,gBAAgB;AAChB,qDAAmC;AAEnC,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,yBAAyB;gBAC1B,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,qDAAqD;gBACtD,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,qDAAqD;gBACtD,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,uDAAuD;gBACxD,OAAO,IAAI,8BAAsB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpE,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,qDAAqD;gBACtD,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,+BAA+B;gBAChC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,qCAAqC;gBACtC,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,2BAA2B;gBAC5B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,iFAAiF;gBAClF,OAAO,IAAI,2CAAmC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjF,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,uCAAuC;gBACxC,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,qBAAqB;gBACtB,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,+BAAuB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrE,KAAK,qCAAqC;gBACtC,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,2BAA2B;gBAC5B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,mCAAmC;gBACpC,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,aAAa,EAAE,OAAO,CAAC,CAAA;AACpE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AACvE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACrE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yCAAyC,EAAE,OAAO,CAAC,CAAA;AAChG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;AAClE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACrE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AACzE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -4,6 +4,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* !> **WARNING:** If you disable DNSSEC signing for your hosted zone before the DNS changes have propagated, your domain could become unavailable on the internet. When you remove the DS records, you must wait until the longest TTL for the DS records that you remove has expired before you complete the step to disable DNSSEC signing. Please refer to the [Route 53 Developer Guide - Disable DNSSEC](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-configuring-dnssec-disable.html) for a detailed breakdown on the steps required to disable DNSSEC safely for a hosted zone.
|
|
6
6
|
*
|
|
7
|
+
* > **Note:** Route53 hosted zones are global resources, and as such any `aws.kms.Key` that you use as part of a signing key needs to be located in the `us-east-1` region. In the example below, the main AWS provider declaration is for `us-east-1`, however if you are provisioning your AWS resources in a different region, you will need to specify a provider alias and use that attached to the `aws.kms.Key` resource as described in the provider alias documentation.
|
|
8
|
+
*
|
|
7
9
|
* ## Example Usage
|
|
8
10
|
*
|
|
9
11
|
* ```typescript
|