@pulumi/ec 0.10.10 → 0.10.11

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.
@@ -158,7 +158,7 @@ export declare class DeploymentTrafficFilter extends pulumi.CustomResource {
158
158
  */
159
159
  readonly rules: pulumi.Output<outputs.DeploymentTrafficFilterRule[] | undefined>;
160
160
  /**
161
- * Type of the ruleset. It can be `ip`, `vpce`, `azurePrivateEndpoint`, or `gcpPrivateServiceConnectEndpoint`
161
+ * Type of the ruleset. It can be `ip`, `vpce`, `azurePrivateEndpoint`, `gcpPrivateServiceConnectEndpoint`, or `remoteCluster`
162
162
  */
163
163
  readonly type: pulumi.Output<string>;
164
164
  /**
@@ -195,7 +195,7 @@ export interface DeploymentTrafficFilterState {
195
195
  */
196
196
  rules?: pulumi.Input<pulumi.Input<inputs.DeploymentTrafficFilterRule>[]>;
197
197
  /**
198
- * Type of the ruleset. It can be `ip`, `vpce`, `azurePrivateEndpoint`, or `gcpPrivateServiceConnectEndpoint`
198
+ * Type of the ruleset. It can be `ip`, `vpce`, `azurePrivateEndpoint`, `gcpPrivateServiceConnectEndpoint`, or `remoteCluster`
199
199
  */
200
200
  type?: pulumi.Input<string>;
201
201
  }
@@ -224,7 +224,7 @@ export interface DeploymentTrafficFilterArgs {
224
224
  */
225
225
  rules?: pulumi.Input<pulumi.Input<inputs.DeploymentTrafficFilterRule>[]>;
226
226
  /**
227
- * Type of the ruleset. It can be `ip`, `vpce`, `azurePrivateEndpoint`, or `gcpPrivateServiceConnectEndpoint`
227
+ * Type of the ruleset. It can be `ip`, `vpce`, `azurePrivateEndpoint`, `gcpPrivateServiceConnectEndpoint`, or `remoteCluster`
228
228
  */
229
229
  type: pulumi.Input<string>;
230
230
  }
@@ -26,6 +26,8 @@ import * as outputs from "./types/output";
26
26
  * ```sh
27
27
  * $ pulumi import ec:index/elasticsearchProject:ElasticsearchProject id 320b7b540dfc967a7a649c18e2fce4ed
28
28
  * ```
29
+ *
30
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
29
31
  */
