-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelasticsearchWatch.ts
More file actions
202 lines (194 loc) · 7.8 KB
/
elasticsearchWatch.ts
File metadata and controls
202 lines (194 loc) · 7.8 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
// *** 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 utilities from "./utilities";
export class ElasticsearchWatch extends pulumi.CustomResource {
/**
* Get an existing ElasticsearchWatch 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?: ElasticsearchWatchState, opts?: pulumi.CustomResourceOptions): ElasticsearchWatch {
return new ElasticsearchWatch(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'elasticstack:index/elasticsearchWatch:ElasticsearchWatch';
/**
* Returns true if the given object is an instance of ElasticsearchWatch. 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 ElasticsearchWatch {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === ElasticsearchWatch.__pulumiType;
}
/**
* The list of actions that will be run if the condition matches.
*/
declare public readonly actions: pulumi.Output<string | undefined>;
/**
* Defines whether the watch is active or inactive by default. The default value is true, which means the watch is active
* by default.
*/
declare public readonly active: pulumi.Output<boolean | undefined>;
/**
* The condition that defines if the actions should be run.
*/
declare public readonly condition: pulumi.Output<string | undefined>;
/**
* The input that defines the input that loads the data for the watch.
*/
declare public readonly input: pulumi.Output<string | undefined>;
/**
* Metadata json that will be copied into the history entries.
*/
declare public readonly metadata: pulumi.Output<string | undefined>;
/**
* Minimum time in milliseconds between actions being run. Defaults to 5000.
*/
declare public readonly throttlePeriodInMillis: pulumi.Output<number | undefined>;
/**
* Processes the watch payload to prepare it for the watch actions.
*/
declare public readonly transform: pulumi.Output<string | undefined>;
/**
* The trigger that defines when the watch should run.
*/
declare public readonly trigger: pulumi.Output<string>;
/**
* Identifier for the watch.
*/
declare public readonly watchId: pulumi.Output<string>;
/**
* Create a ElasticsearchWatch 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: ElasticsearchWatchArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: ElasticsearchWatchArgs | ElasticsearchWatchState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as ElasticsearchWatchState | undefined;
resourceInputs["actions"] = state?.actions;
resourceInputs["active"] = state?.active;
resourceInputs["condition"] = state?.condition;
resourceInputs["input"] = state?.input;
resourceInputs["metadata"] = state?.metadata;
resourceInputs["throttlePeriodInMillis"] = state?.throttlePeriodInMillis;
resourceInputs["transform"] = state?.transform;
resourceInputs["trigger"] = state?.trigger;
resourceInputs["watchId"] = state?.watchId;
} else {
const args = argsOrState as ElasticsearchWatchArgs | undefined;
if (args?.trigger === undefined && !opts.urn) {
throw new Error("Missing required property 'trigger'");
}
if (args?.watchId === undefined && !opts.urn) {
throw new Error("Missing required property 'watchId'");
}
resourceInputs["actions"] = args?.actions;
resourceInputs["active"] = args?.active;
resourceInputs["condition"] = args?.condition;
resourceInputs["input"] = args?.input;
resourceInputs["metadata"] = args?.metadata;
resourceInputs["throttlePeriodInMillis"] = args?.throttlePeriodInMillis;
resourceInputs["transform"] = args?.transform;
resourceInputs["trigger"] = args?.trigger;
resourceInputs["watchId"] = args?.watchId;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ElasticsearchWatch.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering ElasticsearchWatch resources.
*/
export interface ElasticsearchWatchState {
/**
* The list of actions that will be run if the condition matches.
*/
actions?: pulumi.Input<string>;
/**
* Defines whether the watch is active or inactive by default. The default value is true, which means the watch is active
* by default.
*/
active?: pulumi.Input<boolean>;
/**
* The condition that defines if the actions should be run.
*/
condition?: pulumi.Input<string>;
/**
* The input that defines the input that loads the data for the watch.
*/
input?: pulumi.Input<string>;
/**
* Metadata json that will be copied into the history entries.
*/
metadata?: pulumi.Input<string>;
/**
* Minimum time in milliseconds between actions being run. Defaults to 5000.
*/
throttlePeriodInMillis?: pulumi.Input<number>;
/**
* Processes the watch payload to prepare it for the watch actions.
*/
transform?: pulumi.Input<string>;
/**
* The trigger that defines when the watch should run.
*/
trigger?: pulumi.Input<string>;
/**
* Identifier for the watch.
*/
watchId?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ElasticsearchWatch resource.
*/
export interface ElasticsearchWatchArgs {
/**
* The list of actions that will be run if the condition matches.
*/
actions?: pulumi.Input<string>;
/**
* Defines whether the watch is active or inactive by default. The default value is true, which means the watch is active
* by default.
*/
active?: pulumi.Input<boolean>;
/**
* The condition that defines if the actions should be run.
*/
condition?: pulumi.Input<string>;
/**
* The input that defines the input that loads the data for the watch.
*/
input?: pulumi.Input<string>;
/**
* Metadata json that will be copied into the history entries.
*/
metadata?: pulumi.Input<string>;
/**
* Minimum time in milliseconds between actions being run. Defaults to 5000.
*/
throttlePeriodInMillis?: pulumi.Input<number>;
/**
* Processes the watch payload to prepare it for the watch actions.
*/
transform?: pulumi.Input<string>;
/**
* The trigger that defines when the watch should run.
*/
trigger: pulumi.Input<string>;
/**
* Identifier for the watch.
*/
watchId: pulumi.Input<string>;
}