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