@pulumi/consul 3.13.1 → 3.13.2
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/aclAuthMethod.js +24 -24
- package/aclAuthMethod.js.map +1 -1
- package/aclBindingRule.js +20 -20
- package/aclBindingRule.js.map +1 -1
- package/aclPolicy.js +14 -14
- package/aclPolicy.js.map +1 -1
- package/aclRole.js +17 -17
- package/aclRole.js.map +1 -1
- package/aclRolePolicyAttachment.js +7 -7
- package/aclRolePolicyAttachment.js.map +1 -1
- package/aclToken.js +23 -23
- package/aclToken.js.map +1 -1
- package/aclTokenPolicyAttachment.js +7 -7
- package/aclTokenPolicyAttachment.js.map +1 -1
- package/aclTokenRoleAttachment.js +7 -7
- package/aclTokenRoleAttachment.js.map +1 -1
- package/adminPartition.js +7 -7
- package/adminPartition.js.map +1 -1
- package/agentService.js +9 -9
- package/agentService.js.map +1 -1
- package/autopilotConfig.js +17 -17
- package/autopilotConfig.js.map +1 -1
- package/catalogEntry.d.ts +2 -0
- package/catalogEntry.js +15 -13
- package/catalogEntry.js.map +1 -1
- package/certificateAuthority.js +8 -8
- package/certificateAuthority.js.map +1 -1
- package/config/vars.d.ts +5 -10
- package/config/vars.js.map +1 -1
- package/configEntry.js +12 -12
- package/configEntry.js.map +1 -1
- package/configEntryServiceDefaults.js +39 -39
- package/configEntryServiceDefaults.js.map +1 -1
- package/configEntryServiceIntentions.js +13 -13
- package/configEntryServiceIntentions.js.map +1 -1
- package/configEntryServiceResolver.js +23 -23
- package/configEntryServiceResolver.js.map +1 -1
- package/configEntryServiceRouter.js +11 -11
- package/configEntryServiceRouter.js.map +1 -1
- package/configEntryServiceSplitter.js +12 -12
- package/configEntryServiceSplitter.js.map +1 -1
- package/configEntryV2ExportedServices.js +19 -19
- package/configEntryV2ExportedServices.js.map +1 -1
- package/getAgentSelf.d.ts +4 -0
- package/getAgentSelf.js +4 -0
- package/getAgentSelf.js.map +1 -1
- package/getServiceHealth.d.ts +4 -0
- package/getServiceHealth.js +4 -0
- package/getServiceHealth.js.map +1 -1
- package/intention.js +20 -20
- package/intention.js.map +1 -1
- package/keyPrefix.js +16 -16
- package/keyPrefix.js.map +1 -1
- package/keys.js +12 -12
- package/keys.js.map +1 -1
- package/license.js +16 -16
- package/license.js.map +1 -1
- package/namespace.js +13 -13
- package/namespace.js.map +1 -1
- package/namespacePolicyAttachment.js +7 -7
- package/namespacePolicyAttachment.js.map +1 -1
- package/namespaceRoleAttachment.js +7 -7
- package/namespaceRoleAttachment.js.map +1 -1
- package/networkArea.js +12 -12
- package/networkArea.js.map +1 -1
- package/node.js +14 -14
- package/node.js.map +1 -1
- package/package.json +2 -2
- package/peering.js +17 -17
- package/peering.js.map +1 -1
- package/peeringToken.js +11 -11
- package/peeringToken.js.map +1 -1
- package/preparedQuery.js +34 -34
- package/preparedQuery.js.map +1 -1
- package/provider.d.ts +8 -16
- package/provider.js +16 -16
- package/provider.js.map +1 -1
- package/service.js +30 -30
- package/service.js.map +1 -1
- package/utilities.js +18 -29
- package/utilities.js.map +1 -1
package/agentService.js
CHANGED
|
@@ -42,7 +42,7 @@ class AgentService extends pulumi.CustomResource {
|
|
|
42
42
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
43
43
|
*/
|
|
44
44
|
static get(name, id, state, opts) {
|
|
45
|
-
return new AgentService(name, state,
|
|
45
|
+
return new AgentService(name, state, { ...opts, id: id });
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* Returns true if the given object is an instance of AgentService. This is designed to work even
|
|
@@ -59,17 +59,17 @@ class AgentService extends pulumi.CustomResource {
|
|
|
59
59
|
opts = opts || {};
|
|
60
60
|
if (opts.id) {
|
|
61
61
|
const state = argsOrState;
|
|
62
|
-
resourceInputs["address"] = state
|
|
63
|
-
resourceInputs["name"] = state
|
|
64
|
-
resourceInputs["port"] = state
|
|
65
|
-
resourceInputs["tags"] = state
|
|
62
|
+
resourceInputs["address"] = state?.address;
|
|
63
|
+
resourceInputs["name"] = state?.name;
|
|
64
|
+
resourceInputs["port"] = state?.port;
|
|
65
|
+
resourceInputs["tags"] = state?.tags;
|
|
66
66
|
}
|
|
67
67
|
else {
|
|
68
68
|
const args = argsOrState;
|
|
69
|
-
resourceInputs["address"] = args
|
|
70
|
-
resourceInputs["name"] = args
|
|
71
|
-
resourceInputs["port"] = args
|
|
72
|
-
resourceInputs["tags"] = args
|
|
69
|
+
resourceInputs["address"] = args?.address;
|
|
70
|
+
resourceInputs["name"] = args?.name;
|
|
71
|
+
resourceInputs["port"] = args?.port;
|
|
72
|
+
resourceInputs["tags"] = args?.tags;
|
|
73
73
|
}
|
|
74
74
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
75
75
|
super(AgentService.__pulumiType, name, resourceInputs, opts);
|
package/agentService.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentService.js","sourceRoot":"","sources":["../agentService.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"agentService.js","sourceRoot":"","sources":["../agentService.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IA6BD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AAzEL,oCA0EC;AA5DG,gBAAgB;AACO,yBAAY,GAAG,wCAAwC,CAAC"}
|
package/autopilotConfig.js
CHANGED
|
@@ -36,7 +36,7 @@ class AutopilotConfig extends pulumi.CustomResource {
|
|
|
36
36
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
37
37
|
*/
|
|
38
38
|
static get(name, id, state, opts) {
|
|
39
|
-
return new AutopilotConfig(name, state,
|
|
39
|
+
return new AutopilotConfig(name, state, { ...opts, id: id });
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
42
|
* Returns true if the given object is an instance of AutopilotConfig. This is designed to work even
|
|
@@ -53,25 +53,25 @@ class AutopilotConfig extends pulumi.CustomResource {
|
|
|
53
53
|
opts = opts || {};
|
|
54
54
|
if (opts.id) {
|
|
55
55
|
const state = argsOrState;
|
|
56
|
-
resourceInputs["cleanupDeadServers"] = state
|
|
57
|
-
resourceInputs["datacenter"] = state
|
|
58
|
-
resourceInputs["disableUpgradeMigration"] = state
|
|
59
|
-
resourceInputs["lastContactThreshold"] = state
|
|
60
|
-
resourceInputs["maxTrailingLogs"] = state
|
|
61
|
-
resourceInputs["redundancyZoneTag"] = state
|
|
62
|
-
resourceInputs["serverStabilizationTime"] = state
|
|
63
|
-
resourceInputs["upgradeVersionTag"] = state
|
|
56
|
+
resourceInputs["cleanupDeadServers"] = state?.cleanupDeadServers;
|
|
57
|
+
resourceInputs["datacenter"] = state?.datacenter;
|
|
58
|
+
resourceInputs["disableUpgradeMigration"] = state?.disableUpgradeMigration;
|
|
59
|
+
resourceInputs["lastContactThreshold"] = state?.lastContactThreshold;
|
|
60
|
+
resourceInputs["maxTrailingLogs"] = state?.maxTrailingLogs;
|
|
61
|
+
resourceInputs["redundancyZoneTag"] = state?.redundancyZoneTag;
|
|
62
|
+
resourceInputs["serverStabilizationTime"] = state?.serverStabilizationTime;
|
|
63
|
+
resourceInputs["upgradeVersionTag"] = state?.upgradeVersionTag;
|
|
64
64
|
}
|
|
65
65
|
else {
|
|
66
66
|
const args = argsOrState;
|
|
67
|
-
resourceInputs["cleanupDeadServers"] = args
|
|
68
|
-
resourceInputs["datacenter"] = args
|
|
69
|
-
resourceInputs["disableUpgradeMigration"] = args
|
|
70
|
-
resourceInputs["lastContactThreshold"] = args
|
|
71
|
-
resourceInputs["maxTrailingLogs"] = args
|
|
72
|
-
resourceInputs["redundancyZoneTag"] = args
|
|
73
|
-
resourceInputs["serverStabilizationTime"] = args
|
|
74
|
-
resourceInputs["upgradeVersionTag"] = args
|
|
67
|
+
resourceInputs["cleanupDeadServers"] = args?.cleanupDeadServers;
|
|
68
|
+
resourceInputs["datacenter"] = args?.datacenter;
|
|
69
|
+
resourceInputs["disableUpgradeMigration"] = args?.disableUpgradeMigration;
|
|
70
|
+
resourceInputs["lastContactThreshold"] = args?.lastContactThreshold;
|
|
71
|
+
resourceInputs["maxTrailingLogs"] = args?.maxTrailingLogs;
|
|
72
|
+
resourceInputs["redundancyZoneTag"] = args?.redundancyZoneTag;
|
|
73
|
+
resourceInputs["serverStabilizationTime"] = args?.serverStabilizationTime;
|
|
74
|
+
resourceInputs["upgradeVersionTag"] = args?.upgradeVersionTag;
|
|
75
75
|
}
|
|
76
76
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
77
77
|
super(AutopilotConfig.__pulumiType, name, resourceInputs, opts);
|
package/autopilotConfig.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autopilotConfig.js","sourceRoot":"","sources":["../autopilotConfig.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"autopilotConfig.js","sourceRoot":"","sources":["../autopilotConfig.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAqDD,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,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;SAClE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,EAAE,uBAAuB,CAAC;YAC1E,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,EAAE,uBAAuB,CAAC;YAC1E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;SACjE;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;;AAzGL,0CA0GC;AA5FG,gBAAgB;AACO,4BAAY,GAAG,8CAA8C,CAAC"}
|
package/catalogEntry.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ import * as outputs from "./types/output";
|
|
|
8
8
|
*
|
|
9
9
|
* Registers a node or service with the [Consul Catalog](https://www.consul.io/docs/agent/http/catalog.html#catalog_register).
|
|
10
10
|
* Currently, defining health checks is not supported.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
11
13
|
*/
|
|
12
14
|
export declare class CatalogEntry extends pulumi.CustomResource {
|
|
13
15
|
/**
|
package/catalogEntry.js
CHANGED
|
@@ -12,6 +12,8 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* Registers a node or service with the [Consul Catalog](https://www.consul.io/docs/agent/http/catalog.html#catalog_register).
|
|
14
14
|
* Currently, defining health checks is not supported.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
15
17
|
*/
|
|
16
18
|
class CatalogEntry extends pulumi.CustomResource {
|
|
17
19
|
/**
|
|
@@ -24,7 +26,7 @@ class CatalogEntry extends pulumi.CustomResource {
|
|
|
24
26
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
25
27
|
*/
|
|
26
28
|
static get(name, id, state, opts) {
|
|
27
|
-
return new CatalogEntry(name, state,
|
|
29
|
+
return new CatalogEntry(name, state, { ...opts, id: id });
|
|
28
30
|
}
|
|
29
31
|
/**
|
|
30
32
|
* Returns true if the given object is an instance of CatalogEntry. This is designed to work even
|
|
@@ -41,25 +43,25 @@ class CatalogEntry extends pulumi.CustomResource {
|
|
|
41
43
|
opts = opts || {};
|
|
42
44
|
if (opts.id) {
|
|
43
45
|
const state = argsOrState;
|
|
44
|
-
resourceInputs["address"] = state
|
|
45
|
-
resourceInputs["datacenter"] = state
|
|
46
|
-
resourceInputs["node"] = state
|
|
47
|
-
resourceInputs["services"] = state
|
|
48
|
-
resourceInputs["token"] = state
|
|
46
|
+
resourceInputs["address"] = state?.address;
|
|
47
|
+
resourceInputs["datacenter"] = state?.datacenter;
|
|
48
|
+
resourceInputs["node"] = state?.node;
|
|
49
|
+
resourceInputs["services"] = state?.services;
|
|
50
|
+
resourceInputs["token"] = state?.token;
|
|
49
51
|
}
|
|
50
52
|
else {
|
|
51
53
|
const args = argsOrState;
|
|
52
|
-
if (
|
|
54
|
+
if (args?.address === undefined && !opts.urn) {
|
|
53
55
|
throw new Error("Missing required property 'address'");
|
|
54
56
|
}
|
|
55
|
-
if (
|
|
57
|
+
if (args?.node === undefined && !opts.urn) {
|
|
56
58
|
throw new Error("Missing required property 'node'");
|
|
57
59
|
}
|
|
58
|
-
resourceInputs["address"] = args
|
|
59
|
-
resourceInputs["datacenter"] = args
|
|
60
|
-
resourceInputs["node"] = args
|
|
61
|
-
resourceInputs["services"] = args
|
|
62
|
-
resourceInputs["token"] =
|
|
60
|
+
resourceInputs["address"] = args?.address;
|
|
61
|
+
resourceInputs["datacenter"] = args?.datacenter;
|
|
62
|
+
resourceInputs["node"] = args?.node;
|
|
63
|
+
resourceInputs["services"] = args?.services;
|
|
64
|
+
resourceInputs["token"] = args?.token ? pulumi.secret(args.token) : undefined;
|
|
63
65
|
}
|
|
64
66
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
65
67
|
const secretOpts = { additionalSecretOutputs: ["token"] };
|
package/catalogEntry.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalogEntry.js","sourceRoot":"","sources":["../catalogEntry.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"catalogEntry.js","sourceRoot":"","sources":["../catalogEntry.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;GASG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAsCD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;QAC1D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA5FL,oCA6FC;AA/EG,gBAAgB;AACO,yBAAY,GAAG,wCAAwC,CAAC"}
|
package/certificateAuthority.js
CHANGED
|
@@ -27,7 +27,7 @@ class CertificateAuthority extends pulumi.CustomResource {
|
|
|
27
27
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
28
|
*/
|
|
29
29
|
static get(name, id, state, opts) {
|
|
30
|
-
return new CertificateAuthority(name, state,
|
|
30
|
+
return new CertificateAuthority(name, state, { ...opts, id: id });
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* Returns true if the given object is an instance of CertificateAuthority. This is designed to work even
|
|
@@ -44,18 +44,18 @@ class CertificateAuthority extends pulumi.CustomResource {
|
|
|
44
44
|
opts = opts || {};
|
|
45
45
|
if (opts.id) {
|
|
46
46
|
const state = argsOrState;
|
|
47
|
-
resourceInputs["config"] = state
|
|
48
|
-
resourceInputs["configJson"] = state
|
|
49
|
-
resourceInputs["connectProvider"] = state
|
|
47
|
+
resourceInputs["config"] = state?.config;
|
|
48
|
+
resourceInputs["configJson"] = state?.configJson;
|
|
49
|
+
resourceInputs["connectProvider"] = state?.connectProvider;
|
|
50
50
|
}
|
|
51
51
|
else {
|
|
52
52
|
const args = argsOrState;
|
|
53
|
-
if (
|
|
53
|
+
if (args?.connectProvider === undefined && !opts.urn) {
|
|
54
54
|
throw new Error("Missing required property 'connectProvider'");
|
|
55
55
|
}
|
|
56
|
-
resourceInputs["config"] = args
|
|
57
|
-
resourceInputs["configJson"] = args
|
|
58
|
-
resourceInputs["connectProvider"] = args
|
|
56
|
+
resourceInputs["config"] = args?.config;
|
|
57
|
+
resourceInputs["configJson"] = args?.configJson;
|
|
58
|
+
resourceInputs["connectProvider"] = args?.connectProvider;
|
|
59
59
|
}
|
|
60
60
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
61
61
|
super(CertificateAuthority.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"certificateAuthority.js","sourceRoot":"","sources":["../certificateAuthority.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"certificateAuthority.js","sourceRoot":"","sources":["../certificateAuthority.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3E,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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAoBD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;SAC9D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AAjEL,oDAkEC;AApDG,gBAAgB;AACO,iCAAY,GAAG,wDAAwD,CAAC"}
|
package/config/vars.d.ts
CHANGED
|
@@ -12,8 +12,7 @@ export declare const authJwt: outputs.config.AuthJwt | undefined;
|
|
|
12
12
|
*/
|
|
13
13
|
export declare const caFile: string | undefined;
|
|
14
14
|
/**
|
|
15
|
-
* A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
16
|
-
* connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
15
|
+
* A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
17
16
|
*/
|
|
18
17
|
export declare const caPath: string | undefined;
|
|
19
18
|
/**
|
|
@@ -33,18 +32,15 @@ export declare const certPem: string | undefined;
|
|
|
33
32
|
*/
|
|
34
33
|
export declare const datacenter: string | undefined;
|
|
35
34
|
/**
|
|
36
|
-
* A configuration block, described below, that provides additional headers to be sent along with all requests to the
|
|
37
|
-
* Consul server. This block can be specified multiple times.
|
|
35
|
+
* A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times.
|
|
38
36
|
*/
|
|
39
37
|
export declare const headers: outputs.config.Headers[] | undefined;
|
|
40
38
|
/**
|
|
41
|
-
* HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or
|
|
42
|
-
* `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
39
|
+
* HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
43
40
|
*/
|
|
44
41
|
export declare const httpAuth: string | undefined;
|
|
45
42
|
/**
|
|
46
|
-
* Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use.
|
|
47
|
-
* Only use this with scheme set to "https".
|
|
43
|
+
* Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https".
|
|
48
44
|
*/
|
|
49
45
|
export declare const insecureHttps: boolean | undefined;
|
|
50
46
|
/**
|
|
@@ -61,7 +57,6 @@ export declare const namespace: string | undefined;
|
|
|
61
57
|
*/
|
|
62
58
|
export declare const scheme: string | undefined;
|
|
63
59
|
/**
|
|
64
|
-
* The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
65
|
-
* `CONSUL_TOKEN` as an environment variable.
|
|
60
|
+
* The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
66
61
|
*/
|
|
67
62
|
export declare const token: string | undefined;
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;AAEjF,yCAAyC;AAMzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;AAM7C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAyB,SAAS,CAAC,CAAC;IACjE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
|
package/configEntry.js
CHANGED
|
@@ -300,7 +300,7 @@ class ConfigEntry extends pulumi.CustomResource {
|
|
|
300
300
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
301
301
|
*/
|
|
302
302
|
static get(name, id, state, opts) {
|
|
303
|
-
return new ConfigEntry(name, state,
|
|
303
|
+
return new ConfigEntry(name, state, { ...opts, id: id });
|
|
304
304
|
}
|
|
305
305
|
/**
|
|
306
306
|
* Returns true if the given object is an instance of ConfigEntry. This is designed to work even
|
|
@@ -317,22 +317,22 @@ class ConfigEntry extends pulumi.CustomResource {
|
|
|
317
317
|
opts = opts || {};
|
|
318
318
|
if (opts.id) {
|
|
319
319
|
const state = argsOrState;
|
|
320
|
-
resourceInputs["configJson"] = state
|
|
321
|
-
resourceInputs["kind"] = state
|
|
322
|
-
resourceInputs["name"] = state
|
|
323
|
-
resourceInputs["namespace"] = state
|
|
324
|
-
resourceInputs["partition"] = state
|
|
320
|
+
resourceInputs["configJson"] = state?.configJson;
|
|
321
|
+
resourceInputs["kind"] = state?.kind;
|
|
322
|
+
resourceInputs["name"] = state?.name;
|
|
323
|
+
resourceInputs["namespace"] = state?.namespace;
|
|
324
|
+
resourceInputs["partition"] = state?.partition;
|
|
325
325
|
}
|
|
326
326
|
else {
|
|
327
327
|
const args = argsOrState;
|
|
328
|
-
if (
|
|
328
|
+
if (args?.kind === undefined && !opts.urn) {
|
|
329
329
|
throw new Error("Missing required property 'kind'");
|
|
330
330
|
}
|
|
331
|
-
resourceInputs["configJson"] = args
|
|
332
|
-
resourceInputs["kind"] = args
|
|
333
|
-
resourceInputs["name"] = args
|
|
334
|
-
resourceInputs["namespace"] = args
|
|
335
|
-
resourceInputs["partition"] = args
|
|
331
|
+
resourceInputs["configJson"] = args?.configJson;
|
|
332
|
+
resourceInputs["kind"] = args?.kind;
|
|
333
|
+
resourceInputs["name"] = args?.name;
|
|
334
|
+
resourceInputs["namespace"] = args?.namespace;
|
|
335
|
+
resourceInputs["partition"] = args?.partition;
|
|
336
336
|
}
|
|
337
337
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
338
338
|
super(ConfigEntry.__pulumiType, name, resourceInputs, opts);
|
package/configEntry.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configEntry.js","sourceRoot":"","sources":["../configEntry.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2RG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"configEntry.js","sourceRoot":"","sources":["../configEntry.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2RG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;SAClD;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAhFL,kCAiFC;AAnEG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
|
|
@@ -19,7 +19,7 @@ class ConfigEntryServiceDefaults extends pulumi.CustomResource {
|
|
|
19
19
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
20
|
*/
|
|
21
21
|
static get(name, id, state, opts) {
|
|
22
|
-
return new ConfigEntryServiceDefaults(name, state,
|
|
22
|
+
return new ConfigEntryServiceDefaults(name, state, { ...opts, id: id });
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* Returns true if the given object is an instance of ConfigEntryServiceDefaults. This is designed to work even
|
|
@@ -36,51 +36,51 @@ class ConfigEntryServiceDefaults extends pulumi.CustomResource {
|
|
|
36
36
|
opts = opts || {};
|
|
37
37
|
if (opts.id) {
|
|
38
38
|
const state = argsOrState;
|
|
39
|
-
resourceInputs["balanceInboundConnections"] = state
|
|
40
|
-
resourceInputs["destinations"] = state
|
|
41
|
-
resourceInputs["envoyExtensions"] = state
|
|
42
|
-
resourceInputs["exposes"] = state
|
|
43
|
-
resourceInputs["externalSni"] = state
|
|
44
|
-
resourceInputs["localConnectTimeoutMs"] = state
|
|
45
|
-
resourceInputs["localRequestTimeoutMs"] = state
|
|
46
|
-
resourceInputs["maxInboundConnections"] = state
|
|
47
|
-
resourceInputs["meshGateways"] = state
|
|
48
|
-
resourceInputs["meta"] = state
|
|
49
|
-
resourceInputs["mode"] = state
|
|
50
|
-
resourceInputs["mutualTlsMode"] = state
|
|
51
|
-
resourceInputs["name"] = state
|
|
52
|
-
resourceInputs["namespace"] = state
|
|
53
|
-
resourceInputs["partition"] = state
|
|
54
|
-
resourceInputs["protocol"] = state
|
|
55
|
-
resourceInputs["transparentProxies"] = state
|
|
56
|
-
resourceInputs["upstreamConfigs"] = state
|
|
39
|
+
resourceInputs["balanceInboundConnections"] = state?.balanceInboundConnections;
|
|
40
|
+
resourceInputs["destinations"] = state?.destinations;
|
|
41
|
+
resourceInputs["envoyExtensions"] = state?.envoyExtensions;
|
|
42
|
+
resourceInputs["exposes"] = state?.exposes;
|
|
43
|
+
resourceInputs["externalSni"] = state?.externalSni;
|
|
44
|
+
resourceInputs["localConnectTimeoutMs"] = state?.localConnectTimeoutMs;
|
|
45
|
+
resourceInputs["localRequestTimeoutMs"] = state?.localRequestTimeoutMs;
|
|
46
|
+
resourceInputs["maxInboundConnections"] = state?.maxInboundConnections;
|
|
47
|
+
resourceInputs["meshGateways"] = state?.meshGateways;
|
|
48
|
+
resourceInputs["meta"] = state?.meta;
|
|
49
|
+
resourceInputs["mode"] = state?.mode;
|
|
50
|
+
resourceInputs["mutualTlsMode"] = state?.mutualTlsMode;
|
|
51
|
+
resourceInputs["name"] = state?.name;
|
|
52
|
+
resourceInputs["namespace"] = state?.namespace;
|
|
53
|
+
resourceInputs["partition"] = state?.partition;
|
|
54
|
+
resourceInputs["protocol"] = state?.protocol;
|
|
55
|
+
resourceInputs["transparentProxies"] = state?.transparentProxies;
|
|
56
|
+
resourceInputs["upstreamConfigs"] = state?.upstreamConfigs;
|
|
57
57
|
}
|
|
58
58
|
else {
|
|
59
59
|
const args = argsOrState;
|
|
60
|
-
if (
|
|
60
|
+
if (args?.exposes === undefined && !opts.urn) {
|
|
61
61
|
throw new Error("Missing required property 'exposes'");
|
|
62
62
|
}
|
|
63
|
-
if (
|
|
63
|
+
if (args?.protocol === undefined && !opts.urn) {
|
|
64
64
|
throw new Error("Missing required property 'protocol'");
|
|
65
65
|
}
|
|
66
|
-
resourceInputs["balanceInboundConnections"] = args
|
|
67
|
-
resourceInputs["destinations"] = args
|
|
68
|
-
resourceInputs["envoyExtensions"] = args
|
|
69
|
-
resourceInputs["exposes"] = args
|
|
70
|
-
resourceInputs["externalSni"] = args
|
|
71
|
-
resourceInputs["localConnectTimeoutMs"] = args
|
|
72
|
-
resourceInputs["localRequestTimeoutMs"] = args
|
|
73
|
-
resourceInputs["maxInboundConnections"] = args
|
|
74
|
-
resourceInputs["meshGateways"] = args
|
|
75
|
-
resourceInputs["meta"] = args
|
|
76
|
-
resourceInputs["mode"] = args
|
|
77
|
-
resourceInputs["mutualTlsMode"] = args
|
|
78
|
-
resourceInputs["name"] = args
|
|
79
|
-
resourceInputs["namespace"] = args
|
|
80
|
-
resourceInputs["partition"] = args
|
|
81
|
-
resourceInputs["protocol"] = args
|
|
82
|
-
resourceInputs["transparentProxies"] = args
|
|
83
|
-
resourceInputs["upstreamConfigs"] = args
|
|
66
|
+
resourceInputs["balanceInboundConnections"] = args?.balanceInboundConnections;
|
|
67
|
+
resourceInputs["destinations"] = args?.destinations;
|
|
68
|
+
resourceInputs["envoyExtensions"] = args?.envoyExtensions;
|
|
69
|
+
resourceInputs["exposes"] = args?.exposes;
|
|
70
|
+
resourceInputs["externalSni"] = args?.externalSni;
|
|
71
|
+
resourceInputs["localConnectTimeoutMs"] = args?.localConnectTimeoutMs;
|
|
72
|
+
resourceInputs["localRequestTimeoutMs"] = args?.localRequestTimeoutMs;
|
|
73
|
+
resourceInputs["maxInboundConnections"] = args?.maxInboundConnections;
|
|
74
|
+
resourceInputs["meshGateways"] = args?.meshGateways;
|
|
75
|
+
resourceInputs["meta"] = args?.meta;
|
|
76
|
+
resourceInputs["mode"] = args?.mode;
|
|
77
|
+
resourceInputs["mutualTlsMode"] = args?.mutualTlsMode;
|
|
78
|
+
resourceInputs["name"] = args?.name;
|
|
79
|
+
resourceInputs["namespace"] = args?.namespace;
|
|
80
|
+
resourceInputs["partition"] = args?.partition;
|
|
81
|
+
resourceInputs["protocol"] = args?.protocol;
|
|
82
|
+
resourceInputs["transparentProxies"] = args?.transparentProxies;
|
|
83
|
+
resourceInputs["upstreamConfigs"] = args?.upstreamConfigs;
|
|
84
84
|
}
|
|
85
85
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
86
86
|
super(ConfigEntryServiceDefaults.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configEntryServiceDefaults.js","sourceRoot":"","sources":["../configEntryServiceDefaults.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"configEntryServiceDefaults.js","sourceRoot":"","sources":["../configEntryServiceDefaults.ts"],"names":[],"mappings":"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"}
|
|
@@ -66,7 +66,7 @@ class ConfigEntryServiceIntentions extends pulumi.CustomResource {
|
|
|
66
66
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
67
67
|
*/
|
|
68
68
|
static get(name, id, state, opts) {
|
|
69
|
-
return new ConfigEntryServiceIntentions(name, state,
|
|
69
|
+
return new ConfigEntryServiceIntentions(name, state, { ...opts, id: id });
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
72
|
* Returns true if the given object is an instance of ConfigEntryServiceIntentions. This is designed to work even
|
|
@@ -83,21 +83,21 @@ class ConfigEntryServiceIntentions extends pulumi.CustomResource {
|
|
|
83
83
|
opts = opts || {};
|
|
84
84
|
if (opts.id) {
|
|
85
85
|
const state = argsOrState;
|
|
86
|
-
resourceInputs["jwts"] = state
|
|
87
|
-
resourceInputs["meta"] = state
|
|
88
|
-
resourceInputs["name"] = state
|
|
89
|
-
resourceInputs["namespace"] = state
|
|
90
|
-
resourceInputs["partition"] = state
|
|
91
|
-
resourceInputs["sources"] = state
|
|
86
|
+
resourceInputs["jwts"] = state?.jwts;
|
|
87
|
+
resourceInputs["meta"] = state?.meta;
|
|
88
|
+
resourceInputs["name"] = state?.name;
|
|
89
|
+
resourceInputs["namespace"] = state?.namespace;
|
|
90
|
+
resourceInputs["partition"] = state?.partition;
|
|
91
|
+
resourceInputs["sources"] = state?.sources;
|
|
92
92
|
}
|
|
93
93
|
else {
|
|
94
94
|
const args = argsOrState;
|
|
95
|
-
resourceInputs["jwts"] = args
|
|
96
|
-
resourceInputs["meta"] = args
|
|
97
|
-
resourceInputs["name"] = args
|
|
98
|
-
resourceInputs["namespace"] = args
|
|
99
|
-
resourceInputs["partition"] = args
|
|
100
|
-
resourceInputs["sources"] = args
|
|
95
|
+
resourceInputs["jwts"] = args?.jwts;
|
|
96
|
+
resourceInputs["meta"] = args?.meta;
|
|
97
|
+
resourceInputs["name"] = args?.name;
|
|
98
|
+
resourceInputs["namespace"] = args?.namespace;
|
|
99
|
+
resourceInputs["partition"] = args?.partition;
|
|
100
|
+
resourceInputs["sources"] = args?.sources;
|
|
101
101
|
}
|
|
102
102
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
103
103
|
super(ConfigEntryServiceIntentions.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configEntryServiceIntentions.js","sourceRoot":"","sources":["../configEntryServiceIntentions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"configEntryServiceIntentions.js","sourceRoot":"","sources":["../configEntryServiceIntentions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAnFL,oEAoFC;AAtEG,gBAAgB;AACO,yCAAY,GAAG,wEAAwE,CAAC"}
|