@pulumi/consul 3.12.3 → 3.12.4
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/getCatalogService.d.ts +2 -2
- package/getCatalogService.js +2 -2
- package/getCatalogServices.d.ts +2 -2
- package/getCatalogServices.js +2 -2
- package/getService.d.ts +2 -2
- package/getService.js +2 -2
- package/getServices.d.ts +2 -2
- package/getServices.js +2 -2
- package/package.json +2 -2
package/getCatalogService.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import * as outputs from "./types/output";
|
|
|
19
19
|
* import * as example from "@pulumi/example";
|
|
20
20
|
* import * as std from "@pulumi/std";
|
|
21
21
|
*
|
|
22
|
-
* const
|
|
22
|
+
* const read_consul_dc1 = consul.getService({
|
|
23
23
|
* name: "consul",
|
|
24
24
|
* datacenter: "dc1",
|
|
25
25
|
* });
|
|
@@ -105,7 +105,7 @@ export interface GetCatalogServiceResult {
|
|
|
105
105
|
* import * as example from "@pulumi/example";
|
|
106
106
|
* import * as std from "@pulumi/std";
|
|
107
107
|
*
|
|
108
|
-
* const
|
|
108
|
+
* const read_consul_dc1 = consul.getService({
|
|
109
109
|
* name: "consul",
|
|
110
110
|
* datacenter: "dc1",
|
|
111
111
|
* });
|
package/getCatalogService.js
CHANGED
|
@@ -23,7 +23,7 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* import * as example from "@pulumi/example";
|
|
24
24
|
* import * as std from "@pulumi/std";
|
|
25
25
|
*
|
|
26
|
-
* const
|
|
26
|
+
* const read_consul_dc1 = consul.getService({
|
|
27
27
|
* name: "consul",
|
|
28
28
|
* datacenter: "dc1",
|
|
29
29
|
* });
|
|
@@ -65,7 +65,7 @@ exports.getCatalogService = getCatalogService;
|
|
|
65
65
|
* import * as example from "@pulumi/example";
|
|
66
66
|
* import * as std from "@pulumi/std";
|
|
67
67
|
*
|
|
68
|
-
* const
|
|
68
|
+
* const read_consul_dc1 = consul.getService({
|
|
69
69
|
* name: "consul",
|
|
70
70
|
* datacenter: "dc1",
|
|
71
71
|
* });
|
package/getCatalogServices.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ import * as outputs from "./types/output";
|
|
|
18
18
|
* import * as example from "@pulumi/example";
|
|
19
19
|
* import * as std from "@pulumi/std";
|
|
20
20
|
*
|
|
21
|
-
* const
|
|
21
|
+
* const read_dc1 = consul.getServices({
|
|
22
22
|
* queryOptions: [{
|
|
23
23
|
* datacenter: "dc1",
|
|
24
24
|
* }],
|
|
@@ -85,7 +85,7 @@ export interface GetCatalogServicesResult {
|
|
|
85
85
|
* import * as example from "@pulumi/example";
|
|
86
86
|
* import * as std from "@pulumi/std";
|
|
87
87
|
*
|
|
88
|
-
* const
|
|
88
|
+
* const read_dc1 = consul.getServices({
|
|
89
89
|
* queryOptions: [{
|
|
90
90
|
* datacenter: "dc1",
|
|
91
91
|
* }],
|
package/getCatalogServices.js
CHANGED
|
@@ -22,7 +22,7 @@ const utilities = require("./utilities");
|
|
|
22
22
|
* import * as example from "@pulumi/example";
|
|
23
23
|
* import * as std from "@pulumi/std";
|
|
24
24
|
*
|
|
25
|
-
* const
|
|
25
|
+
* const read_dc1 = consul.getServices({
|
|
26
26
|
* queryOptions: [{
|
|
27
27
|
* datacenter: "dc1",
|
|
28
28
|
* }],
|
|
@@ -61,7 +61,7 @@ exports.getCatalogServices = getCatalogServices;
|
|
|
61
61
|
* import * as example from "@pulumi/example";
|
|
62
62
|
* import * as std from "@pulumi/std";
|
|
63
63
|
*
|
|
64
|
-
* const
|
|
64
|
+
* const read_dc1 = consul.getServices({
|
|
65
65
|
* queryOptions: [{
|
|
66
66
|
* datacenter: "dc1",
|
|
67
67
|
* }],
|
package/getService.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import * as outputs from "./types/output";
|
|
|
19
19
|
* import * as example from "@pulumi/example";
|
|
20
20
|
* import * as std from "@pulumi/std";
|
|
21
21
|
*
|
|
22
|
-
* const
|
|
22
|
+
* const read_consul_dc1 = consul.getService({
|
|
23
23
|
* name: "consul",
|
|
24
24
|
* datacenter: "dc1",
|
|
25
25
|
* });
|
|
@@ -104,7 +104,7 @@ export interface GetServiceResult {
|
|
|
104
104
|
* import * as example from "@pulumi/example";
|
|
105
105
|
* import * as std from "@pulumi/std";
|
|
106
106
|
*
|
|
107
|
-
* const
|
|
107
|
+
* const read_consul_dc1 = consul.getService({
|
|
108
108
|
* name: "consul",
|
|
109
109
|
* datacenter: "dc1",
|
|
110
110
|
* });
|
package/getService.js
CHANGED
|
@@ -23,7 +23,7 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* import * as example from "@pulumi/example";
|
|
24
24
|
* import * as std from "@pulumi/std";
|
|
25
25
|
*
|
|
26
|
-
* const
|
|
26
|
+
* const read_consul_dc1 = consul.getService({
|
|
27
27
|
* name: "consul",
|
|
28
28
|
* datacenter: "dc1",
|
|
29
29
|
* });
|
|
@@ -63,7 +63,7 @@ exports.getService = getService;
|
|
|
63
63
|
* import * as example from "@pulumi/example";
|
|
64
64
|
* import * as std from "@pulumi/std";
|
|
65
65
|
*
|
|
66
|
-
* const
|
|
66
|
+
* const read_consul_dc1 = consul.getService({
|
|
67
67
|
* name: "consul",
|
|
68
68
|
* datacenter: "dc1",
|
|
69
69
|
* });
|
package/getServices.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ import * as outputs from "./types/output";
|
|
|
18
18
|
* import * as example from "@pulumi/example";
|
|
19
19
|
* import * as std from "@pulumi/std";
|
|
20
20
|
*
|
|
21
|
-
* const
|
|
21
|
+
* const read_dc1 = consul.getServices({
|
|
22
22
|
* queryOptions: [{
|
|
23
23
|
* datacenter: "dc1",
|
|
24
24
|
* }],
|
|
@@ -84,7 +84,7 @@ export interface GetServicesResult {
|
|
|
84
84
|
* import * as example from "@pulumi/example";
|
|
85
85
|
* import * as std from "@pulumi/std";
|
|
86
86
|
*
|
|
87
|
-
* const
|
|
87
|
+
* const read_dc1 = consul.getServices({
|
|
88
88
|
* queryOptions: [{
|
|
89
89
|
* datacenter: "dc1",
|
|
90
90
|
* }],
|
package/getServices.js
CHANGED
|
@@ -22,7 +22,7 @@ const utilities = require("./utilities");
|
|
|
22
22
|
* import * as example from "@pulumi/example";
|
|
23
23
|
* import * as std from "@pulumi/std";
|
|
24
24
|
*
|
|
25
|
-
* const
|
|
25
|
+
* const read_dc1 = consul.getServices({
|
|
26
26
|
* queryOptions: [{
|
|
27
27
|
* datacenter: "dc1",
|
|
28
28
|
* }],
|
|
@@ -59,7 +59,7 @@ exports.getServices = getServices;
|
|
|
59
59
|
* import * as example from "@pulumi/example";
|
|
60
60
|
* import * as std from "@pulumi/std";
|
|
61
61
|
*
|
|
62
|
-
* const
|
|
62
|
+
* const read_dc1 = consul.getServices({
|
|
63
63
|
* queryOptions: [{
|
|
64
64
|
* datacenter: "dc1",
|
|
65
65
|
* }],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/consul",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.4",
|
|
4
4
|
"description": "A Pulumi package for creating and managing consul resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "consul",
|
|
26
|
-
"version": "3.12.
|
|
26
|
+
"version": "3.12.4"
|
|
27
27
|
}
|
|
28
28
|
}
|