@pulumi/linode 5.4.0-alpha.1759990883 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/databaseMysqlV2.d.ts +18 -0
  2. package/databaseMysqlV2.js +2 -0
  3. package/databaseMysqlV2.js.map +1 -1
  4. package/databasePostgresqlV2.d.ts +18 -0
  5. package/databasePostgresqlV2.js +2 -0
  6. package/databasePostgresqlV2.js.map +1 -1
  7. package/getDatabaseMysqlV2.d.ts +21 -0
  8. package/getDatabaseMysqlV2.js +20 -0
  9. package/getDatabaseMysqlV2.js.map +1 -1
  10. package/getDatabasePostgresqlV2.d.ts +21 -0
  11. package/getDatabasePostgresqlV2.js +20 -0
  12. package/getDatabasePostgresqlV2.js.map +1 -1
  13. package/getDatabases.d.ts +20 -0
  14. package/getDatabases.js +20 -0
  15. package/getDatabases.js.map +1 -1
  16. package/getNodeBalancer.d.ts +1 -0
  17. package/getNodeBalancer.js.map +1 -1
  18. package/getNodeBalancerNode.d.ts +8 -0
  19. package/getNodeBalancerNode.js.map +1 -1
  20. package/getNodebalancerVpc.d.ts +88 -0
  21. package/getNodebalancerVpc.js +64 -0
  22. package/getNodebalancerVpc.js.map +1 -0
  23. package/getNodebalancerVpcs.d.ts +154 -0
  24. package/getNodebalancerVpcs.js +120 -0
  25. package/getNodebalancerVpcs.js.map +1 -0
  26. package/getUser.d.ts +0 -3
  27. package/getUser.js +0 -2
  28. package/getUser.js.map +1 -1
  29. package/getVpc.d.ts +29 -0
  30. package/getVpc.js +24 -0
  31. package/getVpc.js.map +1 -1
  32. package/getVpcIps.d.ts +25 -6
  33. package/getVpcIps.js +24 -6
  34. package/getVpcIps.js.map +1 -1
  35. package/getVpcSubnet.d.ts +17 -0
  36. package/getVpcSubnet.js +16 -0
  37. package/getVpcSubnet.js.map +1 -1
  38. package/getVpcSubnets.d.ts +16 -0
  39. package/getVpcSubnets.js +16 -0
  40. package/getVpcSubnets.js.map +1 -1
  41. package/getVpcs.d.ts +16 -0
  42. package/getVpcs.js +16 -0
  43. package/getVpcs.js.map +1 -1
  44. package/index.d.ts +6 -0
  45. package/index.js +8 -2
  46. package/index.js.map +1 -1
  47. package/nodeBalancer.d.ts +14 -0
  48. package/nodeBalancer.js +4 -0
  49. package/nodeBalancer.js.map +1 -1
  50. package/nodeBalancerNode.d.ts +20 -0
  51. package/nodeBalancerNode.js +4 -0
  52. package/nodeBalancerNode.js.map +1 -1
  53. package/package.json +2 -2
  54. package/types/input.d.ts +294 -86
  55. package/types/output.d.ts +341 -55
  56. package/user.d.ts +0 -14
  57. package/user.js +0 -4
  58. package/user.js.map +1 -1
  59. package/vpc.d.ts +48 -0
  60. package/vpc.js +30 -0
  61. package/vpc.js.map +1 -1
  62. package/vpcSubnet.d.ts +57 -5
  63. package/vpcSubnet.js +36 -3
  64. package/vpcSubnet.js.map +1 -1
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getNodebalancerVpcOutput = exports.getNodebalancerVpc = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * > **Limited Availability** VPC-attached NodeBalancers may not currently be available to all users and may require the `apiVersion` provider argument must be set to `v4beta`.
10
+ *
11
+ * Provides information about a NodeBalancer VPC configuration.
12
+ * For more information, see the corresponding [Linode APIv4 documentation](https://techdocs.akamai.com/linode-api/reference/get-node-balancer-vpc-config).
13
+ *
14
+ * ## Example Usage
15
+ *
16
+ * Retrieve information about a NodeBalancer VPC configuration:
17
+ *
18
+ * ```typescript
19
+ * import * as pulumi from "@pulumi/pulumi";
20
+ * import * as linode from "@pulumi/linode";
21
+ *
22
+ * const vpc_config = linode.getNodebalancerVpc({
23
+ * nodebalancerId: 123,
24
+ * id: 456,
25
+ * });
26
+ * ```
27
+ */
28
+ function getNodebalancerVpc(args, opts) {
29
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
30
+ return pulumi.runtime.invoke("linode:index/getNodebalancerVpc:getNodebalancerVpc", {
31
+ "id": args.id,
32
+ "nodebalancerId": args.nodebalancerId,
33
+ }, opts);
34
+ }
35
+ exports.getNodebalancerVpc = getNodebalancerVpc;
36
+ /**
37
+ * > **Limited Availability** VPC-attached NodeBalancers may not currently be available to all users and may require the `apiVersion` provider argument must be set to `v4beta`.
38
+ *
39
+ * Provides information about a NodeBalancer VPC configuration.
40
+ * For more information, see the corresponding [Linode APIv4 documentation](https://techdocs.akamai.com/linode-api/reference/get-node-balancer-vpc-config).
41
+ *
42
+ * ## Example Usage
43
+ *
44
+ * Retrieve information about a NodeBalancer VPC configuration:
45
+ *
46
+ * ```typescript
47
+ * import * as pulumi from "@pulumi/pulumi";
48
+ * import * as linode from "@pulumi/linode";
49
+ *
50
+ * const vpc_config = linode.getNodebalancerVpc({
51
+ * nodebalancerId: 123,
52
+ * id: 456,
53
+ * });
54
+ * ```
55
+ */
56
+ function getNodebalancerVpcOutput(args, opts) {
57
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
58
+ return pulumi.runtime.invokeOutput("linode:index/getNodebalancerVpc:getNodebalancerVpc", {
59
+ "id": args.id,
60
+ "nodebalancerId": args.nodebalancerId,
61
+ }, opts);
62
+ }
63
+ exports.getNodebalancerVpcOutput = getNodebalancerVpcOutput;
64
+ //# sourceMappingURL=getNodebalancerVpc.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNodebalancerVpc.js","sourceRoot":"","sources":["../getNodebalancerVpc.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC;AAmCD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC"}
@@ -0,0 +1,154 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * > **Limited Availability** VPC-attached NodeBalancers may not currently be available to all users and may require the `apiVersion` provider argument must be set to `v4beta`.
6
+ *
7
+ * Provides information about Linode NodeBalancers VPC configurations that match a set of filters.
8
+ * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-node-balancers).
9
+ *
10
+ * ## Example Usage
11
+ *
12
+ * Retrieve all VPC configurations under a NodeBalancer:
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as linode from "@pulumi/linode";
17
+ *
18
+ * const vpc_configs = linode.getNodebalancerVpcs({
19
+ * nodebalancerId: 12345,
20
+ * });
21
+ * ```
22
+ *
23
+ * Retrieve all VPC configurations under a NodeBalancer with an IPv4 range of "10.0.0.4/30":
24
+ *
25
+ * ```typescript
26
+ * import * as pulumi from "@pulumi/pulumi";
27
+ * import * as linode from "@pulumi/linode";
28
+ *
29
+ * const vpc_configs = linode.getNodebalancerVpcs({
30
+ * nodebalancerId: 12345,
31
+ * filters: [{
32
+ * name: "ipv4_range",
33
+ * values: ["10.0.0.4/30"],
34
+ * }],
35
+ * });
36
+ * ```
37
+ *
38
+ * ## Filterable Fields
39
+ *
40
+ * * `id`
41
+ *
42
+ * * `ipv4Range`
43
+ *
44
+ * * `nodebalancerId`
45
+ *
46
+ * * `subnetId`
47
+ *
48
+ * * `vpcId`
49
+ */
50
+ export declare function getNodebalancerVpcs(args: GetNodebalancerVpcsArgs, opts?: pulumi.InvokeOptions): Promise<GetNodebalancerVpcsResult>;
51
+ /**
52
+ * A collection of arguments for invoking getNodebalancerVpcs.
53
+ */
54
+ export interface GetNodebalancerVpcsArgs {
55
+ filters?: inputs.GetNodebalancerVpcsFilter[];
56
+ /**
57
+ * The ID of the NodeBalancer to list VPC configurations for.
58
+ *
59
+ * * `filter` - (Optional) A set of filters used to select VPC configurations that meet certain requirements.
60
+ */
61
+ nodebalancerId: number;
62
+ /**
63
+ * The order in which results should be returned. (`asc`, `desc`; default `asc`)
64
+ */
65
+ order?: string;
66
+ /**
67
+ * The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
68
+ */
69
+ orderBy?: string;
70
+ }
71
+ /**
72
+ * A collection of values returned by getNodebalancerVpcs.
73
+ */
74
+ export interface GetNodebalancerVpcsResult {
75
+ readonly filters?: outputs.GetNodebalancerVpcsFilter[];
76
+ /**
77
+ * The ID of the VPC configuration.
78
+ */
79
+ readonly id: string;
80
+ /**
81
+ * The ID of the parent NodeBalancer for this VPC configuration.
82
+ */
83
+ readonly nodebalancerId: number;
84
+ readonly order?: string;
85
+ readonly orderBy?: string;
86
+ readonly vpcConfigs: outputs.GetNodebalancerVpcsVpcConfig[];
87
+ }
88
+ /**
89
+ * > **Limited Availability** VPC-attached NodeBalancers may not currently be available to all users and may require the `apiVersion` provider argument must be set to `v4beta`.
90
+ *
91
+ * Provides information about Linode NodeBalancers VPC configurations that match a set of filters.
92
+ * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-node-balancers).
93
+ *
94
+ * ## Example Usage
95
+ *
96
+ * Retrieve all VPC configurations under a NodeBalancer:
97
+ *
98
+ * ```typescript
99
+ * import * as pulumi from "@pulumi/pulumi";
100
+ * import * as linode from "@pulumi/linode";
101
+ *
102
+ * const vpc_configs = linode.getNodebalancerVpcs({
103
+ * nodebalancerId: 12345,
104
+ * });
105
+ * ```
106
+ *
107
+ * Retrieve all VPC configurations under a NodeBalancer with an IPv4 range of "10.0.0.4/30":
108
+ *
109
+ * ```typescript
110
+ * import * as pulumi from "@pulumi/pulumi";
111
+ * import * as linode from "@pulumi/linode";
112
+ *
113
+ * const vpc_configs = linode.getNodebalancerVpcs({
114
+ * nodebalancerId: 12345,
115
+ * filters: [{
116
+ * name: "ipv4_range",
117
+ * values: ["10.0.0.4/30"],
118
+ * }],
119
+ * });
120
+ * ```
121
+ *
122
+ * ## Filterable Fields
123
+ *
124
+ * * `id`
125
+ *
126
+ * * `ipv4Range`
127
+ *
128
+ * * `nodebalancerId`
129
+ *
130
+ * * `subnetId`
131
+ *
132
+ * * `vpcId`
133
+ */
134
+ export declare function getNodebalancerVpcsOutput(args: GetNodebalancerVpcsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNodebalancerVpcsResult>;
135
+ /**
136
+ * A collection of arguments for invoking getNodebalancerVpcs.
137
+ */
138
+ export interface GetNodebalancerVpcsOutputArgs {
139
+ filters?: pulumi.Input<pulumi.Input<inputs.GetNodebalancerVpcsFilterArgs>[]>;
140
+ /**
141
+ * The ID of the NodeBalancer to list VPC configurations for.
142
+ *
143
+ * * `filter` - (Optional) A set of filters used to select VPC configurations that meet certain requirements.
144
+ */
145
+ nodebalancerId: pulumi.Input<number>;
146
+ /**
147
+ * The order in which results should be returned. (`asc`, `desc`; default `asc`)
148
+ */
149
+ order?: pulumi.Input<string>;
150
+ /**
151
+ * The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
152
+ */
153
+ orderBy?: pulumi.Input<string>;
154
+ }
@@ -0,0 +1,120 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getNodebalancerVpcsOutput = exports.getNodebalancerVpcs = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * > **Limited Availability** VPC-attached NodeBalancers may not currently be available to all users and may require the `apiVersion` provider argument must be set to `v4beta`.
10
+ *
11
+ * Provides information about Linode NodeBalancers VPC configurations that match a set of filters.
12
+ * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-node-balancers).
13
+ *
14
+ * ## Example Usage
15
+ *
16
+ * Retrieve all VPC configurations under a NodeBalancer:
17
+ *
18
+ * ```typescript
19
+ * import * as pulumi from "@pulumi/pulumi";
20
+ * import * as linode from "@pulumi/linode";
21
+ *
22
+ * const vpc_configs = linode.getNodebalancerVpcs({
23
+ * nodebalancerId: 12345,
24
+ * });
25
+ * ```
26
+ *
27
+ * Retrieve all VPC configurations under a NodeBalancer with an IPv4 range of "10.0.0.4/30":
28
+ *
29
+ * ```typescript
30
+ * import * as pulumi from "@pulumi/pulumi";
31
+ * import * as linode from "@pulumi/linode";
32
+ *
33
+ * const vpc_configs = linode.getNodebalancerVpcs({
34
+ * nodebalancerId: 12345,
35
+ * filters: [{
36
+ * name: "ipv4_range",
37
+ * values: ["10.0.0.4/30"],
38
+ * }],
39
+ * });
40
+ * ```
41
+ *
42
+ * ## Filterable Fields
43
+ *
44
+ * * `id`
45
+ *
46
+ * * `ipv4Range`
47
+ *
48
+ * * `nodebalancerId`
49
+ *
50
+ * * `subnetId`
51
+ *
52
+ * * `vpcId`
53
+ */
54
+ function getNodebalancerVpcs(args, opts) {
55
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
56
+ return pulumi.runtime.invoke("linode:index/getNodebalancerVpcs:getNodebalancerVpcs", {
57
+ "filters": args.filters,
58
+ "nodebalancerId": args.nodebalancerId,
59
+ "order": args.order,
60
+ "orderBy": args.orderBy,
61
+ }, opts);
62
+ }
63
+ exports.getNodebalancerVpcs = getNodebalancerVpcs;
64
+ /**
65
+ * > **Limited Availability** VPC-attached NodeBalancers may not currently be available to all users and may require the `apiVersion` provider argument must be set to `v4beta`.
66
+ *
67
+ * Provides information about Linode NodeBalancers VPC configurations that match a set of filters.
68
+ * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-node-balancers).
69
+ *
70
+ * ## Example Usage
71
+ *
72
+ * Retrieve all VPC configurations under a NodeBalancer:
73
+ *
74
+ * ```typescript
75
+ * import * as pulumi from "@pulumi/pulumi";
76
+ * import * as linode from "@pulumi/linode";
77
+ *
78
+ * const vpc_configs = linode.getNodebalancerVpcs({
79
+ * nodebalancerId: 12345,
80
+ * });
81
+ * ```
82
+ *
83
+ * Retrieve all VPC configurations under a NodeBalancer with an IPv4 range of "10.0.0.4/30":
84
+ *
85
+ * ```typescript
86
+ * import * as pulumi from "@pulumi/pulumi";
87
+ * import * as linode from "@pulumi/linode";
88
+ *
89
+ * const vpc_configs = linode.getNodebalancerVpcs({
90
+ * nodebalancerId: 12345,
91
+ * filters: [{
92
+ * name: "ipv4_range",
93
+ * values: ["10.0.0.4/30"],
94
+ * }],
95
+ * });
96
+ * ```
97
+ *
98
+ * ## Filterable Fields
99
+ *
100
+ * * `id`
101
+ *
102
+ * * `ipv4Range`
103
+ *
104
+ * * `nodebalancerId`
105
+ *
106
+ * * `subnetId`
107
+ *
108
+ * * `vpcId`
109
+ */
110
+ function getNodebalancerVpcsOutput(args, opts) {
111
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
112
+ return pulumi.runtime.invokeOutput("linode:index/getNodebalancerVpcs:getNodebalancerVpcs", {
113
+ "filters": args.filters,
114
+ "nodebalancerId": args.nodebalancerId,
115
+ "order": args.order,
116
+ "orderBy": args.orderBy,
117
+ }, opts);
118
+ }
119
+ exports.getNodebalancerVpcsOutput = getNodebalancerVpcsOutput;
120
+ //# sourceMappingURL=getNodebalancerVpcs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNodebalancerVpcs.js","sourceRoot":"","sources":["../getNodebalancerVpcs.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kDAQC;AAwCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sDAAsD,EAAE;QACvF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8DAQC"}
package/getUser.d.ts CHANGED
@@ -32,7 +32,6 @@ export interface GetUserArgs {
32
32
  linodeGrants?: inputs.GetUserLinodeGrant[];
33
33
  longviewGrants?: inputs.GetUserLongviewGrant[];
34
34
  nodebalancerGrants?: inputs.GetUserNodebalancerGrant[];
35
- placementGroupGrants?: inputs.GetUserPlacementGroupGrant[];
36
35
  stackscriptGrants?: inputs.GetUserStackscriptGrant[];
37
36
  /**
38
37
  * The unique username of this User.
@@ -65,7 +64,6 @@ export interface GetUserResult {
65
64
  * The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
66
65
  */
67
66
  readonly passwordCreated: string;
68
- readonly placementGroupGrants: outputs.GetUserPlacementGroupGrant[];
69
67
  /**
70
68
  * If true, this User must be granted access to perform actions or access entities on this Account.
71
69
  */
@@ -122,7 +120,6 @@ export interface GetUserOutputArgs {
122
120
  linodeGrants?: pulumi.Input<pulumi.Input<inputs.GetUserLinodeGrantArgs>[]>;
123
121
  longviewGrants?: pulumi.Input<pulumi.Input<inputs.GetUserLongviewGrantArgs>[]>;
124
122
  nodebalancerGrants?: pulumi.Input<pulumi.Input<inputs.GetUserNodebalancerGrantArgs>[]>;
125
- placementGroupGrants?: pulumi.Input<pulumi.Input<inputs.GetUserPlacementGroupGrantArgs>[]>;
126
123
  stackscriptGrants?: pulumi.Input<pulumi.Input<inputs.GetUserStackscriptGrantArgs>[]>;
127
124
  /**
128
125
  * The unique username of this User.
package/getUser.js CHANGED
@@ -34,7 +34,6 @@ function getUser(args, opts) {
34
34
  "linodeGrants": args.linodeGrants,
35
35
  "longviewGrants": args.longviewGrants,
36
36
  "nodebalancerGrants": args.nodebalancerGrants,
37
- "placementGroupGrants": args.placementGroupGrants,
38
37
  "stackscriptGrants": args.stackscriptGrants,
39
38
  "username": args.username,
40
39
  "volumeGrants": args.volumeGrants,
@@ -71,7 +70,6 @@ function getUserOutput(args, opts) {
71
70
  "linodeGrants": args.linodeGrants,
72
71
  "longviewGrants": args.longviewGrants,
73
72
  "nodebalancerGrants": args.nodebalancerGrants,
74
- "placementGroupGrants": args.placementGroupGrants,
75
73
  "stackscriptGrants": args.stackscriptGrants,
76
74
  "username": args.username,
77
75
  "volumeGrants": args.volumeGrants,
package/getUser.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,0BAgBC;AAyED;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAAiC;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8BAA8B,EAAE;QAC/D,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sCAgBC"}
1
+ {"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,0BAeC;AAuED;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAAiC;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8BAA8B,EAAE;QAC/D,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,sCAeC"}
package/getVpc.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
2
3
  /**
3
4
  * Provides information about a Linode VPC.
4
5
  * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpc).
@@ -16,6 +17,18 @@ import * as pulumi from "@pulumi/pulumi";
16
17
  * });
17
18
  * export const vpc = foo;
18
19
  * ```
