@pulumi/aws 6.76.0 → 6.77.0-alpha.1744221671
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/alb/targetGroupAttachment.d.ts +0 -23
- package/alb/targetGroupAttachment.js +0 -23
- package/alb/targetGroupAttachment.js.map +1 -1
- package/apigateway/integration.d.ts +4 -4
- package/apigateway/integration.js +4 -4
- package/apigateway/method.d.ts +1 -1
- package/apigateway/method.js +1 -1
- package/autoscaling/group.d.ts +1 -1
- package/autoscaling/group.js +1 -1
- package/costexplorer/anomalyMonitor.d.ts +6 -6
- package/costexplorer/anomalyMonitor.js +6 -6
- package/ec2/getInternetGateway.d.ts +2 -2
- package/ec2/getInternetGateway.js +2 -2
- package/ec2/getLocalGateway.d.ts +2 -2
- package/ec2/getLocalGateway.js +2 -2
- package/ec2/getLocalGatewayRouteTable.d.ts +2 -2
- package/ec2/getLocalGatewayRouteTable.js +2 -2
- package/ec2/getRoute.d.ts +2 -2
- package/ec2/getRoute.js +2 -2
- package/ec2/getRouteTable.d.ts +2 -2
- package/ec2/getRouteTable.js +2 -2
- package/ec2/getSecurityGroup.d.ts +2 -2
- package/ec2/getSecurityGroup.js +2 -2
- package/ec2/getSubnet.d.ts +2 -2
- package/ec2/getSubnet.js +2 -2
- package/ec2/getVpc.d.ts +2 -2
- package/ec2/getVpc.js +2 -2
- package/ec2/spotFleetRequest.d.ts +1 -1
- package/ec2/spotFleetRequest.js +1 -1
- package/elasticsearch/domain.d.ts +1 -1
- package/elasticsearch/domain.js +1 -1
- package/getAvailabilityZone.d.ts +4 -4
- package/getAvailabilityZone.js +4 -4
- package/lb/targetGroupAttachment.d.ts +0 -23
- package/lb/targetGroupAttachment.js +0 -23
- package/lb/targetGroupAttachment.js.map +1 -1
- package/opensearch/domain.d.ts +1 -1
- package/opensearch/domain.js +1 -1
- package/package.json +2 -2
- package/sns/topicSubscription.d.ts +2 -2
- package/sns/topicSubscription.js +2 -2
|
@@ -47,29 +47,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
47
47
|
* });
|
|
48
48
|
* ```
|
|
49
49
|
*
|
|
50
|
-
* ### Registering Multiple Targets
|
|
51
|
-
*
|
|
52
|
-
* ```typescript
|
|
53
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
-
* import * as aws from "@pulumi/aws";
|
|
55
|
-
*
|
|
56
|
-
* const example: aws.ec2.Instance[] = [];
|
|
57
|
-
* for (const range = {value: 0}; range.value < 3; range.value++) {
|
|
58
|
-
* example.push(new aws.ec2.Instance(`example-${range.value}`, {}));
|
|
59
|
-
* }
|
|
60
|
-
* const exampleTargetGroup = new aws.lb.TargetGroup("example", {});
|
|
61
|
-
* const exampleTargetGroupAttachment: aws.lb.TargetGroupAttachment[] = [];
|
|
62
|
-
* pulumi.all(example.map((v, k) => [k, v]).reduce((__obj, [k, v]) => ({ ...__obj, [k]: v }))).apply(rangeBody => {
|
|
63
|
-
* for (const range of Object.entries(rangeBody).map(([k, v]) => ({key: k, value: v}))) {
|
|
64
|
-
* exampleTargetGroupAttachment.push(new aws.lb.TargetGroupAttachment(`example-${range.key}`, {
|
|
65
|
-
* targetGroupArn: exampleTargetGroup.arn,
|
|
66
|
-
* targetId: range.value.id,
|
|
67
|
-
* port: 80,
|
|
68
|
-
* }));
|
|
69
|
-
* }
|
|
70
|
-
* });
|
|
71
|
-
* ```
|
|
72
|
-
*
|
|
73
50
|
* ## Import
|
|
74
51
|
*
|
|
75
52
|
* You cannot import Target Group Attachments.
|
|
@@ -53,29 +53,6 @@ const utilities = require("../utilities");
|
|
|
53
53
|
* });
|
|
54
54
|
* ```
|
|
55
55
|
*
|
|
56
|
-
* ### Registering Multiple Targets
|
|
57
|
-
*
|
|
58
|
-
* ```typescript
|
|
59
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
60
|
-
* import * as aws from "@pulumi/aws";
|
|
61
|
-
*
|
|
62
|
-
* const example: aws.ec2.Instance[] = [];
|
|
63
|
-
* for (const range = {value: 0}; range.value < 3; range.value++) {
|
|
64
|
-
* example.push(new aws.ec2.Instance(`example-${range.value}`, {}));
|
|
65
|
-
* }
|
|
66
|
-
* const exampleTargetGroup = new aws.lb.TargetGroup("example", {});
|
|
67
|
-
* const exampleTargetGroupAttachment: aws.lb.TargetGroupAttachment[] = [];
|
|
68
|
-
* pulumi.all(example.map((v, k) => [k, v]).reduce((__obj, [k, v]) => ({ ...__obj, [k]: v }))).apply(rangeBody => {
|
|
69
|
-
* for (const range of Object.entries(rangeBody).map(([k, v]) => ({key: k, value: v}))) {
|
|
70
|
-
* exampleTargetGroupAttachment.push(new aws.lb.TargetGroupAttachment(`example-${range.key}`, {
|
|
71
|
-
* targetGroupArn: exampleTargetGroup.arn,
|
|
72
|
-
* targetId: range.value.id,
|
|
73
|
-
* port: 80,
|
|
74
|
-
* }));
|
|
75
|
-
* }
|
|
76
|
-
* });
|
|
77
|
-
* ```
|
|
78
|
-
*
|
|
79
56
|
* ## Import
|
|
80
57
|
*
|
|
81
58
|
* You cannot import Target Group Attachments.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"targetGroupAttachment.js","sourceRoot":"","sources":["../../alb/targetGroupAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"targetGroupAttachment.js","sourceRoot":"","sources":["../../alb/targetGroupAttachment.ts"],"names":[],"mappings":"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"}
|
|
@@ -54,8 +54,8 @@ import { RestApi } from "./index";
|
|
|
54
54
|
* import * as std from "@pulumi/std";
|
|
55
55
|
*
|
|
56
56
|
* const config = new pulumi.Config();
|
|
57
|
-
* const myregion = config.requireObject("myregion");
|
|
58
|
-
* const accountId = config.requireObject("accountId");
|
|
57
|
+
* const myregion = config.requireObject<any>("myregion");
|
|
58
|
+
* const accountId = config.requireObject<any>("accountId");
|
|
59
59
|
* // API Gateway
|
|
60
60
|
* const api = new aws.apigateway.RestApi("api", {name: "myapi"});
|
|
61
61
|
* const resource = new aws.apigateway.Resource("resource", {
|
|
@@ -119,8 +119,8 @@ import { RestApi } from "./index";
|
|
|
119
119
|
* import * as aws from "@pulumi/aws";
|
|
120
120
|
*
|
|
121
121
|
* const config = new pulumi.Config();
|
|
122
|
-
* const name = config.requireObject("name");
|
|
123
|
-
* const subnetId = config.requireObject("subnetId");
|
|
122
|
+
* const name = config.requireObject<any>("name");
|
|
123
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
124
124
|
* const test = new aws.lb.LoadBalancer("test", {
|
|
125
125
|
* name: name,
|
|
126
126
|
* internal: true,
|
|
@@ -57,8 +57,8 @@ const utilities = require("../utilities");
|
|
|
57
57
|
* import * as std from "@pulumi/std";
|
|
58
58
|
*
|
|
59
59
|
* const config = new pulumi.Config();
|
|
60
|
-
* const myregion = config.requireObject("myregion");
|
|
61
|
-
* const accountId = config.requireObject("accountId");
|
|
60
|
+
* const myregion = config.requireObject<any>("myregion");
|
|
61
|
+
* const accountId = config.requireObject<any>("accountId");
|
|
62
62
|
* // API Gateway
|
|
63
63
|
* const api = new aws.apigateway.RestApi("api", {name: "myapi"});
|
|
64
64
|
* const resource = new aws.apigateway.Resource("resource", {
|
|
@@ -122,8 +122,8 @@ const utilities = require("../utilities");
|
|
|
122
122
|
* import * as aws from "@pulumi/aws";
|
|
123
123
|
*
|
|
124
124
|
* const config = new pulumi.Config();
|
|
125
|
-
* const name = config.requireObject("name");
|
|
126
|
-
* const subnetId = config.requireObject("subnetId");
|
|
125
|
+
* const name = config.requireObject<any>("name");
|
|
126
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
127
127
|
* const test = new aws.lb.LoadBalancer("test", {
|
|
128
128
|
* name: name,
|
|
129
129
|
* internal: true,
|
package/apigateway/method.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ import { RestApi } from "./index";
|
|
|
33
33
|
* import * as aws from "@pulumi/aws";
|
|
34
34
|
*
|
|
35
35
|
* const config = new pulumi.Config();
|
|
36
|
-
* const cognitoUserPoolName = config.requireObject("cognitoUserPoolName");
|
|
36
|
+
* const cognitoUserPoolName = config.requireObject<any>("cognitoUserPoolName");
|
|
37
37
|
* const _this = aws.cognito.getUserPools({
|
|
38
38
|
* name: cognitoUserPoolName,
|
|
39
39
|
* });
|
package/apigateway/method.js
CHANGED
|
@@ -38,7 +38,7 @@ const utilities = require("../utilities");
|
|
|
38
38
|
* import * as aws from "@pulumi/aws";
|
|
39
39
|
*
|
|
40
40
|
* const config = new pulumi.Config();
|
|
41
|
-
* const cognitoUserPoolName = config.requireObject("cognitoUserPoolName");
|
|
41
|
+
* const cognitoUserPoolName = config.requireObject<any>("cognitoUserPoolName");
|
|
42
42
|
* const _this = aws.cognito.getUserPools({
|
|
43
43
|
* name: cognitoUserPoolName,
|
|
44
44
|
* });
|
package/autoscaling/group.d.ts
CHANGED
|
@@ -259,7 +259,7 @@ import { Metric } from "./index";
|
|
|
259
259
|
* import * as aws from "@pulumi/aws";
|
|
260
260
|
*
|
|
261
261
|
* const config = new pulumi.Config();
|
|
262
|
-
* const extraTags = config.getObject("extraTags") || [
|
|
262
|
+
* const extraTags = config.getObject<any>("extraTags") || [
|
|
263
263
|
* {
|
|
264
264
|
* key: "Foo",
|
|
265
265
|
* propagateAtLaunch: true,
|
package/autoscaling/group.js
CHANGED
|
@@ -260,7 +260,7 @@ const utilities = require("../utilities");
|
|
|
260
260
|
* import * as aws from "@pulumi/aws";
|
|
261
261
|
*
|
|
262
262
|
* const config = new pulumi.Config();
|
|
263
|
-
* const extraTags = config.getObject("extraTags") || [
|
|
263
|
+
* const extraTags = config.getObject<any>("extraTags") || [
|
|
264
264
|
* {
|
|
265
265
|
* key: "Foo",
|
|
266
266
|
* propagateAtLaunch: true,
|
|
@@ -29,14 +29,14 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
29
29
|
* name: "AWSCustomAnomalyMonitor",
|
|
30
30
|
* monitorType: "CUSTOM",
|
|
31
31
|
* monitorSpecification: JSON.stringify({
|
|
32
|
-
* And:
|
|
33
|
-
* CostCategories:
|
|
34
|
-
* Dimensions:
|
|
35
|
-
* Not:
|
|
36
|
-
* Or:
|
|
32
|
+
* And: null,
|
|
33
|
+
* CostCategories: null,
|
|
34
|
+
* Dimensions: null,
|
|
35
|
+
* Not: null,
|
|
36
|
+
* Or: null,
|
|
37
37
|
* Tags: {
|
|
38
38
|
* Key: "CostCenter",
|
|
39
|
-
* MatchOptions:
|
|
39
|
+
* MatchOptions: null,
|
|
40
40
|
* Values: ["10000"],
|
|
41
41
|
* },
|
|
42
42
|
* }),
|
|
@@ -35,14 +35,14 @@ const utilities = require("../utilities");
|
|
|
35
35
|
* name: "AWSCustomAnomalyMonitor",
|
|
36
36
|
* monitorType: "CUSTOM",
|
|
37
37
|
* monitorSpecification: JSON.stringify({
|
|
38
|
-
* And:
|
|
39
|
-
* CostCategories:
|
|
40
|
-
* Dimensions:
|
|
41
|
-
* Not:
|
|
42
|
-
* Or:
|
|
38
|
+
* And: null,
|
|
39
|
+
* CostCategories: null,
|
|
40
|
+
* Dimensions: null,
|
|
41
|
+
* Not: null,
|
|
42
|
+
* Or: null,
|
|
43
43
|
* Tags: {
|
|
44
44
|
* Key: "CostCenter",
|
|
45
|
-
* MatchOptions:
|
|
45
|
+
* MatchOptions: null,
|
|
46
46
|
* Values: ["10000"],
|
|
47
47
|
* },
|
|
48
48
|
* }),
|
|
@@ -11,7 +11,7 @@ import * as outputs from "../types/output";
|
|
|
11
11
|
* import * as aws from "@pulumi/aws";
|
|
12
12
|
*
|
|
13
13
|
* const config = new pulumi.Config();
|
|
14
|
-
* const vpcId = config.requireObject("vpcId");
|
|
14
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
15
15
|
* const _default = aws.ec2.getInternetGateway({
|
|
16
16
|
* filters: [{
|
|
17
17
|
* name: "attachment.vpc-id",
|
|
@@ -77,7 +77,7 @@ export interface GetInternetGatewayResult {
|
|
|
77
77
|
* import * as aws from "@pulumi/aws";
|
|
78
78
|
*
|
|
79
79
|
* const config = new pulumi.Config();
|
|
80
|
-
* const vpcId = config.requireObject("vpcId");
|
|
80
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
81
81
|
* const _default = aws.ec2.getInternetGateway({
|
|
82
82
|
* filters: [{
|
|
83
83
|
* name: "attachment.vpc-id",
|
|
@@ -15,7 +15,7 @@ const utilities = require("../utilities");
|
|
|
15
15
|
* import * as aws from "@pulumi/aws";
|
|
16
16
|
*
|
|
17
17
|
* const config = new pulumi.Config();
|
|
18
|
-
* const vpcId = config.requireObject("vpcId");
|
|
18
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
19
19
|
* const _default = aws.ec2.getInternetGateway({
|
|
20
20
|
* filters: [{
|
|
21
21
|
* name: "attachment.vpc-id",
|
|
@@ -44,7 +44,7 @@ exports.getInternetGateway = getInternetGateway;
|
|
|
44
44
|
* import * as aws from "@pulumi/aws";
|
|
45
45
|
*
|
|
46
46
|
* const config = new pulumi.Config();
|
|
47
|
-
* const vpcId = config.requireObject("vpcId");
|
|
47
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
48
48
|
* const _default = aws.ec2.getInternetGateway({
|
|
49
49
|
* filters: [{
|
|
50
50
|
* name: "attachment.vpc-id",
|
package/ec2/getLocalGateway.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as outputs from "../types/output";
|
|
|
13
13
|
* import * as aws from "@pulumi/aws";
|
|
14
14
|
*
|
|
15
15
|
* const config = new pulumi.Config();
|
|
16
|
-
* const localGatewayId = config.requireObject("localGatewayId");
|
|
16
|
+
* const localGatewayId = config.requireObject<any>("localGatewayId");
|
|
17
17
|
* const selected = aws.ec2.getLocalGateway({
|
|
18
18
|
* id: localGatewayId,
|
|
19
19
|
* });
|
|
@@ -82,7 +82,7 @@ export interface GetLocalGatewayResult {
|
|
|
82
82
|
* import * as aws from "@pulumi/aws";
|
|
83
83
|
*
|
|
84
84
|
* const config = new pulumi.Config();
|
|
85
|
-
* const localGatewayId = config.requireObject("localGatewayId");
|
|
85
|
+
* const localGatewayId = config.requireObject<any>("localGatewayId");
|
|
86
86
|
* const selected = aws.ec2.getLocalGateway({
|
|
87
87
|
* id: localGatewayId,
|
|
88
88
|
* });
|
package/ec2/getLocalGateway.js
CHANGED
|
@@ -17,7 +17,7 @@ const utilities = require("../utilities");
|
|
|
17
17
|
* import * as aws from "@pulumi/aws";
|
|
18
18
|
*
|
|
19
19
|
* const config = new pulumi.Config();
|
|
20
|
-
* const localGatewayId = config.requireObject("localGatewayId");
|
|
20
|
+
* const localGatewayId = config.requireObject<any>("localGatewayId");
|
|
21
21
|
* const selected = aws.ec2.getLocalGateway({
|
|
22
22
|
* id: localGatewayId,
|
|
23
23
|
* });
|
|
@@ -46,7 +46,7 @@ exports.getLocalGateway = getLocalGateway;
|
|
|
46
46
|
* import * as aws from "@pulumi/aws";
|
|
47
47
|
*
|
|
48
48
|
* const config = new pulumi.Config();
|
|
49
|
-
* const localGatewayId = config.requireObject("localGatewayId");
|
|
49
|
+
* const localGatewayId = config.requireObject<any>("localGatewayId");
|
|
50
50
|
* const selected = aws.ec2.getLocalGateway({
|
|
51
51
|
* id: localGatewayId,
|
|
52
52
|
* });
|
|
@@ -16,7 +16,7 @@ import * as outputs from "../types/output";
|
|
|
16
16
|
* import * as aws from "@pulumi/aws";
|
|
17
17
|
*
|
|
18
18
|
* const config = new pulumi.Config();
|
|
19
|
-
* const awsEc2LocalGatewayRouteTable = config.requireObject("awsEc2LocalGatewayRouteTable");
|
|
19
|
+
* const awsEc2LocalGatewayRouteTable = config.requireObject<any>("awsEc2LocalGatewayRouteTable");
|
|
20
20
|
* const selected = aws.ec2.getLocalGatewayRouteTable({
|
|
21
21
|
* localGatewayRouteTableId: awsEc2LocalGatewayRouteTable,
|
|
22
22
|
* });
|
|
@@ -87,7 +87,7 @@ export interface GetLocalGatewayRouteTableResult {
|
|
|
87
87
|
* import * as aws from "@pulumi/aws";
|
|
88
88
|
*
|
|
89
89
|
* const config = new pulumi.Config();
|
|
90
|
-
* const awsEc2LocalGatewayRouteTable = config.requireObject("awsEc2LocalGatewayRouteTable");
|
|
90
|
+
* const awsEc2LocalGatewayRouteTable = config.requireObject<any>("awsEc2LocalGatewayRouteTable");
|
|
91
91
|
* const selected = aws.ec2.getLocalGatewayRouteTable({
|
|
92
92
|
* localGatewayRouteTableId: awsEc2LocalGatewayRouteTable,
|
|
93
93
|
* });
|
|
@@ -20,7 +20,7 @@ const utilities = require("../utilities");
|
|
|
20
20
|
* import * as aws from "@pulumi/aws";
|
|
21
21
|
*
|
|
22
22
|
* const config = new pulumi.Config();
|
|
23
|
-
* const awsEc2LocalGatewayRouteTable = config.requireObject("awsEc2LocalGatewayRouteTable");
|
|
23
|
+
* const awsEc2LocalGatewayRouteTable = config.requireObject<any>("awsEc2LocalGatewayRouteTable");
|
|
24
24
|
* const selected = aws.ec2.getLocalGatewayRouteTable({
|
|
25
25
|
* localGatewayRouteTableId: awsEc2LocalGatewayRouteTable,
|
|
26
26
|
* });
|
|
@@ -54,7 +54,7 @@ exports.getLocalGatewayRouteTable = getLocalGatewayRouteTable;
|
|
|
54
54
|
* import * as aws from "@pulumi/aws";
|
|
55
55
|
*
|
|
56
56
|
* const config = new pulumi.Config();
|
|
57
|
-
* const awsEc2LocalGatewayRouteTable = config.requireObject("awsEc2LocalGatewayRouteTable");
|
|
57
|
+
* const awsEc2LocalGatewayRouteTable = config.requireObject<any>("awsEc2LocalGatewayRouteTable");
|
|
58
58
|
* const selected = aws.ec2.getLocalGatewayRouteTable({
|
|
59
59
|
* localGatewayRouteTableId: awsEc2LocalGatewayRouteTable,
|
|
60
60
|
* });
|
package/ec2/getRoute.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
13
|
* import * as aws from "@pulumi/aws";
|
|
14
14
|
*
|
|
15
15
|
* const config = new pulumi.Config();
|
|
16
|
-
* const subnetId = config.requireObject("subnetId");
|
|
16
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
17
17
|
* const selected = aws.ec2.getRouteTable({
|
|
18
18
|
* subnetId: subnetId,
|
|
19
19
|
* });
|
|
@@ -127,7 +127,7 @@ export interface GetRouteResult {
|
|
|
127
127
|
* import * as aws from "@pulumi/aws";
|
|
128
128
|
*
|
|
129
129
|
* const config = new pulumi.Config();
|
|
130
|
-
* const subnetId = config.requireObject("subnetId");
|
|
130
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
131
131
|
* const selected = aws.ec2.getRouteTable({
|
|
132
132
|
* subnetId: subnetId,
|
|
133
133
|
* });
|
package/ec2/getRoute.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* import * as aws from "@pulumi/aws";
|
|
20
20
|
*
|
|
21
21
|
* const config = new pulumi.Config();
|
|
22
|
-
* const subnetId = config.requireObject("subnetId");
|
|
22
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
23
23
|
* const selected = aws.ec2.getRouteTable({
|
|
24
24
|
* subnetId: subnetId,
|
|
25
25
|
* });
|
|
@@ -66,7 +66,7 @@ exports.getRoute = getRoute;
|
|
|
66
66
|
* import * as aws from "@pulumi/aws";
|
|
67
67
|
*
|
|
68
68
|
* const config = new pulumi.Config();
|
|
69
|
-
* const subnetId = config.requireObject("subnetId");
|
|
69
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
70
70
|
* const selected = aws.ec2.getRouteTable({
|
|
71
71
|
* subnetId: subnetId,
|
|
72
72
|
* });
|
package/ec2/getRouteTable.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* import * as aws from "@pulumi/aws";
|
|
16
16
|
*
|
|
17
17
|
* const config = new pulumi.Config();
|
|
18
|
-
* const subnetId = config.requireObject("subnetId");
|
|
18
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
19
19
|
* const selected = aws.ec2.getRouteTable({
|
|
20
20
|
* subnetId: subnetId,
|
|
21
21
|
* });
|
|
@@ -114,7 +114,7 @@ export interface GetRouteTableResult {
|
|
|
114
114
|
* import * as aws from "@pulumi/aws";
|
|
115
115
|
*
|
|
116
116
|
* const config = new pulumi.Config();
|
|
117
|
-
* const subnetId = config.requireObject("subnetId");
|
|
117
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
118
118
|
* const selected = aws.ec2.getRouteTable({
|
|
119
119
|
* subnetId: subnetId,
|
|
120
120
|
* });
|
package/ec2/getRouteTable.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* import * as aws from "@pulumi/aws";
|
|
20
20
|
*
|
|
21
21
|
* const config = new pulumi.Config();
|
|
22
|
-
* const subnetId = config.requireObject("subnetId");
|
|
22
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
23
23
|
* const selected = aws.ec2.getRouteTable({
|
|
24
24
|
* subnetId: subnetId,
|
|
25
25
|
* });
|
|
@@ -57,7 +57,7 @@ exports.getRouteTable = getRouteTable;
|
|
|
57
57
|
* import * as aws from "@pulumi/aws";
|
|
58
58
|
*
|
|
59
59
|
* const config = new pulumi.Config();
|
|
60
|
-
* const subnetId = config.requireObject("subnetId");
|
|
60
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
61
61
|
* const selected = aws.ec2.getRouteTable({
|
|
62
62
|
* subnetId: subnetId,
|
|
63
63
|
* });
|
|
@@ -18,7 +18,7 @@ import * as outputs from "../types/output";
|
|
|
18
18
|
* import * as aws from "@pulumi/aws";
|
|
19
19
|
*
|
|
20
20
|
* const config = new pulumi.Config();
|
|
21
|
-
* const securityGroupId = config.requireObject("securityGroupId");
|
|
21
|
+
* const securityGroupId = config.requireObject<any>("securityGroupId");
|
|
22
22
|
* const selected = aws.ec2.getSecurityGroup({
|
|
23
23
|
* id: securityGroupId,
|
|
24
24
|
* });
|
|
@@ -98,7 +98,7 @@ export interface GetSecurityGroupResult {
|
|
|
98
98
|
* import * as aws from "@pulumi/aws";
|
|
99
99
|
*
|
|
100
100
|
* const config = new pulumi.Config();
|
|
101
|
-
* const securityGroupId = config.requireObject("securityGroupId");
|
|
101
|
+
* const securityGroupId = config.requireObject<any>("securityGroupId");
|
|
102
102
|
* const selected = aws.ec2.getSecurityGroup({
|
|
103
103
|
* id: securityGroupId,
|
|
104
104
|
* });
|
package/ec2/getSecurityGroup.js
CHANGED
|
@@ -22,7 +22,7 @@ const utilities = require("../utilities");
|
|
|
22
22
|
* import * as aws from "@pulumi/aws";
|
|
23
23
|
*
|
|
24
24
|
* const config = new pulumi.Config();
|
|
25
|
-
* const securityGroupId = config.requireObject("securityGroupId");
|
|
25
|
+
* const securityGroupId = config.requireObject<any>("securityGroupId");
|
|
26
26
|
* const selected = aws.ec2.getSecurityGroup({
|
|
27
27
|
* id: securityGroupId,
|
|
28
28
|
* });
|
|
@@ -61,7 +61,7 @@ exports.getSecurityGroup = getSecurityGroup;
|
|
|
61
61
|
* import * as aws from "@pulumi/aws";
|
|
62
62
|
*
|
|
63
63
|
* const config = new pulumi.Config();
|
|
64
|
-
* const securityGroupId = config.requireObject("securityGroupId");
|
|
64
|
+
* const securityGroupId = config.requireObject<any>("securityGroupId");
|
|
65
65
|
* const selected = aws.ec2.getSecurityGroup({
|
|
66
66
|
* id: securityGroupId,
|
|
67
67
|
* });
|
package/ec2/getSubnet.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* import * as aws from "@pulumi/aws";
|
|
16
16
|
*
|
|
17
17
|
* const config = new pulumi.Config();
|
|
18
|
-
* const subnetId = config.requireObject("subnetId");
|
|
18
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
19
19
|
* const selected = aws.ec2.getSubnet({
|
|
20
20
|
* id: subnetId,
|
|
21
21
|
* });
|
|
@@ -185,7 +185,7 @@ export interface GetSubnetResult {
|
|
|
185
185
|
* import * as aws from "@pulumi/aws";
|
|
186
186
|
*
|
|
187
187
|
* const config = new pulumi.Config();
|
|
188
|
-
* const subnetId = config.requireObject("subnetId");
|
|
188
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
189
189
|
* const selected = aws.ec2.getSubnet({
|
|
190
190
|
* id: subnetId,
|
|
191
191
|
* });
|
package/ec2/getSubnet.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* import * as aws from "@pulumi/aws";
|
|
20
20
|
*
|
|
21
21
|
* const config = new pulumi.Config();
|
|
22
|
-
* const subnetId = config.requireObject("subnetId");
|
|
22
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
23
23
|
* const selected = aws.ec2.getSubnet({
|
|
24
24
|
* id: subnetId,
|
|
25
25
|
* });
|
|
@@ -81,7 +81,7 @@ exports.getSubnet = getSubnet;
|
|
|
81
81
|
* import * as aws from "@pulumi/aws";
|
|
82
82
|
*
|
|
83
83
|
* const config = new pulumi.Config();
|
|
84
|
-
* const subnetId = config.requireObject("subnetId");
|
|
84
|
+
* const subnetId = config.requireObject<any>("subnetId");
|
|
85
85
|
* const selected = aws.ec2.getSubnet({
|
|
86
86
|
* id: subnetId,
|
|
87
87
|
* });
|
package/ec2/getVpc.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ import * as outputs from "../types/output";
|
|
|
20
20
|
* import * as std from "@pulumi/std";
|
|
21
21
|
*
|
|
22
22
|
* const config = new pulumi.Config();
|
|
23
|
-
* const vpcId = config.requireObject("vpcId");
|
|
23
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
24
24
|
* const selected = aws.ec2.getVpc({
|
|
25
25
|
* id: vpcId,
|
|
26
26
|
* });
|
|
@@ -154,7 +154,7 @@ export interface GetVpcResult {
|
|
|
154
154
|
* import * as std from "@pulumi/std";
|
|
155
155
|
*
|
|
156
156
|
* const config = new pulumi.Config();
|
|
157
|
-
* const vpcId = config.requireObject("vpcId");
|
|
157
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
158
158
|
* const selected = aws.ec2.getVpc({
|
|
159
159
|
* id: vpcId,
|
|
160
160
|
* });
|
package/ec2/getVpc.js
CHANGED
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
* import * as std from "@pulumi/std";
|
|
25
25
|
*
|
|
26
26
|
* const config = new pulumi.Config();
|
|
27
|
-
* const vpcId = config.requireObject("vpcId");
|
|
27
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
28
28
|
* const selected = aws.ec2.getVpc({
|
|
29
29
|
* id: vpcId,
|
|
30
30
|
* });
|
|
@@ -72,7 +72,7 @@ exports.getVpc = getVpc;
|
|
|
72
72
|
* import * as std from "@pulumi/std";
|
|
73
73
|
*
|
|
74
74
|
* const config = new pulumi.Config();
|
|
75
|
-
* const vpcId = config.requireObject("vpcId");
|
|
75
|
+
* const vpcId = config.requireObject<any>("vpcId");
|
|
76
76
|
* const selected = aws.ec2.getVpc({
|
|
77
77
|
* id: vpcId,
|
|
78
78
|
* });
|
|
@@ -118,7 +118,7 @@ import * as outputs from "../types/output";
|
|
|
118
118
|
* import * as aws from "@pulumi/aws";
|
|
119
119
|
*
|
|
120
120
|
* const config = new pulumi.Config();
|
|
121
|
-
* const subnets = config.requireObject("subnets");
|
|
121
|
+
* const subnets = config.requireObject<any>("subnets");
|
|
122
122
|
* const example = new aws.ec2.SpotFleetRequest("example", {
|
|
123
123
|
* launchSpecifications: .map(s => ({
|
|
124
124
|
* subnetId: s[1],
|
package/ec2/spotFleetRequest.js
CHANGED
|
@@ -122,7 +122,7 @@ const utilities = require("../utilities");
|
|
|
122
122
|
* import * as aws from "@pulumi/aws";
|
|
123
123
|
*
|
|
124
124
|
* const config = new pulumi.Config();
|
|
125
|
-
* const subnets = config.requireObject("subnets");
|
|
125
|
+
* const subnets = config.requireObject<any>("subnets");
|
|
126
126
|
* const example = new aws.ec2.SpotFleetRequest("example", {
|
|
127
127
|
* launchSpecifications: .map(s => ({
|
|
128
128
|
* subnetId: s[1],
|
|
@@ -96,7 +96,7 @@ import { PolicyDocument } from "../iam";
|
|
|
96
96
|
* import * as aws from "@pulumi/aws";
|
|
97
97
|
*
|
|
98
98
|
* const config = new pulumi.Config();
|
|
99
|
-
* const vpc = config.requireObject("vpc");
|
|
99
|
+
* const vpc = config.requireObject<any>("vpc");
|
|
100
100
|
* const domain = config.get("domain") || "tf-test";
|
|
101
101
|
* const selected = aws.ec2.getVpc({
|
|
102
102
|
* tags: {
|
package/elasticsearch/domain.js
CHANGED
|
@@ -99,7 +99,7 @@ const utilities = require("../utilities");
|
|
|
99
99
|
* import * as aws from "@pulumi/aws";
|
|
100
100
|
*
|
|
101
101
|
* const config = new pulumi.Config();
|
|
102
|
-
* const vpc = config.requireObject("vpc");
|
|
102
|
+
* const vpc = config.requireObject<any>("vpc");
|
|
103
103
|
* const domain = config.get("domain") || "tf-test";
|
|
104
104
|
* const selected = aws.ec2.getVpc({
|
|
105
105
|
* tags: {
|
package/getAvailabilityZone.d.ts
CHANGED
|
@@ -25,14 +25,14 @@ import * as outputs from "./types/output";
|
|
|
25
25
|
* import * as std from "@pulumi/std";
|
|
26
26
|
*
|
|
27
27
|
* const config = new pulumi.Config();
|
|
28
|
-
* const regionNumber = config.getObject("regionNumber") || {
|
|
28
|
+
* const regionNumber = config.getObject<any>("regionNumber") || {
|
|
29
29
|
* "ap-northeast-1": 5,
|
|
30
30
|
* "eu-central-1": 4,
|
|
31
31
|
* "us-east-1": 1,
|
|
32
32
|
* "us-west-1": 2,
|
|
33
33
|
* "us-west-2": 3,
|
|
34
34
|
* };
|
|
35
|
-
* const azNumber = config.getObject("azNumber") || {
|
|
35
|
+
* const azNumber = config.getObject<any>("azNumber") || {
|
|
36
36
|
* a: 1,
|
|
37
37
|
* b: 2,
|
|
38
38
|
* c: 3,
|
|
@@ -160,14 +160,14 @@ export interface GetAvailabilityZoneResult {
|
|
|
160
160
|
* import * as std from "@pulumi/std";
|
|
161
161
|
*
|
|
162
162
|
* const config = new pulumi.Config();
|
|
163
|
-
* const regionNumber = config.getObject("regionNumber") || {
|
|
163
|
+
* const regionNumber = config.getObject<any>("regionNumber") || {
|
|
164
164
|
* "ap-northeast-1": 5,
|
|
165
165
|
* "eu-central-1": 4,
|
|
166
166
|
* "us-east-1": 1,
|
|
167
167
|
* "us-west-1": 2,
|
|
168
168
|
* "us-west-2": 3,
|
|
169
169
|
* };
|
|
170
|
-
* const azNumber = config.getObject("azNumber") || {
|
|
170
|
+
* const azNumber = config.getObject<any>("azNumber") || {
|
|
171
171
|
* a: 1,
|
|
172
172
|
* b: 2,
|
|
173
173
|
* c: 3,
|
package/getAvailabilityZone.js
CHANGED
|
@@ -29,14 +29,14 @@ const utilities = require("./utilities");
|
|
|
29
29
|
* import * as std from "@pulumi/std";
|
|
30
30
|
*
|
|
31
31
|
* const config = new pulumi.Config();
|
|
32
|
-
* const regionNumber = config.getObject("regionNumber") || {
|
|
32
|
+
* const regionNumber = config.getObject<any>("regionNumber") || {
|
|
33
33
|
* "ap-northeast-1": 5,
|
|
34
34
|
* "eu-central-1": 4,
|
|
35
35
|
* "us-east-1": 1,
|
|
36
36
|
* "us-west-1": 2,
|
|
37
37
|
* "us-west-2": 3,
|
|
38
38
|
* };
|
|
39
|
-
* const azNumber = config.getObject("azNumber") || {
|
|
39
|
+
* const azNumber = config.getObject<any>("azNumber") || {
|
|
40
40
|
* a: 1,
|
|
41
41
|
* b: 2,
|
|
42
42
|
* c: 3,
|
|
@@ -102,14 +102,14 @@ exports.getAvailabilityZone = getAvailabilityZone;
|
|
|
102
102
|
* import * as std from "@pulumi/std";
|
|
103
103
|
*
|
|
104
104
|
* const config = new pulumi.Config();
|
|
105
|
-
* const regionNumber = config.getObject("regionNumber") || {
|
|
105
|
+
* const regionNumber = config.getObject<any>("regionNumber") || {
|
|
106
106
|
* "ap-northeast-1": 5,
|
|
107
107
|
* "eu-central-1": 4,
|
|
108
108
|
* "us-east-1": 1,
|
|
109
109
|
* "us-west-1": 2,
|
|
110
110
|
* "us-west-2": 3,
|
|
111
111
|
* };
|
|
112
|
-
* const azNumber = config.getObject("azNumber") || {
|
|
112
|
+
* const azNumber = config.getObject<any>("azNumber") || {
|
|
113
113
|
* a: 1,
|
|
114
114
|
* b: 2,
|
|
115
115
|
* c: 3,
|
|
@@ -47,29 +47,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
47
47
|
* });
|
|
48
48
|
* ```
|
|
49
49
|
*
|
|
50
|
-
* ### Registering Multiple Targets
|
|
51
|
-
*
|
|
52
|
-
* ```typescript
|
|
53
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
-
* import * as aws from "@pulumi/aws";
|
|
55
|
-
*
|
|
56
|
-
* const example: aws.ec2.Instance[] = [];
|
|
57
|
-
* for (const range = {value: 0}; range.value < 3; range.value++) {
|
|
58
|
-
* example.push(new aws.ec2.Instance(`example-${range.value}`, {}));
|
|
59
|
-
* }
|
|
60
|
-
* const exampleTargetGroup = new aws.lb.TargetGroup("example", {});
|
|
61
|
-
* const exampleTargetGroupAttachment: aws.lb.TargetGroupAttachment[] = [];
|
|
62
|
-
* pulumi.all(example.map((v, k) => [k, v]).reduce((__obj, [k, v]) => ({ ...__obj, [k]: v }))).apply(rangeBody => {
|
|
63
|
-
* for (const range of Object.entries(rangeBody).map(([k, v]) => ({key: k, value: v}))) {
|
|
64
|
-
* exampleTargetGroupAttachment.push(new aws.lb.TargetGroupAttachment(`example-${range.key}`, {
|
|
65
|
-
* targetGroupArn: exampleTargetGroup.arn,
|
|
66
|
-
* targetId: range.value.id,
|
|
67
|
-
* port: 80,
|
|
68
|
-
* }));
|
|
69
|
-
* }
|
|
70
|
-
* });
|
|
71
|
-
* ```
|
|
72
|
-
*
|
|
73
50
|
* ## Import
|
|
74
51
|
*
|
|
75
52
|
* You cannot import Target Group Attachments.
|
|
@@ -53,29 +53,6 @@ const utilities = require("../utilities");
|
|
|
53
53
|
* });
|
|
54
54
|
* ```
|
|
55
55
|
*
|
|
56
|
-
* ### Registering Multiple Targets
|
|
57
|
-
*
|
|
58
|
-
* ```typescript
|
|
59
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
60
|
-
* import * as aws from "@pulumi/aws";
|
|
61
|
-
*
|
|
62
|
-
* const example: aws.ec2.Instance[] = [];
|
|
63
|
-
* for (const range = {value: 0}; range.value < 3; range.value++) {
|
|
64
|
-
* example.push(new aws.ec2.Instance(`example-${range.value}`, {}));
|
|
65
|
-
* }
|
|
66
|
-
* const exampleTargetGroup = new aws.lb.TargetGroup("example", {});
|
|
67
|
-
* const exampleTargetGroupAttachment: aws.lb.TargetGroupAttachment[] = [];
|
|
68
|
-
* pulumi.all(example.map((v, k) => [k, v]).reduce((__obj, [k, v]) => ({ ...__obj, [k]: v }))).apply(rangeBody => {
|
|
69
|
-
* for (const range of Object.entries(rangeBody).map(([k, v]) => ({key: k, value: v}))) {
|
|
70
|
-
* exampleTargetGroupAttachment.push(new aws.lb.TargetGroupAttachment(`example-${range.key}`, {
|
|
71
|
-
* targetGroupArn: exampleTargetGroup.arn,
|
|
72
|
-
* targetId: range.value.id,
|
|
73
|
-
* port: 80,
|
|
74
|
-
* }));
|
|
75
|
-
* }
|
|
76
|
-
* });
|
|
77
|
-
* ```
|
|
78
|
-
*
|
|
79
56
|
* ## Import
|
|
80
57
|
*
|
|
81
58
|
* You cannot import Target Group Attachments.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"targetGroupAttachment.js","sourceRoot":"","sources":["../../lb/targetGroupAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"targetGroupAttachment.js","sourceRoot":"","sources":["../../lb/targetGroupAttachment.ts"],"names":[],"mappings":"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"}
|
package/opensearch/domain.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ import * as outputs from "../types/output";
|
|
|
114
114
|
* import * as aws from "@pulumi/aws";
|
|
115
115
|
*
|
|
116
116
|
* const config = new pulumi.Config();
|
|
117
|
-
* const vpc = config.requireObject("vpc");
|
|
117
|
+
* const vpc = config.requireObject<any>("vpc");
|
|
118
118
|
* const domain = config.get("domain") || "tf-test";
|
|
119
119
|
* const example = aws.ec2.getVpc({
|
|
120
120
|
* tags: {
|
package/opensearch/domain.js
CHANGED
|
@@ -118,7 +118,7 @@ const utilities = require("../utilities");
|
|
|
118
118
|
* import * as aws from "@pulumi/aws";
|
|
119
119
|
*
|
|
120
120
|
* const config = new pulumi.Config();
|
|
121
|
-
* const vpc = config.requireObject("vpc");
|
|
121
|
+
* const vpc = config.requireObject<any>("vpc");
|
|
122
122
|
* const domain = config.get("domain") || "tf-test";
|
|
123
123
|
* const example = aws.ec2.getVpc({
|
|
124
124
|
* tags: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.77.0-alpha.1744221671",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "aws",
|
|
27
|
-
"version": "6.
|
|
27
|
+
"version": "6.77.0-alpha.1744221671"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -50,14 +50,14 @@ import { Topic } from "./index";
|
|
|
50
50
|
* import * as aws from "@pulumi/aws";
|
|
51
51
|
*
|
|
52
52
|
* const config = new pulumi.Config();
|
|
53
|
-
* const sns = config.getObject("sns") || {
|
|
53
|
+
* const sns = config.getObject<any>("sns") || {
|
|
54
54
|
* "account-id": "111111111111",
|
|
55
55
|
* displayName: "example",
|
|
56
56
|
* name: "example-sns-topic",
|
|
57
57
|
* region: "us-west-1",
|
|
58
58
|
* "role-name": "service/service",
|
|
59
59
|
* };
|
|
60
|
-
* const sqs = config.getObject("sqs") || {
|
|
60
|
+
* const sqs = config.getObject<any>("sqs") || {
|
|
61
61
|
* "account-id": "222222222222",
|
|
62
62
|
* name: "example-sqs-queue",
|
|
63
63
|
* region: "us-east-1",
|
package/sns/topicSubscription.js
CHANGED
|
@@ -55,14 +55,14 @@ const utilities = require("../utilities");
|
|
|
55
55
|
* import * as aws from "@pulumi/aws";
|
|
56
56
|
*
|
|
57
57
|
* const config = new pulumi.Config();
|
|
58
|
-
* const sns = config.getObject("sns") || {
|
|
58
|
+
* const sns = config.getObject<any>("sns") || {
|
|
59
59
|
* "account-id": "111111111111",
|
|
60
60
|
* displayName: "example",
|
|
61
61
|
* name: "example-sns-topic",
|
|
62
62
|
* region: "us-west-1",
|
|
63
63
|
* "role-name": "service/service",
|
|
64
64
|
* };
|
|
65
|
-
* const sqs = config.getObject("sqs") || {
|
|
65
|
+
* const sqs = config.getObject<any>("sqs") || {
|
|
66
66
|
* "account-id": "222222222222",
|
|
67
67
|
* name: "example-sqs-queue",
|
|
68
68
|
* region: "us-east-1",
|