@pulumi/splunk 1.3.0-alpha.1706749838 → 1.3.0-alpha.1706831166
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.
- package/package.json +1 -1
- package/types/input.d.ts +594 -0
- package/types/output.d.ts +594 -0
package/types/input.d.ts
CHANGED
|
@@ -1,235 +1,829 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
export interface AppsLocalAcl {
|
|
3
|
+
/**
|
|
4
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
5
|
+
*/
|
|
3
6
|
app?: pulumi.Input<string>;
|
|
7
|
+
/**
|
|
8
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
9
|
+
*/
|
|
4
10
|
canChangePerms?: pulumi.Input<boolean>;
|
|
11
|
+
/**
|
|
12
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
13
|
+
*/
|
|
5
14
|
canShareApp?: pulumi.Input<boolean>;
|
|
15
|
+
/**
|
|
16
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
17
|
+
*/
|
|
6
18
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
19
|
+
/**
|
|
20
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
21
|
+
*/
|
|
7
22
|
canShareUser?: pulumi.Input<boolean>;
|
|
23
|
+
/**
|
|
24
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
25
|
+
*/
|
|
8
26
|
canWrite?: pulumi.Input<boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
29
|
+
*/
|
|
9
30
|
owner?: pulumi.Input<string>;
|
|
31
|
+
/**
|
|
32
|
+
* Properties that indicate resource read permissions.
|
|
33
|
+
*/
|
|
10
34
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
35
|
+
/**
|
|
36
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
37
|
+
*/
|
|
11
38
|
removable?: pulumi.Input<boolean>;
|
|
39
|
+
/**
|
|
40
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
41
|
+
*/
|
|
12
42
|
sharing?: pulumi.Input<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Properties that indicate write permissions of the resource.
|
|
45
|
+
*/
|
|
13
46
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14
47
|
}
|
|
15
48
|
export interface ConfigsConfAcl {
|
|
49
|
+
/**
|
|
50
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
51
|
+
*/
|
|
16
52
|
app?: pulumi.Input<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
55
|
+
*/
|
|
17
56
|
canChangePerms?: pulumi.Input<boolean>;
|
|
57
|
+
/**
|
|
58
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
59
|
+
*/
|
|
18
60
|
canShareApp?: pulumi.Input<boolean>;
|
|
61
|
+
/**
|
|
62
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
63
|
+
*/
|
|
19
64
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
65
|
+
/**
|
|
66
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
67
|
+
*/
|
|
20
68
|
canShareUser?: pulumi.Input<boolean>;
|
|
69
|
+
/**
|
|
70
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
71
|
+
*/
|
|
21
72
|
canWrite?: pulumi.Input<boolean>;
|
|
73
|
+
/**
|
|
74
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
75
|
+
*/
|
|
22
76
|
owner?: pulumi.Input<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Properties that indicate resource read permissions.
|
|
79
|
+
*/
|
|
23
80
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
81
|
+
/**
|
|
82
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
83
|
+
*/
|
|
24
84
|
removable?: pulumi.Input<boolean>;
|
|
85
|
+
/**
|
|
86
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
87
|
+
*/
|
|
25
88
|
sharing?: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* Properties that indicate write permissions of the resource.
|
|
91
|
+
*/
|
|
26
92
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
27
93
|
}
|
|
28
94
|
export interface DataUiViewsAcl {
|
|
95
|
+
/**
|
|
96
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
97
|
+
*/
|
|
29
98
|
app?: pulumi.Input<string>;
|
|
99
|
+
/**
|
|
100
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
101
|
+
*/
|
|
30
102
|
canChangePerms?: pulumi.Input<boolean>;
|
|
103
|
+
/**
|
|
104
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
105
|
+
*/
|
|
31
106
|
canShareApp?: pulumi.Input<boolean>;
|
|
107
|
+
/**
|
|
108
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
109
|
+
*/
|
|
32
110
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
111
|
+
/**
|
|
112
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
113
|
+
*/
|
|
33
114
|
canShareUser?: pulumi.Input<boolean>;
|
|
115
|
+
/**
|
|
116
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
117
|
+
*/
|
|
34
118
|
canWrite?: pulumi.Input<boolean>;
|
|
119
|
+
/**
|
|
120
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
121
|
+
*/
|
|
35
122
|
owner?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* Properties that indicate resource read permissions.
|
|
125
|
+
*/
|
|
36
126
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
127
|
+
/**
|
|
128
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
129
|
+
*/
|
|
37
130
|
removable?: pulumi.Input<boolean>;
|
|
131
|
+
/**
|
|
132
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
133
|
+
*/
|
|
38
134
|
sharing?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Properties that indicate write permissions of the resource.
|
|
137
|
+
*/
|
|
39
138
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
40
139
|
}
|
|
41
140
|
export interface GenericAclAcl {
|
|
141
|
+
/**
|
|
142
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
143
|
+
*/
|
|
42
144
|
app?: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
147
|
+
*/
|
|
43
148
|
canChangePerms?: pulumi.Input<boolean>;
|
|
149
|
+
/**
|
|
150
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
151
|
+
*/
|
|
44
152
|
canShareApp?: pulumi.Input<boolean>;
|
|
153
|
+
/**
|
|
154
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
155
|
+
*/
|
|
45
156
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
157
|
+
/**
|
|
158
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
159
|
+
*/
|
|
46
160
|
canShareUser?: pulumi.Input<boolean>;
|
|
161
|
+
/**
|
|
162
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
163
|
+
*/
|
|
47
164
|
canWrite?: pulumi.Input<boolean>;
|
|
165
|
+
/**
|
|
166
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
167
|
+
*/
|
|
48
168
|
owner?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Properties that indicate resource read permissions.
|
|
171
|
+
*/
|
|
49
172
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
173
|
+
/**
|
|
174
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
175
|
+
*/
|
|
50
176
|
removable?: pulumi.Input<boolean>;
|
|
177
|
+
/**
|
|
178
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
179
|
+
*/
|
|
51
180
|
sharing?: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* Properties that indicate write permissions of the resource.
|
|
183
|
+
*/
|
|
52
184
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
53
185
|
}
|
|
54
186
|
export interface IndexesAcl {
|
|
187
|
+
/**
|
|
188
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
189
|
+
*/
|
|
55
190
|
app?: pulumi.Input<string>;
|
|
191
|
+
/**
|
|
192
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
193
|
+
*/
|
|
56
194
|
canChangePerms?: pulumi.Input<boolean>;
|
|
195
|
+
/**
|
|
196
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
197
|
+
*/
|
|
57
198
|
canShareApp?: pulumi.Input<boolean>;
|
|
199
|
+
/**
|
|
200
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
201
|
+
*/
|
|
58
202
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
203
|
+
/**
|
|
204
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
205
|
+
*/
|
|
59
206
|
canShareUser?: pulumi.Input<boolean>;
|
|
207
|
+
/**
|
|
208
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
209
|
+
*/
|
|
60
210
|
canWrite?: pulumi.Input<boolean>;
|
|
211
|
+
/**
|
|
212
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
213
|
+
*/
|
|
61
214
|
owner?: pulumi.Input<string>;
|
|
215
|
+
/**
|
|
216
|
+
* Properties that indicate resource read permissions.
|
|
217
|
+
*/
|
|
62
218
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
|
+
/**
|
|
220
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
221
|
+
*/
|
|
63
222
|
removable?: pulumi.Input<boolean>;
|
|
223
|
+
/**
|
|
224
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
225
|
+
*/
|
|
64
226
|
sharing?: pulumi.Input<string>;
|
|
227
|
+
/**
|
|
228
|
+
* Properties that indicate write permissions of the resource.
|
|
229
|
+
*/
|
|
65
230
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
66
231
|
}
|
|
67
232
|
export interface InputsHttpEventCollectorAcl {
|
|
233
|
+
/**
|
|
234
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
235
|
+
*/
|
|
68
236
|
app?: pulumi.Input<string>;
|
|
237
|
+
/**
|
|
238
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
239
|
+
*/
|
|
69
240
|
canChangePerms?: pulumi.Input<boolean>;
|
|
241
|
+
/**
|
|
242
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
243
|
+
*/
|
|
70
244
|
canShareApp?: pulumi.Input<boolean>;
|
|
245
|
+
/**
|
|
246
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
247
|
+
*/
|
|
71
248
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
249
|
+
/**
|
|
250
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
251
|
+
*/
|
|
72
252
|
canShareUser?: pulumi.Input<boolean>;
|
|
253
|
+
/**
|
|
254
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
255
|
+
*/
|
|
73
256
|
canWrite?: pulumi.Input<boolean>;
|
|
257
|
+
/**
|
|
258
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
259
|
+
*/
|
|
74
260
|
owner?: pulumi.Input<string>;
|
|
261
|
+
/**
|
|
262
|
+
* Properties that indicate resource read permissions.
|
|
263
|
+
*/
|
|
75
264
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
265
|
+
/**
|
|
266
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
267
|
+
*/
|
|
76
268
|
removable?: pulumi.Input<boolean>;
|
|
269
|
+
/**
|
|
270
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
271
|
+
*/
|
|
77
272
|
sharing?: pulumi.Input<string>;
|
|
273
|
+
/**
|
|
274
|
+
* Properties that indicate write permissions of the resource.
|
|
275
|
+
*/
|
|
78
276
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
79
277
|
}
|
|
80
278
|
export interface InputsMonitorAcl {
|
|
279
|
+
/**
|
|
280
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
281
|
+
*/
|
|
81
282
|
app?: pulumi.Input<string>;
|
|
283
|
+
/**
|
|
284
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
285
|
+
*/
|
|
82
286
|
canChangePerms?: pulumi.Input<boolean>;
|
|
287
|
+
/**
|
|
288
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
289
|
+
*/
|
|
83
290
|
canShareApp?: pulumi.Input<boolean>;
|
|
291
|
+
/**
|
|
292
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
293
|
+
*/
|
|
84
294
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
295
|
+
/**
|
|
296
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
297
|
+
*/
|
|
85
298
|
canShareUser?: pulumi.Input<boolean>;
|
|
299
|
+
/**
|
|
300
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
301
|
+
*/
|
|
86
302
|
canWrite?: pulumi.Input<boolean>;
|
|
303
|
+
/**
|
|
304
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
305
|
+
*/
|
|
87
306
|
owner?: pulumi.Input<string>;
|
|
307
|
+
/**
|
|
308
|
+
* Properties that indicate resource read permissions.
|
|
309
|
+
*/
|
|
88
310
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
311
|
+
/**
|
|
312
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
313
|
+
*/
|
|
89
314
|
removable?: pulumi.Input<boolean>;
|
|
315
|
+
/**
|
|
316
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
317
|
+
*/
|
|
90
318
|
sharing?: pulumi.Input<string>;
|
|
319
|
+
/**
|
|
320
|
+
* Properties that indicate write permissions of the resource.
|
|
321
|
+
*/
|
|
91
322
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
92
323
|
}
|
|
93
324
|
export interface InputsScriptAcl {
|
|
325
|
+
/**
|
|
326
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
327
|
+
*/
|
|
94
328
|
app?: pulumi.Input<string>;
|
|
329
|
+
/**
|
|
330
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
331
|
+
*/
|
|
95
332
|
canChangePerms?: pulumi.Input<boolean>;
|
|
333
|
+
/**
|
|
334
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
335
|
+
*/
|
|
96
336
|
canShareApp?: pulumi.Input<boolean>;
|
|
337
|
+
/**
|
|
338
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
339
|
+
*/
|
|
97
340
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
341
|
+
/**
|
|
342
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
343
|
+
*/
|
|
98
344
|
canShareUser?: pulumi.Input<boolean>;
|
|
345
|
+
/**
|
|
346
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
347
|
+
*/
|
|
99
348
|
canWrite?: pulumi.Input<boolean>;
|
|
349
|
+
/**
|
|
350
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
351
|
+
*/
|
|
100
352
|
owner?: pulumi.Input<string>;
|
|
353
|
+
/**
|
|
354
|
+
* Properties that indicate resource read permissions.
|
|
355
|
+
*/
|
|
101
356
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
357
|
+
/**
|
|
358
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
359
|
+
*/
|
|
102
360
|
removable?: pulumi.Input<boolean>;
|
|
361
|
+
/**
|
|
362
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
363
|
+
*/
|
|
103
364
|
sharing?: pulumi.Input<string>;
|
|
365
|
+
/**
|
|
366
|
+
* Properties that indicate write permissions of the resource.
|
|
367
|
+
*/
|
|
104
368
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
105
369
|
}
|
|
106
370
|
export interface InputsTcpCookedAcl {
|
|
371
|
+
/**
|
|
372
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
373
|
+
*/
|
|
107
374
|
app?: pulumi.Input<string>;
|
|
375
|
+
/**
|
|
376
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
377
|
+
*/
|
|
108
378
|
canChangePerms?: pulumi.Input<boolean>;
|
|
379
|
+
/**
|
|
380
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
381
|
+
*/
|
|
109
382
|
canShareApp?: pulumi.Input<boolean>;
|
|
383
|
+
/**
|
|
384
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
385
|
+
*/
|
|
110
386
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
387
|
+
/**
|
|
388
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
389
|
+
*/
|
|
111
390
|
canShareUser?: pulumi.Input<boolean>;
|
|
391
|
+
/**
|
|
392
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
393
|
+
*/
|
|
112
394
|
canWrite?: pulumi.Input<boolean>;
|
|
395
|
+
/**
|
|
396
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
397
|
+
*/
|
|
113
398
|
owner?: pulumi.Input<string>;
|
|
399
|
+
/**
|
|
400
|
+
* Properties that indicate resource read permissions.
|
|
401
|
+
*/
|
|
114
402
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
403
|
+
/**
|
|
404
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
405
|
+
*/
|
|
115
406
|
removable?: pulumi.Input<boolean>;
|
|
407
|
+
/**
|
|
408
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
409
|
+
*/
|
|
116
410
|
sharing?: pulumi.Input<string>;
|
|
411
|
+
/**
|
|
412
|
+
* Properties that indicate write permissions of the resource.
|
|
413
|
+
*/
|
|
117
414
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
118
415
|
}
|
|
119
416
|
export interface InputsTcpRawAcl {
|
|
417
|
+
/**
|
|
418
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
419
|
+
*/
|
|
120
420
|
app?: pulumi.Input<string>;
|
|
421
|
+
/**
|
|
422
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
423
|
+
*/
|
|
121
424
|
canChangePerms?: pulumi.Input<boolean>;
|
|
425
|
+
/**
|
|
426
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
427
|
+
*/
|
|
122
428
|
canShareApp?: pulumi.Input<boolean>;
|
|
429
|
+
/**
|
|
430
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
431
|
+
*/
|
|
123
432
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
433
|
+
/**
|
|
434
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
435
|
+
*/
|
|
124
436
|
canShareUser?: pulumi.Input<boolean>;
|
|
437
|
+
/**
|
|
438
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
439
|
+
*/
|
|
125
440
|
canWrite?: pulumi.Input<boolean>;
|
|
441
|
+
/**
|
|
442
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
443
|
+
*/
|
|
126
444
|
owner?: pulumi.Input<string>;
|
|
445
|
+
/**
|
|
446
|
+
* Properties that indicate resource read permissions.
|
|
447
|
+
*/
|
|
127
448
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
449
|
+
/**
|
|
450
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
451
|
+
*/
|
|
128
452
|
removable?: pulumi.Input<boolean>;
|
|
453
|
+
/**
|
|
454
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
455
|
+
*/
|
|
129
456
|
sharing?: pulumi.Input<string>;
|
|
457
|
+
/**
|
|
458
|
+
* Properties that indicate write permissions of the resource.
|
|
459
|
+
*/
|
|
130
460
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
131
461
|
}
|
|
132
462
|
export interface InputsTcpSplunkTcpTokenAcl {
|
|
463
|
+
/**
|
|
464
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
465
|
+
*/
|
|
133
466
|
app?: pulumi.Input<string>;
|
|
467
|
+
/**
|
|
468
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
469
|
+
*/
|
|
134
470
|
canChangePerms?: pulumi.Input<boolean>;
|
|
471
|
+
/**
|
|
472
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
473
|
+
*/
|
|
135
474
|
canShareApp?: pulumi.Input<boolean>;
|
|
475
|
+
/**
|
|
476
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
477
|
+
*/
|
|
136
478
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
479
|
+
/**
|
|
480
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
481
|
+
*/
|
|
137
482
|
canShareUser?: pulumi.Input<boolean>;
|
|
483
|
+
/**
|
|
484
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
485
|
+
*/
|
|
138
486
|
canWrite?: pulumi.Input<boolean>;
|
|
487
|
+
/**
|
|
488
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
489
|
+
*/
|
|
139
490
|
owner?: pulumi.Input<string>;
|
|
491
|
+
/**
|
|
492
|
+
* Properties that indicate resource read permissions.
|
|
493
|
+
*/
|
|
140
494
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
495
|
+
/**
|
|
496
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
497
|
+
*/
|
|
141
498
|
removable?: pulumi.Input<boolean>;
|
|
499
|
+
/**
|
|
500
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
501
|
+
*/
|
|
142
502
|
sharing?: pulumi.Input<string>;
|
|
503
|
+
/**
|
|
504
|
+
* Properties that indicate write permissions of the resource.
|
|
505
|
+
*/
|
|
143
506
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
144
507
|
}
|
|
145
508
|
export interface InputsUdpAcl {
|
|
509
|
+
/**
|
|
510
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
511
|
+
*/
|
|
146
512
|
app?: pulumi.Input<string>;
|
|
513
|
+
/**
|
|
514
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
515
|
+
*/
|
|
147
516
|
canChangePerms?: pulumi.Input<boolean>;
|
|
517
|
+
/**
|
|
518
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
519
|
+
*/
|
|
148
520
|
canShareApp?: pulumi.Input<boolean>;
|
|
521
|
+
/**
|
|
522
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
523
|
+
*/
|
|
149
524
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
525
|
+
/**
|
|
526
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
527
|
+
*/
|
|
150
528
|
canShareUser?: pulumi.Input<boolean>;
|
|
529
|
+
/**
|
|
530
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
531
|
+
*/
|
|
151
532
|
canWrite?: pulumi.Input<boolean>;
|
|
533
|
+
/**
|
|
534
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
535
|
+
*/
|
|
152
536
|
owner?: pulumi.Input<string>;
|
|
537
|
+
/**
|
|
538
|
+
* Properties that indicate resource read permissions.
|
|
539
|
+
*/
|
|
153
540
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
541
|
+
/**
|
|
542
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
543
|
+
*/
|
|
154
544
|
removable?: pulumi.Input<boolean>;
|
|
545
|
+
/**
|
|
546
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
547
|
+
*/
|
|
155
548
|
sharing?: pulumi.Input<string>;
|
|
549
|
+
/**
|
|
550
|
+
* Properties that indicate write permissions of the resource.
|
|
551
|
+
*/
|
|
156
552
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
157
553
|
}
|
|
158
554
|
export interface OutputsTcpDefaultAcl {
|
|
555
|
+
/**
|
|
556
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
557
|
+
*/
|
|
159
558
|
app?: pulumi.Input<string>;
|
|
559
|
+
/**
|
|
560
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
561
|
+
*/
|
|
160
562
|
canChangePerms?: pulumi.Input<boolean>;
|
|
563
|
+
/**
|
|
564
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
565
|
+
*/
|
|
161
566
|
canShareApp?: pulumi.Input<boolean>;
|
|
567
|
+
/**
|
|
568
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
569
|
+
*/
|
|
162
570
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
571
|
+
/**
|
|
572
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
573
|
+
*/
|
|
163
574
|
canShareUser?: pulumi.Input<boolean>;
|
|
575
|
+
/**
|
|
576
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
577
|
+
*/
|
|
164
578
|
canWrite?: pulumi.Input<boolean>;
|
|
579
|
+
/**
|
|
580
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
581
|
+
*/
|
|
165
582
|
owner?: pulumi.Input<string>;
|
|
583
|
+
/**
|
|
584
|
+
* Properties that indicate resource read permissions.
|
|
585
|
+
*/
|
|
166
586
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
587
|
+
/**
|
|
588
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
589
|
+
*/
|
|
167
590
|
removable?: pulumi.Input<boolean>;
|
|
591
|
+
/**
|
|
592
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
593
|
+
*/
|
|
168
594
|
sharing?: pulumi.Input<string>;
|
|
595
|
+
/**
|
|
596
|
+
* Properties that indicate write permissions of the resource.
|
|
597
|
+
*/
|
|
169
598
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
170
599
|
}
|
|
171
600
|
export interface OutputsTcpGroupAcl {
|
|
601
|
+
/**
|
|
602
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
603
|
+
*/
|
|
172
604
|
app?: pulumi.Input<string>;
|
|
605
|
+
/**
|
|
606
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
607
|
+
*/
|
|
173
608
|
canChangePerms?: pulumi.Input<boolean>;
|
|
609
|
+
/**
|
|
610
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
611
|
+
*/
|
|
174
612
|
canShareApp?: pulumi.Input<boolean>;
|
|
613
|
+
/**
|
|
614
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
615
|
+
*/
|
|
175
616
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
617
|
+
/**
|
|
618
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
619
|
+
*/
|
|
176
620
|
canShareUser?: pulumi.Input<boolean>;
|
|
621
|
+
/**
|
|
622
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
623
|
+
*/
|
|
177
624
|
canWrite?: pulumi.Input<boolean>;
|
|
625
|
+
/**
|
|
626
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
627
|
+
*/
|
|
178
628
|
owner?: pulumi.Input<string>;
|
|
629
|
+
/**
|
|
630
|
+
* Properties that indicate resource read permissions.
|
|
631
|
+
*/
|
|
179
632
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
633
|
+
/**
|
|
634
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
635
|
+
*/
|
|
180
636
|
removable?: pulumi.Input<boolean>;
|
|
637
|
+
/**
|
|
638
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
639
|
+
*/
|
|
181
640
|
sharing?: pulumi.Input<string>;
|
|
641
|
+
/**
|
|
642
|
+
* Properties that indicate write permissions of the resource.
|
|
643
|
+
*/
|
|
182
644
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
183
645
|
}
|
|
184
646
|
export interface OutputsTcpServerAcl {
|
|
647
|
+
/**
|
|
648
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
649
|
+
*/
|
|
185
650
|
app?: pulumi.Input<string>;
|
|
651
|
+
/**
|
|
652
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
653
|
+
*/
|
|
186
654
|
canChangePerms?: pulumi.Input<boolean>;
|
|
655
|
+
/**
|
|
656
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
657
|
+
*/
|
|
187
658
|
canShareApp?: pulumi.Input<boolean>;
|
|
659
|
+
/**
|
|
660
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
661
|
+
*/
|
|
188
662
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
663
|
+
/**
|
|
664
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
665
|
+
*/
|
|
189
666
|
canShareUser?: pulumi.Input<boolean>;
|
|
667
|
+
/**
|
|
668
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
669
|
+
*/
|
|
190
670
|
canWrite?: pulumi.Input<boolean>;
|
|
671
|
+
/**
|
|
672
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
673
|
+
*/
|
|
191
674
|
owner?: pulumi.Input<string>;
|
|
675
|
+
/**
|
|
676
|
+
* Properties that indicate resource read permissions.
|
|
677
|
+
*/
|
|
192
678
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
679
|
+
/**
|
|
680
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
681
|
+
*/
|
|
193
682
|
removable?: pulumi.Input<boolean>;
|
|
683
|
+
/**
|
|
684
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
685
|
+
*/
|
|
194
686
|
sharing?: pulumi.Input<string>;
|
|
687
|
+
/**
|
|
688
|
+
* Properties that indicate write permissions of the resource.
|
|
689
|
+
*/
|
|
195
690
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
196
691
|
}
|
|
197
692
|
export interface OutputsTcpSyslogAcl {
|
|
693
|
+
/**
|
|
694
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
695
|
+
*/
|
|
198
696
|
app?: pulumi.Input<string>;
|
|
697
|
+
/**
|
|
698
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
699
|
+
*/
|
|
199
700
|
canChangePerms?: pulumi.Input<boolean>;
|
|
701
|
+
/**
|
|
702
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
703
|
+
*/
|
|
200
704
|
canShareApp?: pulumi.Input<boolean>;
|
|
705
|
+
/**
|
|
706
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
707
|
+
*/
|
|
201
708
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
709
|
+
/**
|
|
710
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
711
|
+
*/
|
|
202
712
|
canShareUser?: pulumi.Input<boolean>;
|
|
713
|
+
/**
|
|
714
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
715
|
+
*/
|
|
203
716
|
canWrite?: pulumi.Input<boolean>;
|
|
717
|
+
/**
|
|
718
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
719
|
+
*/
|
|
204
720
|
owner?: pulumi.Input<string>;
|
|
721
|
+
/**
|
|
722
|
+
* Properties that indicate resource read permissions.
|
|
723
|
+
*/
|
|
205
724
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
725
|
+
/**
|
|
726
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
727
|
+
*/
|
|
206
728
|
removable?: pulumi.Input<boolean>;
|
|
729
|
+
/**
|
|
730
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
731
|
+
*/
|
|
207
732
|
sharing?: pulumi.Input<string>;
|
|
733
|
+
/**
|
|
734
|
+
* Properties that indicate write permissions of the resource.
|
|
735
|
+
*/
|
|
208
736
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
209
737
|
}
|
|
210
738
|
export interface SavedSearchesAcl {
|
|
739
|
+
/**
|
|
740
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
741
|
+
*/
|
|
211
742
|
app?: pulumi.Input<string>;
|
|
743
|
+
/**
|
|
744
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
745
|
+
*/
|
|
212
746
|
canChangePerms?: pulumi.Input<boolean>;
|
|
747
|
+
/**
|
|
748
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
749
|
+
*/
|
|
213
750
|
canShareApp?: pulumi.Input<boolean>;
|
|
751
|
+
/**
|
|
752
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
753
|
+
*/
|
|
214
754
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
755
|
+
/**
|
|
756
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
757
|
+
*/
|
|
215
758
|
canShareUser?: pulumi.Input<boolean>;
|
|
759
|
+
/**
|
|
760
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
761
|
+
*/
|
|
216
762
|
canWrite?: pulumi.Input<boolean>;
|
|
763
|
+
/**
|
|
764
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
765
|
+
*/
|
|
217
766
|
owner?: pulumi.Input<string>;
|
|
767
|
+
/**
|
|
768
|
+
* Properties that indicate resource read permissions.
|
|
769
|
+
*/
|
|
218
770
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
771
|
+
/**
|
|
772
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
773
|
+
*/
|
|
219
774
|
removable?: pulumi.Input<boolean>;
|
|
775
|
+
/**
|
|
776
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
777
|
+
*/
|
|
220
778
|
sharing?: pulumi.Input<string>;
|
|
779
|
+
/**
|
|
780
|
+
* Properties that indicate write permissions of the resource.
|
|
781
|
+
*/
|
|
221
782
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
222
783
|
}
|
|
223
784
|
export interface ShIndexesManagerAcl {
|
|
785
|
+
/**
|
|
786
|
+
* The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
787
|
+
*/
|
|
224
788
|
app?: pulumi.Input<string>;
|
|
789
|
+
/**
|
|
790
|
+
* Indicates if the active user can change permissions for this object. Defaults to true.
|
|
791
|
+
*/
|
|
225
792
|
canChangePerms?: pulumi.Input<boolean>;
|
|
793
|
+
/**
|
|
794
|
+
* Indicates if the active user can change sharing to app level. Defaults to true.
|
|
795
|
+
*/
|
|
226
796
|
canShareApp?: pulumi.Input<boolean>;
|
|
797
|
+
/**
|
|
798
|
+
* Indicates if the active user can change sharing to system level. Defaults to true.
|
|
799
|
+
*/
|
|
227
800
|
canShareGlobal?: pulumi.Input<boolean>;
|
|
801
|
+
/**
|
|
802
|
+
* Indicates if the active user can change sharing to user level. Defaults to true.
|
|
803
|
+
*/
|
|
228
804
|
canShareUser?: pulumi.Input<boolean>;
|
|
805
|
+
/**
|
|
806
|
+
* Indicates if the active user can edit this object. Defaults to true.
|
|
807
|
+
*/
|
|
229
808
|
canWrite?: pulumi.Input<boolean>;
|
|
809
|
+
/**
|
|
810
|
+
* User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
811
|
+
*/
|
|
230
812
|
owner?: pulumi.Input<string>;
|
|
813
|
+
/**
|
|
814
|
+
* Properties that indicate resource read permissions.
|
|
815
|
+
*/
|
|
231
816
|
reads?: pulumi.Input<pulumi.Input<string>[]>;
|
|
817
|
+
/**
|
|
818
|
+
* Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
819
|
+
*/
|
|
232
820
|
removable?: pulumi.Input<boolean>;
|
|
821
|
+
/**
|
|
822
|
+
* Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
823
|
+
*/
|
|
233
824
|
sharing?: pulumi.Input<string>;
|
|
825
|
+
/**
|
|
826
|
+
* Properties that indicate write permissions of the resource.
|
|
827
|
+
*/
|
|
234
828
|
writes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
235
829
|
}
|