20
+ *
21
+ * ## IPv6
22
+ *
23
+ * > **Limited Availability** IPv6 VPCs may not currently be available to all users.
24
+ *
25
+ * Contains information about a single IPv6 allocation under this VPC.
26
+ *
27
+ * * `range` - The allocated range in CIDR format.
28
+ *
29
+ * ### Subnets Reference
30
+ *
31
+ * To list all subnets under a VPC, please refer to the linode.getVpcSubnets data source.
19
32
  */
20
33
  export declare function getVpc(args: GetVpcArgs, opts?: pulumi.InvokeOptions): Promise<GetVpcResult>;
21
34
  /**
@@ -40,6 +53,10 @@ export interface GetVpcResult {
40
53
  */
41
54
  readonly description: string;
42
55
  readonly id: string;
56
+ /**
57
+ * A list of IPv6 allocations under this VPC.
58
+ */
59
+ readonly ipv6s: outputs.GetVpcIpv6[];
43
60
  /**
44
61
  * The label of the VPC.
45
62
  */
@@ -70,6 +87,18 @@ export interface GetVpcResult {
70
87
  * });
71
88
  * export const vpc = foo;
72
89
  * ```
90
+ *
91
+ * ## IPv6
92
+ *
93
+ * > **Limited Availability** IPv6 VPCs may not currently be available to all users.
94
+ *
95
+ * Contains information about a single IPv6 allocation under this VPC.
96
+ *
97
+ * * `range` - The allocated range in CIDR format.
98
+ *
99
+ * ### Subnets Reference
100
+ *
101
+ * To list all subnets under a VPC, please refer to the linode.getVpcSubnets data source.
73
102
  */
74
103
  export declare function getVpcOutput(args: GetVpcOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVpcResult>;
75
104
  /**
package/getVpc.js CHANGED
@@ -22,6 +22,18 @@ const utilities = require("./utilities");
22
22
  * });
23
23
  * export const vpc = foo;
24
24
  * ```
