@pulumi/aws 5.18.0 → 5.19.0-alpha.1666816671
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/appstream/stack.d.ts +21 -9
- package/appstream/stack.js.map +1 -1
- package/cloudfront/distribution.d.ts +1 -3
- package/cloudfront/distribution.js +1 -3
- package/cloudfront/distribution.js.map +1 -1
- package/directoryservice/directory.d.ts +9 -9
- package/ec2/launchConfiguration.d.ts +0 -2
- package/ec2/launchConfiguration.js +0 -2
- package/ec2/launchConfiguration.js.map +1 -1
- package/elasticache/getSubnetGroup.d.ts +75 -0
- package/elasticache/getSubnetGroup.js +37 -0
- package/elasticache/getSubnetGroup.js.map +1 -0
- package/elasticache/index.d.ts +3 -0
- package/elasticache/index.js +4 -1
- package/elasticache/index.js.map +1 -1
- package/elasticache/userGroup.d.ts +9 -0
- package/elasticache/userGroup.js.map +1 -1
- package/lightsail/certificate.d.ts +157 -0
- package/lightsail/certificate.js +86 -0
- package/lightsail/certificate.js.map +1 -0
- package/lightsail/containerService.d.ts +45 -0
- package/lightsail/containerService.js +35 -0
- package/lightsail/containerService.js.map +1 -1
- package/lightsail/domainEntry.d.ts +121 -0
- package/lightsail/domainEntry.js +91 -0
- package/lightsail/domainEntry.js.map +1 -0
- package/lightsail/index.d.ts +12 -0
- package/lightsail/index.js +21 -1
- package/lightsail/index.js.map +1 -1
- package/lightsail/lb.d.ts +176 -0
- package/lightsail/lb.js +100 -0
- package/lightsail/lb.js.map +1 -0
- package/lightsail/lbAttachment.d.ts +102 -0
- package/lightsail/lbAttachment.js +99 -0
- package/lightsail/lbAttachment.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/resourcegroups/group.d.ts +15 -3
- package/resourcegroups/group.js +2 -3
- package/resourcegroups/group.js.map +1 -1
- package/route53/getZone.d.ts +4 -0
- package/route53/getZone.js.map +1 -1
- package/route53/record.d.ts +1 -1
- package/route53/record.js +1 -1
- package/route53/zone.d.ts +8 -0
- package/route53/zone.js +2 -0
- package/route53/zone.js.map +1 -1
- package/rum/appMonitor.d.ts +20 -3
- package/rum/appMonitor.js +2 -0
- package/rum/appMonitor.js.map +1 -1
- package/sesv2/dedicatedIpPool.d.ts +95 -0
- package/sesv2/dedicatedIpPool.js +79 -0
- package/sesv2/dedicatedIpPool.js.map +1 -0
- package/sesv2/getDedicatedIpPool.d.ts +71 -0
- package/sesv2/getDedicatedIpPool.js +36 -0
- package/sesv2/getDedicatedIpPool.js.map +1 -0
- package/sesv2/index.d.ts +6 -0
- package/sesv2/index.js +9 -1
- package/sesv2/index.js.map +1 -1
- package/sns/platformApplication.d.ts +39 -1
- package/sns/platformApplication.js +19 -1
- package/sns/platformApplication.js.map +1 -1
- package/sqs/queue.d.ts +1 -10
- package/sqs/queue.js.map +1 -1
- package/ssm/association.d.ts +19 -3
- package/ssm/association.js +16 -0
- package/ssm/association.js.map +1 -1
- package/ssm/getPatchBaseline.d.ts +2 -2
- package/ssm/maintenanceWindow.d.ts +3 -3
- package/ssm/patchBaseline.d.ts +3 -3
- package/types/input.d.ts +63 -10
- package/types/output.d.ts +77 -10
|
@@ -56,6 +56,10 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
56
56
|
* The ARN assigned by AWS for this resource group.
|
|
57
57
|
*/
|
|
58
58
|
readonly arn: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* A configuration associates the resource group with an AWS service and specifies how the service can interact with the resources in the group. See below for details.
|
|
61
|
+
*/
|
|
62
|
+
readonly configurations: pulumi.Output<outputs.resourcegroups.GroupConfiguration[] | undefined>;
|
|
59
63
|
/**
|
|
60
64
|
* A description of the resource group.
|
|
61
65
|
*/
|
|
@@ -67,7 +71,7 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
67
71
|
/**
|
|
68
72
|
* A `resourceQuery` block. Resource queries are documented below.
|
|
69
73
|
*/
|
|
70
|
-
readonly resourceQuery: pulumi.Output<outputs.resourcegroups.GroupResourceQuery>;
|
|
74
|
+
readonly resourceQuery: pulumi.Output<outputs.resourcegroups.GroupResourceQuery | undefined>;
|
|
71
75
|
/**
|
|
72
76
|
* Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
73
77
|
*/
|
|
@@ -87,7 +91,7 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
87
91
|
* @param args The arguments to use to populate this resource's properties.
|
|
88
92
|
* @param opts A bag of options that control this resource's behavior.
|
|
89
93
|
*/
|
|
90
|
-
constructor(name: string, args
|
|
94
|
+
constructor(name: string, args?: GroupArgs, opts?: pulumi.CustomResourceOptions);
|
|
91
95
|
}
|
|
92
96
|
/**
|
|
93
97
|
* Input properties used for looking up and filtering Group resources.
|
|
@@ -97,6 +101,10 @@ export interface GroupState {
|
|
|
97
101
|
* The ARN assigned by AWS for this resource group.
|
|
98
102
|
*/
|
|
99
103
|
arn?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* A configuration associates the resource group with an AWS service and specifies how the service can interact with the resources in the group. See below for details.
|
|
106
|
+
*/
|
|
107
|
+
configurations?: pulumi.Input<pulumi.Input<inputs.resourcegroups.GroupConfiguration>[]>;
|
|
100
108
|
/**
|
|
101
109
|
* A description of the resource group.
|
|
102
110
|
*/
|
|
@@ -126,6 +134,10 @@ export interface GroupState {
|
|
|
126
134
|
* The set of arguments for constructing a Group resource.
|
|
127
135
|
*/
|
|
128
136
|
export interface GroupArgs {
|
|
137
|
+
/**
|
|
138
|
+
* A configuration associates the resource group with an AWS service and specifies how the service can interact with the resources in the group. See below for details.
|
|
139
|
+
*/
|
|
140
|
+
configurations?: pulumi.Input<pulumi.Input<inputs.resourcegroups.GroupConfiguration>[]>;
|
|
129
141
|
/**
|
|
130
142
|
* A description of the resource group.
|
|
131
143
|
*/
|
|
@@ -137,7 +149,7 @@ export interface GroupArgs {
|
|
|
137
149
|
/**
|
|
138
150
|
* A `resourceQuery` block. Resource queries are documented below.
|
|
139
151
|
*/
|
|
140
|
-
resourceQuery
|
|
152
|
+
resourceQuery?: pulumi.Input<inputs.resourcegroups.GroupResourceQuery>;
|
|
141
153
|
/**
|
|
142
154
|
* Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
143
155
|
*/
|
package/resourcegroups/group.js
CHANGED
|
@@ -47,6 +47,7 @@ class Group extends pulumi.CustomResource {
|
|
|
47
47
|
if (opts.id) {
|
|
48
48
|
const state = argsOrState;
|
|
49
49
|
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
50
|
+
resourceInputs["configurations"] = state ? state.configurations : undefined;
|
|
50
51
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
51
52
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
52
53
|
resourceInputs["resourceQuery"] = state ? state.resourceQuery : undefined;
|
|
@@ -55,9 +56,7 @@ class Group extends pulumi.CustomResource {
|
|
|
55
56
|
}
|
|
56
57
|
else {
|
|
57
58
|
const args = argsOrState;
|
|
58
|
-
|
|
59
|
-
throw new Error("Missing required property 'resourceQuery'");
|
|
60
|
-
}
|
|
59
|
+
resourceInputs["configurations"] = args ? args.configurations : undefined;
|
|
61
60
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
62
61
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
63
62
|
resourceInputs["resourceQuery"] = args ? args.resourceQuery : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"group.js","sourceRoot":"","sources":["../../resourcegroups/group.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"group.js","sourceRoot":"","sources":["../../resourcegroups/group.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAiE5C,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,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,WAAoC,CAAC;YAClD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,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,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;IAxFD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;;AA1BL,sBA0FC;AA5EG,gBAAgB;AACO,kBAAY,GAAG,gCAAgC,CAAC"}
|
package/route53/getZone.d.ts
CHANGED
|
@@ -90,6 +90,10 @@ export interface GetZoneResult {
|
|
|
90
90
|
* List of DNS name servers for the Hosted Zone.
|
|
91
91
|
*/
|
|
92
92
|
readonly nameServers: string[];
|
|
93
|
+
/**
|
|
94
|
+
* The Route 53 name server that created the SOA record.
|
|
95
|
+
*/
|
|
96
|
+
readonly primaryNameServer: string;
|
|
93
97
|
readonly privateZone?: boolean;
|
|
94
98
|
/**
|
|
95
99
|
* The number of Record Set in the Hosted Zone.
|
package/route53/getZone.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getZone.js","sourceRoot":"","sources":["../../route53/getZone.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,0BAeC;
|
|
1
|
+
{"version":3,"file":"getZone.js","sourceRoot":"","sources":["../../route53/getZone.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,0BAeC;AA+ED,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3D,CAAC;AAFD,sCAEC"}
|
package/route53/record.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ import * as enums from "../types/enums";
|
|
|
115
115
|
* $ pulumi import aws:route53/record:Record myrecord Z4KAPRWWNC7JR_dev.example.com_NS
|
|
116
116
|
* ```
|
|
117
117
|
*
|
|
118
|
-
* If the record also contains a
|
|
118
|
+
* If the record also contains a set identifier, it should be appended
|
|
119
119
|
*
|
|
120
120
|
* ```sh
|
|
121
121
|
* $ pulumi import aws:route53/record:Record myrecord Z4KAPRWWNC7JR_dev.example.com_NS_dev
|
package/route53/record.js
CHANGED
|
@@ -118,7 +118,7 @@ const utilities = require("../utilities");
|
|
|
118
118
|
* $ pulumi import aws:route53/record:Record myrecord Z4KAPRWWNC7JR_dev.example.com_NS
|
|
119
119
|
* ```
|
|
120
120
|
*
|
|
121
|
-
* If the record also contains a
|
|
121
|
+
* If the record also contains a set identifier, it should be appended
|
|
122
122
|
*
|
|
123
123
|
* ```sh
|
|
124
124
|
* $ pulumi import aws:route53/record:Record myrecord Z4KAPRWWNC7JR_dev.example.com_NS_dev
|
package/route53/zone.d.ts
CHANGED
|
@@ -99,6 +99,10 @@ export declare class Zone extends pulumi.CustomResource {
|
|
|
99
99
|
* Find more about delegation sets in [AWS docs](https://docs.aws.amazon.com/Route53/latest/APIReference/actions-on-reusable-delegation-sets.html).
|
|
100
100
|
*/
|
|
101
101
|
readonly nameServers: pulumi.Output<string[]>;
|
|
102
|
+
/**
|
|
103
|
+
* The Route 53 name server that created the SOA record.
|
|
104
|
+
*/
|
|
105
|
+
readonly primaryNameServer: pulumi.Output<string>;
|
|
102
106
|
/**
|
|
103
107
|
* A mapping of tags to assign to the zone. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
104
108
|
*/
|
|
@@ -157,6 +161,10 @@ export interface ZoneState {
|
|
|
157
161
|
* Find more about delegation sets in [AWS docs](https://docs.aws.amazon.com/Route53/latest/APIReference/actions-on-reusable-delegation-sets.html).
|
|
158
162
|
*/
|
|
159
163
|
nameServers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
164
|
+
/**
|
|
165
|
+
* The Route 53 name server that created the SOA record.
|
|
166
|
+
*/
|
|
167
|
+
primaryNameServer?: pulumi.Input<string>;
|
|
160
168
|
/**
|
|
161
169
|
* A mapping of tags to assign to the zone. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
162
170
|
*/
|
package/route53/zone.js
CHANGED
|
@@ -75,6 +75,7 @@ class Zone extends pulumi.CustomResource {
|
|
|
75
75
|
resourceInputs["forceDestroy"] = state ? state.forceDestroy : undefined;
|
|
76
76
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
77
77
|
resourceInputs["nameServers"] = state ? state.nameServers : undefined;
|
|
78
|
+
resourceInputs["primaryNameServer"] = state ? state.primaryNameServer : undefined;
|
|
78
79
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
79
80
|
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
80
81
|
resourceInputs["vpcs"] = state ? state.vpcs : undefined;
|
|
@@ -90,6 +91,7 @@ class Zone extends pulumi.CustomResource {
|
|
|
90
91
|
resourceInputs["vpcs"] = args ? args.vpcs : undefined;
|
|
91
92
|
resourceInputs["arn"] = undefined /*out*/;
|
|
92
93
|
resourceInputs["nameServers"] = undefined /*out*/;
|
|
94
|
+
resourceInputs["primaryNameServer"] = undefined /*out*/;
|
|
93
95
|
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
94
96
|
resourceInputs["zoneId"] = undefined /*out*/;
|
|
95
97
|
}
|
package/route53/zone.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zone.js","sourceRoot":"","sources":["../../route53/zone.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"zone.js","sourceRoot":"","sources":["../../route53/zone.ts"],"names":[],"mappings":"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"}
|
package/rum/appMonitor.d.ts
CHANGED
|
@@ -39,7 +39,14 @@ export declare class AppMonitor extends pulumi.CustomResource {
|
|
|
39
39
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
40
|
*/
|
|
41
41
|
static isInstance(obj: any): obj is AppMonitor;
|
|
42
|
+
/**
|
|
43
|
+
* configuration data for the app monitor. See appMonitorConfiguration below.
|
|
44
|
+
*/
|
|
42
45
|
readonly appMonitorConfiguration: pulumi.Output<outputs.rum.AppMonitorAppMonitorConfiguration>;
|
|
46
|
+
/**
|
|
47
|
+
* The unique ID of the app monitor. Useful for JS templates.
|
|
48
|
+
*/
|
|
49
|
+
readonly appMonitorId: pulumi.Output<string>;
|
|
43
50
|
/**
|
|
44
51
|
* The Amazon Resource Name (ARN) specifying the app monitor.
|
|
45
52
|
*/
|
|
@@ -53,7 +60,7 @@ export declare class AppMonitor extends pulumi.CustomResource {
|
|
|
53
60
|
*/
|
|
54
61
|
readonly cwLogGroup: pulumi.Output<string>;
|
|
55
62
|
/**
|
|
56
|
-
*
|
|
63
|
+
* The top-level internet domain name for which your application has administrative authority.
|
|
57
64
|
*/
|
|
58
65
|
readonly domain: pulumi.Output<string>;
|
|
59
66
|
/**
|
|
@@ -85,7 +92,14 @@ export declare class AppMonitor extends pulumi.CustomResource {
|
|
|
85
92
|
* Input properties used for looking up and filtering AppMonitor resources.
|
|
86
93
|
*/
|
|
87
94
|
export interface AppMonitorState {
|
|
95
|
+
/**
|
|
96
|
+
* configuration data for the app monitor. See appMonitorConfiguration below.
|
|
97
|
+
*/
|
|
88
98
|
appMonitorConfiguration?: pulumi.Input<inputs.rum.AppMonitorAppMonitorConfiguration>;
|
|
99
|
+
/**
|
|
100
|
+
* The unique ID of the app monitor. Useful for JS templates.
|
|
101
|
+
*/
|
|
102
|
+
appMonitorId?: pulumi.Input<string>;
|
|
89
103
|
/**
|
|
90
104
|
* The Amazon Resource Name (ARN) specifying the app monitor.
|
|
91
105
|
*/
|
|
@@ -99,7 +113,7 @@ export interface AppMonitorState {
|
|
|
99
113
|
*/
|
|
100
114
|
cwLogGroup?: pulumi.Input<string>;
|
|
101
115
|
/**
|
|
102
|
-
*
|
|
116
|
+
* The top-level internet domain name for which your application has administrative authority.
|
|
103
117
|
*/
|
|
104
118
|
domain?: pulumi.Input<string>;
|
|
105
119
|
/**
|
|
@@ -123,13 +137,16 @@ export interface AppMonitorState {
|
|
|
123
137
|
* The set of arguments for constructing a AppMonitor resource.
|
|
124
138
|
*/
|
|
125
139
|
export interface AppMonitorArgs {
|
|
140
|
+
/**
|
|
141
|
+
* configuration data for the app monitor. See appMonitorConfiguration below.
|
|
142
|
+
*/
|
|
126
143
|
appMonitorConfiguration?: pulumi.Input<inputs.rum.AppMonitorAppMonitorConfiguration>;
|
|
127
144
|
/**
|
|
128
145
|
* Data collected by RUM is kept by RUM for 30 days and then deleted. This parameter specifies whether RUM sends a copy of this telemetry data to Amazon CloudWatch Logs in your account. This enables you to keep the telemetry data for more than 30 days, but it does incur Amazon CloudWatch Logs charges. Default value is `false`.
|
|
129
146
|
*/
|
|
130
147
|
cwLogEnabled?: pulumi.Input<boolean>;
|
|
131
148
|
/**
|
|
132
|
-
*
|
|
149
|
+
* The top-level internet domain name for which your application has administrative authority.
|
|
133
150
|
*/
|
|
134
151
|
domain: pulumi.Input<string>;
|
|
135
152
|
/**
|
package/rum/appMonitor.js
CHANGED
|
@@ -34,6 +34,7 @@ class AppMonitor extends pulumi.CustomResource {
|
|
|
34
34
|
if (opts.id) {
|
|
35
35
|
const state = argsOrState;
|
|
36
36
|
resourceInputs["appMonitorConfiguration"] = state ? state.appMonitorConfiguration : undefined;
|
|
37
|
+
resourceInputs["appMonitorId"] = state ? state.appMonitorId : undefined;
|
|
37
38
|
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
38
39
|
resourceInputs["cwLogEnabled"] = state ? state.cwLogEnabled : undefined;
|
|
39
40
|
resourceInputs["cwLogGroup"] = state ? state.cwLogGroup : undefined;
|
|
@@ -52,6 +53,7 @@ class AppMonitor extends pulumi.CustomResource {
|
|
|
52
53
|
resourceInputs["domain"] = args ? args.domain : undefined;
|
|
53
54
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
54
55
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
56
|
+
resourceInputs["appMonitorId"] = undefined /*out*/;
|
|
55
57
|
resourceInputs["arn"] = undefined /*out*/;
|
|
56
58
|
resourceInputs["cwLogGroup"] = undefined /*out*/;
|
|
57
59
|
resourceInputs["tagsAll"] = undefined /*out*/;
|
package/rum/appMonitor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appMonitor.js","sourceRoot":"","sources":["../../rum/appMonitor.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"appMonitor.js","sourceRoot":"","sources":["../../rum/appMonitor.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## Example Usage
|
|
4
|
+
* ### Basic Usage
|
|
5
|
+
*
|
|
6
|
+
* ```typescript
|
|
7
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
+
* import * as aws from "@pulumi/aws";
|
|
9
|
+
*
|
|
10
|
+
* const example = new aws.sesv2.DedicatedIpPool("example", {
|
|
11
|
+
* poolName: "my-pool",
|
|
12
|
+
* });
|
|
13
|
+
* ```
|
|
14
|
+
*
|
|
15
|
+
* ## Import
|
|
16
|
+
*
|
|
17
|
+
* SESv2 (Simple Email V2) Dedicated IP Pool can be imported using the `pool_name`, e.g.,
|
|
18
|
+
*
|
|
19
|
+
* ```sh
|
|
20
|
+
* $ pulumi import aws:sesv2/dedicatedIpPool:DedicatedIpPool example my-pool
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare class DedicatedIpPool extends pulumi.CustomResource {
|
|
24
|
+
/**
|
|
25
|
+
* Get an existing DedicatedIpPool resource's state with the given name, ID, and optional extra
|
|
26
|
+
* properties used to qualify the lookup.
|
|
27
|
+
*
|
|
28
|
+
* @param name The _unique_ name of the resulting resource.
|
|
29
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
30
|
+
* @param state Any extra arguments used during the lookup.
|
|
31
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
32
|
+
*/
|
|
33
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DedicatedIpPoolState, opts?: pulumi.CustomResourceOptions): DedicatedIpPool;
|
|
34
|
+
/**
|
|
35
|
+
* Returns true if the given object is an instance of DedicatedIpPool. This is designed to work even
|
|
36
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
37
|
+
*/
|
|
38
|
+
static isInstance(obj: any): obj is DedicatedIpPool;
|
|
39
|
+
/**
|
|
40
|
+
* ARN of the Dedicated IP Pool.
|
|
41
|
+
*/
|
|
42
|
+
readonly arn: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Name of the dedicated IP pool.
|
|
45
|
+
*/
|
|
46
|
+
readonly poolName: pulumi.Output<string>;
|
|
47
|
+
readonly tags: pulumi.Output<{
|
|
48
|
+
[key: string]: string;
|
|
49
|
+
} | undefined>;
|
|
50
|
+
readonly tagsAll: pulumi.Output<{
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
}>;
|
|
53
|
+
/**
|
|
54
|
+
* Create a DedicatedIpPool resource with the given unique name, arguments, and options.
|
|
55
|
+
*
|
|
56
|
+
* @param name The _unique_ name of the resource.
|
|
57
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
58
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
59
|
+
*/
|
|
60
|
+
constructor(name: string, args: DedicatedIpPoolArgs, opts?: pulumi.CustomResourceOptions);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Input properties used for looking up and filtering DedicatedIpPool resources.
|
|
64
|
+
*/
|
|
65
|
+
export interface DedicatedIpPoolState {
|
|
66
|
+
/**
|
|
67
|
+
* ARN of the Dedicated IP Pool.
|
|
68
|
+
*/
|
|
69
|
+
arn?: pulumi.Input<string>;
|
|
70
|
+
/**
|
|
71
|
+
* Name of the dedicated IP pool.
|
|
72
|
+
*/
|
|
73
|
+
poolName?: pulumi.Input<string>;
|
|
74
|
+
tags?: pulumi.Input<{
|
|
75
|
+
[key: string]: pulumi.Input<string>;
|
|
76
|
+
}>;
|
|
77
|
+
tagsAll?: pulumi.Input<{
|
|
78
|
+
[key: string]: pulumi.Input<string>;
|
|
79
|
+
}>;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* The set of arguments for constructing a DedicatedIpPool resource.
|
|
83
|
+
*/
|
|
84
|
+
export interface DedicatedIpPoolArgs {
|
|
85
|
+
/**
|
|
86
|
+
* Name of the dedicated IP pool.
|
|
87
|
+
*/
|
|
88
|
+
poolName: pulumi.Input<string>;
|
|
89
|
+
tags?: pulumi.Input<{
|
|
90
|
+
[key: string]: pulumi.Input<string>;
|
|
91
|
+
}>;
|
|
92
|
+
tagsAll?: pulumi.Input<{
|
|
93
|
+
[key: string]: pulumi.Input<string>;
|
|
94
|
+
}>;
|
|
95
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
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.DedicatedIpPool = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
* ### Basic Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as aws from "@pulumi/aws";
|
|
15
|
+
*
|
|
16
|
+
* const example = new aws.sesv2.DedicatedIpPool("example", {
|
|
17
|
+
* poolName: "my-pool",
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* ## Import
|
|
22
|
+
*
|
|
23
|
+
* SESv2 (Simple Email V2) Dedicated IP Pool can be imported using the `pool_name`, e.g.,
|
|
24
|
+
*
|
|
25
|
+
* ```sh
|
|
26
|
+
* $ pulumi import aws:sesv2/dedicatedIpPool:DedicatedIpPool example my-pool
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
class DedicatedIpPool extends pulumi.CustomResource {
|
|
30
|
+
constructor(name, argsOrState, opts) {
|
|
31
|
+
let resourceInputs = {};
|
|
32
|
+
opts = opts || {};
|
|
33
|
+
if (opts.id) {
|
|
34
|
+
const state = argsOrState;
|
|
35
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
36
|
+
resourceInputs["poolName"] = state ? state.poolName : undefined;
|
|
37
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
38
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
const args = argsOrState;
|
|
42
|
+
if ((!args || args.poolName === undefined) && !opts.urn) {
|
|
43
|
+
throw new Error("Missing required property 'poolName'");
|
|
44
|
+
}
|
|
45
|
+
resourceInputs["poolName"] = args ? args.poolName : undefined;
|
|
46
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
47
|
+
resourceInputs["tagsAll"] = args ? args.tagsAll : undefined;
|
|
48
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
49
|
+
}
|
|
50
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
51
|
+
super(DedicatedIpPool.__pulumiType, name, resourceInputs, opts);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Get an existing DedicatedIpPool resource's state with the given name, ID, and optional extra
|
|
55
|
+
* properties used to qualify the lookup.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resulting resource.
|
|
58
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
59
|
+
* @param state Any extra arguments used during the lookup.
|
|
60
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
61
|
+
*/
|
|
62
|
+
static get(name, id, state, opts) {
|
|
63
|
+
return new DedicatedIpPool(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns true if the given object is an instance of DedicatedIpPool. This is designed to work even
|
|
67
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
68
|
+
*/
|
|
69
|
+
static isInstance(obj) {
|
|
70
|
+
if (obj === undefined || obj === null) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
return obj['__pulumiType'] === DedicatedIpPool.__pulumiType;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
exports.DedicatedIpPool = DedicatedIpPool;
|
|
77
|
+
/** @internal */
|
|
78
|
+
DedicatedIpPool.__pulumiType = 'aws:sesv2/dedicatedIpPool:DedicatedIpPool';
|
|
79
|
+
//# sourceMappingURL=dedicatedIpPool.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dedicatedIpPool.js","sourceRoot":"","sources":["../../sesv2/dedicatedIpPool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IA+CtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,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,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;;AA1BL,0CAqEC;AAvDG,gBAAgB;AACO,4BAAY,GAAG,2CAA2C,CAAC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* ## Example Usage
|
|
5
|
+
* ### Basic Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as aws from "@pulumi/aws";
|
|
10
|
+
*
|
|
11
|
+
* const example = pulumi.output(aws.sesv2.getDedicatedIpPool({
|
|
12
|
+
* poolName: "my-pool",
|
|
13
|
+
* }));
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getDedicatedIpPool(args: GetDedicatedIpPoolArgs, opts?: pulumi.InvokeOptions): Promise<GetDedicatedIpPoolResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getDedicatedIpPool.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetDedicatedIpPoolArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Name of the dedicated IP pool.
|
|
23
|
+
*/
|
|
24
|
+
poolName: string;
|
|
25
|
+
/**
|
|
26
|
+
* A map of tags attached to the pool.
|
|
27
|
+
*/
|
|
28
|
+
tags?: {
|
|
29
|
+
[key: string]: string;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getDedicatedIpPool.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetDedicatedIpPoolResult {
|
|
36
|
+
/**
|
|
37
|
+
* ARN of the Dedicated IP Pool.
|
|
38
|
+
*/
|
|
39
|
+
readonly arn: string;
|
|
40
|
+
/**
|
|
41
|
+
* A list of objects describing the pool's dedicated IP's. See `dedicatedIps`.
|
|
42
|
+
*/
|
|
43
|
+
readonly dedicatedIps: outputs.sesv2.GetDedicatedIpPoolDedicatedIp[];
|
|
44
|
+
/**
|
|
45
|
+
* The provider-assigned unique ID for this managed resource.
|
|
46
|
+
*/
|
|
47
|
+
readonly id: string;
|
|
48
|
+
readonly poolName: string;
|
|
49
|
+
/**
|
|
50
|
+
* A map of tags attached to the pool.
|
|
51
|
+
*/
|
|
52
|
+
readonly tags: {
|
|
53
|
+
[key: string]: string;
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
export declare function getDedicatedIpPoolOutput(args: GetDedicatedIpPoolOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDedicatedIpPoolResult>;
|
|
57
|
+
/**
|
|
58
|
+
* A collection of arguments for invoking getDedicatedIpPool.
|
|
59
|
+
*/
|
|
60
|
+
export interface GetDedicatedIpPoolOutputArgs {
|
|
61
|
+
/**
|
|
62
|
+
* Name of the dedicated IP pool.
|
|
63
|
+
*/
|
|
64
|
+
poolName: pulumi.Input<string>;
|
|
65
|
+
/**
|
|
66
|
+
* A map of tags attached to the pool.
|
|
67
|
+
*/
|
|
68
|
+
tags?: pulumi.Input<{
|
|
69
|
+
[key: string]: pulumi.Input<string>;
|
|
70
|
+
}>;
|
|
71
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.getDedicatedIpPoolOutput = exports.getDedicatedIpPool = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
* ### Basic Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as aws from "@pulumi/aws";
|
|
15
|
+
*
|
|
16
|
+
* const example = pulumi.output(aws.sesv2.getDedicatedIpPool({
|
|
17
|
+
* poolName: "my-pool",
|
|
18
|
+
* }));
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
function getDedicatedIpPool(args, opts) {
|
|
22
|
+
if (!opts) {
|
|
23
|
+
opts = {};
|
|
24
|
+
}
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
26
|
+
return pulumi.runtime.invoke("aws:sesv2/getDedicatedIpPool:getDedicatedIpPool", {
|
|
27
|
+
"poolName": args.poolName,
|
|
28
|
+
"tags": args.tags,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getDedicatedIpPool = getDedicatedIpPool;
|
|
32
|
+
function getDedicatedIpPoolOutput(args, opts) {
|
|
33
|
+
return pulumi.output(args).apply(a => getDedicatedIpPool(a, opts));
|
|
34
|
+
}
|
|
35
|
+
exports.getDedicatedIpPoolOutput = getDedicatedIpPoolOutput;
|
|
36
|
+
//# sourceMappingURL=getDedicatedIpPool.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDedicatedIpPool.js","sourceRoot":"","sources":["../../sesv2/getDedicatedIpPool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;GAYG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gDAUC;AAuCD,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,4DAEC"}
|
package/sesv2/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
export { ConfigurationSetArgs, ConfigurationSetState } from "./configurationSet";
|
|
2
2
|
export declare type ConfigurationSet = import("./configurationSet").ConfigurationSet;
|
|
3
3
|
export declare const ConfigurationSet: typeof import("./configurationSet").ConfigurationSet;
|
|
4
|
+
export { DedicatedIpPoolArgs, DedicatedIpPoolState } from "./dedicatedIpPool";
|
|
5
|
+
export declare type DedicatedIpPool = import("./dedicatedIpPool").DedicatedIpPool;
|
|
6
|
+
export declare const DedicatedIpPool: typeof import("./dedicatedIpPool").DedicatedIpPool;
|
|
7
|
+
export { GetDedicatedIpPoolArgs, GetDedicatedIpPoolResult, GetDedicatedIpPoolOutputArgs } from "./getDedicatedIpPool";
|
|
8
|
+
export declare const getDedicatedIpPool: typeof import("./getDedicatedIpPool").getDedicatedIpPool;
|
|
9
|
+
export declare const getDedicatedIpPoolOutput: typeof import("./getDedicatedIpPool").getDedicatedIpPoolOutput;
|
package/sesv2/index.js
CHANGED
|
@@ -2,21 +2,29 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.ConfigurationSet = void 0;
|
|
5
|
+
exports.getDedicatedIpPoolOutput = exports.getDedicatedIpPool = exports.DedicatedIpPool = exports.ConfigurationSet = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.ConfigurationSet = null;
|
|
9
|
+
exports.DedicatedIpPool = null;
|
|
10
|
+
exports.getDedicatedIpPool = null;
|
|
11
|
+
exports.getDedicatedIpPoolOutput = null;
|
|
9
12
|
utilities.lazyLoad(exports, ["ConfigurationSet"], () => require("./configurationSet"));
|
|
13
|
+
utilities.lazyLoad(exports, ["DedicatedIpPool"], () => require("./dedicatedIpPool"));
|
|
14
|
+
utilities.lazyLoad(exports, ["getDedicatedIpPool", "getDedicatedIpPoolOutput"], () => require("./getDedicatedIpPool"));
|
|
10
15
|
const _module = {
|
|
11
16
|
version: utilities.getVersion(),
|
|
12
17
|
construct: (name, type, urn) => {
|
|
13
18
|
switch (type) {
|
|
14
19
|
case "aws:sesv2/configurationSet:ConfigurationSet":
|
|
15
20
|
return new exports.ConfigurationSet(name, undefined, { urn });
|
|
21
|
+
case "aws:sesv2/dedicatedIpPool:DedicatedIpPool":
|
|
22
|
+
return new exports.DedicatedIpPool(name, undefined, { urn });
|
|
16
23
|
default:
|
|
17
24
|
throw new Error(`unknown resource type ${type}`);
|
|
18
25
|
}
|
|
19
26
|
},
|
|
20
27
|
};
|
|
21
28
|
pulumi.runtime.registerResourceModule("aws", "sesv2/configurationSet", _module);
|
|
29
|
+
pulumi.runtime.registerResourceModule("aws", "sesv2/dedicatedIpPool", _module);
|
|
22
30
|
//# sourceMappingURL=index.js.map
|
package/sesv2/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../sesv2/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,gBAAgB,GAAyD,IAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../sesv2/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAIrF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAGlF,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AAEpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AACvF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AACrF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAEtH,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,6CAA6C;gBAC9C,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA"}
|