@pulumi/aws 6.33.1 → 6.34.0-alpha.1714784409
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/ec2/securityGroup.d.ts +3 -3
- package/ec2/securityGroup.js +3 -3
- package/iot/getEndpoint.d.ts +0 -50
- package/iot/getEndpoint.js +0 -50
- package/iot/getEndpoint.js.map +1 -1
- package/package.json +1 -1
package/ec2/securityGroup.d.ts
CHANGED
|
@@ -164,11 +164,11 @@ import * as outputs from "../types/output";
|
|
|
164
164
|
* }, {
|
|
165
165
|
* dependsOn: [example],
|
|
166
166
|
* });
|
|
167
|
-
* const exampleResource = new _null.
|
|
168
|
-
*
|
|
167
|
+
* const exampleResource = new _null.Resource("example", {triggers: {
|
|
168
|
+
* rerun_upon_change_of: std.join({
|
|
169
169
|
* separator: ",",
|
|
170
170
|
* input: exampleAwsVpcEndpoint.securityGroupIds,
|
|
171
|
-
* }).result,
|
|
171
|
+
* }).then(invoke => invoke.result),
|
|
172
172
|
* }});
|
|
173
173
|
* const exampleResourceProvisioner0 = new command.local.Command("exampleResourceProvisioner0", {create: ` aws ec2 modify-vpc-endpoint --vpc-endpoint-id ${exampleAwsVpcEndpoint.id} --remove-security-group-ids ${_default.id}
|
|
174
174
|
* `}, {
|
package/ec2/securityGroup.js
CHANGED
|
@@ -168,11 +168,11 @@ const utilities = require("../utilities");
|
|
|
168
168
|
* }, {
|
|
169
169
|
* dependsOn: [example],
|
|
170
170
|
* });
|
|
171
|
-
* const exampleResource = new _null.
|
|
172
|
-
*
|
|
171
|
+
* const exampleResource = new _null.Resource("example", {triggers: {
|
|
172
|
+
* rerun_upon_change_of: std.join({
|
|
173
173
|
* separator: ",",
|
|
174
174
|
* input: exampleAwsVpcEndpoint.securityGroupIds,
|
|
175
|
-
* }).result,
|
|
175
|
+
* }).then(invoke => invoke.result),
|
|
176
176
|
* }});
|
|
177
177
|
* const exampleResourceProvisioner0 = new command.local.Command("exampleResourceProvisioner0", {create: ` aws ec2 modify-vpc-endpoint --vpc-endpoint-id ${exampleAwsVpcEndpoint.id} --remove-security-group-ids ${_default.id}
|
|
178
178
|
* `}, {
|
package/iot/getEndpoint.d.ts
CHANGED
|
@@ -1,31 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* Returns a unique endpoint specific to the AWS account making the call.
|
|
4
|
-
*
|
|
5
|
-
* ## Example Usage
|
|
6
|
-
*
|
|
7
|
-
* ```typescript
|
|
8
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
-
* import * as aws from "@pulumi/aws";
|
|
10
|
-
* import * as kubernetes from "@pulumi/kubernetes";
|
|
11
|
-
*
|
|
12
|
-
* const example = aws.iot.getEndpoint({});
|
|
13
|
-
* const agent = new kubernetes.index.Pod("agent", {
|
|
14
|
-
* metadata: [{
|
|
15
|
-
* name: "my-device",
|
|
16
|
-
* }],
|
|
17
|
-
* spec: [{
|
|
18
|
-
* container: [{
|
|
19
|
-
* image: "gcr.io/my-project/image-name",
|
|
20
|
-
* name: "image-name",
|
|
21
|
-
* env: [{
|
|
22
|
-
* name: "IOT_ENDPOINT",
|
|
23
|
-
* value: example.endpointAddress,
|
|
24
|
-
* }],
|
|
25
|
-
* }],
|
|
26
|
-
* }],
|
|
27
|
-
* });
|
|
28
|
-
* ```
|
|
29
4
|
*/
|
|
30
5
|
export declare function getEndpoint(args?: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointResult>;
|
|
31
6
|
/**
|
|
@@ -58,31 +33,6 @@ export interface GetEndpointResult {
|
|
|
58
33
|
}
|
|
59
34
|
/**
|
|
60
35
|
* Returns a unique endpoint specific to the AWS account making the call.
|
|
61
|
-
*
|
|
62
|
-
* ## Example Usage
|
|
63
|
-
*
|
|
64
|
-
* ```typescript
|
|
65
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
66
|
-
* import * as aws from "@pulumi/aws";
|
|
67
|
-
* import * as kubernetes from "@pulumi/kubernetes";
|
|
68
|
-
*
|
|
69
|
-
* const example = aws.iot.getEndpoint({});
|
|
70
|
-
* const agent = new kubernetes.index.Pod("agent", {
|
|
71
|
-
* metadata: [{
|
|
72
|
-
* name: "my-device",
|
|
73
|
-
* }],
|
|
74
|
-
* spec: [{
|
|
75
|
-
* container: [{
|
|
76
|
-
* image: "gcr.io/my-project/image-name",
|
|
77
|
-
* name: "image-name",
|
|
78
|
-
* env: [{
|
|
79
|
-
* name: "IOT_ENDPOINT",
|
|
80
|
-
* value: example.endpointAddress,
|
|
81
|
-
* }],
|
|
82
|
-
* }],
|
|
83
|
-
* }],
|
|
84
|
-
* });
|
|
85
|
-
* ```
|
|
86
36
|
*/
|
|
87
37
|
export declare function getEndpointOutput(args?: GetEndpointOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEndpointResult>;
|
|
88
38
|
/**
|
package/iot/getEndpoint.js
CHANGED
|
@@ -7,31 +7,6 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Returns a unique endpoint specific to the AWS account making the call.
|
|
10
|
-
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as aws from "@pulumi/aws";
|
|
16
|
-
* import * as kubernetes from "@pulumi/kubernetes";
|
|
17
|
-
*
|
|
18
|
-
* const example = aws.iot.getEndpoint({});
|
|
19
|
-
* const agent = new kubernetes.index.Pod("agent", {
|
|
20
|
-
* metadata: [{
|
|
21
|
-
* name: "my-device",
|
|
22
|
-
* }],
|
|
23
|
-
* spec: [{
|
|
24
|
-
* container: [{
|
|
25
|
-
* image: "gcr.io/my-project/image-name",
|
|
26
|
-
* name: "image-name",
|
|
27
|
-
* env: [{
|
|
28
|
-
* name: "IOT_ENDPOINT",
|
|
29
|
-
* value: example.endpointAddress,
|
|
30
|
-
* }],
|
|
31
|
-
* }],
|
|
32
|
-
* }],
|
|
33
|
-
* });
|
|
34
|
-
* ```
|
|
35
10
|
*/
|
|
36
11
|
function getEndpoint(args, opts) {
|
|
37
12
|
args = args || {};
|
|
@@ -43,31 +18,6 @@ function getEndpoint(args, opts) {
|
|
|
43
18
|
exports.getEndpoint = getEndpoint;
|
|
44
19
|
/**
|
|
45
20
|
* Returns a unique endpoint specific to the AWS account making the call.
|
|
46
|
-
*
|
|
47
|
-
* ## Example Usage
|
|
48
|
-
*
|
|
49
|
-
* ```typescript
|
|
50
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
-
* import * as aws from "@pulumi/aws";
|
|
52
|
-
* import * as kubernetes from "@pulumi/kubernetes";
|
|
53
|
-
*
|
|
54
|
-
* const example = aws.iot.getEndpoint({});
|
|
55
|
-
* const agent = new kubernetes.index.Pod("agent", {
|
|
56
|
-
* metadata: [{
|
|
57
|
-
* name: "my-device",
|
|
58
|
-
* }],
|
|
59
|
-
* spec: [{
|
|
60
|
-
* container: [{
|
|
61
|
-
* image: "gcr.io/my-project/image-name",
|
|
62
|
-
* name: "image-name",
|
|
63
|
-
* env: [{
|
|
64
|
-
* name: "IOT_ENDPOINT",
|
|
65
|
-
* value: example.endpointAddress,
|
|
66
|
-
* }],
|
|
67
|
-
* }],
|
|
68
|
-
* }],
|
|
69
|
-
* });
|
|
70
|
-
* ```
|
|
71
21
|
*/
|
|
72
22
|
function getEndpointOutput(args, opts) {
|
|
73
23
|
return pulumi.output(args).apply((a) => getEndpoint(a, opts));
|
package/iot/getEndpoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEndpoint.js","sourceRoot":"","sources":["../../iot/getEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getEndpoint.js","sourceRoot":"","sources":["../../iot/getEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kCAOC;AA+BD;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|