25
+ *
26
+ * ## IPv6
27
+ *
28
+ * > **Limited Availability** IPv6 VPCs may not currently be available to all users.
29
+ *
30
+ * Contains information about a single IPv6 allocation under this VPC.
31
+ *
32
+ * * `range` - The allocated range in CIDR format.
33
+ *
34
+ * ### Subnets Reference
35
+ *
36
+ * To list all subnets under a VPC, please refer to the linode.getVpcSubnets data source.
25
37
  */
26
38
  function getVpc(args, opts) {
27
39
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -47,6 +59,18 @@ exports.getVpc = getVpc;
47
59
  * });
48
60
  * export const vpc = foo;
49
61
  * ```
62
+ *
63
+ * ## IPv6
64
+ *
65
+ * > **Limited Availability** IPv6 VPCs may not currently be available to all users.
66
+ *
67
+ * Contains information about a single IPv6 allocation under this VPC.
68
+ *
69
+ * * `range` - The allocated range in CIDR format.
70
+ *
71
+ * ### Subnets Reference
72
+ *
73
+ * To list all subnets under a VPC, please refer to the linode.getVpcSubnets data source.
50
74
  */
51
75
  function getVpcOutput(args, opts) {
52
76
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
package/getVpc.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getVpc.js","sourceRoot":"","sources":["../getVpc.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wBAKC;AAsCD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAAiC;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4BAA4B,EAAE;QAC7D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oCAKC"}
1
+ {"version":3,"file":"getVpc.js","sourceRoot":"","sources":["../getVpc.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wBAKC;AA0CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAAiC;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4BAA4B,EAAE;QAC7D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oCAKC"}
package/getVpcIps.d.ts CHANGED
@@ -5,9 +5,6 @@ import * as outputs from "./types/output";
5
5
  * Provides information about a list of Linode VPC IPs that match a set of filters.
6
6
  * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpcs-ips).
7
7
  *
8
- * Provides information about a list of Linode VPC IPs in a specific VPC that match a set of filters.
9
- * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpc-ips).
10
- *
11
8
  * ## Example Usage
12
9
  *
13
10
  * The following example shows how one might use this data source to list VPC IPs.
@@ -37,6 +34,17 @@ import * as outputs from "./types/output";
37
34
  * export const vpcIps = specific_vpc_ips.then(specific_vpc_ips => specific_vpc_ips.vpcIps);
38
35
  * ```
