-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfleetIntegrationPolicy.ts
More file actions
273 lines (265 loc) · 10.7 KB
/
Copy pathfleetIntegrationPolicy.ts
File metadata and controls
273 lines (265 loc) · 10.7 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
// *** 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 FleetIntegrationPolicy extends pulumi.CustomResource {
/**
* Get an existing FleetIntegrationPolicy 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?: FleetIntegrationPolicyState, opts?: pulumi.CustomResourceOptions): FleetIntegrationPolicy {
return new FleetIntegrationPolicy(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'elasticstack:index/fleetIntegrationPolicy:FleetIntegrationPolicy';
/**
* Returns true if the given object is an instance of FleetIntegrationPolicy. 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 FleetIntegrationPolicy {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === FleetIntegrationPolicy.__pulumiType;
}
/**
* ID of the agent policy.
*/
declare public readonly agentPolicyId: pulumi.Output<string | undefined>;
/**
* List of agent policy IDs.
*/
declare public readonly agentPolicyIds: pulumi.Output<string[] | undefined>;
/**
* The description of the integration policy.
*/
declare public readonly description: pulumi.Output<string | undefined>;
/**
* Enable the integration policy.
*/
declare public readonly enabled: pulumi.Output<boolean>;
/**
* Force operations, such as creation and deletion, to occur.
*/
declare public readonly force: pulumi.Output<boolean | undefined>;
/**
* Integration inputs mapped by input ID.
*/
declare public readonly inputs: pulumi.Output<{[key: string]: outputs.FleetIntegrationPolicyInputs}>;
/**
* The name of the integration package.
*/
declare public readonly integrationName: pulumi.Output<string>;
/**
* The version of the integration package.
*/
declare public readonly integrationVersion: pulumi.Output<string>;
/**
* The name of the integration policy.
*/
declare public readonly name: pulumi.Output<string>;
/**
* The namespace of the integration policy.
*/
declare public readonly namespace: pulumi.Output<string>;
/**
* The ID of the output to send data to. When not specified, the default output of the agent policy will be used.
*/
declare public readonly outputId: pulumi.Output<string | undefined>;
/**
* Unique identifier of the integration policy.
*/
declare public readonly policyId: pulumi.Output<string>;
/**
* The Kibana space IDs where this integration policy is available. When set, must match the space_ids of the referenced
* agent policy. If not set, will be inherited from the agent policy. Note: The order of space IDs does not matter as this
* is a set.
*/
declare public readonly spaceIds: pulumi.Output<string[]>;
declare public readonly varsJson: pulumi.Output<string>;
/**
* Create a FleetIntegrationPolicy 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: FleetIntegrationPolicyArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: FleetIntegrationPolicyArgs | FleetIntegrationPolicyState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as FleetIntegrationPolicyState | undefined;
resourceInputs["agentPolicyId"] = state?.agentPolicyId;
resourceInputs["agentPolicyIds"] = state?.agentPolicyIds;
resourceInputs["description"] = state?.description;
resourceInputs["enabled"] = state?.enabled;
resourceInputs["force"] = state?.force;
resourceInputs["inputs"] = state?.inputs;
resourceInputs["integrationName"] = state?.integrationName;
resourceInputs["integrationVersion"] = state?.integrationVersion;
resourceInputs["name"] = state?.name;
resourceInputs["namespace"] = state?.namespace;
resourceInputs["outputId"] = state?.outputId;
resourceInputs["policyId"] = state?.policyId;
resourceInputs["spaceIds"] = state?.spaceIds;
resourceInputs["varsJson"] = state?.varsJson;
} else {
const args = argsOrState as FleetIntegrationPolicyArgs | undefined;
if (args?.integrationName === undefined && !opts.urn) {
throw new Error("Missing required property 'integrationName'");
}
if (args?.integrationVersion === undefined && !opts.urn) {
throw new Error("Missing required property 'integrationVersion'");
}
if (args?.namespace === undefined && !opts.urn) {
throw new Error("Missing required property 'namespace'");
}
resourceInputs["agentPolicyId"] = args?.agentPolicyId;
resourceInputs["agentPolicyIds"] = args?.agentPolicyIds;
resourceInputs["description"] = args?.description;
resourceInputs["enabled"] = args?.enabled;
resourceInputs["force"] = args?.force;
resourceInputs["inputs"] = args?.inputs;
resourceInputs["integrationName"] = args?.integrationName;
resourceInputs["integrationVersion"] = args?.integrationVersion;
resourceInputs["name"] = args?.name;
resourceInputs["namespace"] = args?.namespace;
resourceInputs["outputId"] = args?.outputId;
resourceInputs["policyId"] = args?.policyId;
resourceInputs["spaceIds"] = args?.spaceIds;
resourceInputs["varsJson"] = args?.varsJson ? pulumi.secret(args.varsJson) : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["varsJson"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(FleetIntegrationPolicy.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering FleetIntegrationPolicy resources.
*/
export interface FleetIntegrationPolicyState {
/**
* ID of the agent policy.
*/
agentPolicyId?: pulumi.Input<string>;
/**
* List of agent policy IDs.
*/
agentPolicyIds?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The description of the integration policy.
*/
description?: pulumi.Input<string>;
/**
* Enable the integration policy.
*/
enabled?: pulumi.Input<boolean>;
/**
* Force operations, such as creation and deletion, to occur.
*/
force?: pulumi.Input<boolean>;
/**
* Integration inputs mapped by input ID.
*/
inputs?: pulumi.Input<{[key: string]: pulumi.Input<inputs.FleetIntegrationPolicyInputs>}>;
/**
* The name of the integration package.
*/
integrationName?: pulumi.Input<string>;
/**
* The version of the integration package.
*/
integrationVersion?: pulumi.Input<string>;
/**
* The name of the integration policy.
*/
name?: pulumi.Input<string>;
/**
* The namespace of the integration policy.
*/
namespace?: pulumi.Input<string>;
/**
* The ID of the output to send data to. When not specified, the default output of the agent policy will be used.
*/
outputId?: pulumi.Input<string>;
/**
* Unique identifier of the integration policy.
*/
policyId?: pulumi.Input<string>;
/**
* The Kibana space IDs where this integration policy is available. When set, must match the space_ids of the referenced
* agent policy. If not set, will be inherited from the agent policy. Note: The order of space IDs does not matter as this
* is a set.
*/
spaceIds?: pulumi.Input<pulumi.Input<string>[]>;
varsJson?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a FleetIntegrationPolicy resource.
*/
export interface FleetIntegrationPolicyArgs {
/**
* ID of the agent policy.
*/
agentPolicyId?: pulumi.Input<string>;
/**
* List of agent policy IDs.
*/
agentPolicyIds?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The description of the integration policy.
*/
description?: pulumi.Input<string>;
/**
* Enable the integration policy.
*/
enabled?: pulumi.Input<boolean>;
/**
* Force operations, such as creation and deletion, to occur.
*/
force?: pulumi.Input<boolean>;
/**
* Integration inputs mapped by input ID.
*/
inputs?: pulumi.Input<{[key: string]: pulumi.Input<inputs.FleetIntegrationPolicyInputs>}>;
/**
* The name of the integration package.
*/
integrationName: pulumi.Input<string>;
/**
* The version of the integration package.
*/
integrationVersion: pulumi.Input<string>;
/**
* The name of the integration policy.
*/
name?: pulumi.Input<string>;
/**
* The namespace of the integration policy.
*/
namespace: pulumi.Input<string>;
/**
* The ID of the output to send data to. When not specified, the default output of the agent policy will be used.
*/
outputId?: pulumi.Input<string>;
/**
* Unique identifier of the integration policy.
*/
policyId?: pulumi.Input<string>;
/**
* The Kibana space IDs where this integration policy is available. When set, must match the space_ids of the referenced
* agent policy. If not set, will be inherited from the agent policy. Note: The order of space IDs does not matter as this
* is a set.
*/
spaceIds?: pulumi.Input<pulumi.Input<string>[]>;
varsJson?: pulumi.Input<string>;
}