@pulumi/ec 0.6.1-alpha.1694819556 → 0.7.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 +1 -1
- package/deployment.js +1 -1
- package/getAwsPrivatelinkEndpoint.d.ts +4 -4
- package/getAwsPrivatelinkEndpoint.js +4 -4
- package/package.json +1 -1
- package/types/input.d.ts +10 -0
- package/types/output.d.ts +10 -0
package/deployment.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ import * as outputs from "./types/output";
|
|
|
18
18
|
*
|
|
19
19
|
* It is possible to enable observability without using a second deployment, by storing the observability data in the current deployment. To enable this, set `deploymentId` to `self`.
|
|
20
20
|
*
|
|
21
|
-
* ### With
|
|
21
|
+
* ### With Cross Cluster Search settings
|
|
22
22
|
*
|
|
23
23
|
* ## Import
|
|
24
24
|
*
|
package/deployment.js
CHANGED
|
@@ -22,7 +22,7 @@ const utilities = require("./utilities");
|
|
|
22
22
|
*
|
|
23
23
|
* It is possible to enable observability without using a second deployment, by storing the observability data in the current deployment. To enable this, set `deploymentId` to `self`.
|
|
24
24
|
*
|
|
25
|
-
* ### With
|
|
25
|
+
* ### With Cross Cluster Search settings
|
|
26
26
|
*
|
|
27
27
|
* ## Import
|
|
28
28
|
*
|
|
@@ -8,8 +8,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
9
|
* import * as ec from "@pulumi/ec";
|
|
10
10
|
*
|
|
11
|
-
* const
|
|
12
|
-
* region: "
|
|
11
|
+
* const us-east-1 = ec.getAwsPrivatelinkEndpoint({
|
|
12
|
+
* region: "us-east-1",
|
|
13
13
|
* });
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
@@ -57,8 +57,8 @@ export interface GetAwsPrivatelinkEndpointResult {
|
|
|
57
57
|
* import * as pulumi from "@pulumi/pulumi";
|
|
58
58
|
* import * as ec from "@pulumi/ec";
|
|
59
59
|
*
|
|
60
|
-
* const
|
|
61
|
-
* region: "
|
|
60
|
+
* const us-east-1 = ec.getAwsPrivatelinkEndpoint({
|
|
61
|
+
* region: "us-east-1",
|
|
62
62
|
* });
|
|
63
63
|
* ```
|
|
64
64
|
*/
|
|
@@ -14,8 +14,8 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as ec from "@pulumi/ec";
|
|
16
16
|
*
|
|
17
|
-
* const
|
|
18
|
-
* region: "
|
|
17
|
+
* const us-east-1 = ec.getAwsPrivatelinkEndpoint({
|
|
18
|
+
* region: "us-east-1",
|
|
19
19
|
* });
|
|
20
20
|
* ```
|
|
21
21
|
*/
|
|
@@ -35,8 +35,8 @@ exports.getAwsPrivatelinkEndpoint = getAwsPrivatelinkEndpoint;
|
|
|
35
35
|
* import * as pulumi from "@pulumi/pulumi";
|
|
36
36
|
* import * as ec from "@pulumi/ec";
|
|
37
37
|
*
|
|
38
|
-
* const
|
|
39
|
-
* region: "
|
|
38
|
+
* const us-east-1 = ec.getAwsPrivatelinkEndpoint({
|
|
39
|
+
* region: "us-east-1",
|
|
40
40
|
* });
|
|
41
41
|
* ```
|
|
42
42
|
*/
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -62,6 +62,12 @@ export interface DeploymentElasticsearch {
|
|
|
62
62
|
hot: pulumi.Input<inputs.DeploymentElasticsearchHot>;
|
|
63
63
|
httpEndpoint?: pulumi.Input<string>;
|
|
64
64
|
httpsEndpoint?: pulumi.Input<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Keystore contents that are controlled by the deployment resource.
|
|
67
|
+
*/
|
|
68
|
+
keystoreContents?: pulumi.Input<{
|
|
69
|
+
[key: string]: pulumi.Input<inputs.DeploymentElasticsearchKeystoreContents>;
|
|
70
|
+
}>;
|
|
65
71
|
/**
|
|
66
72
|
* 'master' topology element
|
|
67
73
|
*/
|
|
@@ -186,6 +192,10 @@ export interface DeploymentElasticsearchHotAutoscaling {
|
|
|
186
192
|
minSizeResource?: pulumi.Input<string>;
|
|
187
193
|
policyOverrideJson?: pulumi.Input<string>;
|
|
188
194
|
}
|
|
195
|
+
export interface DeploymentElasticsearchKeystoreContents {
|
|
196
|
+
asFile?: pulumi.Input<boolean>;
|
|
197
|
+
value: pulumi.Input<string>;
|
|
198
|
+
}
|
|
189
199
|
export interface DeploymentElasticsearchMaster {
|
|
190
200
|
autoscaling: pulumi.Input<inputs.DeploymentElasticsearchMasterAutoscaling>;
|
|
191
201
|
instanceConfigurationId?: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -61,6 +61,12 @@ export interface DeploymentElasticsearch {
|
|
|
61
61
|
hot: outputs.DeploymentElasticsearchHot;
|
|
62
62
|
httpEndpoint: string;
|
|
63
63
|
httpsEndpoint: string;
|
|
64
|
+
/**
|
|
65
|
+
* Keystore contents that are controlled by the deployment resource.
|
|
66
|
+
*/
|
|
67
|
+
keystoreContents?: {
|
|
68
|
+
[key: string]: outputs.DeploymentElasticsearchKeystoreContents;
|
|
69
|
+
};
|
|
64
70
|
/**
|
|
65
71
|
* 'master' topology element
|
|
66
72
|
*/
|
|
@@ -185,6 +191,10 @@ export interface DeploymentElasticsearchHotAutoscaling {
|
|
|
185
191
|
minSizeResource: string;
|
|
186
192
|
policyOverrideJson: string;
|
|
187
193
|
}
|
|
194
|
+
export interface DeploymentElasticsearchKeystoreContents {
|
|
195
|
+
asFile: boolean;
|
|
196
|
+
value: string;
|
|
197
|
+
}
|
|
188
198
|
export interface DeploymentElasticsearchMaster {
|
|
189
199
|
autoscaling: outputs.DeploymentElasticsearchMasterAutoscaling;
|
|
190
200
|
instanceConfigurationId: string;
|