39
36
  *
37
+ * By default, this data source retrieves only IPv4 addresses. To instead retrieve IPv6 addresses, the `ipv6` field should be set to true:
38
+ *
39
+ * ```typescript
40
+ * import * as pulumi from "@pulumi/pulumi";
41
+ * import * as linode from "@pulumi/linode";
42
+ *
43
+ * const all_vpc_ipv6 = linode.getVpcIps({
44
+ * ipv6: true,
45
+ * });
46
+ * ```
47
+ *
40
48
  * ## Filterable Fields
41
49
  *
42
50
  * * `active`
@@ -55,6 +63,7 @@ export declare function getVpcIps(args?: GetVpcIpsArgs, opts?: pulumi.InvokeOpti
55
63
  */
56
64
  export interface GetVpcIpsArgs {
57
65
  filters?: inputs.GetVpcIpsFilter[];
66
+ ipv6?: boolean;
58
67
  /**
59
68
  * The id of the parent VPC for the list of VPC IPs.
60
69
  *
@@ -69,6 +78,7 @@ export interface GetVpcIpsArgs {
69
78
  export interface GetVpcIpsResult {
70
79
  readonly filters?: outputs.GetVpcIpsFilter[];
71
80
  readonly id: string;
81
+ readonly ipv6?: boolean;
72
82
  /**
73
83
  * The unique globally general API entity identifier for the VPC.
74
84
  */
@@ -79,9 +89,6 @@ export interface GetVpcIpsResult {
79
89
  * Provides information about a list of Linode VPC IPs that match a set of filters.
80
90
  * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpcs-ips).
81
91
  *
82
- * Provides information about a list of Linode VPC IPs in a specific VPC that match a set of filters.
83
- * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpc-ips).
84
- *
85
92
  * ## Example Usage
86
93
  *
87
94
  * The following example shows how one might use this data source to list VPC IPs.
@@ -111,6 +118,17 @@ export interface GetVpcIpsResult {
111
118
  * export const vpcIps = specific_vpc_ips.then(specific_vpc_ips => specific_vpc_ips.vpcIps);
112
119
  * ```
113
120
  *
121
+ * By default, this data source retrieves only IPv4 addresses. To instead retrieve IPv6 addresses, the `ipv6` field should be set to true:
122
+ *
123
+ * ```typescript
124
+ * import * as pulumi from "@pulumi/pulumi";
125
+ * import * as linode from "@pulumi/linode";
126
+ *
127
+ * const all_vpc_ipv6 = linode.getVpcIps({
128
+ * ipv6: true,
129
+ * });
130
+ * ```
131
+ *
114
132
  * ## Filterable Fields
115
133
  *
116
134
  * * `active`
@@ -129,6 +147,7 @@ export declare function getVpcIpsOutput(args?: GetVpcIpsOutputArgs, opts?: pulum
129
147
  */
130
148
  export interface GetVpcIpsOutputArgs {
131
149
  filters?: pulumi.Input<pulumi.Input<inputs.GetVpcIpsFilterArgs>[]>;
150
+ ipv6?: pulumi.Input<boolean>;
132
151
  /**
133
152
  * The id of the parent VPC for the list of VPC IPs.
134
153
  *
package/getVpcIps.js CHANGED
@@ -9,9 +9,6 @@ const utilities = require("./utilities");
9
9
  * Provides information about a list of Linode VPC IPs that match a set of filters.
10
10
  * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpcs-ips).
11
11
  *
12
- * Provides information about a list of Linode VPC IPs in a specific VPC that match a set of filters.
13
- * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpc-ips).
14
- *
15
12
  * ## Example Usage
16
13
  *
17
14
  * The following example shows how one might use this data source to list VPC IPs.
@@ -41,6 +38,17 @@ const utilities = require("./utilities");
41
38
  * export const vpcIps = specific_vpc_ips.then(specific_vpc_ips => specific_vpc_ips.vpcIps);
42
39
  * ```
43
40
  *
41
+ * By default, this data source retrieves only IPv4 addresses. To instead retrieve IPv6 addresses, the `ipv6` field should be set to true:
42
+ *
43
+ * ```typescript
44
+ * import * as pulumi from "@pulumi/pulumi";
45
+ * import * as linode from "@pulumi/linode";
46
+ *
47
+ * const all_vpc_ipv6 = linode.getVpcIps({
48
+ * ipv6: true,
49
+ * });
50
+ * ```
51
+ *
44
52
  * ## Filterable Fields
45
53
  *
46
54
  * * `active`
@@ -58,6 +66,7 @@ function getVpcIps(args, opts) {
58
66
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
59
67
  return pulumi.runtime.invoke("linode:index/getVpcIps:getVpcIps", {
60
68
  "filters": args.filters,
69
+ "ipv6": args.ipv6,
61
70
  "vpcId": args.vpcId,
62
71
  "vpcIps": args.vpcIps,
63
72
  }, opts);
@@ -67,9 +76,6 @@ exports.getVpcIps = getVpcIps;
67
76
  * Provides information about a list of Linode VPC IPs that match a set of filters.
68
77
  * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpcs-ips).
69
78
  *
70
- * Provides information about a list of Linode VPC IPs in a specific VPC that match a set of filters.
71
- * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-vpc-ips).
72
- *
73
79
  * ## Example Usage
74
80
  *
75
81
  * The following example shows how one might use this data source to list VPC IPs.
@@ -99,6 +105,17 @@ exports.getVpcIps = getVpcIps;
99
105
  * export const vpcIps = specific_vpc_ips.then(specific_vpc_ips => specific_vpc_ips.vpcIps);
100
106
  * ```
101
107
  *
108
+ * By default, this data source retrieves only IPv4 addresses. To instead retrieve IPv6 addresses, the `ipv6` field should be set to true:
109
+ *
110
+ * ```typescript
111
+ * import * as pulumi from "@pulumi/pulumi";
112
+ * import * as linode from "@pulumi/linode";
113
+ *
114
+ * const all_vpc_ipv6 = linode.getVpcIps({
115
+ * ipv6: true,
116
+ * });
117
+ * ```
118
+ *
102
119
  * ## Filterable Fields
103
120
  *
104
121
  * * `active`
@@ -116,6 +133,7 @@ function getVpcIpsOutput(args, opts) {
116
133
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
117
134
  return pulumi.runtime.invokeOutput("linode:index/getVpcIps:getVpcIps", {
118
135
  "filters": args.filters,
136
+ "ipv6": args.ipv6,
119
137
  "vpcId": args.vpcId,
120
138
  "vpcIps": args.vpcIps,
121
139
  }, opts);
package/getVpcIps.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getVpcIps.js","sourceRoot":"","sources":["../getVpcIps.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8BAQC;AA4BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAAiC;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC"}
1
+ {"version":3,"file":"getVpcIps.js","sourceRoot":"","sources":["../getVpcIps.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,8BASC;AA8BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAAiC;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0CASC"}