@pulumi/aws 5.7.0-alpha.1654017793 → 5.7.1
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/README.md +1 -1
- package/acmpca/index.d.ts +1 -0
- package/acmpca/index.js +5 -0
- package/acmpca/index.js.map +1 -1
- package/acmpca/policy.d.ts +120 -0
- package/acmpca/policy.js +117 -0
- package/acmpca/policy.js.map +1 -0
- package/dms/endpoint.d.ts +18 -6
- package/dms/endpoint.js +2 -0
- package/dms/endpoint.js.map +1 -1
- package/guardduty/detector.d.ts +11 -3
- package/guardduty/detector.js +5 -0
- package/guardduty/detector.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/neptune/cluster.d.ts +12 -0
- package/neptune/cluster.js +2 -0
- package/neptune/cluster.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/ram/resourceShare.d.ts +15 -3
- package/ram/resourceShare.js +2 -0
- package/ram/resourceShare.js.map +1 -1
- package/redshift/cluster.d.ts +3 -1
- package/redshift/cluster.js +2 -0
- package/redshift/cluster.js.map +1 -1
- package/redshift/clusterIamRoles.d.ts +97 -0
- package/redshift/clusterIamRoles.js +81 -0
- package/redshift/clusterIamRoles.js.map +1 -0
- package/redshift/getClusterCredentials.d.ts +98 -0
- package/redshift/getClusterCredentials.js +41 -0
- package/redshift/getClusterCredentials.js.map +1 -0
- package/redshift/hsmConfiguration.d.ts +179 -0
- package/redshift/hsmConfiguration.js +110 -0
- package/redshift/hsmConfiguration.js.map +1 -0
- package/redshift/index.d.ts +3 -0
- package/redshift/index.js +11 -0
- package/redshift/index.js.map +1 -1
- package/redshiftdata/index.d.ts +1 -0
- package/redshiftdata/index.js +37 -0
- package/redshiftdata/index.js.map +1 -0
- package/redshiftdata/statement.d.ts +149 -0
- package/redshiftdata/statement.js +97 -0
- package/redshiftdata/statement.js.map +1 -0
- package/types/input.d.ts +51 -2
- package/types/output.d.ts +53 -4
package/README.md
CHANGED
|
@@ -101,7 +101,7 @@ The following configuration points are available:
|
|
|
101
101
|
`sessionName`: Session name to use when assuming the role.
|
|
102
102
|
`tags`: Map of assume role session tags.
|
|
103
103
|
- `aws:insecure` - (Optional) Explicitly allow the provider to perform "insecure" SSL requests. If omitted, the default value is `false`.
|
|
104
|
-
- `aws:skipCredentialsValidation` - (Optional) Skip the credentials validation via the STS API. Useful for AWS API implementations that do not have STS available or implemented. Default value is `
|
|
104
|
+
- `aws:skipCredentialsValidation` - (Optional) Skip the credentials validation via the STS API. Useful for AWS API implementations that do not have STS available or implemented. Default value is `false`.
|
|
105
105
|
- `aws:skipGetEc2Platforms` - (Optional) Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions. Default value is `true`.
|
|
106
106
|
- `aws:skipRegionValidation` - (Optional) Skip validation of provided region name. Useful for AWS-like implementations that use their own region names or to bypass the validation for regions that aren't publicly available yet. Default value is `true`.
|
|
107
107
|
- `aws:skipRequestionAccountId` - (Optional) Skip requesting the account ID. Useful for AWS API implementations that do not have the IAM, STS API, or metadata API. Default value is `false`. When specified, the use of ARNs is compromised as there is no accountID available to construct the ARN.
|
package/acmpca/index.d.ts
CHANGED
package/acmpca/index.js
CHANGED
|
@@ -24,10 +24,12 @@ __exportStar(require("./certificateAuthority"), exports);
|
|
|
24
24
|
__exportStar(require("./certificateAuthorityCertificate"), exports);
|
|
25
25
|
__exportStar(require("./getCertificate"), exports);
|
|
26
26
|
__exportStar(require("./getCertificateAuthority"), exports);
|
|
27
|
+
__exportStar(require("./policy"), exports);
|
|
27
28
|
// Import resources to register:
|
|
28
29
|
const certificate_1 = require("./certificate");
|
|
29
30
|
const certificateAuthority_1 = require("./certificateAuthority");
|
|
30
31
|
const certificateAuthorityCertificate_1 = require("./certificateAuthorityCertificate");
|
|
32
|
+
const policy_1 = require("./policy");
|
|
31
33
|
const _module = {
|
|
32
34
|
version: utilities.getVersion(),
|
|
33
35
|
construct: (name, type, urn) => {
|
|
@@ -38,6 +40,8 @@ const _module = {
|
|
|
38
40
|
return new certificateAuthority_1.CertificateAuthority(name, undefined, { urn });
|
|
39
41
|
case "aws:acmpca/certificateAuthorityCertificate:CertificateAuthorityCertificate":
|
|
40
42
|
return new certificateAuthorityCertificate_1.CertificateAuthorityCertificate(name, undefined, { urn });
|
|
43
|
+
case "aws:acmpca/policy:Policy":
|
|
44
|
+
return new policy_1.Policy(name, undefined, { urn });
|
|
41
45
|
default:
|
|
42
46
|
throw new Error(`unknown resource type ${type}`);
|
|
43
47
|
}
|
|
@@ -46,4 +50,5 @@ const _module = {
|
|
|
46
50
|
pulumi.runtime.registerResourceModule("aws", "acmpca/certificate", _module);
|
|
47
51
|
pulumi.runtime.registerResourceModule("aws", "acmpca/certificateAuthority", _module);
|
|
48
52
|
pulumi.runtime.registerResourceModule("aws", "acmpca/certificateAuthorityCertificate", _module);
|
|
53
|
+
pulumi.runtime.registerResourceModule("aws", "acmpca/policy", _module);
|
|
49
54
|
//# sourceMappingURL=index.js.map
|
package/acmpca/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../acmpca/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,gDAA8B;AAC9B,yDAAuC;AACvC,oEAAkD;AAClD,mDAAiC;AACjC,4DAA0C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../acmpca/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,gDAA8B;AAC9B,yDAAuC;AACvC,oEAAkD;AAClD,mDAAiC;AACjC,4DAA0C;AAC1C,2CAAyB;AAEzB,gCAAgC;AAChC,+CAA4C;AAC5C,iEAA8D;AAC9D,uFAAoF;AACpF,qCAAkC;AAElC,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,oCAAoC;gBACrC,OAAO,IAAI,yBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,sDAAsD;gBACvD,OAAO,IAAI,2CAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,4EAA4E;gBAC7E,OAAO,IAAI,iEAA+B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7E,KAAK,0BAA0B;gBAC3B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wCAAwC,EAAE,OAAO,CAAC,CAAA;AAC/F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Attaches a resource based policy to a private CA.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
* ### Basic
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as aws from "@pulumi/aws";
|
|
11
|
+
*
|
|
12
|
+
* const example = new aws.acmpca.Policy("example", {
|
|
13
|
+
* resourceArn: aws_acmpca_certificate_authority.example.arn,
|
|
14
|
+
* policy: `{
|
|
15
|
+
* "Version":"2012-10-17",
|
|
16
|
+
* "Statement":[
|
|
17
|
+
* {
|
|
18
|
+
* "Sid":"1",
|
|
19
|
+
* "Effect":"Allow",
|
|
20
|
+
* "Principal":{
|
|
21
|
+
* "AWS":"${data.aws_caller_identity.current.account_id}"
|
|
22
|
+
* },
|
|
23
|
+
* "Action":[
|
|
24
|
+
* "acm-pca:DescribeCertificateAuthority",
|
|
25
|
+
* "acm-pca:GetCertificate",
|
|
26
|
+
* "acm-pca:GetCertificateAuthorityCertificate",
|
|
27
|
+
* "acm-pca:ListPermissions",
|
|
28
|
+
* "acm-pca:ListTags"
|
|
29
|
+
* ],
|
|
30
|
+
* "Resource":"${aws_acmpca_certificate_authority.example.arn}"
|
|
31
|
+
* },
|
|
32
|
+
* {
|
|
33
|
+
* "Sid":"1",
|
|
34
|
+
* "Effect":"Allow",
|
|
35
|
+
* "Principal":{
|
|
36
|
+
* "AWS":"${data.aws_caller_identity.current.account_id}"
|
|
37
|
+
* },
|
|
38
|
+
* "Action":[
|
|
39
|
+
* "acm-pca:IssueCertificate"
|
|
40
|
+
* ],
|
|
41
|
+
* "Resource":"${aws_acmpca_certificate_authority.example.arn}",
|
|
42
|
+
* "Condition":{
|
|
43
|
+
* "StringEquals":{
|
|
44
|
+
* "acm-pca:TemplateArn":"arn:aws:acm-pca:::template/EndEntityCertificate/V1"
|
|
45
|
+
* }
|
|
46
|
+
* }
|
|
47
|
+
* }
|
|
48
|
+
* ]
|
|
49
|
+
* }
|
|
50
|
+
* `,
|
|
51
|
+
* });
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* ## Import
|
|
55
|
+
*
|
|
56
|
+
* `aws_acmpca_policy` can be imported using the `resource_arn` value.
|
|
57
|
+
*
|
|
58
|
+
* ```sh
|
|
59
|
+
* $ pulumi import aws:acmpca/policy:Policy example arn:aws:acm-pca:us-east-1:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012
|
|
60
|
+
* ```
|
|
61
|
+
*/
|
|
62
|
+
export declare class Policy extends pulumi.CustomResource {
|
|
63
|
+
/**
|
|
64
|
+
* Get an existing Policy resource's state with the given name, ID, and optional extra
|
|
65
|
+
* properties used to qualify the lookup.
|
|
66
|
+
*
|
|
67
|
+
* @param name The _unique_ name of the resulting resource.
|
|
68
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
69
|
+
* @param state Any extra arguments used during the lookup.
|
|
70
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
71
|
+
*/
|
|
72
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PolicyState, opts?: pulumi.CustomResourceOptions): Policy;
|
|
73
|
+
/**
|
|
74
|
+
* Returns true if the given object is an instance of Policy. This is designed to work even
|
|
75
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
76
|
+
*/
|
|
77
|
+
static isInstance(obj: any): obj is Policy;
|
|
78
|
+
/**
|
|
79
|
+
* JSON-formatted IAM policy to attach to the specified private CA resource.
|
|
80
|
+
*/
|
|
81
|
+
readonly policy: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Amazon Resource Name (ARN) of the private CA to associate with the policy.
|
|
84
|
+
*/
|
|
85
|
+
readonly resourceArn: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Create a Policy resource with the given unique name, arguments, and options.
|
|
88
|
+
*
|
|
89
|
+
* @param name The _unique_ name of the resource.
|
|
90
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
91
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
92
|
+
*/
|
|
93
|
+
constructor(name: string, args: PolicyArgs, opts?: pulumi.CustomResourceOptions);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Input properties used for looking up and filtering Policy resources.
|
|
97
|
+
*/
|
|
98
|
+
export interface PolicyState {
|
|
99
|
+
/**
|
|
100
|
+
* JSON-formatted IAM policy to attach to the specified private CA resource.
|
|
101
|
+
*/
|
|
102
|
+
policy?: pulumi.Input<string>;
|
|
103
|
+
/**
|
|
104
|
+
* Amazon Resource Name (ARN) of the private CA to associate with the policy.
|
|
105
|
+
*/
|
|
106
|
+
resourceArn?: pulumi.Input<string>;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* The set of arguments for constructing a Policy resource.
|
|
110
|
+
*/
|
|
111
|
+
export interface PolicyArgs {
|
|
112
|
+
/**
|
|
113
|
+
* JSON-formatted IAM policy to attach to the specified private CA resource.
|
|
114
|
+
*/
|
|
115
|
+
policy: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Amazon Resource Name (ARN) of the private CA to associate with the policy.
|
|
118
|
+
*/
|
|
119
|
+
resourceArn: pulumi.Input<string>;
|
|
120
|
+
}
|
package/acmpca/policy.js
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
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.Policy = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Attaches a resource based policy to a private CA.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### Basic
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
*
|
|
18
|
+
* const example = new aws.acmpca.Policy("example", {
|
|
19
|
+
* resourceArn: aws_acmpca_certificate_authority.example.arn,
|
|
20
|
+
* policy: `{
|
|
21
|
+
* "Version":"2012-10-17",
|
|
22
|
+
* "Statement":[
|
|
23
|
+
* {
|
|
24
|
+
* "Sid":"1",
|
|
25
|
+
* "Effect":"Allow",
|
|
26
|
+
* "Principal":{
|
|
27
|
+
* "AWS":"${data.aws_caller_identity.current.account_id}"
|
|
28
|
+
* },
|
|
29
|
+
* "Action":[
|
|
30
|
+
* "acm-pca:DescribeCertificateAuthority",
|
|
31
|
+
* "acm-pca:GetCertificate",
|
|
32
|
+
* "acm-pca:GetCertificateAuthorityCertificate",
|
|
33
|
+
* "acm-pca:ListPermissions",
|
|
34
|
+
* "acm-pca:ListTags"
|
|
35
|
+
* ],
|
|
36
|
+
* "Resource":"${aws_acmpca_certificate_authority.example.arn}"
|
|
37
|
+
* },
|
|
38
|
+
* {
|
|
39
|
+
* "Sid":"1",
|
|
40
|
+
* "Effect":"Allow",
|
|
41
|
+
* "Principal":{
|
|
42
|
+
* "AWS":"${data.aws_caller_identity.current.account_id}"
|
|
43
|
+
* },
|
|
44
|
+
* "Action":[
|
|
45
|
+
* "acm-pca:IssueCertificate"
|
|
46
|
+
* ],
|
|
47
|
+
* "Resource":"${aws_acmpca_certificate_authority.example.arn}",
|
|
48
|
+
* "Condition":{
|
|
49
|
+
* "StringEquals":{
|
|
50
|
+
* "acm-pca:TemplateArn":"arn:aws:acm-pca:::template/EndEntityCertificate/V1"
|
|
51
|
+
* }
|
|
52
|
+
* }
|
|
53
|
+
* }
|
|
54
|
+
* ]
|
|
55
|
+
* }
|
|
56
|
+
* `,
|
|
57
|
+
* });
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* ## Import
|
|
61
|
+
*
|
|
62
|
+
* `aws_acmpca_policy` can be imported using the `resource_arn` value.
|
|
63
|
+
*
|
|
64
|
+
* ```sh
|
|
65
|
+
* $ pulumi import aws:acmpca/policy:Policy example arn:aws:acm-pca:us-east-1:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012
|
|
66
|
+
* ```
|
|
67
|
+
*/
|
|
68
|
+
class Policy extends pulumi.CustomResource {
|
|
69
|
+
constructor(name, argsOrState, opts) {
|
|
70
|
+
let resourceInputs = {};
|
|
71
|
+
opts = opts || {};
|
|
72
|
+
if (opts.id) {
|
|
73
|
+
const state = argsOrState;
|
|
74
|
+
resourceInputs["policy"] = state ? state.policy : undefined;
|
|
75
|
+
resourceInputs["resourceArn"] = state ? state.resourceArn : undefined;
|
|
76
|
+
}
|
|
77
|
+
else {
|
|
78
|
+
const args = argsOrState;
|
|
79
|
+
if ((!args || args.policy === undefined) && !opts.urn) {
|
|
80
|
+
throw new Error("Missing required property 'policy'");
|
|
81
|
+
}
|
|
82
|
+
if ((!args || args.resourceArn === undefined) && !opts.urn) {
|
|
83
|
+
throw new Error("Missing required property 'resourceArn'");
|
|
84
|
+
}
|
|
85
|
+
resourceInputs["policy"] = args ? args.policy : undefined;
|
|
86
|
+
resourceInputs["resourceArn"] = args ? args.resourceArn : undefined;
|
|
87
|
+
}
|
|
88
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
89
|
+
super(Policy.__pulumiType, name, resourceInputs, opts);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Get an existing Policy resource's state with the given name, ID, and optional extra
|
|
93
|
+
* properties used to qualify the lookup.
|
|
94
|
+
*
|
|
95
|
+
* @param name The _unique_ name of the resulting resource.
|
|
96
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
97
|
+
* @param state Any extra arguments used during the lookup.
|
|
98
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
99
|
+
*/
|
|
100
|
+
static get(name, id, state, opts) {
|
|
101
|
+
return new Policy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Returns true if the given object is an instance of Policy. This is designed to work even
|
|
105
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
106
|
+
*/
|
|
107
|
+
static isInstance(obj) {
|
|
108
|
+
if (obj === undefined || obj === null) {
|
|
109
|
+
return false;
|
|
110
|
+
}
|
|
111
|
+
return obj['__pulumiType'] === Policy.__pulumiType;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
exports.Policy = Policy;
|
|
115
|
+
/** @internal */
|
|
116
|
+
Policy.__pulumiType = 'aws:acmpca/policy:Policy';
|
|
117
|
+
//# sourceMappingURL=policy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"policy.js","sourceRoot":"","sources":["../../acmpca/policy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IA6C7C,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;;AA1BL,wBAkEC;AApDG,gBAAgB;AACO,mBAAY,GAAG,0BAA0B,CAAC"}
|
package/dms/endpoint.d.ts
CHANGED
|
@@ -78,7 +78,7 @@ export declare class Endpoint extends pulumi.CustomResource {
|
|
|
78
78
|
*/
|
|
79
79
|
readonly endpointType: pulumi.Output<string>;
|
|
80
80
|
/**
|
|
81
|
-
* Type of engine for the endpoint. Valid values are `aurora`, `aurora-postgresql`, `azuredb`, `db2`, `docdb`, `dynamodb`, `elasticsearch`, `kafka`, `kinesis`, `mariadb`, `mongodb`, `mysql`, `opensearch`, `oracle`, `postgres`, `redshift`, `s3`, `sqlserver`, `sybase`.
|
|
81
|
+
* Type of engine for the endpoint. Valid values are `aurora`, `aurora-postgresql`, `azuredb`, `db2`, `docdb`, `dynamodb`, `elasticsearch`, `kafka`, `kinesis`, `mariadb`, `mongodb`, `mysql`, `opensearch`, `oracle`, `postgres`, `redshift`, `s3`, `sqlserver`, `sybase`. Please note that some of engine names are available only for `target` endpoint type (e.g. `redshift`).
|
|
82
82
|
*/
|
|
83
83
|
readonly engineName: pulumi.Output<string>;
|
|
84
84
|
/**
|
|
@@ -109,6 +109,10 @@ export declare class Endpoint extends pulumi.CustomResource {
|
|
|
109
109
|
* Port used by the endpoint database.
|
|
110
110
|
*/
|
|
111
111
|
readonly port: pulumi.Output<number | undefined>;
|
|
112
|
+
/**
|
|
113
|
+
* Configuration block for Redshift settings. See below.
|
|
114
|
+
*/
|
|
115
|
+
readonly redshiftSettings: pulumi.Output<outputs.dms.EndpointRedshiftSettings>;
|
|
112
116
|
/**
|
|
113
117
|
* Configuration block for S3 settings. See below.
|
|
114
118
|
*/
|
|
@@ -118,7 +122,7 @@ export declare class Endpoint extends pulumi.CustomResource {
|
|
|
118
122
|
*/
|
|
119
123
|
readonly secretsManagerAccessRoleArn: pulumi.Output<string | undefined>;
|
|
120
124
|
/**
|
|
121
|
-
* Full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the endpoint connection details. Supported only for `engineName` as `oracle`
|
|
125
|
+
* Full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the endpoint connection details. Supported only for `engineName` as `aurora`, `aurora-postgresql`, `mariadb`, `mongodb`, `mysql`, `oracle`, `postgres`, `redshift` or `sqlserver`.
|
|
122
126
|
*/
|
|
123
127
|
readonly secretsManagerArn: pulumi.Output<string | undefined>;
|
|
124
128
|
/**
|
|
@@ -187,7 +191,7 @@ export interface EndpointState {
|
|
|
187
191
|
*/
|
|
188
192
|
endpointType?: pulumi.Input<string>;
|
|
189
193
|
/**
|
|
190
|
-
* Type of engine for the endpoint. Valid values are `aurora`, `aurora-postgresql`, `azuredb`, `db2`, `docdb`, `dynamodb`, `elasticsearch`, `kafka`, `kinesis`, `mariadb`, `mongodb`, `mysql`, `opensearch`, `oracle`, `postgres`, `redshift`, `s3`, `sqlserver`, `sybase`.
|
|
194
|
+
* Type of engine for the endpoint. Valid values are `aurora`, `aurora-postgresql`, `azuredb`, `db2`, `docdb`, `dynamodb`, `elasticsearch`, `kafka`, `kinesis`, `mariadb`, `mongodb`, `mysql`, `opensearch`, `oracle`, `postgres`, `redshift`, `s3`, `sqlserver`, `sybase`. Please note that some of engine names are available only for `target` endpoint type (e.g. `redshift`).
|
|
191
195
|
*/
|
|
192
196
|
engineName?: pulumi.Input<string>;
|
|
193
197
|
/**
|
|
@@ -218,6 +222,10 @@ export interface EndpointState {
|
|
|
218
222
|
* Port used by the endpoint database.
|
|
219
223
|
*/
|
|
220
224
|
port?: pulumi.Input<number>;
|
|
225
|
+
/**
|
|
226
|
+
* Configuration block for Redshift settings. See below.
|
|
227
|
+
*/
|
|
228
|
+
redshiftSettings?: pulumi.Input<inputs.dms.EndpointRedshiftSettings>;
|
|
221
229
|
/**
|
|
222
230
|
* Configuration block for S3 settings. See below.
|
|
223
231
|
*/
|
|
@@ -227,7 +235,7 @@ export interface EndpointState {
|
|
|
227
235
|
*/
|
|
228
236
|
secretsManagerAccessRoleArn?: pulumi.Input<string>;
|
|
229
237
|
/**
|
|
230
|
-
* Full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the endpoint connection details. Supported only for `engineName` as `oracle`
|
|
238
|
+
* Full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the endpoint connection details. Supported only for `engineName` as `aurora`, `aurora-postgresql`, `mariadb`, `mongodb`, `mysql`, `oracle`, `postgres`, `redshift` or `sqlserver`.
|
|
231
239
|
*/
|
|
232
240
|
secretsManagerArn?: pulumi.Input<string>;
|
|
233
241
|
/**
|
|
@@ -284,7 +292,7 @@ export interface EndpointArgs {
|
|
|
284
292
|
*/
|
|
285
293
|
endpointType: pulumi.Input<string>;
|
|
286
294
|
/**
|
|
287
|
-
* Type of engine for the endpoint. Valid values are `aurora`, `aurora-postgresql`, `azuredb`, `db2`, `docdb`, `dynamodb`, `elasticsearch`, `kafka`, `kinesis`, `mariadb`, `mongodb`, `mysql`, `opensearch`, `oracle`, `postgres`, `redshift`, `s3`, `sqlserver`, `sybase`.
|
|
295
|
+
* Type of engine for the endpoint. Valid values are `aurora`, `aurora-postgresql`, `azuredb`, `db2`, `docdb`, `dynamodb`, `elasticsearch`, `kafka`, `kinesis`, `mariadb`, `mongodb`, `mysql`, `opensearch`, `oracle`, `postgres`, `redshift`, `s3`, `sqlserver`, `sybase`. Please note that some of engine names are available only for `target` endpoint type (e.g. `redshift`).
|
|
288
296
|
*/
|
|
289
297
|
engineName: pulumi.Input<string>;
|
|
290
298
|
/**
|
|
@@ -315,6 +323,10 @@ export interface EndpointArgs {
|
|
|
315
323
|
* Port used by the endpoint database.
|
|
316
324
|
*/
|
|
317
325
|
port?: pulumi.Input<number>;
|
|
326
|
+
/**
|
|
327
|
+
* Configuration block for Redshift settings. See below.
|
|
328
|
+
*/
|
|
329
|
+
redshiftSettings?: pulumi.Input<inputs.dms.EndpointRedshiftSettings>;
|
|
318
330
|
/**
|
|
319
331
|
* Configuration block for S3 settings. See below.
|
|
320
332
|
*/
|
|
@@ -324,7 +336,7 @@ export interface EndpointArgs {
|
|
|
324
336
|
*/
|
|
325
337
|
secretsManagerAccessRoleArn?: pulumi.Input<string>;
|
|
326
338
|
/**
|
|
327
|
-
* Full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the endpoint connection details. Supported only for `engineName` as `oracle`
|
|
339
|
+
* Full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the endpoint connection details. Supported only for `engineName` as `aurora`, `aurora-postgresql`, `mariadb`, `mongodb`, `mysql`, `oracle`, `postgres`, `redshift` or `sqlserver`.
|
|
328
340
|
*/
|
|
329
341
|
secretsManagerArn?: pulumi.Input<string>;
|
|
330
342
|
/**
|
package/dms/endpoint.js
CHANGED
|
@@ -62,6 +62,7 @@ class Endpoint extends pulumi.CustomResource {
|
|
|
62
62
|
resourceInputs["mongodbSettings"] = state ? state.mongodbSettings : undefined;
|
|
63
63
|
resourceInputs["password"] = state ? state.password : undefined;
|
|
64
64
|
resourceInputs["port"] = state ? state.port : undefined;
|
|
65
|
+
resourceInputs["redshiftSettings"] = state ? state.redshiftSettings : undefined;
|
|
65
66
|
resourceInputs["s3Settings"] = state ? state.s3Settings : undefined;
|
|
66
67
|
resourceInputs["secretsManagerAccessRoleArn"] = state ? state.secretsManagerAccessRoleArn : undefined;
|
|
67
68
|
resourceInputs["secretsManagerArn"] = state ? state.secretsManagerArn : undefined;
|
|
@@ -96,6 +97,7 @@ class Endpoint extends pulumi.CustomResource {
|
|
|
96
97
|
resourceInputs["mongodbSettings"] = args ? args.mongodbSettings : undefined;
|
|
97
98
|
resourceInputs["password"] = args ? args.password : undefined;
|
|
98
99
|
resourceInputs["port"] = args ? args.port : undefined;
|
|
100
|
+
resourceInputs["redshiftSettings"] = args ? args.redshiftSettings : undefined;
|
|
99
101
|
resourceInputs["s3Settings"] = args ? args.s3Settings : undefined;
|
|
100
102
|
resourceInputs["secretsManagerAccessRoleArn"] = args ? args.secretsManagerAccessRoleArn : undefined;
|
|
101
103
|
resourceInputs["secretsManagerArn"] = args ? args.secretsManagerArn : undefined;
|
package/dms/endpoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../../dms/endpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../../dms/endpoint.ts"],"names":[],"mappings":"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"}
|
package/guardduty/detector.d.ts
CHANGED
|
@@ -13,6 +13,11 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
13
13
|
*
|
|
14
14
|
* const myDetector = new aws.guardduty.Detector("MyDetector", {
|
|
15
15
|
* datasources: {
|
|
16
|
+
* kubernetes: {
|
|
17
|
+
* auditLogs: {
|
|
18
|
+
* enable: false,
|
|
19
|
+
* },
|
|
20
|
+
* },
|
|
16
21
|
* s3Logs: {
|
|
17
22
|
* enable: true,
|
|
18
23
|
* },
|
|
@@ -58,7 +63,8 @@ export declare class Detector extends pulumi.CustomResource {
|
|
|
58
63
|
*/
|
|
59
64
|
readonly datasources: pulumi.Output<outputs.guardduty.DetectorDatasources>;
|
|
60
65
|
/**
|
|
61
|
-
* If true, enables [S3
|
|
66
|
+
* If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
67
|
+
* Defaults to `true`.
|
|
62
68
|
*/
|
|
63
69
|
readonly enable: pulumi.Output<boolean | undefined>;
|
|
64
70
|
/**
|
|
@@ -103,7 +109,8 @@ export interface DetectorState {
|
|
|
103
109
|
*/
|
|
104
110
|
datasources?: pulumi.Input<inputs.guardduty.DetectorDatasources>;
|
|
105
111
|
/**
|
|
106
|
-
* If true, enables [S3
|
|
112
|
+
* If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
113
|
+
* Defaults to `true`.
|
|
107
114
|
*/
|
|
108
115
|
enable?: pulumi.Input<boolean>;
|
|
109
116
|
/**
|
|
@@ -132,7 +139,8 @@ export interface DetectorArgs {
|
|
|
132
139
|
*/
|
|
133
140
|
datasources?: pulumi.Input<inputs.guardduty.DetectorDatasources>;
|
|
134
141
|
/**
|
|
135
|
-
* If true, enables [S3
|
|
142
|
+
* If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
143
|
+
* Defaults to `true`.
|
|
136
144
|
*/
|
|
137
145
|
enable?: pulumi.Input<boolean>;
|
|
138
146
|
/**
|
package/guardduty/detector.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"detector.js","sourceRoot":"","sources":["../../guardduty/detector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"detector.js","sourceRoot":"","sources":["../../guardduty/detector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAkE/C,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;IAzFD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;;AA1BL,4BA2FC;AA7EG,gBAAgB;AACO,qBAAY,GAAG,iCAAiC,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -145,6 +145,7 @@ import * as quicksight from "./quicksight";
|
|
|
145
145
|
import * as ram from "./ram";
|
|
146
146
|
import * as rds from "./rds";
|
|
147
147
|
import * as redshift from "./redshift";
|
|
148
|
+
import * as redshiftdata from "./redshiftdata";
|
|
148
149
|
import * as resourcegroups from "./resourcegroups";
|
|
149
150
|
import * as resourcegroupstaggingapi from "./resourcegroupstaggingapi";
|
|
150
151
|
import * as route53 from "./route53";
|
|
@@ -184,4 +185,4 @@ import * as wafv2 from "./wafv2";
|
|
|
184
185
|
import * as worklink from "./worklink";
|
|
185
186
|
import * as workspaces from "./workspaces";
|
|
186
187
|
import * as xray from "./xray";
|
|
187
|
-
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, autoscaling, autoscalingplans, backup, batch, budgets, cfg, chime, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecommit, codedeploy, codepipeline, codestarconnections, codestarnotifications, cognito, config, connect, costexplorer, cur, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticloadbalancing, elasticloadbalancingv2, elasticsearch, elastictranscoder, elb, emr, emrcontainers, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, iot, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, opensearch, opsworks, organizations, outposts, pinpoint, pricing, qldb, quicksight, ram, rds, redshift, resourcegroups, resourcegroupstaggingapi, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, s3, s3control, s3outposts, sagemaker, schemas, secretsmanager, securityhub, serverless, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sfn, shield, signer, simpledb, sns, sqs, ssm, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transfer, types, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
|
188
|
+
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, autoscaling, autoscalingplans, backup, batch, budgets, cfg, chime, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecommit, codedeploy, codepipeline, codestarconnections, codestarnotifications, cognito, config, connect, costexplorer, cur, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticloadbalancing, elasticloadbalancingv2, elasticsearch, elastictranscoder, elb, emr, emrcontainers, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, iot, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, opensearch, opsworks, organizations, outposts, pinpoint, pricing, qldb, quicksight, ram, rds, redshift, redshiftdata, resourcegroups, resourcegroupstaggingapi, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, s3, s3control, s3outposts, sagemaker, schemas, secretsmanager, securityhub, serverless, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sfn, shield, signer, simpledb, sns, sqs, ssm, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transfer, types, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
package/index.js
CHANGED
|
@@ -18,8 +18,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.detective = exports.dax = exports.datasync = exports.datapipeline = exports.dataexchange = exports.cur = exports.costexplorer = exports.connect = exports.config = exports.cognito = exports.codestarnotifications = exports.codestarconnections = exports.codepipeline = exports.codedeploy = exports.codecommit = exports.codebuild = exports.codeartifact = exports.cloudwatch = exports.cloudtrail = exports.cloudsearch = exports.cloudhsmv2 = exports.cloudfront = exports.cloudformation = exports.cloudcontrol = exports.cloud9 = exports.chime = exports.cfg = exports.budgets = exports.batch = exports.backup = exports.autoscalingplans = exports.autoscaling = exports.athena = exports.appsync = exports.appstream = exports.apprunner = exports.appmesh = exports.applicationloadbalancing = exports.appflow = exports.appconfig = exports.appautoscaling = exports.apigatewayv2 = exports.apigateway = exports.amplify = exports.amp = exports.alb = exports.acmpca = exports.acm = exports.account = exports.accessanalyzer = void 0;
|
|
20
20
|
exports.macie = exports.location = exports.lightsail = exports.licensemanager = exports.lex = exports.lb = exports.lambda = exports.lakeformation = exports.kms = exports.kinesisanalyticsv2 = exports.kinesis = exports.keyspaces = exports.iot = exports.inspector = exports.imagebuilder = exports.identitystore = exports.iam = exports.guardduty = exports.grafana = exports.glue = exports.globalaccelerator = exports.glacier = exports.gamelift = exports.fsx = exports.fms = exports.emrcontainers = exports.emr = exports.elb = exports.elastictranscoder = exports.elasticsearch = exports.elasticloadbalancingv2 = exports.elasticloadbalancing = exports.elasticbeanstalk = exports.elasticache = exports.eks = exports.efs = exports.ecs = exports.ecrpublic = exports.ecr = exports.ec2transitgateway = exports.ec2clientvpn = exports.ec2 = exports.ebs = exports.dynamodb = exports.docdb = exports.dms = exports.dlm = exports.directoryservice = exports.directconnect = exports.devicefarm = void 0;
|
|
21
|
-
exports.
|
|
22
|
-
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.types = exports.transfer = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = void 0;
|
|
21
|
+
exports.ssm = exports.sqs = exports.sns = exports.simpledb = exports.signer = exports.shield = exports.sfn = exports.ses = exports.servicequotas = exports.servicediscovery = exports.servicecatalog = exports.serverlessrepository = exports.serverless = exports.securityhub = exports.secretsmanager = exports.schemas = exports.sagemaker = exports.s3outposts = exports.s3control = exports.s3 = exports.route53recoveryreadiness = exports.route53recoverycontrol = exports.route53domains = exports.route53 = exports.resourcegroupstaggingapi = exports.resourcegroups = exports.redshiftdata = exports.redshift = exports.rds = exports.ram = exports.quicksight = exports.qldb = exports.pricing = exports.pinpoint = exports.outposts = exports.organizations = exports.opsworks = exports.opensearch = exports.networkmanager = exports.networkfirewall = exports.neptune = exports.mwaa = exports.mskconnect = exports.msk = exports.mq = exports.memorydb = exports.mediastore = exports.mediapackage = exports.mediaconvert = exports.macie2 = void 0;
|
|
22
|
+
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.types = exports.transfer = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = void 0;
|
|
23
23
|
const pulumi = require("@pulumi/pulumi");
|
|
24
24
|
const utilities = require("./utilities");
|
|
25
25
|
// Export members:
|
|
@@ -295,6 +295,8 @@ const rds = require("./rds");
|
|
|
295
295
|
exports.rds = rds;
|
|
296
296
|
const redshift = require("./redshift");
|
|
297
297
|
exports.redshift = redshift;
|
|
298
|
+
const redshiftdata = require("./redshiftdata");
|
|
299
|
+
exports.redshiftdata = redshiftdata;
|
|
298
300
|
const resourcegroups = require("./resourcegroups");
|
|
299
301
|
exports.resourcegroups = resourcegroups;
|
|
300
302
|
const resourcegroupstaggingapi = require("./resourcegroupstaggingapi");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,wCAAsB;AACtB,8CAA4B;AAC5B,2CAAyB;AACzB,8CAA4B;AAC5B,2CAAyB;AACzB,yDAAuC;AACvC,wDAAsC;AACtC,yDAAuC;AACvC,6DAA2C;AAC3C,sDAAoC;AACpC,uDAAqC;AACrC,mDAAiC;AACjC,iDAA+B;AAC/B,gDAA8B;AAC9B,iDAA+B;AAC/B,kDAAgC;AAChC,8CAA4B;AAC5B,+CAA6B;AAC7B,+CAA6B;AAC7B,6CAA2B;AAC3B,2CAAyB;AACzB,yCAAuB;AACvB,0CAAwB;AAExB,gBAAgB;AAChB,gDAA8B;AAE9B,sBAAsB;AACtB,mDAAmD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/neptune/cluster.d.ts
CHANGED
|
@@ -54,6 +54,10 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
54
54
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
55
|
*/
|
|
56
56
|
static isInstance(obj: any): obj is Cluster;
|
|
57
|
+
/**
|
|
58
|
+
* Specifies whether upgrades between different major versions are allowed. You must set it to `true` when providing an `engineVersion` parameter that uses a different major version than the DB cluster's current version. Default is `false`.
|
|
59
|
+
*/
|
|
60
|
+
readonly allowMajorVersionUpgrade: pulumi.Output<boolean>;
|
|
57
61
|
/**
|
|
58
62
|
* Specifies whether any cluster modifications are applied immediately, or during the next maintenance window. Default is `false`.
|
|
59
63
|
*/
|
|
@@ -199,6 +203,10 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
199
203
|
* Input properties used for looking up and filtering Cluster resources.
|
|
200
204
|
*/
|
|
201
205
|
export interface ClusterState {
|
|
206
|
+
/**
|
|
207
|
+
* Specifies whether upgrades between different major versions are allowed. You must set it to `true` when providing an `engineVersion` parameter that uses a different major version than the DB cluster's current version. Default is `false`.
|
|
208
|
+
*/
|
|
209
|
+
allowMajorVersionUpgrade?: pulumi.Input<boolean>;
|
|
202
210
|
/**
|
|
203
211
|
* Specifies whether any cluster modifications are applied immediately, or during the next maintenance window. Default is `false`.
|
|
204
212
|
*/
|
|
@@ -336,6 +344,10 @@ export interface ClusterState {
|
|
|
336
344
|
* The set of arguments for constructing a Cluster resource.
|
|
337
345
|
*/
|
|
338
346
|
export interface ClusterArgs {
|
|
347
|
+
/**
|
|
348
|
+
* Specifies whether upgrades between different major versions are allowed. You must set it to `true` when providing an `engineVersion` parameter that uses a different major version than the DB cluster's current version. Default is `false`.
|
|
349
|
+
*/
|
|
350
|
+
allowMajorVersionUpgrade?: pulumi.Input<boolean>;
|
|
339
351
|
/**
|
|
340
352
|
* Specifies whether any cluster modifications are applied immediately, or during the next maintenance window. Default is `false`.
|
|
341
353
|
*/
|