-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfleetIntegration.ts
More file actions
187 lines (179 loc) · 7.33 KB
/
Copy pathfleetIntegration.ts
File metadata and controls
187 lines (179 loc) · 7.33 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
// *** 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 FleetIntegration extends pulumi.CustomResource {
/**
* Get an existing FleetIntegration 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?: FleetIntegrationState, opts?: pulumi.CustomResourceOptions): FleetIntegration {
return new FleetIntegration(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'elasticstack:index/fleetIntegration:FleetIntegration';
/**
* Returns true if the given object is an instance of FleetIntegration. 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 FleetIntegration {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === FleetIntegration.__pulumiType;
}
/**
* Set to true to force the requested action.
*/
declare public readonly force: pulumi.Output<boolean | undefined>;
/**
* Set to true to ignore constraint errors during package installation.
*/
declare public readonly ignoreConstraints: pulumi.Output<boolean | undefined>;
/**
* Set to true to ignore mapping update errors during package installation.
*/
declare public readonly ignoreMappingUpdateErrors: pulumi.Output<boolean | undefined>;
/**
* The integration package name.
*/
declare public readonly name: pulumi.Output<string>;
/**
* Set to true to allow installation of prerelease (beta, non-GA) packages.
*/
declare public readonly prerelease: pulumi.Output<boolean | undefined>;
/**
* Set to true to skip data stream rollover during package installation.
*/
declare public readonly skipDataStreamRollover: pulumi.Output<boolean | undefined>;
declare public readonly skipDestroy: pulumi.Output<boolean | undefined>;
/**
* The Kibana space ID where this integration package should be installed.
*/
declare public readonly spaceId: pulumi.Output<string>;
/**
* The integration package version.
*/
declare public readonly version: pulumi.Output<string>;
/**
* Create a FleetIntegration 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: FleetIntegrationArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: FleetIntegrationArgs | FleetIntegrationState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as FleetIntegrationState | undefined;
resourceInputs["force"] = state?.force;
resourceInputs["ignoreConstraints"] = state?.ignoreConstraints;
resourceInputs["ignoreMappingUpdateErrors"] = state?.ignoreMappingUpdateErrors;
resourceInputs["name"] = state?.name;
resourceInputs["prerelease"] = state?.prerelease;
resourceInputs["skipDataStreamRollover"] = state?.skipDataStreamRollover;
resourceInputs["skipDestroy"] = state?.skipDestroy;
resourceInputs["spaceId"] = state?.spaceId;
resourceInputs["version"] = state?.version;
} else {
const args = argsOrState as FleetIntegrationArgs | undefined;
if (args?.version === undefined && !opts.urn) {
throw new Error("Missing required property 'version'");
}
resourceInputs["force"] = args?.force;
resourceInputs["ignoreConstraints"] = args?.ignoreConstraints;
resourceInputs["ignoreMappingUpdateErrors"] = args?.ignoreMappingUpdateErrors;
resourceInputs["name"] = args?.name;
resourceInputs["prerelease"] = args?.prerelease;
resourceInputs["skipDataStreamRollover"] = args?.skipDataStreamRollover;
resourceInputs["skipDestroy"] = args?.skipDestroy;
resourceInputs["spaceId"] = args?.spaceId;
resourceInputs["version"] = args?.version;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(FleetIntegration.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering FleetIntegration resources.
*/
export interface FleetIntegrationState {
/**
* Set to true to force the requested action.
*/
force?: pulumi.Input<boolean>;
/**
* Set to true to ignore constraint errors during package installation.
*/
ignoreConstraints?: pulumi.Input<boolean>;
/**
* Set to true to ignore mapping update errors during package installation.
*/
ignoreMappingUpdateErrors?: pulumi.Input<boolean>;
/**
* The integration package name.
*/
name?: pulumi.Input<string>;
/**
* Set to true to allow installation of prerelease (beta, non-GA) packages.
*/
prerelease?: pulumi.Input<boolean>;
/**
* Set to true to skip data stream rollover during package installation.
*/
skipDataStreamRollover?: pulumi.Input<boolean>;
skipDestroy?: pulumi.Input<boolean>;
/**
* The Kibana space ID where this integration package should be installed.
*/
spaceId?: pulumi.Input<string>;
/**
* The integration package version.
*/
version?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a FleetIntegration resource.
*/
export interface FleetIntegrationArgs {
/**
* Set to true to force the requested action.
*/
force?: pulumi.Input<boolean>;
/**
* Set to true to ignore constraint errors during package installation.
*/
ignoreConstraints?: pulumi.Input<boolean>;
/**
* Set to true to ignore mapping update errors during package installation.
*/
ignoreMappingUpdateErrors?: pulumi.Input<boolean>;
/**
* The integration package name.
*/
name?: pulumi.Input<string>;
/**
* Set to true to allow installation of prerelease (beta, non-GA) packages.
*/
prerelease?: pulumi.Input<boolean>;
/**
* Set to true to skip data stream rollover during package installation.
*/
skipDataStreamRollover?: pulumi.Input<boolean>;
skipDestroy?: pulumi.Input<boolean>;
/**
* The Kibana space ID where this integration package should be installed.
*/
spaceId?: pulumi.Input<string>;
/**
* The integration package version.
*/
version: pulumi.Input<string>;
}