@pulumi/ec 0.2.1-alpha.1643837492 → 0.3.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.
- package/deployment.d.ts +23 -3
- package/deployment.js +2 -0
- package/deployment.js.map +1 -1
- package/getDeployment.d.ts +16 -0
- package/getDeployment.js.map +1 -1
- package/getDeployments.d.ts +22 -5
- package/getDeployments.js +4 -3
- package/getDeployments.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +84 -2
- package/types/output.d.ts +97 -1
package/deployment.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
30
30
|
*/
|
|
31
31
|
readonly alias: pulumi.Output<string>;
|
|
32
32
|
/**
|
|
33
|
-
* APM instance definition, can only be specified once.
|
|
33
|
+
* **DEPRECATED** (Optional) APM instance definition, can only be specified once. It should only be used with deployments with a version prior to 8.0.0.
|
|
34
34
|
*/
|
|
35
35
|
readonly apm: pulumi.Output<outputs.DeploymentApm | undefined>;
|
|
36
36
|
/**
|
|
@@ -53,6 +53,10 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
53
53
|
* * `kibana.#.region` - Kibana region.
|
|
54
54
|
* * `kibana.#.http_endpoint` - Kibana resource HTTP endpoint.
|
|
55
55
|
* * `kibana.#.https_endpoint` - Kibana resource HTTPs endpoint.
|
|
56
|
+
* * `integrations_server.#.resource_id` - Integrations Server resource unique identifier.
|
|
57
|
+
* * `integrations_server.#.region` - Integrations Server region.
|
|
58
|
+
* * `integrations_server.#.http_endpoint` - Integrations Server resource HTTP endpoint.
|
|
59
|
+
* * `integrations_server.#.https_endpoint` - Integrations Server resource HTTPs endpoint.
|
|
56
60
|
* * `apm.#.resource_id` - APM resource unique identifier.
|
|
57
61
|
* * `apm.#.region` - APM region.
|
|
58
62
|
* * `apm.#.http_endpoint` - APM resource HTTP endpoint.
|
|
@@ -90,6 +94,10 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
90
94
|
* Enterprise Search server definition, can only be specified once. For multi-node Enterprise Search deployments, use multiple `topology` blocks.
|
|
91
95
|
*/
|
|
92
96
|
readonly enterpriseSearch: pulumi.Output<outputs.DeploymentEnterpriseSearch | undefined>;
|
|
97
|
+
/**
|
|
98
|
+
* Integrations Server instance definition, can only be specified once. It has replaced `apm` in stack version 8.0.0.
|
|
99
|
+
*/
|
|
100
|
+
readonly integrationsServer: pulumi.Output<outputs.DeploymentIntegrationsServer | undefined>;
|
|
93
101
|
/**
|
|
94
102
|
* Kibana instance definition, can only be specified once.
|
|
95
103
|
*/
|
|
@@ -142,7 +150,7 @@ export interface DeploymentState {
|
|
|
142
150
|
*/
|
|
143
151
|
alias?: pulumi.Input<string>;
|
|
144
152
|
/**
|
|
145
|
-
* APM instance definition, can only be specified once.
|
|
153
|
+
* **DEPRECATED** (Optional) APM instance definition, can only be specified once. It should only be used with deployments with a version prior to 8.0.0.
|
|
146
154
|
*/
|
|
147
155
|
apm?: pulumi.Input<inputs.DeploymentApm>;
|
|
148
156
|
/**
|
|
@@ -165,6 +173,10 @@ export interface DeploymentState {
|
|
|
165
173
|
* * `kibana.#.region` - Kibana region.
|
|
166
174
|
* * `kibana.#.http_endpoint` - Kibana resource HTTP endpoint.
|
|
167
175
|
* * `kibana.#.https_endpoint` - Kibana resource HTTPs endpoint.
|
|
176
|
+
* * `integrations_server.#.resource_id` - Integrations Server resource unique identifier.
|
|
177
|
+
* * `integrations_server.#.region` - Integrations Server region.
|
|
178
|
+
* * `integrations_server.#.http_endpoint` - Integrations Server resource HTTP endpoint.
|
|
179
|
+
* * `integrations_server.#.https_endpoint` - Integrations Server resource HTTPs endpoint.
|
|
168
180
|
* * `apm.#.resource_id` - APM resource unique identifier.
|
|
169
181
|
* * `apm.#.region` - APM region.
|
|
170
182
|
* * `apm.#.http_endpoint` - APM resource HTTP endpoint.
|
|
@@ -202,6 +214,10 @@ export interface DeploymentState {
|
|
|
202
214
|
* Enterprise Search server definition, can only be specified once. For multi-node Enterprise Search deployments, use multiple `topology` blocks.
|
|
203
215
|
*/
|
|
204
216
|
enterpriseSearch?: pulumi.Input<inputs.DeploymentEnterpriseSearch>;
|
|
217
|
+
/**
|
|
218
|
+
* Integrations Server instance definition, can only be specified once. It has replaced `apm` in stack version 8.0.0.
|
|
219
|
+
*/
|
|
220
|
+
integrationsServer?: pulumi.Input<inputs.DeploymentIntegrationsServer>;
|
|
205
221
|
/**
|
|
206
222
|
* Kibana instance definition, can only be specified once.
|
|
207
223
|
*/
|
|
@@ -246,7 +262,7 @@ export interface DeploymentArgs {
|
|
|
246
262
|
*/
|
|
247
263
|
alias?: pulumi.Input<string>;
|
|
248
264
|
/**
|
|
249
|
-
* APM instance definition, can only be specified once.
|
|
265
|
+
* **DEPRECATED** (Optional) APM instance definition, can only be specified once. It should only be used with deployments with a version prior to 8.0.0.
|
|
250
266
|
*/
|
|
251
267
|
apm?: pulumi.Input<inputs.DeploymentApm>;
|
|
252
268
|
/**
|
|
@@ -261,6 +277,10 @@ export interface DeploymentArgs {
|
|
|
261
277
|
* Enterprise Search server definition, can only be specified once. For multi-node Enterprise Search deployments, use multiple `topology` blocks.
|
|
262
278
|
*/
|
|
263
279
|
enterpriseSearch?: pulumi.Input<inputs.DeploymentEnterpriseSearch>;
|
|
280
|
+
/**
|
|
281
|
+
* Integrations Server instance definition, can only be specified once. It has replaced `apm` in stack version 8.0.0.
|
|
282
|
+
*/
|
|
283
|
+
integrationsServer?: pulumi.Input<inputs.DeploymentIntegrationsServer>;
|
|
264
284
|
/**
|
|
265
285
|
* Kibana instance definition, can only be specified once.
|
|
266
286
|
*/
|
package/deployment.js
CHANGED
|
@@ -28,6 +28,7 @@ class Deployment extends pulumi.CustomResource {
|
|
|
28
28
|
resourceInputs["elasticsearchPassword"] = state ? state.elasticsearchPassword : undefined;
|
|
29
29
|
resourceInputs["elasticsearchUsername"] = state ? state.elasticsearchUsername : undefined;
|
|
30
30
|
resourceInputs["enterpriseSearch"] = state ? state.enterpriseSearch : undefined;
|
|
31
|
+
resourceInputs["integrationsServer"] = state ? state.integrationsServer : undefined;
|
|
31
32
|
resourceInputs["kibana"] = state ? state.kibana : undefined;
|
|
32
33
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
33
34
|
resourceInputs["observability"] = state ? state.observability : undefined;
|
|
@@ -56,6 +57,7 @@ class Deployment extends pulumi.CustomResource {
|
|
|
56
57
|
resourceInputs["deploymentTemplateId"] = args ? args.deploymentTemplateId : undefined;
|
|
57
58
|
resourceInputs["elasticsearch"] = args ? args.elasticsearch : undefined;
|
|
58
59
|
resourceInputs["enterpriseSearch"] = args ? args.enterpriseSearch : undefined;
|
|
60
|
+
resourceInputs["integrationsServer"] = args ? args.integrationsServer : undefined;
|
|
59
61
|
resourceInputs["kibana"] = args ? args.kibana : undefined;
|
|
60
62
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
61
63
|
resourceInputs["observability"] = args ? args.observability : undefined;
|
package/deployment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../deployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../deployment.ts"],"names":[],"mappings":"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"}
|
package/getDeployment.d.ts
CHANGED
|
@@ -106,6 +106,22 @@ export interface GetDeploymentResult {
|
|
|
106
106
|
* The unique ID of the deployment.
|
|
107
107
|
*/
|
|
108
108
|
readonly id: string;
|
|
109
|
+
/**
|
|
110
|
+
* Instance configuration of the Integrations Server type.
|
|
111
|
+
* * `integrations_server.#.elasticsearch_cluster_ref_id` - The user-specified ID of the Elasticsearch cluster to which this resource kind will link.
|
|
112
|
+
* * `integrations_server.#.healthy` - Resource kind health status.
|
|
113
|
+
* * `integrations_server.#.http_endpoint` - HTTP endpoint for the resource kind.
|
|
114
|
+
* * `integrations_server.#.https_endpoint` - HTTPS endpoint for the resource kind.
|
|
115
|
+
* * `integrations_server.#.ref_id` - User specified refId for the resource kind.
|
|
116
|
+
* * `integrations_server.#.resource_id` - The resource unique identifier.
|
|
117
|
+
* * `integrations_server.#.status` - Resource kind status (for example, "started", "stopped", etc).
|
|
118
|
+
* * `integrations_server.#.version` - Elastic stack version.
|
|
119
|
+
* * `integrations_server.#.topology` - Node topology element definition.
|
|
120
|
+
* * `integrations_server.#.topology.#.instance_configuration_id` - Controls the allocation of this topology element as well as allowed sizes and node_types. It needs to match the ID of an existing instance configuration.
|
|
121
|
+
* * `integrations_server.#.topology.#.size` - Amount of memory (RAM) per topology element in the "<size in GB>g" notation.
|
|
122
|
+
* * `integrations_server.#.topology.#.zone_count` - Number of zones in which nodes will be placed.
|
|
123
|
+
*/
|
|
124
|
+
readonly integrationsServers: outputs.GetDeploymentIntegrationsServer[];
|
|
109
125
|
/**
|
|
110
126
|
* Instance configuration of the Kibana type.
|
|
111
127
|
* * `kibana.#.elasticsearch_cluster_ref_id` - The user-specified ID of the Elasticsearch cluster to which this resource kind will link.
|
package/getDeployment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDeployment.js","sourceRoot":"","sources":["../getDeployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sCASC;
|
|
1
|
+
{"version":3,"file":"getDeployment.js","sourceRoot":"","sources":["../getDeployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sCASC;AAoJD,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjE,CAAC;AAFD,kDAEC"}
|
package/getDeployments.d.ts
CHANGED
|
@@ -10,9 +10,6 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
10
10
|
* import * as ec from "@pulumi/ec";
|
|
11
11
|
*
|
|
12
12
|
* const example = pulumi.output(ec.getDeployments({
|
|
13
|
-
* apm: {
|
|
14
|
-
* version: "7.9.1",
|
|
15
|
-
* },
|
|
16
13
|
* deploymentTemplateId: "azure-compute-optimized",
|
|
17
14
|
* elasticsearch: {
|
|
18
15
|
* healthy: "true",
|
|
@@ -20,6 +17,9 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
20
17
|
* enterpriseSearch: {
|
|
21
18
|
* healthy: "true",
|
|
22
19
|
* },
|
|
20
|
+
* integrationsServer: {
|
|
21
|
+
* version: "8.0.0",
|
|
22
|
+
* },
|
|
23
23
|
* kibana: {
|
|
24
24
|
* status: "started",
|
|
25
25
|
* },
|
|
@@ -37,7 +37,7 @@ export declare function getDeployments(args?: GetDeploymentsArgs, opts?: pulumi.
|
|
|
37
37
|
*/
|
|
38
38
|
export interface GetDeploymentsArgs {
|
|
39
39
|
/**
|
|
40
|
-
* Filter by APM resource kind status or configuration.
|
|
40
|
+
* **DEPRECATED** Filter by APM resource kind status or configuration.
|
|
41
41
|
* * `apm.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
|
|
42
42
|
* * `apm.#.version` - Elastic stack version.
|
|
43
43
|
* * `apm.#.healthy` - Overall health status of the APM instances.
|
|
@@ -65,6 +65,13 @@ export interface GetDeploymentsArgs {
|
|
|
65
65
|
* Overall health status of the deployment.
|
|
66
66
|
*/
|
|
67
67
|
healthy?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Filter by Integrations Server resource kind status or configuration.
|
|
70
|
+
* * `integrations_server.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
|
|
71
|
+
* * `integrations_server.#.version` - Elastic stack version.
|
|
72
|
+
* * `integrations_server.#.healthy` - Overall health status of the Integrations Server instances.
|
|
73
|
+
*/
|
|
74
|
+
integrationsServer?: inputs.GetDeploymentsIntegrationsServer;
|
|
68
75
|
/**
|
|
69
76
|
* Filter by Kibana resource kind status or configuration.
|
|
70
77
|
* * `kibana.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
|
|
@@ -102,6 +109,8 @@ export interface GetDeploymentsResult {
|
|
|
102
109
|
* * `deployments.#.elasticsearch_ref_id` - The Elasticsearch resource reference.
|
|
103
110
|
* * `deployments.#.kibana_resource_id` - The Kibana resource unique ID.
|
|
104
111
|
* * `deployments.#.kibana_ref_id` - The Kibana resource reference.
|
|
112
|
+
* * `deployments.#.integrations_server_resource_id` - The Integrations Server resource unique ID.
|
|
113
|
+
* * `deployments.#.integrations_server_ref_id` - The Integrations Server resource reference.
|
|
105
114
|
* * `deployments.#.apm_resource_id` - The APM resource unique ID.
|
|
106
115
|
* * `deployments.#.apm_ref_id` - The APM resource reference.
|
|
107
116
|
* * `deployments.#.enterprise_search_resource_id` - The Enterprise Search resource unique ID.
|
|
@@ -115,6 +124,7 @@ export interface GetDeploymentsResult {
|
|
|
115
124
|
* The provider-assigned unique ID for this managed resource.
|
|
116
125
|
*/
|
|
117
126
|
readonly id: string;
|
|
127
|
+
readonly integrationsServer?: outputs.GetDeploymentsIntegrationsServer;
|
|
118
128
|
readonly kibana?: outputs.GetDeploymentsKibana;
|
|
119
129
|
readonly namePrefix?: string;
|
|
120
130
|
readonly returnCount: number;
|
|
@@ -129,7 +139,7 @@ export declare function getDeploymentsOutput(args?: GetDeploymentsOutputArgs, op
|
|
|
129
139
|
*/
|
|
130
140
|
export interface GetDeploymentsOutputArgs {
|
|
131
141
|
/**
|
|
132
|
-
* Filter by APM resource kind status or configuration.
|
|
142
|
+
* **DEPRECATED** Filter by APM resource kind status or configuration.
|
|
133
143
|
* * `apm.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
|
|
134
144
|
* * `apm.#.version` - Elastic stack version.
|
|
135
145
|
* * `apm.#.healthy` - Overall health status of the APM instances.
|
|
@@ -157,6 +167,13 @@ export interface GetDeploymentsOutputArgs {
|
|
|
157
167
|
* Overall health status of the deployment.
|
|
158
168
|
*/
|
|
159
169
|
healthy?: pulumi.Input<string>;
|
|
170
|
+
/**
|
|
171
|
+
* Filter by Integrations Server resource kind status or configuration.
|
|
172
|
+
* * `integrations_server.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
|
|
173
|
+
* * `integrations_server.#.version` - Elastic stack version.
|
|
174
|
+
* * `integrations_server.#.healthy` - Overall health status of the Integrations Server instances.
|
|
175
|
+
*/
|
|
176
|
+
integrationsServer?: pulumi.Input<inputs.GetDeploymentsIntegrationsServerArgs>;
|
|
160
177
|
/**
|
|
161
178
|
* Filter by Kibana resource kind status or configuration.
|
|
162
179
|
* * `kibana.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
|
package/getDeployments.js
CHANGED
|
@@ -15,9 +15,6 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as ec from "@pulumi/ec";
|
|
16
16
|
*
|
|
17
17
|
* const example = pulumi.output(ec.getDeployments({
|
|
18
|
-
* apm: {
|
|
19
|
-
* version: "7.9.1",
|
|
20
|
-
* },
|
|
21
18
|
* deploymentTemplateId: "azure-compute-optimized",
|
|
22
19
|
* elasticsearch: {
|
|
23
20
|
* healthy: "true",
|
|
@@ -25,6 +22,9 @@ const utilities = require("./utilities");
|
|
|
25
22
|
* enterpriseSearch: {
|
|
26
23
|
* healthy: "true",
|
|
27
24
|
* },
|
|
25
|
+
* integrationsServer: {
|
|
26
|
+
* version: "8.0.0",
|
|
27
|
+
* },
|
|
28
28
|
* kibana: {
|
|
29
29
|
* status: "started",
|
|
30
30
|
* },
|
|
@@ -48,6 +48,7 @@ function getDeployments(args, opts) {
|
|
|
48
48
|
"elasticsearch": args.elasticsearch,
|
|
49
49
|
"enterpriseSearch": args.enterpriseSearch,
|
|
50
50
|
"healthy": args.healthy,
|
|
51
|
+
"integrationsServer": args.integrationsServer,
|
|
51
52
|
"kibana": args.kibana,
|
|
52
53
|
"namePrefix": args.namePrefix,
|
|
53
54
|
"size": args.size,
|
package/getDeployments.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDeployments.js","sourceRoot":"","sources":["../getDeployments.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getDeployments.js","sourceRoot":"","sources":["../getDeployments.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAnBD,wCAmBC;AAqGD,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,oDAEC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ec",
|
|
3
|
-
"version": "v0.
|
|
3
|
+
"version": "v0.3.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing ElasticCloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
18
|
-
"install": "node scripts/install-pulumi-plugin.js resource ec v0.
|
|
18
|
+
"install": "node scripts/install-pulumi-plugin.js resource ec v0.3.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ec",
|
|
3
|
-
"version": "v0.
|
|
3
|
+
"version": "v0.3.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing ElasticCloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
18
|
-
"install": "node scripts/install-pulumi-plugin.js resource ec v0.
|
|
18
|
+
"install": "node scripts/install-pulumi-plugin.js resource ec v0.3.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface DeploymentApm {
|
|
|
27
27
|
}
|
|
28
28
|
export interface DeploymentApmConfig {
|
|
29
29
|
/**
|
|
30
|
-
* Enable debug mode for
|
|
30
|
+
* Enable debug mode for the component. Defaults to `false`.
|
|
31
31
|
*/
|
|
32
32
|
debugEnabled?: pulumi.Input<boolean>;
|
|
33
33
|
dockerImage?: pulumi.Input<string>;
|
|
@@ -362,6 +362,72 @@ export interface DeploymentEnterpriseSearchTopology {
|
|
|
362
362
|
*/
|
|
363
363
|
zoneCount?: pulumi.Input<number>;
|
|
364
364
|
}
|
|
365
|
+
export interface DeploymentIntegrationsServer {
|
|
366
|
+
/**
|
|
367
|
+
* Integrations Server settings applied to all topologies unless overridden in the `topology` element.
|
|
368
|
+
*/
|
|
369
|
+
config?: pulumi.Input<inputs.DeploymentIntegrationsServerConfig>;
|
|
370
|
+
/**
|
|
371
|
+
* This field references the `refId` of the deployment Elasticsearch cluster. The default value `main-elasticsearch` is recommended.
|
|
372
|
+
*/
|
|
373
|
+
elasticsearchClusterRefId?: pulumi.Input<string>;
|
|
374
|
+
httpEndpoint?: pulumi.Input<string>;
|
|
375
|
+
httpsEndpoint?: pulumi.Input<string>;
|
|
376
|
+
/**
|
|
377
|
+
* Can be set on the Integrations Server resource. The default value `main-integrations_server` is recommended.
|
|
378
|
+
*/
|
|
379
|
+
refId?: pulumi.Input<string>;
|
|
380
|
+
/**
|
|
381
|
+
* Elasticsearch Service (ESS) region where to create the deployment. For Elastic Cloud Enterprise (ECE) installations, set `"ece-region"`.
|
|
382
|
+
*/
|
|
383
|
+
region?: pulumi.Input<string>;
|
|
384
|
+
resourceId?: pulumi.Input<string>;
|
|
385
|
+
/**
|
|
386
|
+
* Can be set multiple times to compose complex topologies.
|
|
387
|
+
*/
|
|
388
|
+
topologies?: pulumi.Input<pulumi.Input<inputs.DeploymentIntegrationsServerTopology>[]>;
|
|
389
|
+
}
|
|
390
|
+
export interface DeploymentIntegrationsServerConfig {
|
|
391
|
+
/**
|
|
392
|
+
* Enable debug mode for the component. Defaults to `false`.
|
|
393
|
+
*/
|
|
394
|
+
debugEnabled?: pulumi.Input<boolean>;
|
|
395
|
+
dockerImage?: pulumi.Input<string>;
|
|
396
|
+
/**
|
|
397
|
+
* JSON-formatted user level `elasticsearch.yml` setting overrides.
|
|
398
|
+
*/
|
|
399
|
+
userSettingsJson?: pulumi.Input<string>;
|
|
400
|
+
/**
|
|
401
|
+
* JSON-formatted admin (ECE) level `elasticsearch.yml` setting overrides.
|
|
402
|
+
*/
|
|
403
|
+
userSettingsOverrideJson?: pulumi.Input<string>;
|
|
404
|
+
/**
|
|
405
|
+
* YAML-formatted admin (ECE) level `elasticsearch.yml` setting overrides.
|
|
406
|
+
*/
|
|
407
|
+
userSettingsOverrideYaml?: pulumi.Input<string>;
|
|
408
|
+
/**
|
|
409
|
+
* YAML-formatted user level `elasticsearch.yml` setting overrides.
|
|
410
|
+
*/
|
|
411
|
+
userSettingsYaml?: pulumi.Input<string>;
|
|
412
|
+
}
|
|
413
|
+
export interface DeploymentIntegrationsServerTopology {
|
|
414
|
+
/**
|
|
415
|
+
* Default instance configuration of the deployment template. No need to change this value since Kibana has only one _instance type_.
|
|
416
|
+
*/
|
|
417
|
+
instanceConfigurationId?: pulumi.Input<string>;
|
|
418
|
+
/**
|
|
419
|
+
* Amount in Gigabytes per topology element in the `"<size in GB>g"` notation. When omitted, it defaults to the deployment template value.
|
|
420
|
+
*/
|
|
421
|
+
size?: pulumi.Input<string>;
|
|
422
|
+
/**
|
|
423
|
+
* Type of resource to which the size is assigned. Defaults to `"memory"`.
|
|
424
|
+
*/
|
|
425
|
+
sizeResource?: pulumi.Input<string>;
|
|
426
|
+
/**
|
|
427
|
+
* Number of zones the instance type of the Elasticsearch cluster will span. This is used to set or unset HA on an Elasticsearch node type. When omitted, it defaults to the deployment template value.
|
|
428
|
+
*/
|
|
429
|
+
zoneCount?: pulumi.Input<number>;
|
|
430
|
+
}
|
|
365
431
|
export interface DeploymentKibana {
|
|
366
432
|
/**
|
|
367
433
|
* Kibana settings applied to all topologies unless overridden in the `topology` element.
|
|
@@ -506,7 +572,7 @@ export interface GetDeploymentsEnterpriseSearchArgs {
|
|
|
506
572
|
status?: pulumi.Input<string>;
|
|
507
573
|
version?: pulumi.Input<string>;
|
|
508
574
|
}
|
|
509
|
-
export interface
|
|
575
|
+
export interface GetDeploymentsIntegrationsServer {
|
|
510
576
|
/**
|
|
511
577
|
* Overall health status of the deployment.
|
|
512
578
|
*/
|
|
@@ -514,6 +580,14 @@ export interface GetDeploymentsKibana {
|
|
|
514
580
|
status?: string;
|
|
515
581
|
version?: string;
|
|
516
582
|
}
|
|
583
|
+
export interface GetDeploymentsIntegrationsServerArgs {
|
|
584
|
+
/**
|
|
585
|
+
* Overall health status of the deployment.
|
|
586
|
+
*/
|
|
587
|
+
healthy?: pulumi.Input<string>;
|
|
588
|
+
status?: pulumi.Input<string>;
|
|
589
|
+
version?: pulumi.Input<string>;
|
|
590
|
+
}
|
|
517
591
|
export interface GetDeploymentsKibanaArgs {
|
|
518
592
|
/**
|
|
519
593
|
* Overall health status of the deployment.
|
|
@@ -522,3 +596,11 @@ export interface GetDeploymentsKibanaArgs {
|
|
|
522
596
|
status?: pulumi.Input<string>;
|
|
523
597
|
version?: pulumi.Input<string>;
|
|
524
598
|
}
|
|
599
|
+
export interface GetDeploymentsKibana {
|
|
600
|
+
/**
|
|
601
|
+
* Overall health status of the deployment.
|
|
602
|
+
*/
|
|
603
|
+
healthy?: string;
|
|
604
|
+
status?: string;
|
|
605
|
+
version?: string;
|
|
606
|
+
}
|
package/types/output.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface DeploymentApm {
|
|
|
26
26
|
}
|
|
27
27
|
export interface DeploymentApmConfig {
|
|
28
28
|
/**
|
|
29
|
-
* Enable debug mode for
|
|
29
|
+
* Enable debug mode for the component. Defaults to `false`.
|
|
30
30
|
*/
|
|
31
31
|
debugEnabled?: boolean;
|
|
32
32
|
dockerImage?: string;
|
|
@@ -361,6 +361,72 @@ export interface DeploymentEnterpriseSearchTopology {
|
|
|
361
361
|
*/
|
|
362
362
|
zoneCount: number;
|
|
363
363
|
}
|
|
364
|
+
export interface DeploymentIntegrationsServer {
|
|
365
|
+
/**
|
|
366
|
+
* Integrations Server settings applied to all topologies unless overridden in the `topology` element.
|
|
367
|
+
*/
|
|
368
|
+
config?: outputs.DeploymentIntegrationsServerConfig;
|
|
369
|
+
/**
|
|
370
|
+
* This field references the `refId` of the deployment Elasticsearch cluster. The default value `main-elasticsearch` is recommended.
|
|
371
|
+
*/
|
|
372
|
+
elasticsearchClusterRefId?: string;
|
|
373
|
+
httpEndpoint: string;
|
|
374
|
+
httpsEndpoint: string;
|
|
375
|
+
/**
|
|
376
|
+
* Can be set on the Integrations Server resource. The default value `main-integrations_server` is recommended.
|
|
377
|
+
*/
|
|
378
|
+
refId?: string;
|
|
379
|
+
/**
|
|
380
|
+
* Elasticsearch Service (ESS) region where to create the deployment. For Elastic Cloud Enterprise (ECE) installations, set `"ece-region"`.
|
|
381
|
+
*/
|
|
382
|
+
region: string;
|
|
383
|
+
resourceId: string;
|
|
384
|
+
/**
|
|
385
|
+
* Can be set multiple times to compose complex topologies.
|
|
386
|
+
*/
|
|
387
|
+
topologies: outputs.DeploymentIntegrationsServerTopology[];
|
|
388
|
+
}
|
|
389
|
+
export interface DeploymentIntegrationsServerConfig {
|
|
390
|
+
/**
|
|
391
|
+
* Enable debug mode for the component. Defaults to `false`.
|
|
392
|
+
*/
|
|
393
|
+
debugEnabled?: boolean;
|
|
394
|
+
dockerImage?: string;
|
|
395
|
+
/**
|
|
396
|
+
* JSON-formatted user level `elasticsearch.yml` setting overrides.
|
|
397
|
+
*/
|
|
398
|
+
userSettingsJson?: string;
|
|
399
|
+
/**
|
|
400
|
+
* JSON-formatted admin (ECE) level `elasticsearch.yml` setting overrides.
|
|
401
|
+
*/
|
|
402
|
+
userSettingsOverrideJson?: string;
|
|
403
|
+
/**
|
|
404
|
+
* YAML-formatted admin (ECE) level `elasticsearch.yml` setting overrides.
|
|
405
|
+
*/
|
|
406
|
+
userSettingsOverrideYaml?: string;
|
|
407
|
+
/**
|
|
408
|
+
* YAML-formatted user level `elasticsearch.yml` setting overrides.
|
|
409
|
+
*/
|
|
410
|
+
userSettingsYaml?: string;
|
|
411
|
+
}
|
|
412
|
+
export interface DeploymentIntegrationsServerTopology {
|
|
413
|
+
/**
|
|
414
|
+
* Default instance configuration of the deployment template. No need to change this value since Kibana has only one _instance type_.
|
|
415
|
+
*/
|
|
416
|
+
instanceConfigurationId: string;
|
|
417
|
+
/**
|
|
418
|
+
* Amount in Gigabytes per topology element in the `"<size in GB>g"` notation. When omitted, it defaults to the deployment template value.
|
|
419
|
+
*/
|
|
420
|
+
size: string;
|
|
421
|
+
/**
|
|
422
|
+
* Type of resource to which the size is assigned. Defaults to `"memory"`.
|
|
423
|
+
*/
|
|
424
|
+
sizeResource?: string;
|
|
425
|
+
/**
|
|
426
|
+
* Number of zones the instance type of the Elasticsearch cluster will span. This is used to set or unset HA on an Elasticsearch node type. When omitted, it defaults to the deployment template value.
|
|
427
|
+
*/
|
|
428
|
+
zoneCount: number;
|
|
429
|
+
}
|
|
364
430
|
export interface DeploymentKibana {
|
|
365
431
|
/**
|
|
366
432
|
* Kibana settings applied to all topologies unless overridden in the `topology` element.
|
|
@@ -534,6 +600,26 @@ export interface GetDeploymentEnterpriseSearchTopology {
|
|
|
534
600
|
sizeResource: string;
|
|
535
601
|
zoneCount: number;
|
|
536
602
|
}
|
|
603
|
+
export interface GetDeploymentIntegrationsServer {
|
|
604
|
+
elasticsearchClusterRefId: string;
|
|
605
|
+
/**
|
|
606
|
+
* Overall health status of the deployment.
|
|
607
|
+
*/
|
|
608
|
+
healthy: boolean;
|
|
609
|
+
httpEndpoint: string;
|
|
610
|
+
httpsEndpoint: string;
|
|
611
|
+
refId: string;
|
|
612
|
+
resourceId: string;
|
|
613
|
+
status: string;
|
|
614
|
+
topologies: outputs.GetDeploymentIntegrationsServerTopology[];
|
|
615
|
+
version: string;
|
|
616
|
+
}
|
|
617
|
+
export interface GetDeploymentIntegrationsServerTopology {
|
|
618
|
+
instanceConfigurationId: string;
|
|
619
|
+
size: string;
|
|
620
|
+
sizeResource: string;
|
|
621
|
+
zoneCount: number;
|
|
622
|
+
}
|
|
537
623
|
export interface GetDeploymentKibana {
|
|
538
624
|
elasticsearchClusterRefId: string;
|
|
539
625
|
/**
|
|
@@ -577,6 +663,8 @@ export interface GetDeploymentsDeployment {
|
|
|
577
663
|
elasticsearchResourceId: string;
|
|
578
664
|
enterpriseSearchRefId: string;
|
|
579
665
|
enterpriseSearchResourceId: string;
|
|
666
|
+
integrationsServerRefId: string;
|
|
667
|
+
integrationsServerResourceId: string;
|
|
580
668
|
kibanaRefId: string;
|
|
581
669
|
kibanaResourceId: string;
|
|
582
670
|
name: string;
|
|
@@ -597,6 +685,14 @@ export interface GetDeploymentsEnterpriseSearch {
|
|
|
597
685
|
status?: string;
|
|
598
686
|
version?: string;
|
|
599
687
|
}
|
|
688
|
+
export interface GetDeploymentsIntegrationsServer {
|
|
689
|
+
/**
|
|
690
|
+
* Overall health status of the deployment.
|
|
691
|
+
*/
|
|
692
|
+
healthy?: string;
|
|
693
|
+
status?: string;
|
|
694
|
+
version?: string;
|
|
695
|
+
}
|
|
600
696
|
export interface GetDeploymentsKibana {
|
|
601
697
|
/**
|
|
602
698
|
* Overall health status of the deployment.
|