30
32
  export declare class ElasticsearchProject extends pulumi.CustomResource {
31
33
  /**
@@ -60,7 +62,7 @@ export declare class ElasticsearchProject extends pulumi.CustomResource {
60
62
  */
61
63
  readonly endpoints: pulumi.Output<outputs.ElasticsearchProjectEndpoints>;
62
64
  /**
63
- * Additional details about the project.
65
+ * Metadata request for a project with tags.
64
66
  */
65
67
  readonly metadata: pulumi.Output<outputs.ElasticsearchProjectMetadata>;
66
68
  /**
@@ -68,9 +70,16 @@ export declare class ElasticsearchProject extends pulumi.CustomResource {
68
70
  */
69
71
  readonly name: pulumi.Output<string>;
70
72
  /**
71
- * The purpose for which the hardware of this elasticsearch project is optimized for. Also known as the Elasticsearch project subtype.
73
+ * The purpose for which the hardware of this elasticsearch project is optimized. Also known as the Elasticsearch project subtype.
74
+ *
75
+ * - The `generalPurpose` option is suitable for most search use cases. For example, it is the right profile for full-text search, sparse vectors, and dense vectors that use compression such as BBQ. It is used by default when you create projects from the UI.
76
+ * - The `vector` option is recommended only for uncompressed dense vectors (`denseVector` fields with `int4` or `int8` quantization strategies) and high dimensionality. Refer to documentation about billing dimensions for the impact to virtual compute unit (VCU) consumption.
72
77
  */
73
78
  readonly optimizedFor: pulumi.Output<string>;
79
+ /**
80
+ * Private endpoints (URLs) for Elasticsearch projects when PrivateLink is enabled.
81
+ */
82
+ readonly privateEndpoints: pulumi.Output<outputs.ElasticsearchProjectPrivateEndpoints>;
74
83
  /**
75
84
  * Unique human-readable identifier for a region in Elastic Cloud.
76
85
  */
@@ -79,6 +88,10 @@ export declare class ElasticsearchProject extends pulumi.CustomResource {
79
88
  * Configuration for entire set of capabilities that make the data searchable in Elasticsearch.
80
89
  */
81
90
  readonly searchLake: pulumi.Output<outputs.ElasticsearchProjectSearchLake>;
91
+ /**
92
+ * Set of traffic filter IDs to associate with this project
93
+ */
94
+ readonly trafficFilterIds: pulumi.Output<string[] | undefined>;
82
95
  /**
83
96
  * the type of the project
84
97
  */
@@ -113,7 +126,7 @@ export interface ElasticsearchProjectState {
113
126
  */
114
127
  endpoints?: pulumi.Input<inputs.ElasticsearchProjectEndpoints>;
115
128
  /**
116
- * Additional details about the project.
129
+ * Metadata request for a project with tags.
117
130
  */
118
131
  metadata?: pulumi.Input<inputs.ElasticsearchProjectMetadata>;
119
132
  /**
@@ -121,9 +134,16 @@ export interface ElasticsearchProjectState {
121
134
  */
122
135
  name?: pulumi.Input<string>;
123
136
  /**
124
- * The purpose for which the hardware of this elasticsearch project is optimized for. Also known as the Elasticsearch project subtype.
137
+ * The purpose for which the hardware of this elasticsearch project is optimized. Also known as the Elasticsearch project subtype.
138
+ *
139
+ * - The `generalPurpose` option is suitable for most search use cases. For example, it is the right profile for full-text search, sparse vectors, and dense vectors that use compression such as BBQ. It is used by default when you create projects from the UI.
140
+ * - The `vector` option is recommended only for uncompressed dense vectors (`denseVector` fields with `int4` or `int8` quantization strategies) and high dimensionality. Refer to documentation about billing dimensions for the impact to virtual compute unit (VCU) consumption.
125
141
  */
126
142
  optimizedFor?: pulumi.Input<string>;
143
+ /**
144
+ * Private endpoints (URLs) for Elasticsearch projects when PrivateLink is enabled.
145
+ */
146
+ privateEndpoints?: pulumi.Input<inputs.ElasticsearchProjectPrivateEndpoints>;
127
147
  /**
128
148
  * Unique human-readable identifier for a region in Elastic Cloud.
129
149
  */
@@ -132,6 +152,10 @@ export interface ElasticsearchProjectState {
132
152
  * Configuration for entire set of capabilities that make the data searchable in Elasticsearch.
133
153
  */
134
154
  searchLake?: pulumi.Input<inputs.ElasticsearchProjectSearchLake>;
155
+ /**
156
+ * Set of traffic filter IDs to associate with this project
157
+ */
158
+ trafficFilterIds?: pulumi.Input<pulumi.Input<string>[]>;
135
159
  /**
136
160
  * the type of the project
137
161
  */
@@ -145,12 +169,19 @@ export interface ElasticsearchProjectArgs {
145
169
  * A custom domain label compatible with RFC-1035 standards. Derived from the project name by default.
146
170
  */
147
171
  alias?: pulumi.Input<string>;
172
+ /**
173
+ * Metadata request for a project with tags.
174
+ */
175
+ metadata?: pulumi.Input<inputs.ElasticsearchProjectMetadata>;
148
176
  /**
149
177
  * Descriptive name for a project.
150
178
  */
151
179
  name?: pulumi.Input<string>;
152
180
  /**
153
- * The purpose for which the hardware of this elasticsearch project is optimized for. Also known as the Elasticsearch project subtype.
181
+ * The purpose for which the hardware of this elasticsearch project is optimized. Also known as the Elasticsearch project subtype.
182
+ *
183
+ * - The `generalPurpose` option is suitable for most search use cases. For example, it is the right profile for full-text search, sparse vectors, and dense vectors that use compression such as BBQ. It is used by default when you create projects from the UI.
184
+ * - The `vector` option is recommended only for uncompressed dense vectors (`denseVector` fields with `int4` or `int8` quantization strategies) and high dimensionality. Refer to documentation about billing dimensions for the impact to virtual compute unit (VCU) consumption.
154
185
  */
155
186
  optimizedFor?: pulumi.Input<string>;
156
187
  /**
@@ -161,4 +192,8 @@ export interface ElasticsearchProjectArgs {
161
192
  * Configuration for entire set of capabilities that make the data searchable in Elasticsearch.
162
193
  */
163
194
  searchLake?: pulumi.Input<inputs.ElasticsearchProjectSearchLake>;
195
+ /**
196
+ * Set of traffic filter IDs to associate with this project
197
+ */
198
+ trafficFilterIds?: pulumi.Input<pulumi.Input<string>[]>;
164
199
  }
@@ -30,6 +30,8 @@ const utilities = require("./utilities");
30
30
  * ```sh
31
31
  * $ pulumi import ec:index/elasticsearchProject:ElasticsearchProject id 320b7b540dfc967a7a649c18e2fce4ed
32
32
  * ```
33
+ *
34
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
33
35
  */
34
36
  class ElasticsearchProject extends pulumi.CustomResource {
35
37
  /**
@@ -66,8 +68,10 @@ class ElasticsearchProject extends pulumi.CustomResource {
66
68
  resourceInputs["metadata"] = state?.metadata;
67
69
  resourceInputs["name"] = state?.name;
68
70
  resourceInputs["optimizedFor"] = state?.optimizedFor;
71
+ resourceInputs["privateEndpoints"] = state?.privateEndpoints;
69
72
  resourceInputs["regionId"] = state?.regionId;
70
73
  resourceInputs["searchLake"] = state?.searchLake;
74
+ resourceInputs["trafficFilterIds"] = state?.trafficFilterIds;
71
75
  resourceInputs["type"] = state?.type;
72
76
  }
73
77
  else {
@@ -76,14 +80,16 @@ class ElasticsearchProject extends pulumi.CustomResource {
76
80
  throw new Error("Missing required property 'regionId'");
77
81
  }
78
82
  resourceInputs["alias"] = args?.alias;
83
+ resourceInputs["metadata"] = args?.metadata;
79
84
  resourceInputs["name"] = args?.name;
80
85
  resourceInputs["optimizedFor"] = args?.optimizedFor;
81
86
  resourceInputs["regionId"] = args?.regionId;
82
87
  resourceInputs["searchLake"] = args?.searchLake;
88
+ resourceInputs["trafficFilterIds"] = args?.trafficFilterIds;
83
89
  resourceInputs["cloudId"] = undefined /*out*/;
84
90
  resourceInputs["credentials"] = undefined /*out*/;
85
91
  resourceInputs["endpoints"] = undefined /*out*/;
86
- resourceInputs["metadata"] = undefined /*out*/;
92
+ resourceInputs["privateEndpoints"] = undefined /*out*/;
87
93
  resourceInputs["type"] = undefined /*out*/;
88
94
  }
89
95
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"elasticsearchProject.js","sourceRoot":"","sources":["../elasticsearchProject.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"elasticsearchProject.js","sourceRoot":"","sources":["../elasticsearchProject.ts"],"names":[],"mappings":"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"}
package/index.d.ts CHANGED
@@ -50,6 +50,9 @@ export * from "./provider";
50
50
  export { SecurityProjectArgs, SecurityProjectState } from "./securityProject";
51
51
  export type SecurityProject = import("./securityProject").SecurityProject;
52
52
  export declare const SecurityProject: typeof import("./securityProject").SecurityProject;
53
+ export { ServerlessTrafficFilterArgs, ServerlessTrafficFilterState } from "./serverlessTrafficFilter";
54
+ export type ServerlessTrafficFilter = import("./serverlessTrafficFilter").ServerlessTrafficFilter;
55
+ export declare const ServerlessTrafficFilter: typeof import("./serverlessTrafficFilter").ServerlessTrafficFilter;
53
56
  export { SnapshotRepositoryArgs, SnapshotRepositoryState } from "./snapshotRepository";
54
57
  export type SnapshotRepository = import("./snapshotRepository").SnapshotRepository;
55
58
  export declare const SnapshotRepository: typeof import("./snapshotRepository").SnapshotRepository;
package/index.js CHANGED
@@ -16,7 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
17
  };
18
18
  Object.defineProperty(exports, "__esModule", { value: true });
19
- exports.types = exports.config = exports.SnapshotRepository = exports.SecurityProject = exports.Organization = exports.ObservabilityProject = exports.getTrafficFilterOutput = exports.getTrafficFilter = exports.getStackOutput = exports.getStack = exports.getGcpPrivateServiceConnectEndpointOutput = exports.getGcpPrivateServiceConnectEndpoint = exports.getDeploymentsOutput = exports.getDeployments = exports.getDeploymentTemplatesOutput = exports.getDeploymentTemplates = exports.getDeploymentOutput = exports.getDeployment = exports.getAzurePrivatelinkEndpointOutput = exports.getAzurePrivatelinkEndpoint = exports.getAwsPrivatelinkEndpointOutput = exports.getAwsPrivatelinkEndpoint = exports.ElasticsearchProject = exports.DeploymentTrafficFilterAssociation = exports.DeploymentTrafficFilter = exports.DeploymentExtension = exports.DeploymentElasticsearchKeystore = exports.Deployment = void 0;
19
+ exports.types = exports.config = exports.SnapshotRepository = exports.ServerlessTrafficFilter = exports.SecurityProject = exports.Organization = exports.ObservabilityProject = exports.getTrafficFilterOutput = exports.getTrafficFilter = exports.getStackOutput = exports.getStack = exports.getGcpPrivateServiceConnectEndpointOutput = exports.getGcpPrivateServiceConnectEndpoint = exports.getDeploymentsOutput = exports.getDeployments = exports.getDeploymentTemplatesOutput = exports.getDeploymentTemplates = exports.getDeploymentOutput = exports.getDeployment = exports.getAzurePrivatelinkEndpointOutput = exports.getAzurePrivatelinkEndpoint = exports.getAwsPrivatelinkEndpointOutput = exports.getAwsPrivatelinkEndpoint = exports.ElasticsearchProject = exports.DeploymentTrafficFilterAssociation = exports.DeploymentTrafficFilter = exports.DeploymentExtension = exports.DeploymentElasticsearchKeystore = exports.Deployment = void 0;
20
20
  const pulumi = require("@pulumi/pulumi");
21
21
  const utilities = require("./utilities");
22
22
  exports.Deployment = null;
@@ -63,6 +63,8 @@ __exportStar(require("./provider"), exports);
63
63
  const provider_1 = require("./provider");
64
64
  exports.SecurityProject = null;
65
65
  utilities.lazyLoad(exports, ["SecurityProject"], () => require("./securityProject"));
66
+ exports.ServerlessTrafficFilter = null;
67
+ utilities.lazyLoad(exports, ["ServerlessTrafficFilter"], () => require("./serverlessTrafficFilter"));
66
68
  exports.SnapshotRepository = null;
67
69
  utilities.lazyLoad(exports, ["SnapshotRepository"], () => require("./snapshotRepository"));
68
70
  // Export sub-modules:
@@ -92,6 +94,8 @@ const _module = {
92
94
  return new exports.Organization(name, undefined, { urn });
93
95
  case "ec:index/securityProject:SecurityProject":
94
96
  return new exports.SecurityProject(name, undefined, { urn });
97
+ case "ec:index/serverlessTrafficFilter:ServerlessTrafficFilter":
98
+ return new exports.ServerlessTrafficFilter(name, undefined, { urn });
95
99
  case "ec:index/snapshotRepository:SnapshotRepository":
96
100
  return new exports.SnapshotRepository(name, undefined, { urn });
97
101
  default:
@@ -108,6 +112,7 @@ pulumi.runtime.registerResourceModule("ec", "index/elasticsearchProject", _modul
108
112
  pulumi.runtime.registerResourceModule("ec", "index/observabilityProject", _module);
109
113
  pulumi.runtime.registerResourceModule("ec", "index/organization", _module);
110
114
  pulumi.runtime.registerResourceModule("ec", "index/securityProject", _module);
115
+ pulumi.runtime.registerResourceModule("ec", "index/serverlessTrafficFilter", _module);
111
116
  pulumi.runtime.registerResourceModule("ec", "index/snapshotRepository", _module);
112
117
  pulumi.runtime.registerResourcePackage("ec", {
113
118
  version: utilities.getVersion(),
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
@@ -26,6 +26,8 @@ import * as outputs from "./types/output";
26
26
  * ```sh
27
27
  * $ pulumi import ec:index/observabilityProject:ObservabilityProject id 320b7b540dfc967a7a649c18e2fce4ed
28
28
  * ```
29
+ *
30
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
29
31
  */
30
32
  export declare class ObservabilityProject extends pulumi.CustomResource {
31
33
  /**
@@ -60,13 +62,17 @@ export declare class ObservabilityProject extends pulumi.CustomResource {
60
62
  */
61
63
  readonly endpoints: pulumi.Output<outputs.ObservabilityProjectEndpoints>;
62
64
  /**
63
- * Additional details about the project.
65
+ * Metadata request for a project with tags.
64
66
  */
65
67
  readonly metadata: pulumi.Output<outputs.ObservabilityProjectMetadata>;
66
68
  /**
67
69
  * Descriptive name for a project.
68
70
  */
69
71
  readonly name: pulumi.Output<string>;
72
+ /**
73
+ * Private endpoints (URLs) for Observability projects when PrivateLink is enabled.
74
+ */
75
+ readonly privateEndpoints: pulumi.Output<outputs.ObservabilityProjectPrivateEndpoints>;
70
76
  /**
71
77
  * the tier of the observability project
72
78
  */
@@ -75,6 +81,10 @@ export declare class ObservabilityProject extends pulumi.CustomResource {
75
81
  * Unique human-readable identifier for a region in Elastic Cloud.
76
82
  */
77
83
  readonly regionId: pulumi.Output<string>;
84
+ /**
85
+ * Set of traffic filter IDs to associate with this project
86
+ */
87
+ readonly trafficFilterIds: pulumi.Output<string[] | undefined>;
78
88
  /**
79
89
  * the type of the project
80
90
  */
@@ -109,13 +119,17 @@ export interface ObservabilityProjectState {
109
119
  */
110
120
  endpoints?: pulumi.Input<inputs.ObservabilityProjectEndpoints>;
111
121
  /**
112
- * Additional details about the project.
122
+ * Metadata request for a project with tags.
113
123
  */
114
124
  metadata?: pulumi.Input<inputs.ObservabilityProjectMetadata>;
115
125
  /**
116
126
  * Descriptive name for a project.
117
127
  */
118
128
  name?: pulumi.Input<string>;
129
+ /**
130
+ * Private endpoints (URLs) for Observability projects when PrivateLink is enabled.
131
+ */
132
+ privateEndpoints?: pulumi.Input<inputs.ObservabilityProjectPrivateEndpoints>;
119
133
  /**
120
134
  * the tier of the observability project
121
135
  */
@@ -124,6 +138,10 @@ export interface ObservabilityProjectState {
124
138
  * Unique human-readable identifier for a region in Elastic Cloud.
125
139
  */
126
140
  regionId?: pulumi.Input<string>;
141
+ /**
142
+ * Set of traffic filter IDs to associate with this project
143
+ */
144
+ trafficFilterIds?: pulumi.Input<pulumi.Input<string>[]>;
127
145
  /**
128
146
  * the type of the project
129
147
  */
@@ -137,6 +155,10 @@ export interface ObservabilityProjectArgs {
137
155
  * A custom domain label compatible with RFC-1035 standards. Derived from the project name by default.
138
156
  */
139
157
  alias?: pulumi.Input<string>;
158
+ /**
159
+ * Metadata request for a project with tags.
160
+ */
161
+ metadata?: pulumi.Input<inputs.ObservabilityProjectMetadata>;
140
162
  /**
141
163
  * Descriptive name for a project.
142
164
  */
@@ -149,4 +171,8 @@ export interface ObservabilityProjectArgs {
149
171
  * Unique human-readable identifier for a region in Elastic Cloud.
150
172
  */
151
173
  regionId: pulumi.Input<string>;
174
+ /**
175
+ * Set of traffic filter IDs to associate with this project
176
+ */
177
+ trafficFilterIds?: pulumi.Input<pulumi.Input<string>[]>;
152
178
  }
@@ -30,6 +30,8 @@ const utilities = require("./utilities");
30
30
  * ```sh
31
31
  * $ pulumi import ec:index/observabilityProject:ObservabilityProject id 320b7b540dfc967a7a649c18e2fce4ed
32
32
  * ```
33
+ *
34
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
33
35
  */
34
36
  class ObservabilityProject extends pulumi.CustomResource {
35
37
  /**
@@ -65,8 +67,10 @@ class ObservabilityProject extends pulumi.CustomResource {
65
67
  resourceInputs["endpoints"] = state?.endpoints;
66
68
  resourceInputs["metadata"] = state?.metadata;
67
69
  resourceInputs["name"] = state?.name;
70
+ resourceInputs["privateEndpoints"] = state?.privateEndpoints;
68
71
  resourceInputs["productTier"] = state?.productTier;
69
72
  resourceInputs["regionId"] = state?.regionId;
73
+ resourceInputs["trafficFilterIds"] = state?.trafficFilterIds;
70
74
  resourceInputs["type"] = state?.type;
71
75
  }
72
76
  else {
@@ -75,13 +79,15 @@ class ObservabilityProject extends pulumi.CustomResource {
75
79
  throw new Error("Missing required property 'regionId'");
76
80
  }
77
81
  resourceInputs["alias"] = args?.alias;
82
+ resourceInputs["metadata"] = args?.metadata;
78
83
  resourceInputs["name"] = args?.name;
79
84
  resourceInputs["productTier"] = args?.productTier;
80
85
  resourceInputs["regionId"] = args?.regionId;
86
+ resourceInputs["trafficFilterIds"] = args?.trafficFilterIds;
81
87
  resourceInputs["cloudId"] = undefined /*out*/;
82
88
  resourceInputs["credentials"] = undefined /*out*/;
83
89
  resourceInputs["endpoints"] = undefined /*out*/;
84
- resourceInputs["metadata"] = undefined /*out*/;
90
+ resourceInputs["privateEndpoints"] = undefined /*out*/;
85
91
  resourceInputs["type"] = undefined /*out*/;
86
92
  }
87
93
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"observabilityProject.js","sourceRoot":"","sources":["../observabilityProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;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;IA+CD,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,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;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;;AAxGL,oDAyGC;AA3FG,gBAAgB;AACO,iCAAY,GAAG,oDAAoD,CAAC"}
1
+ {"version":3,"file":"observabilityProject.js","sourceRoot":"","sources":["../observabilityProject.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/ec",
3
- "version": "0.10.10",
3
+ "version": "0.10.11",
4
4
  "description": "A Pulumi package for creating and managing ElasticCloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -27,6 +27,6 @@
27
27
  "pulumi": {
28
28
  "resource": true,
29
29
  "name": "ec",
30
- "version": "0.10.10"
30
+ "version": "0.10.11"
31
31
  }
32
32
  }
@@ -26,6 +26,8 @@ import * as outputs from "./types/output";
26
26
  * ```sh
27
27
  * $ pulumi import ec:index/securityProject:SecurityProject id 320b7b540dfc967a7a649c18e2fce4ed
28
28
  * ```
29
+ *
30
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
29
31
  */
30
32
  export declare class SecurityProject extends pulumi.CustomResource {
31
33
  /**
@@ -64,18 +66,30 @@ export declare class SecurityProject extends pulumi.CustomResource {
64
66
  */
65
67
  readonly endpoints: pulumi.Output<outputs.SecurityProjectEndpoints>;
66
68
  /**
67
- * Additional details about the project.
69
+ * Metadata request for a project with tags.
68
70
  */
69
71
  readonly metadata: pulumi.Output<outputs.SecurityProjectMetadata>;
70
72
  /**
71
73
  * Descriptive name for a project.
72
74
  */
73
75
  readonly name: pulumi.Output<string>;
76
+ /**
77
+ * Private endpoints (URLs) for Security projects when PrivateLink is enabled.
78
+ */
79
+ readonly privateEndpoints: pulumi.Output<outputs.SecurityProjectPrivateEndpoints>;
74
80
  readonly productTypes: pulumi.Output<outputs.SecurityProjectProductType[]>;
75
81
  /**
76
82
  * Unique human-readable identifier for a region in Elastic Cloud.
77
83
  */
78
84
  readonly regionId: pulumi.Output<string>;
85
+ /**
86
+ * Configuration for the entire set of capabilities that make the data searchable in Security.
87
+ */
88
+ readonly searchLake: pulumi.Output<outputs.SecurityProjectSearchLake>;
89
+ /**
90
+ * Set of traffic filter IDs to associate with this project
91
+ */
92
+ readonly trafficFilterIds: pulumi.Output<string[] | undefined>;
79
93
  /**
80
94
  * the type of the project
81
95
  */
@@ -114,18 +128,30 @@ export interface SecurityProjectState {
114
128
  */
115
129
  endpoints?: pulumi.Input<inputs.SecurityProjectEndpoints>;
116
130
  /**
117
- * Additional details about the project.
131
+ * Metadata request for a project with tags.
118
132
  */
119
133
  metadata?: pulumi.Input<inputs.SecurityProjectMetadata>;
120
134
  /**
121
135
  * Descriptive name for a project.
122
136
  */
123
137
  name?: pulumi.Input<string>;
138
+ /**
139
+ * Private endpoints (URLs) for Security projects when PrivateLink is enabled.
140
+ */
141
+ privateEndpoints?: pulumi.Input<inputs.SecurityProjectPrivateEndpoints>;
124
142
  productTypes?: pulumi.Input<pulumi.Input<inputs.SecurityProjectProductType>[]>;
125
143
  /**
126
144
  * Unique human-readable identifier for a region in Elastic Cloud.
127
145
  */
128
146
  regionId?: pulumi.Input<string>;
147
+ /**
148
+ * Configuration for the entire set of capabilities that make the data searchable in Security.
149
+ */
150
+ searchLake?: pulumi.Input<inputs.SecurityProjectSearchLake>;
151
+ /**
152
+ * Set of traffic filter IDs to associate with this project
153
+ */
154
+ trafficFilterIds?: pulumi.Input<pulumi.Input<string>[]>;
129
155
  /**
130
156
  * the type of the project
131
157
  */
@@ -143,6 +169,10 @@ export interface SecurityProjectArgs {
143
169
  * A custom domain label compatible with RFC-1035 standards. Derived from the project name by default.
144
170
  */
145
171
  alias?: pulumi.Input<string>;
172
+ /**
173
+ * Metadata request for a project with tags.
174
+ */
175
+ metadata?: pulumi.Input<inputs.SecurityProjectMetadata>;
146
176
  /**
147
177
  * Descriptive name for a project.
148
178
  */
@@ -152,4 +182,12 @@ export interface SecurityProjectArgs {
152
182
  * Unique human-readable identifier for a region in Elastic Cloud.
153
183
  */
154
184
  regionId: pulumi.Input<string>;
185
+ /**
186
+ * Configuration for the entire set of capabilities that make the data searchable in Security.
187
+ */
188
+ searchLake?: pulumi.Input<inputs.SecurityProjectSearchLake>;
189
+ /**
190
+ * Set of traffic filter IDs to associate with this project
191
+ */
192
+ trafficFilterIds?: pulumi.Input<pulumi.Input<string>[]>;
155
193
  }
@@ -30,6 +30,8 @@ const utilities = require("./utilities");
30
30
  * ```sh
31
31
  * $ pulumi import ec:index/securityProject:SecurityProject id 320b7b540dfc967a7a649c18e2fce4ed
32
32
  * ```
33
+ *
34
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
33
35
  */
34
36
  class SecurityProject extends pulumi.CustomResource {
35
37
  /**
@@ -66,8 +68,11 @@ class SecurityProject extends pulumi.CustomResource {
66
68
  resourceInputs["endpoints"] = state?.endpoints;
67
69
  resourceInputs["metadata"] = state?.metadata;
68
70
  resourceInputs["name"] = state?.name;
71
+ resourceInputs["privateEndpoints"] = state?.privateEndpoints;
69
72
  resourceInputs["productTypes"] = state?.productTypes;
70
73
  resourceInputs["regionId"] = state?.regionId;
74
+ resourceInputs["searchLake"] = state?.searchLake;
75
+ resourceInputs["trafficFilterIds"] = state?.trafficFilterIds;
71
76
  resourceInputs["type"] = state?.type;
72
77
  }
73
78
  else {
@@ -77,13 +82,16 @@ class SecurityProject extends pulumi.CustomResource {
77
82
  }
78
83
  resourceInputs["adminFeaturesPackage"] = args?.adminFeaturesPackage;
79
84
  resourceInputs["alias"] = args?.alias;
85
+ resourceInputs["metadata"] = args?.metadata;
80
86
  resourceInputs["name"] = args?.name;
81
87
  resourceInputs["productTypes"] = args?.productTypes;
82
88
  resourceInputs["regionId"] = args?.regionId;
89
+ resourceInputs["searchLake"] = args?.searchLake;
90
+ resourceInputs["trafficFilterIds"] = args?.trafficFilterIds;
83
91
  resourceInputs["cloudId"] = undefined /*out*/;
84
92
  resourceInputs["credentials"] = undefined /*out*/;
85
93
  resourceInputs["endpoints"] = undefined /*out*/;
86
- resourceInputs["metadata"] = undefined /*out*/;
94
+ resourceInputs["privateEndpoints"] = undefined /*out*/;
87
95
  resourceInputs["type"] = undefined /*out*/;
88
96
  }
89
97
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"securityProject.js","sourceRoot":"","sources":["../securityProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;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;IAgDD,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,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;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;;AA3GL,0CA4GC;AA9FG,gBAAgB;AACO,4BAAY,GAAG,0CAA0C,CAAC"}
1
+ {"version":3,"file":"securityProject.js","sourceRoot":"","sources":["../securityProject.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,140 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as ec from "@pulumi/ec";
10
+ *
11
+ * const example = new ec.ServerlessTrafficFilter("example", {
12
+ * name: "my-serverless-traffic-filter",
13
+ * region: "aws-us-east-1",
14
+ * type: "ip",
15
+ * description: "Allow traffic from the office network",
16
+ * includeByDefault: false,
17
+ * rules: [{
18
+ * source: "203.0.113.0/24",
19
+ * description: "Office egress",
20
+ * }],
21
+ * });
22
+ * ```
23
+ *
24
+ * ## Import
25
+ *
26
+ * Serverless traffic filters can be imported using the `id`, for example:
27
+ *
28
+ * ```sh
29
+ * $ pulumi import ec:index/serverlessTrafficFilter:ServerlessTrafficFilter id 320b7b540dfc967a7a649c18e2fce4ed
30
+ * ```
31
+ *
32
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
33
+ */
34
+ export declare class ServerlessTrafficFilter extends pulumi.CustomResource {
35
+ /**
36
+ * Get an existing ServerlessTrafficFilter resource's state with the given name, ID, and optional extra
37
+ * properties used to qualify the lookup.
38
+ *
39
+ * @param name The _unique_ name of the resulting resource.
40
+ * @param id The _unique_ provider ID of the resource to lookup.
41
+ * @param state Any extra arguments used during the lookup.
42
+ * @param opts Optional settings to control the behavior of the CustomResource.
43
+ */
44
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServerlessTrafficFilterState, opts?: pulumi.CustomResourceOptions): ServerlessTrafficFilter;
45
+ /**
46
+ * Returns true if the given object is an instance of ServerlessTrafficFilter. This is designed to work even
47
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
48
+ */
49
+ static isInstance(obj: any): obj is ServerlessTrafficFilter;
50
+ /**
51
+ * Description of the traffic filter
52
+ */
53
+ readonly description: pulumi.Output<string>;
54
+ /**
55
+ * Should the traffic filter be automatically included in the new projects
56
+ */
57
+ readonly includeByDefault: pulumi.Output<boolean>;
58
+ /**
59
+ * Name of the traffic filter
60
+ */
61
+ readonly name: pulumi.Output<string>;
62
+ /**
63
+ * The traffic filter can be attached only to projects in the specific region
64
+ */
65
+ readonly region: pulumi.Output<string>;
66
+ /**
67
+ * List of rules
68
+ */
69
+ readonly rules: pulumi.Output<outputs.ServerlessTrafficFilterRule[]>;
70
+ /**
71
+ * Type of the traffic filter
72
+ */
73
+ readonly type: pulumi.Output<string>;
74
+ /**
75
+ * Create a ServerlessTrafficFilter resource with the given unique name, arguments, and options.
76
+ *
77
+ * @param name The _unique_ name of the resource.
78
+ * @param args The arguments to use to populate this resource's properties.
79
+ * @param opts A bag of options that control this resource's behavior.
80
+ */
81
+ constructor(name: string, args: ServerlessTrafficFilterArgs, opts?: pulumi.CustomResourceOptions);
82
+ }
83
+ /**
84
+ * Input properties used for looking up and filtering ServerlessTrafficFilter resources.
85
+ */
86
+ export interface ServerlessTrafficFilterState {
87
+ /**
88
+ * Description of the traffic filter
89
+ */
90
+ description?: pulumi.Input<string>;
91
+ /**
92
+ * Should the traffic filter be automatically included in the new projects
93
+ */
94
+ includeByDefault?: pulumi.Input<boolean>;
95
+ /**
96
+ * Name of the traffic filter
97
+ */
98
+ name?: pulumi.Input<string>;
99
+ /**
100
+ * The traffic filter can be attached only to projects in the specific region
101
+ */
102
+ region?: pulumi.Input<string>;
103
+ /**
104
+ * List of rules
105
+ */
106
+ rules?: pulumi.Input<pulumi.Input<inputs.ServerlessTrafficFilterRule>[]>;
107
+ /**
108
+ * Type of the traffic filter
109
+ */
110
+ type?: pulumi.Input<string>;
111
+ }
112
+ /**
113
+ * The set of arguments for constructing a ServerlessTrafficFilter resource.
114
+ */
115
+ export interface ServerlessTrafficFilterArgs {
116
+ /**
117
+ * Description of the traffic filter
118
+ */
119
+ description?: pulumi.Input<string>;
120
+ /**
121
+ * Should the traffic filter be automatically included in the new projects
122
+ */
123
+ includeByDefault?: pulumi.Input<boolean>;
124
+ /**
125
+ * Name of the traffic filter
126
+ */
127
+ name?: pulumi.Input<string>;
128
+ /**
129
+ * The traffic filter can be attached only to projects in the specific region
130
+ */
131
+ region: pulumi.Input<string>;
132
+ /**
133
+ * List of rules
134
+ */
135
+ rules?: pulumi.Input<pulumi.Input<inputs.ServerlessTrafficFilterRule>[]>;
136
+ /**
137
+ * Type of the traffic filter
138
+ */
139
+ type: pulumi.Input<string>;
140
+ }
@@ -0,0 +1,95 @@
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.ServerlessTrafficFilter = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as ec from "@pulumi/ec";
14
+ *
15
+ * const example = new ec.ServerlessTrafficFilter("example", {
16
+ * name: "my-serverless-traffic-filter",
17
+ * region: "aws-us-east-1",
18
+ * type: "ip",
19
+ * description: "Allow traffic from the office network",
20
+ * includeByDefault: false,
21
+ * rules: [{
22
+ * source: "203.0.113.0/24",
23
+ * description: "Office egress",
24
+ * }],
25
+ * });
26
+ * ```
27
+ *
28
+ * ## Import
29
+ *
30
+ * Serverless traffic filters can be imported using the `id`, for example:
31
+ *
32
+ * ```sh
33
+ * $ pulumi import ec:index/serverlessTrafficFilter:ServerlessTrafficFilter id 320b7b540dfc967a7a649c18e2fce4ed
34
+ * ```
35
+ *
36
+ * > **Note on Credentials** The `credentials` attribute (containing `username` and `password`) is only available when the project is first created. When importing an existing project, these credentials will not be available in the Terraform state as the API does not return them on read operations.
37
+ */
38
+ class ServerlessTrafficFilter extends pulumi.CustomResource {
39
+ /**
40
+ * Get an existing ServerlessTrafficFilter resource's state with the given name, ID, and optional extra
41
+ * properties used to qualify the lookup.
42
+ *
43
+ * @param name The _unique_ name of the resulting resource.
44
+ * @param id The _unique_ provider ID of the resource to lookup.
45
+ * @param state Any extra arguments used during the lookup.
46
+ * @param opts Optional settings to control the behavior of the CustomResource.
47
+ */
48
+ static get(name, id, state, opts) {
49
+ return new ServerlessTrafficFilter(name, state, { ...opts, id: id });
50
+ }
51
+ /**
52
+ * Returns true if the given object is an instance of ServerlessTrafficFilter. This is designed to work even
53
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
54
+ */
55
+ static isInstance(obj) {
56
+ if (obj === undefined || obj === null) {
57
+ return false;
58
+ }
59
+ return obj['__pulumiType'] === ServerlessTrafficFilter.__pulumiType;
60
+ }
61
+ constructor(name, argsOrState, opts) {
62
+ let resourceInputs = {};
63
+ opts = opts || {};
64
+ if (opts.id) {
65
+ const state = argsOrState;
66
+ resourceInputs["description"] = state?.description;
67
+ resourceInputs["includeByDefault"] = state?.includeByDefault;
68
+ resourceInputs["name"] = state?.name;
69
+ resourceInputs["region"] = state?.region;
70
+ resourceInputs["rules"] = state?.rules;
71
+ resourceInputs["type"] = state?.type;
72
+ }
73
+ else {
74
+ const args = argsOrState;
75
+ if (args?.region === undefined && !opts.urn) {
76
+ throw new Error("Missing required property 'region'");
77
+ }
78
+ if (args?.type === undefined && !opts.urn) {
79
+ throw new Error("Missing required property 'type'");
80
+ }
81
+ resourceInputs["description"] = args?.description;
82
+ resourceInputs["includeByDefault"] = args?.includeByDefault;
83
+ resourceInputs["name"] = args?.name;
84
+ resourceInputs["region"] = args?.region;
85
+ resourceInputs["rules"] = args?.rules;
86
+ resourceInputs["type"] = args?.type;
87
+ }
88
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
89
+ super(ServerlessTrafficFilter.__pulumiType, name, resourceInputs, opts);
90
+ }
91
+ }
92
+ exports.ServerlessTrafficFilter = ServerlessTrafficFilter;
93
+ /** @internal */
94
+ ServerlessTrafficFilter.__pulumiType = 'ec:index/serverlessTrafficFilter:ServerlessTrafficFilter';
95
+ //# sourceMappingURL=serverlessTrafficFilter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serverlessTrafficFilter.js","sourceRoot":"","sources":["../serverlessTrafficFilter.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9E,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,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAwE,EAAE,IAAmC;QACnI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuD,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAsD,CAAC;YACpE,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;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,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,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,uBAAuB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5E,CAAC;;AAzFL,0DA0FC;AA5EG,gBAAgB;AACO,oCAAY,GAAG,0DAA0D,CAAC"}
package/types/input.d.ts CHANGED
@@ -1010,6 +1010,14 @@ export interface DeploymentTrafficFilterRule {
1010
1010
  * Computed rule ID
1011
1011
  */
1012
1012
  id?: pulumi.Input<string>;
1013
+ /**
1014
+ * The remote cluster ID. Only applicable when the ruleset type is set to `remoteCluster`
1015
+ */
1016
+ remoteClusterId?: pulumi.Input<string>;
1017
+ /**
1018
+ * The remote cluster organization ID. Only applicable when the ruleset type is set to `remoteCluster`
1019
+ */
1020
+ remoteClusterOrgId?: pulumi.Input<string>;
1013
1021
  /**
1014
1022
  * Traffic filter source: IP address, CIDR mask, or VPC endpoint ID, **only required** when the type is not `azurePrivateEndpoint`
1015
1023
  */
@@ -1056,6 +1064,22 @@ export interface ElasticsearchProjectMetadata {
1056
1064
  * Reason why the project was suspended.
1057
1065
  */
1058
1066
  suspendedReason?: pulumi.Input<string>;
1067
+ /**
1068
+ * Tags associated with a project in the form of key-value pairs. Tags are limited to a minimum of 1 and a maximum of 64. A tag key can contain only alphanumerics, underscores, and hyphens.
1069
+ */
1070
+ tags?: pulumi.Input<{
1071
+ [key: string]: pulumi.Input<string>;
1072
+ }>;
1073
+ }
1074
+ export interface ElasticsearchProjectPrivateEndpoints {
1075
+ /**
1076
+ * The PrivateLink endpoint URL to access elasticsearch.
1077
+ */
1078
+ elasticsearch?: pulumi.Input<string>;
1079
+ /**
1080
+ * The PrivateLink endpoint URL to access kibana.
1081
+ */
1082
+ kibana?: pulumi.Input<string>;
1059
1083
  }
1060
1084
  export interface ElasticsearchProjectSearchLake {
1061
1085
  /**
@@ -1256,6 +1280,30 @@ export interface ObservabilityProjectMetadata {
1256
1280
  * Reason why the project was suspended.
1257
1281
  */
1258
1282
  suspendedReason?: pulumi.Input<string>;
1283
+ /**
1284
+ * Tags associated with a project in the form of key-value pairs. Tags are limited to a minimum of 1 and a maximum of 64. A tag key can contain only alphanumerics, underscores, and hyphens.
1285
+ */
1286
+ tags?: pulumi.Input<{
1287
+ [key: string]: pulumi.Input<string>;
1288
+ }>;
1289
+ }
1290
+ export interface ObservabilityProjectPrivateEndpoints {
1291
+ /**
1292
+ * The PrivateLink endpoint URL to access APM.
1293
+ */
1294
+ apm?: pulumi.Input<string>;
1295
+ /**
1296
+ * The PrivateLink endpoint URL to access elasticsearch.
1297
+ */
1298
+ elasticsearch?: pulumi.Input<string>;
1299
+ /**
1300
+ * The PrivateLink endpoint URL to access the Managed OTLP Endpoint.
1301
+ */
1302
+ ingest?: pulumi.Input<string>;
1303
+ /**
1304
+ * The PrivateLink endpoint URL to access kibana.
1305
+ */
1306
+ kibana?: pulumi.Input<string>;
1259
1307
  }
1260
1308
  export interface OrganizationMembers {
1261
1309
  /**
@@ -1408,6 +1456,26 @@ export interface SecurityProjectMetadata {
1408
1456
  * Reason why the project was suspended.
1409
1457
  */
1410
1458
  suspendedReason?: pulumi.Input<string>;
1459
+ /**
1460
+ * Tags associated with a project in the form of key-value pairs. Tags are limited to a minimum of 1 and a maximum of 64. A tag key can contain only alphanumerics, underscores, and hyphens.
1461
+ */
1462
+ tags?: pulumi.Input<{
1463
+ [key: string]: pulumi.Input<string>;
1464
+ }>;
1465
+ }
1466
+ export interface SecurityProjectPrivateEndpoints {
1467
+ /**
1468
+ * The PrivateLink endpoint URL to access elasticsearch.
1469
+ */
1470
+ elasticsearch?: pulumi.Input<string>;
1471
+ /**
1472
+ * The PrivateLink endpoint URL to access the Managed OTLP Endpoint.
1473
+ */
1474
+ ingest?: pulumi.Input<string>;
1475
+ /**
1476
+ * The PrivateLink endpoint URL to access kibana.
1477
+ */
1478
+ kibana?: pulumi.Input<string>;
1411
1479
  }
1412
1480
  export interface SecurityProjectProductType {
1413
1481
  /**
@@ -1419,6 +1487,32 @@ export interface SecurityProjectProductType {
1419
1487
  */
1420
1488
  productTier: pulumi.Input<string>;
1421
1489
  }
1490
+ export interface SecurityProjectSearchLake {
1491
+ /**
1492
+ * Configuration to control the data retention in Elasticsearch data streams.
1493
+ */
1494
+ dataRetention?: pulumi.Input<inputs.SecurityProjectSearchLakeDataRetention>;
1495
+ }
1496
+ export interface SecurityProjectSearchLakeDataRetention {
1497
+ /**
1498
+ * Default number of days during which data remains available in Elasticsearch data streams. Can be set to "null" for unlimited. A default of 396 will be applied if no value is specified on project creation.
1499
+ */
1500
+ defaultRetentionDays?: pulumi.Input<number>;
1501
+ /**
1502
+ * Maximum number of days allowed for retaining data in Elasticsearch data streams. Can be set to "null" for unlimited. A default of 396 will be applied if no value is specified on project creation.
1503
+ */
1504
+ maxRetentionDays?: pulumi.Input<number>;
1505
+ }
1506
+ export interface ServerlessTrafficFilterRule {
1507
+ /**
1508
+ * Description of the rule.
1509
+ */
1510
+ description?: pulumi.Input<string>;
1511
+ /**
1512
+ * Allowed traffic filter source: IP address, CIDR mask, or VPC endpoint ID
1513
+ */
1514
+ source: pulumi.Input<string>;
1515
+ }
1422
1516
  export interface SnapshotRepositoryGeneric {
1423
1517
  /**
1424
1518
  * An arbitrary JSON object containing the repository settings.
package/types/output.d.ts CHANGED
@@ -1009,6 +1009,14 @@ export interface DeploymentTrafficFilterRule {
1009
1009
  * Computed rule ID
1010
1010
  */
1011
1011
  id: string;
1012
+ /**
1013
+ * The remote cluster ID. Only applicable when the ruleset type is set to `remoteCluster`
1014
+ */
1015
+ remoteClusterId?: string;
1016
+ /**
1017
+ * The remote cluster organization ID. Only applicable when the ruleset type is set to `remoteCluster`
1018
+ */
1019
+ remoteClusterOrgId?: string;
1012
1020
  /**
1013
1021
  * Traffic filter source: IP address, CIDR mask, or VPC endpoint ID, **only required** when the type is not `azurePrivateEndpoint`
1014
1022
  */
@@ -1055,6 +1063,22 @@ export interface ElasticsearchProjectMetadata {
1055
1063
  * Reason why the project was suspended.
1056
1064
  */
1057
1065
  suspendedReason: string;
1066
+ /**
1067
+ * Tags associated with a project in the form of key-value pairs. Tags are limited to a minimum of 1 and a maximum of 64. A tag key can contain only alphanumerics, underscores, and hyphens.
1068
+ */
1069
+ tags: {
1070
+ [key: string]: string;
1071
+ };
1072
+ }
1073
+ export interface ElasticsearchProjectPrivateEndpoints {
1074
+ /**
1075
+ * The PrivateLink endpoint URL to access elasticsearch.
1076
+ */
1077
+ elasticsearch: string;
1078
+ /**
1079
+ * The PrivateLink endpoint URL to access kibana.
1080
+ */
1081
+ kibana: string;
1058
1082
  }
1059
1083
  export interface ElasticsearchProjectSearchLake {
1060
1084
  /**
@@ -1887,6 +1911,14 @@ export interface GetTrafficFilterRulesetRule {
1887
1911
  * The ID of the rule
1888
1912
  */
1889
1913
  id: string;
1914
+ /**
1915
+ * The remote cluster ID.
1916
+ */
1917
+ remoteClusterId: string;
1918
+ /**
1919
+ * The remote cluster organization ID.
1920
+ */
1921
+ remoteClusterOrgId: string;
1890
1922
  /**
1891
1923
  * Allowed traffic filter source: IP address, CIDR mask, or VPC endpoint ID.
1892
1924
  */
@@ -1941,6 +1973,30 @@ export interface ObservabilityProjectMetadata {
1941
1973
  * Reason why the project was suspended.
1942
1974
  */
1943
1975
  suspendedReason: string;
1976
+ /**
1977
+ * Tags associated with a project in the form of key-value pairs. Tags are limited to a minimum of 1 and a maximum of 64. A tag key can contain only alphanumerics, underscores, and hyphens.
1978
+ */
1979
+ tags: {
1980
+ [key: string]: string;
1981
+ };
1982
+ }
1983
+ export interface ObservabilityProjectPrivateEndpoints {
1984
+ /**
1985
+ * The PrivateLink endpoint URL to access APM.
1986
+ */
1987
+ apm: string;
1988
+ /**
1989
+ * The PrivateLink endpoint URL to access elasticsearch.
1990
+ */
1991
+ elasticsearch: string;
1992
+ /**
1993
+ * The PrivateLink endpoint URL to access the Managed OTLP Endpoint.
1994
+ */
1995
+ ingest: string;
1996
+ /**
1997
+ * The PrivateLink endpoint URL to access kibana.
1998
+ */
1999
+ kibana: string;
1944
2000
  }
1945
2001
  export interface OrganizationMembers {
1946
2002
  /**
@@ -2093,6 +2149,26 @@ export interface SecurityProjectMetadata {
2093
2149
  * Reason why the project was suspended.
2094
2150
  */
2095
2151
  suspendedReason: string;
2152
+ /**
2153
+ * Tags associated with a project in the form of key-value pairs. Tags are limited to a minimum of 1 and a maximum of 64. A tag key can contain only alphanumerics, underscores, and hyphens.
2154
+ */
2155
+ tags: {
2156
+ [key: string]: string;
2157
+ };
2158
+ }
2159
+ export interface SecurityProjectPrivateEndpoints {
2160
+ /**
2161
+ * The PrivateLink endpoint URL to access elasticsearch.
2162
+ */
2163
+ elasticsearch: string;
2164
+ /**
2165
+ * The PrivateLink endpoint URL to access the Managed OTLP Endpoint.
2166
+ */
2167
+ ingest: string;
2168
+ /**
2169
+ * The PrivateLink endpoint URL to access kibana.
2170
+ */
2171
+ kibana: string;
2096
2172
  }
2097
2173
  export interface SecurityProjectProductType {
2098
2174
  /**
@@ -2104,6 +2180,32 @@ export interface SecurityProjectProductType {
2104
2180
  */
2105
2181
  productTier: string;
2106
2182
  }
2183
+ export interface SecurityProjectSearchLake {
2184
+ /**
2185
+ * Configuration to control the data retention in Elasticsearch data streams.
2186
+ */
2187
+ dataRetention: outputs.SecurityProjectSearchLakeDataRetention;
2188
+ }
2189
+ export interface SecurityProjectSearchLakeDataRetention {
2190
+ /**
2191
+ * Default number of days during which data remains available in Elasticsearch data streams. Can be set to "null" for unlimited. A default of 396 will be applied if no value is specified on project creation.
2192
+ */
2193
+ defaultRetentionDays: number;
2194
+ /**
2195
+ * Maximum number of days allowed for retaining data in Elasticsearch data streams. Can be set to "null" for unlimited. A default of 396 will be applied if no value is specified on project creation.
2196
+ */
2197
+ maxRetentionDays: number;
2198
+ }
2199
+ export interface ServerlessTrafficFilterRule {
2200
+ /**
2201
+ * Description of the rule.
2202
+ */
2203
+ description: string;
2204
+ /**
2205
+ * Allowed traffic filter source: IP address, CIDR mask, or VPC endpoint ID
2206
+ */
2207
+ source: string;
2208
+ }
2107
2209
  export interface SnapshotRepositoryGeneric {
2108
2210
  /**
2109
2211
  * An arbitrary JSON object containing the repository settings.