-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelasticsearchSnapshotLifecycle.ts
More file actions
303 lines (295 loc) · 12.9 KB
/
elasticsearchSnapshotLifecycle.ts
File metadata and controls
303 lines (295 loc) · 12.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
import * as utilities from "./utilities";
export class ElasticsearchSnapshotLifecycle extends pulumi.CustomResource {
/**
* Get an existing ElasticsearchSnapshotLifecycle resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ElasticsearchSnapshotLifecycleState, opts?: pulumi.CustomResourceOptions): ElasticsearchSnapshotLifecycle {
return new ElasticsearchSnapshotLifecycle(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'elasticstack:index/elasticsearchSnapshotLifecycle:ElasticsearchSnapshotLifecycle';
/**
* Returns true if the given object is an instance of ElasticsearchSnapshotLifecycle. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is ElasticsearchSnapshotLifecycle {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === ElasticsearchSnapshotLifecycle.__pulumiType;
}
/**
* Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the
* Elasticsearch connection via the provider configuration instead.
*
* @deprecated Deprecated
*/
declare public readonly elasticsearchConnection: pulumi.Output<outputs.ElasticsearchSnapshotLifecycleElasticsearchConnection | undefined>;
/**
* Determines how wildcard patterns in the `indices` parameter match data streams and indices. Supports comma-separated
* values, such as `closed,hidden`.
*/
declare public readonly expandWildcards: pulumi.Output<string | undefined>;
/**
* Time period after which a snapshot is considered expired and eligible for deletion.
*/
declare public readonly expireAfter: pulumi.Output<string | undefined>;
/**
* Feature states to include in the snapshot.
*/
declare public readonly featureStates: pulumi.Output<string[]>;
/**
* If `false`, the snapshot fails if any data stream or index in indices is missing or closed. If `true`, the snapshot
* ignores missing or closed data streams and indices.
*/
declare public readonly ignoreUnavailable: pulumi.Output<boolean | undefined>;
/**
* If `true`, include the cluster state in the snapshot.
*/
declare public readonly includeGlobalState: pulumi.Output<boolean | undefined>;
/**
* Comma-separated list of data streams and indices to include in the snapshot.
*/
declare public readonly indices: pulumi.Output<string[]>;
/**
* Maximum number of snapshots to retain, even if the snapshots have not yet expired.
*/
declare public readonly maxCount: pulumi.Output<number | undefined>;
/**
* Attaches arbitrary metadata to the snapshot.
*/
declare public readonly metadata: pulumi.Output<string>;
/**
* Minimum number of snapshots to retain, even if the snapshots have expired.
*/
declare public readonly minCount: pulumi.Output<number | undefined>;
/**
* ID for the snapshot lifecycle policy you want to create or update.
*/
declare public readonly name: pulumi.Output<string>;
/**
* If `false`, the entire snapshot will fail if one or more indices included in the snapshot do not have all primary shards
* available.
*/
declare public readonly partial: pulumi.Output<boolean | undefined>;
/**
* Repository used to store snapshots created by this policy.
*/
declare public readonly repository: pulumi.Output<string>;
/**
* Periodic or absolute schedule at which the policy creates snapshots.
*/
declare public readonly schedule: pulumi.Output<string>;
/**
* Name automatically assigned to each snapshot created by the policy.
*/
declare public readonly snapshotName: pulumi.Output<string | undefined>;
/**
* Create a ElasticsearchSnapshotLifecycle resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ElasticsearchSnapshotLifecycleArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: ElasticsearchSnapshotLifecycleArgs | ElasticsearchSnapshotLifecycleState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as ElasticsearchSnapshotLifecycleState | undefined;
resourceInputs["elasticsearchConnection"] = state?.elasticsearchConnection;
resourceInputs["expandWildcards"] = state?.expandWildcards;
resourceInputs["expireAfter"] = state?.expireAfter;
resourceInputs["featureStates"] = state?.featureStates;
resourceInputs["ignoreUnavailable"] = state?.ignoreUnavailable;
resourceInputs["includeGlobalState"] = state?.includeGlobalState;
resourceInputs["indices"] = state?.indices;
resourceInputs["maxCount"] = state?.maxCount;
resourceInputs["metadata"] = state?.metadata;
resourceInputs["minCount"] = state?.minCount;
resourceInputs["name"] = state?.name;
resourceInputs["partial"] = state?.partial;
resourceInputs["repository"] = state?.repository;
resourceInputs["schedule"] = state?.schedule;
resourceInputs["snapshotName"] = state?.snapshotName;
} else {
const args = argsOrState as ElasticsearchSnapshotLifecycleArgs | undefined;
if (args?.repository === undefined && !opts.urn) {
throw new Error("Missing required property 'repository'");
}
if (args?.schedule === undefined && !opts.urn) {
throw new Error("Missing required property 'schedule'");
}
resourceInputs["elasticsearchConnection"] = args?.elasticsearchConnection;
resourceInputs["expandWildcards"] = args?.expandWildcards;
resourceInputs["expireAfter"] = args?.expireAfter;
resourceInputs["featureStates"] = args?.featureStates;
resourceInputs["ignoreUnavailable"] = args?.ignoreUnavailable;
resourceInputs["includeGlobalState"] = args?.includeGlobalState;
resourceInputs["indices"] = args?.indices;
resourceInputs["maxCount"] = args?.maxCount;
resourceInputs["metadata"] = args?.metadata;
resourceInputs["minCount"] = args?.minCount;
resourceInputs["name"] = args?.name;
resourceInputs["partial"] = args?.partial;
resourceInputs["repository"] = args?.repository;
resourceInputs["schedule"] = args?.schedule;
resourceInputs["snapshotName"] = args?.snapshotName;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ElasticsearchSnapshotLifecycle.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering ElasticsearchSnapshotLifecycle resources.
*/
export interface ElasticsearchSnapshotLifecycleState {
/**
* Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the
* Elasticsearch connection via the provider configuration instead.
*
* @deprecated Deprecated
*/
elasticsearchConnection?: pulumi.Input<inputs.ElasticsearchSnapshotLifecycleElasticsearchConnection>;
/**
* Determines how wildcard patterns in the `indices` parameter match data streams and indices. Supports comma-separated
* values, such as `closed,hidden`.
*/
expandWildcards?: pulumi.Input<string>;
/**
* Time period after which a snapshot is considered expired and eligible for deletion.
*/
expireAfter?: pulumi.Input<string>;
/**
* Feature states to include in the snapshot.
*/
featureStates?: pulumi.Input<pulumi.Input<string>[]>;
/**
* If `false`, the snapshot fails if any data stream or index in indices is missing or closed. If `true`, the snapshot
* ignores missing or closed data streams and indices.
*/
ignoreUnavailable?: pulumi.Input<boolean>;
/**
* If `true`, include the cluster state in the snapshot.
*/
includeGlobalState?: pulumi.Input<boolean>;
/**
* Comma-separated list of data streams and indices to include in the snapshot.
*/
indices?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Maximum number of snapshots to retain, even if the snapshots have not yet expired.
*/
maxCount?: pulumi.Input<number>;
/**
* Attaches arbitrary metadata to the snapshot.
*/
metadata?: pulumi.Input<string>;
/**
* Minimum number of snapshots to retain, even if the snapshots have expired.
*/
minCount?: pulumi.Input<number>;
/**
* ID for the snapshot lifecycle policy you want to create or update.
*/
name?: pulumi.Input<string>;
/**
* If `false`, the entire snapshot will fail if one or more indices included in the snapshot do not have all primary shards
* available.
*/
partial?: pulumi.Input<boolean>;
/**
* Repository used to store snapshots created by this policy.
*/
repository?: pulumi.Input<string>;
/**
* Periodic or absolute schedule at which the policy creates snapshots.
*/
schedule?: pulumi.Input<string>;
/**
* Name automatically assigned to each snapshot created by the policy.
*/
snapshotName?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ElasticsearchSnapshotLifecycle resource.
*/
export interface ElasticsearchSnapshotLifecycleArgs {
/**
* Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the
* Elasticsearch connection via the provider configuration instead.
*
* @deprecated Deprecated
*/
elasticsearchConnection?: pulumi.Input<inputs.ElasticsearchSnapshotLifecycleElasticsearchConnection>;
/**
* Determines how wildcard patterns in the `indices` parameter match data streams and indices. Supports comma-separated
* values, such as `closed,hidden`.
*/
expandWildcards?: pulumi.Input<string>;
/**
* Time period after which a snapshot is considered expired and eligible for deletion.
*/
expireAfter?: pulumi.Input<string>;
/**
* Feature states to include in the snapshot.
*/
featureStates?: pulumi.Input<pulumi.Input<string>[]>;
/**
* If `false`, the snapshot fails if any data stream or index in indices is missing or closed. If `true`, the snapshot
* ignores missing or closed data streams and indices.
*/
ignoreUnavailable?: pulumi.Input<boolean>;
/**
* If `true`, include the cluster state in the snapshot.
*/
includeGlobalState?: pulumi.Input<boolean>;
/**
* Comma-separated list of data streams and indices to include in the snapshot.
*/
indices?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Maximum number of snapshots to retain, even if the snapshots have not yet expired.
*/
maxCount?: pulumi.Input<number>;
/**
* Attaches arbitrary metadata to the snapshot.
*/
metadata?: pulumi.Input<string>;
/**
* Minimum number of snapshots to retain, even if the snapshots have expired.
*/
minCount?: pulumi.Input<number>;
/**
* ID for the snapshot lifecycle policy you want to create or update.
*/
name?: pulumi.Input<string>;
/**
* If `false`, the entire snapshot will fail if one or more indices included in the snapshot do not have all primary shards
* available.
*/
partial?: pulumi.Input<boolean>;
/**
* Repository used to store snapshots created by this policy.
*/
repository: pulumi.Input<string>;
/**
* Periodic or absolute schedule at which the policy creates snapshots.
*/
schedule: pulumi.Input<string>;
/**
* Name automatically assigned to each snapshot created by the policy.
*/
snapshotName?: pulumi.Input<string>;
}