pulumi-splunk 1.3.0a1710160292__py3-none-any.whl → 1.3.0a1736835690__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-splunk might be problematic. Click here for more details.

Files changed (38) hide show
  1. pulumi_splunk/__init__.py +18 -0
  2. pulumi_splunk/_inputs.py +1218 -77
  3. pulumi_splunk/_utilities.py +41 -5
  4. pulumi_splunk/admin_saml_groups.py +17 -12
  5. pulumi_splunk/apps_local.py +18 -15
  6. pulumi_splunk/authentication_users.py +9 -6
  7. pulumi_splunk/authorization_roles.py +17 -14
  8. pulumi_splunk/config/__init__.pyi +5 -0
  9. pulumi_splunk/config/vars.py +5 -0
  10. pulumi_splunk/configs_conf.py +20 -15
  11. pulumi_splunk/data_ui_views.py +20 -17
  12. pulumi_splunk/generic_acl.py +42 -41
  13. pulumi_splunk/global_http_event_collector.py +5 -4
  14. pulumi_splunk/indexes.py +12 -9
  15. pulumi_splunk/inputs_http_event_collector.py +28 -25
  16. pulumi_splunk/inputs_monitor.py +12 -9
  17. pulumi_splunk/inputs_script.py +16 -11
  18. pulumi_splunk/inputs_tcp_cooked.py +16 -13
  19. pulumi_splunk/inputs_tcp_raw.py +18 -15
  20. pulumi_splunk/inputs_tcp_splunk_tcp_token.py +16 -11
  21. pulumi_splunk/inputs_tcp_ssl.py +5 -4
  22. pulumi_splunk/inputs_udp.py +16 -13
  23. pulumi_splunk/lookup_definition.py +300 -0
  24. pulumi_splunk/lookup_table_file.py +367 -0
  25. pulumi_splunk/outputs.py +206 -36
  26. pulumi_splunk/outputs_tcp_default.py +20 -17
  27. pulumi_splunk/outputs_tcp_group.py +16 -13
  28. pulumi_splunk/outputs_tcp_server.py +16 -11
  29. pulumi_splunk/outputs_tcp_syslog.py +18 -15
  30. pulumi_splunk/provider.py +5 -0
  31. pulumi_splunk/pulumi-plugin.json +2 -1
  32. pulumi_splunk/saved_searches.py +100 -50
  33. pulumi_splunk/sh_indexes_manager.py +10 -7
  34. {pulumi_splunk-1.3.0a1710160292.dist-info → pulumi_splunk-1.3.0a1736835690.dist-info}/METADATA +7 -6
  35. pulumi_splunk-1.3.0a1736835690.dist-info/RECORD +39 -0
  36. {pulumi_splunk-1.3.0a1710160292.dist-info → pulumi_splunk-1.3.0a1736835690.dist-info}/WHEEL +1 -1
  37. pulumi_splunk-1.3.0a1710160292.dist-info/RECORD +0 -37
  38. {pulumi_splunk-1.3.0a1710160292.dist-info → pulumi_splunk-1.3.0a1736835690.dist-info}/top_level.txt +0 -0
pulumi_splunk/_inputs.py CHANGED
@@ -4,32 +4,108 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = [
13
18
  'AppsLocalAclArgs',
19
+ 'AppsLocalAclArgsDict',
14
20
  'ConfigsConfAclArgs',
21
+ 'ConfigsConfAclArgsDict',
15
22
  'DataUiViewsAclArgs',
23
+ 'DataUiViewsAclArgsDict',
16
24
  'GenericAclAclArgs',
25
+ 'GenericAclAclArgsDict',
17
26
  'IndexesAclArgs',
27
+ 'IndexesAclArgsDict',
18
28
  'InputsHttpEventCollectorAclArgs',
29
+ 'InputsHttpEventCollectorAclArgsDict',
19
30
  'InputsMonitorAclArgs',
31
+ 'InputsMonitorAclArgsDict',
20
32
  'InputsScriptAclArgs',
33
+ 'InputsScriptAclArgsDict',
21
34
  'InputsTcpCookedAclArgs',
35
+ 'InputsTcpCookedAclArgsDict',
22
36
  'InputsTcpRawAclArgs',
37
+ 'InputsTcpRawAclArgsDict',
23
38
  'InputsTcpSplunkTcpTokenAclArgs',
39
+ 'InputsTcpSplunkTcpTokenAclArgsDict',
24
40
  'InputsUdpAclArgs',
41
+ 'InputsUdpAclArgsDict',
42
+ 'LookupDefinitionAclArgs',
43
+ 'LookupDefinitionAclArgsDict',
25
44
  'OutputsTcpDefaultAclArgs',
45
+ 'OutputsTcpDefaultAclArgsDict',
26
46
  'OutputsTcpGroupAclArgs',
47
+ 'OutputsTcpGroupAclArgsDict',
27
48
  'OutputsTcpServerAclArgs',
49
+ 'OutputsTcpServerAclArgsDict',
28
50
  'OutputsTcpSyslogAclArgs',
51
+ 'OutputsTcpSyslogAclArgsDict',
29
52
  'SavedSearchesAclArgs',
53
+ 'SavedSearchesAclArgsDict',
30
54
  'ShIndexesManagerAclArgs',
55
+ 'ShIndexesManagerAclArgsDict',
31
56
  ]
32
57
 
58
+ MYPY = False
59
+
60
+ if not MYPY:
61
+ class AppsLocalAclArgsDict(TypedDict):
62
+ app: NotRequired[pulumi.Input[str]]
63
+ """
64
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
65
+ """
66
+ can_change_perms: NotRequired[pulumi.Input[bool]]
67
+ """
68
+ Indicates if the active user can change permissions for this object. Defaults to true.
69
+ """
70
+ can_share_app: NotRequired[pulumi.Input[bool]]
71
+ """
72
+ Indicates if the active user can change sharing to app level. Defaults to true.
73
+ """
74
+ can_share_global: NotRequired[pulumi.Input[bool]]
75
+ """
76
+ Indicates if the active user can change sharing to system level. Defaults to true.
77
+ """
78
+ can_share_user: NotRequired[pulumi.Input[bool]]
79
+ """
80
+ Indicates if the active user can change sharing to user level. Defaults to true.
81
+ """
82
+ can_write: NotRequired[pulumi.Input[bool]]
83
+ """
84
+ Indicates if the active user can edit this object. Defaults to true.
85
+ """
86
+ owner: NotRequired[pulumi.Input[str]]
87
+ """
88
+ 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.
89
+ """
90
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
91
+ """
92
+ Properties that indicate resource read permissions.
93
+ """
94
+ removable: NotRequired[pulumi.Input[bool]]
95
+ """
96
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
97
+ """
98
+ sharing: NotRequired[pulumi.Input[str]]
99
+ """
100
+ 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
101
+ """
102
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
103
+ """
104
+ Properties that indicate resource write permissions.
105
+ """
106
+ elif False:
107
+ AppsLocalAclArgsDict: TypeAlias = Mapping[str, Any]
108
+
33
109
  @pulumi.input_type
34
110
  class AppsLocalAclArgs:
35
111
  def __init__(__self__, *,
@@ -55,7 +131,7 @@ class AppsLocalAclArgs:
55
131
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
56
132
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
57
133
  :param pulumi.Input[str] sharing: 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
58
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
134
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
59
135
  """
60
136
  if app is not None:
61
137
  pulumi.set(__self__, "app", app)
@@ -204,7 +280,7 @@ class AppsLocalAclArgs:
204
280
  @pulumi.getter
205
281
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
206
282
  """
207
- Properties that indicate write permissions of the resource.
283
+ Properties that indicate resource write permissions.
208
284
  """
209
285
  return pulumi.get(self, "writes")
210
286
 
@@ -213,6 +289,55 @@ class AppsLocalAclArgs:
213
289
  pulumi.set(self, "writes", value)
214
290
 
215
291
 
292
+ if not MYPY:
293
+ class ConfigsConfAclArgsDict(TypedDict):
294
+ app: NotRequired[pulumi.Input[str]]
295
+ """
296
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
297
+ """
298
+ can_change_perms: NotRequired[pulumi.Input[bool]]
299
+ """
300
+ Indicates if the active user can change permissions for this object. Defaults to true.
301
+ """
302
+ can_share_app: NotRequired[pulumi.Input[bool]]
303
+ """
304
+ Indicates if the active user can change sharing to app level. Defaults to true.
305
+ """
306
+ can_share_global: NotRequired[pulumi.Input[bool]]
307
+ """
308
+ Indicates if the active user can change sharing to system level. Defaults to true.
309
+ """
310
+ can_share_user: NotRequired[pulumi.Input[bool]]
311
+ """
312
+ Indicates if the active user can change sharing to user level. Defaults to true.
313
+ """
314
+ can_write: NotRequired[pulumi.Input[bool]]
315
+ """
316
+ Indicates if the active user can edit this object. Defaults to true.
317
+ """
318
+ owner: NotRequired[pulumi.Input[str]]
319
+ """
320
+ 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.
321
+ """
322
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
323
+ """
324
+ Properties that indicate resource read permissions.
325
+ """
326
+ removable: NotRequired[pulumi.Input[bool]]
327
+ """
328
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
329
+ """
330
+ sharing: NotRequired[pulumi.Input[str]]
331
+ """
332
+ 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
333
+ """
334
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
335
+ """
336
+ Properties that indicate resource write permissions.
337
+ """
338
+ elif False:
339
+ ConfigsConfAclArgsDict: TypeAlias = Mapping[str, Any]
340
+
216
341
  @pulumi.input_type
217
342
  class ConfigsConfAclArgs:
218
343
  def __init__(__self__, *,
@@ -238,7 +363,7 @@ class ConfigsConfAclArgs:
238
363
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
239
364
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
240
365
  :param pulumi.Input[str] sharing: 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
241
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
366
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
242
367
  """
243
368
  if app is not None:
244
369
  pulumi.set(__self__, "app", app)
@@ -387,7 +512,7 @@ class ConfigsConfAclArgs:
387
512
  @pulumi.getter
388
513
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
389
514
  """
390
- Properties that indicate write permissions of the resource.
515
+ Properties that indicate resource write permissions.
391
516
  """
392
517
  return pulumi.get(self, "writes")
393
518
 
@@ -396,6 +521,55 @@ class ConfigsConfAclArgs:
396
521
  pulumi.set(self, "writes", value)
397
522
 
398
523
 
524
+ if not MYPY:
525
+ class DataUiViewsAclArgsDict(TypedDict):
526
+ app: NotRequired[pulumi.Input[str]]
527
+ """
528
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
529
+ """
530
+ can_change_perms: NotRequired[pulumi.Input[bool]]
531
+ """
532
+ Indicates if the active user can change permissions for this object. Defaults to true.
533
+ """
534
+ can_share_app: NotRequired[pulumi.Input[bool]]
535
+ """
536
+ Indicates if the active user can change sharing to app level. Defaults to true.
537
+ """
538
+ can_share_global: NotRequired[pulumi.Input[bool]]
539
+ """
540
+ Indicates if the active user can change sharing to system level. Defaults to true.
541
+ """
542
+ can_share_user: NotRequired[pulumi.Input[bool]]
543
+ """
544
+ Indicates if the active user can change sharing to user level. Defaults to true.
545
+ """
546
+ can_write: NotRequired[pulumi.Input[bool]]
547
+ """
548
+ Indicates if the active user can edit this object. Defaults to true.
549
+ """
550
+ owner: NotRequired[pulumi.Input[str]]
551
+ """
552
+ 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.
553
+ """
554
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
555
+ """
556
+ Properties that indicate resource read permissions.
557
+ """
558
+ removable: NotRequired[pulumi.Input[bool]]
559
+ """
560
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
561
+ """
562
+ sharing: NotRequired[pulumi.Input[str]]
563
+ """
564
+ 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
565
+ """
566
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
567
+ """
568
+ Properties that indicate resource write permissions.
569
+ """
570
+ elif False:
571
+ DataUiViewsAclArgsDict: TypeAlias = Mapping[str, Any]
572
+
399
573
  @pulumi.input_type
400
574
  class DataUiViewsAclArgs:
401
575
  def __init__(__self__, *,
@@ -421,7 +595,7 @@ class DataUiViewsAclArgs:
421
595
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
422
596
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
423
597
  :param pulumi.Input[str] sharing: 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
424
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
598
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
425
599
  """
426
600
  if app is not None:
427
601
  pulumi.set(__self__, "app", app)
@@ -570,7 +744,7 @@ class DataUiViewsAclArgs:
570
744
  @pulumi.getter
571
745
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
572
746
  """
573
- Properties that indicate write permissions of the resource.
747
+ Properties that indicate resource write permissions.
574
748
  """
575
749
  return pulumi.get(self, "writes")
576
750
 
@@ -579,6 +753,55 @@ class DataUiViewsAclArgs:
579
753
  pulumi.set(self, "writes", value)
580
754
 
581
755
 
756
+ if not MYPY:
757
+ class GenericAclAclArgsDict(TypedDict):
758
+ app: NotRequired[pulumi.Input[str]]
759
+ """
760
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
761
+ """
762
+ can_change_perms: NotRequired[pulumi.Input[bool]]
763
+ """
764
+ Indicates if the active user can change permissions for this object. Defaults to true.
765
+ """
766
+ can_share_app: NotRequired[pulumi.Input[bool]]
767
+ """
768
+ Indicates if the active user can change sharing to app level. Defaults to true.
769
+ """
770
+ can_share_global: NotRequired[pulumi.Input[bool]]
771
+ """
772
+ Indicates if the active user can change sharing to system level. Defaults to true.
773
+ """
774
+ can_share_user: NotRequired[pulumi.Input[bool]]
775
+ """
776
+ Indicates if the active user can change sharing to user level. Defaults to true.
777
+ """
778
+ can_write: NotRequired[pulumi.Input[bool]]
779
+ """
780
+ Indicates if the active user can edit this object. Defaults to true.
781
+ """
782
+ owner: NotRequired[pulumi.Input[str]]
783
+ """
784
+ 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.
785
+ """
786
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
787
+ """
788
+ Properties that indicate resource read permissions.
789
+ """
790
+ removable: NotRequired[pulumi.Input[bool]]
791
+ """
792
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
793
+ """
794
+ sharing: NotRequired[pulumi.Input[str]]
795
+ """
796
+ 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
797
+ """
798
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
799
+ """
800
+ Properties that indicate resource write permissions.
801
+ """
802
+ elif False:
803
+ GenericAclAclArgsDict: TypeAlias = Mapping[str, Any]
804
+
582
805
  @pulumi.input_type
583
806
  class GenericAclAclArgs:
584
807
  def __init__(__self__, *,
@@ -604,7 +827,7 @@ class GenericAclAclArgs:
604
827
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
605
828
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
606
829
  :param pulumi.Input[str] sharing: 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
607
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
830
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
608
831
  """
609
832
  if app is not None:
610
833
  pulumi.set(__self__, "app", app)
@@ -753,7 +976,7 @@ class GenericAclAclArgs:
753
976
  @pulumi.getter
754
977
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
755
978
  """
756
- Properties that indicate write permissions of the resource.
979
+ Properties that indicate resource write permissions.
757
980
  """
758
981
  return pulumi.get(self, "writes")
759
982
 
@@ -762,6 +985,55 @@ class GenericAclAclArgs:
762
985
  pulumi.set(self, "writes", value)
763
986
 
764
987
 
988
+ if not MYPY:
989
+ class IndexesAclArgsDict(TypedDict):
990
+ app: NotRequired[pulumi.Input[str]]
991
+ """
992
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
993
+ """
994
+ can_change_perms: NotRequired[pulumi.Input[bool]]
995
+ """
996
+ Indicates if the active user can change permissions for this object. Defaults to true.
997
+ """
998
+ can_share_app: NotRequired[pulumi.Input[bool]]
999
+ """
1000
+ Indicates if the active user can change sharing to app level. Defaults to true.
1001
+ """
1002
+ can_share_global: NotRequired[pulumi.Input[bool]]
1003
+ """
1004
+ Indicates if the active user can change sharing to system level. Defaults to true.
1005
+ """
1006
+ can_share_user: NotRequired[pulumi.Input[bool]]
1007
+ """
1008
+ Indicates if the active user can change sharing to user level. Defaults to true.
1009
+ """
1010
+ can_write: NotRequired[pulumi.Input[bool]]
1011
+ """
1012
+ Indicates if the active user can edit this object. Defaults to true.
1013
+ """
1014
+ owner: NotRequired[pulumi.Input[str]]
1015
+ """
1016
+ 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.
1017
+ """
1018
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1019
+ """
1020
+ Properties that indicate resource read permissions.
1021
+ """
1022
+ removable: NotRequired[pulumi.Input[bool]]
1023
+ """
1024
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
1025
+ """
1026
+ sharing: NotRequired[pulumi.Input[str]]
1027
+ """
1028
+ 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
1029
+ """
1030
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1031
+ """
1032
+ Properties that indicate resource write permissions.
1033
+ """
1034
+ elif False:
1035
+ IndexesAclArgsDict: TypeAlias = Mapping[str, Any]
1036
+
765
1037
  @pulumi.input_type
766
1038
  class IndexesAclArgs:
767
1039
  def __init__(__self__, *,
@@ -787,7 +1059,7 @@ class IndexesAclArgs:
787
1059
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
788
1060
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
789
1061
  :param pulumi.Input[str] sharing: 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
790
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
1062
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
791
1063
  """
792
1064
  if app is not None:
793
1065
  pulumi.set(__self__, "app", app)
@@ -936,7 +1208,7 @@ class IndexesAclArgs:
936
1208
  @pulumi.getter
937
1209
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
938
1210
  """
939
- Properties that indicate write permissions of the resource.
1211
+ Properties that indicate resource write permissions.
940
1212
  """
941
1213
  return pulumi.get(self, "writes")
942
1214
 
@@ -945,6 +1217,55 @@ class IndexesAclArgs:
945
1217
  pulumi.set(self, "writes", value)
946
1218
 
947
1219
 
1220
+ if not MYPY:
1221
+ class InputsHttpEventCollectorAclArgsDict(TypedDict):
1222
+ app: NotRequired[pulumi.Input[str]]
1223
+ """
1224
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
1225
+ """
1226
+ can_change_perms: NotRequired[pulumi.Input[bool]]
1227
+ """
1228
+ Indicates if the active user can change permissions for this object. Defaults to true.
1229
+ """
1230
+ can_share_app: NotRequired[pulumi.Input[bool]]
1231
+ """
1232
+ Indicates if the active user can change sharing to app level. Defaults to true.
1233
+ """
1234
+ can_share_global: NotRequired[pulumi.Input[bool]]
1235
+ """
1236
+ Indicates if the active user can change sharing to system level. Defaults to true.
1237
+ """
1238
+ can_share_user: NotRequired[pulumi.Input[bool]]
1239
+ """
1240
+ Indicates if the active user can change sharing to user level. Defaults to true.
1241
+ """
1242
+ can_write: NotRequired[pulumi.Input[bool]]
1243
+ """
1244
+ Indicates if the active user can edit this object. Defaults to true.
1245
+ """
1246
+ owner: NotRequired[pulumi.Input[str]]
1247
+ """
1248
+ 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.
1249
+ """
1250
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1251
+ """
1252
+ Properties that indicate resource read permissions.
1253
+ """
1254
+ removable: NotRequired[pulumi.Input[bool]]
1255
+ """
1256
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
1257
+ """
1258
+ sharing: NotRequired[pulumi.Input[str]]
1259
+ """
1260
+ 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
1261
+ """
1262
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1263
+ """
1264
+ Properties that indicate resource write permissions.
1265
+ """
1266
+ elif False:
1267
+ InputsHttpEventCollectorAclArgsDict: TypeAlias = Mapping[str, Any]
1268
+
948
1269
  @pulumi.input_type
949
1270
  class InputsHttpEventCollectorAclArgs:
950
1271
  def __init__(__self__, *,
@@ -970,7 +1291,7 @@ class InputsHttpEventCollectorAclArgs:
970
1291
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
971
1292
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
972
1293
  :param pulumi.Input[str] sharing: 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
973
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
1294
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
974
1295
  """
975
1296
  if app is not None:
976
1297
  pulumi.set(__self__, "app", app)
@@ -1119,7 +1440,7 @@ class InputsHttpEventCollectorAclArgs:
1119
1440
  @pulumi.getter
1120
1441
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1121
1442
  """
1122
- Properties that indicate write permissions of the resource.
1443
+ Properties that indicate resource write permissions.
1123
1444
  """
1124
1445
  return pulumi.get(self, "writes")
1125
1446
 
@@ -1128,6 +1449,55 @@ class InputsHttpEventCollectorAclArgs:
1128
1449
  pulumi.set(self, "writes", value)
1129
1450
 
1130
1451
 
1452
+ if not MYPY:
1453
+ class InputsMonitorAclArgsDict(TypedDict):
1454
+ app: NotRequired[pulumi.Input[str]]
1455
+ """
1456
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
1457
+ """
1458
+ can_change_perms: NotRequired[pulumi.Input[bool]]
1459
+ """
1460
+ Indicates if the active user can change permissions for this object. Defaults to true.
1461
+ """
1462
+ can_share_app: NotRequired[pulumi.Input[bool]]
1463
+ """
1464
+ Indicates if the active user can change sharing to app level. Defaults to true.
1465
+ """
1466
+ can_share_global: NotRequired[pulumi.Input[bool]]
1467
+ """
1468
+ Indicates if the active user can change sharing to system level. Defaults to true.
1469
+ """
1470
+ can_share_user: NotRequired[pulumi.Input[bool]]
1471
+ """
1472
+ Indicates if the active user can change sharing to user level. Defaults to true.
1473
+ """
1474
+ can_write: NotRequired[pulumi.Input[bool]]
1475
+ """
1476
+ Indicates if the active user can edit this object. Defaults to true.
1477
+ """
1478
+ owner: NotRequired[pulumi.Input[str]]
1479
+ """
1480
+ 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.
1481
+ """
1482
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1483
+ """
1484
+ Properties that indicate resource read permissions.
1485
+ """
1486
+ removable: NotRequired[pulumi.Input[bool]]
1487
+ """
1488
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
1489
+ """
1490
+ sharing: NotRequired[pulumi.Input[str]]
1491
+ """
1492
+ 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
1493
+ """
1494
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1495
+ """
1496
+ Properties that indicate resource write permissions.
1497
+ """
1498
+ elif False:
1499
+ InputsMonitorAclArgsDict: TypeAlias = Mapping[str, Any]
1500
+
1131
1501
  @pulumi.input_type
1132
1502
  class InputsMonitorAclArgs:
1133
1503
  def __init__(__self__, *,
@@ -1153,7 +1523,7 @@ class InputsMonitorAclArgs:
1153
1523
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
1154
1524
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
1155
1525
  :param pulumi.Input[str] sharing: 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
1156
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
1526
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
1157
1527
  """
1158
1528
  if app is not None:
1159
1529
  pulumi.set(__self__, "app", app)
@@ -1302,7 +1672,7 @@ class InputsMonitorAclArgs:
1302
1672
  @pulumi.getter
1303
1673
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1304
1674
  """
1305
- Properties that indicate write permissions of the resource.
1675
+ Properties that indicate resource write permissions.
1306
1676
  """
1307
1677
  return pulumi.get(self, "writes")
1308
1678
 
@@ -1311,32 +1681,81 @@ class InputsMonitorAclArgs:
1311
1681
  pulumi.set(self, "writes", value)
1312
1682
 
1313
1683
 
1314
- @pulumi.input_type
1315
- class InputsScriptAclArgs:
1316
- def __init__(__self__, *,
1317
- app: Optional[pulumi.Input[str]] = None,
1318
- can_change_perms: Optional[pulumi.Input[bool]] = None,
1319
- can_share_app: Optional[pulumi.Input[bool]] = None,
1320
- can_share_global: Optional[pulumi.Input[bool]] = None,
1321
- can_share_user: Optional[pulumi.Input[bool]] = None,
1322
- can_write: Optional[pulumi.Input[bool]] = None,
1323
- owner: Optional[pulumi.Input[str]] = None,
1324
- reads: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1325
- removable: Optional[pulumi.Input[bool]] = None,
1326
- sharing: Optional[pulumi.Input[str]] = None,
1327
- writes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1684
+ if not MYPY:
1685
+ class InputsScriptAclArgsDict(TypedDict):
1686
+ app: NotRequired[pulumi.Input[str]]
1328
1687
  """
1329
- :param pulumi.Input[str] app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
1330
- :param pulumi.Input[bool] can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
1331
- :param pulumi.Input[bool] can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
1332
- :param pulumi.Input[bool] can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
1333
- :param pulumi.Input[bool] can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
1334
- :param pulumi.Input[bool] can_write: Indicates if the active user can edit this object. Defaults to true.
1335
- :param pulumi.Input[str] owner: 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.
1336
- :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
1337
- :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
1338
- :param pulumi.Input[str] sharing: 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
1339
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
1688
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
1689
+ """
1690
+ can_change_perms: NotRequired[pulumi.Input[bool]]
1691
+ """
1692
+ Indicates if the active user can change permissions for this object. Defaults to true.
1693
+ """
1694
+ can_share_app: NotRequired[pulumi.Input[bool]]
1695
+ """
1696
+ Indicates if the active user can change sharing to app level. Defaults to true.
1697
+ """
1698
+ can_share_global: NotRequired[pulumi.Input[bool]]
1699
+ """
1700
+ Indicates if the active user can change sharing to system level. Defaults to true.
1701
+ """
1702
+ can_share_user: NotRequired[pulumi.Input[bool]]
1703
+ """
1704
+ Indicates if the active user can change sharing to user level. Defaults to true.
1705
+ """
1706
+ can_write: NotRequired[pulumi.Input[bool]]
1707
+ """
1708
+ Indicates if the active user can edit this object. Defaults to true.
1709
+ """
1710
+ owner: NotRequired[pulumi.Input[str]]
1711
+ """
1712
+ 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.
1713
+ """
1714
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1715
+ """
1716
+ Properties that indicate resource read permissions.
1717
+ """
1718
+ removable: NotRequired[pulumi.Input[bool]]
1719
+ """
1720
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
1721
+ """
1722
+ sharing: NotRequired[pulumi.Input[str]]
1723
+ """
1724
+ 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
1725
+ """
1726
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1727
+ """
1728
+ Properties that indicate resource write permissions.
1729
+ """
1730
+ elif False:
1731
+ InputsScriptAclArgsDict: TypeAlias = Mapping[str, Any]
1732
+
1733
+ @pulumi.input_type
1734
+ class InputsScriptAclArgs:
1735
+ def __init__(__self__, *,
1736
+ app: Optional[pulumi.Input[str]] = None,
1737
+ can_change_perms: Optional[pulumi.Input[bool]] = None,
1738
+ can_share_app: Optional[pulumi.Input[bool]] = None,
1739
+ can_share_global: Optional[pulumi.Input[bool]] = None,
1740
+ can_share_user: Optional[pulumi.Input[bool]] = None,
1741
+ can_write: Optional[pulumi.Input[bool]] = None,
1742
+ owner: Optional[pulumi.Input[str]] = None,
1743
+ reads: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1744
+ removable: Optional[pulumi.Input[bool]] = None,
1745
+ sharing: Optional[pulumi.Input[str]] = None,
1746
+ writes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1747
+ """
1748
+ :param pulumi.Input[str] app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
1749
+ :param pulumi.Input[bool] can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
1750
+ :param pulumi.Input[bool] can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
1751
+ :param pulumi.Input[bool] can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
1752
+ :param pulumi.Input[bool] can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
1753
+ :param pulumi.Input[bool] can_write: Indicates if the active user can edit this object. Defaults to true.
1754
+ :param pulumi.Input[str] owner: 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.
1755
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
1756
+ :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
1757
+ :param pulumi.Input[str] sharing: 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
1758
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
1340
1759
  """
1341
1760
  if app is not None:
1342
1761
  pulumi.set(__self__, "app", app)
@@ -1485,7 +1904,7 @@ class InputsScriptAclArgs:
1485
1904
  @pulumi.getter
1486
1905
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1487
1906
  """
1488
- Properties that indicate write permissions of the resource.
1907
+ Properties that indicate resource write permissions.
1489
1908
  """
1490
1909
  return pulumi.get(self, "writes")
1491
1910
 
@@ -1494,6 +1913,55 @@ class InputsScriptAclArgs:
1494
1913
  pulumi.set(self, "writes", value)
1495
1914
 
1496
1915
 
1916
+ if not MYPY:
1917
+ class InputsTcpCookedAclArgsDict(TypedDict):
1918
+ app: NotRequired[pulumi.Input[str]]
1919
+ """
1920
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
1921
+ """
1922
+ can_change_perms: NotRequired[pulumi.Input[bool]]
1923
+ """
1924
+ Indicates if the active user can change permissions for this object. Defaults to true.
1925
+ """
1926
+ can_share_app: NotRequired[pulumi.Input[bool]]
1927
+ """
1928
+ Indicates if the active user can change sharing to app level. Defaults to true.
1929
+ """
1930
+ can_share_global: NotRequired[pulumi.Input[bool]]
1931
+ """
1932
+ Indicates if the active user can change sharing to system level. Defaults to true.
1933
+ """
1934
+ can_share_user: NotRequired[pulumi.Input[bool]]
1935
+ """
1936
+ Indicates if the active user can change sharing to user level. Defaults to true.
1937
+ """
1938
+ can_write: NotRequired[pulumi.Input[bool]]
1939
+ """
1940
+ Indicates if the active user can edit this object. Defaults to true.
1941
+ """
1942
+ owner: NotRequired[pulumi.Input[str]]
1943
+ """
1944
+ 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.
1945
+ """
1946
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1947
+ """
1948
+ Properties that indicate resource read permissions.
1949
+ """
1950
+ removable: NotRequired[pulumi.Input[bool]]
1951
+ """
1952
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
1953
+ """
1954
+ sharing: NotRequired[pulumi.Input[str]]
1955
+ """
1956
+ 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
1957
+ """
1958
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1959
+ """
1960
+ Properties that indicate resource write permissions.
1961
+ """
1962
+ elif False:
1963
+ InputsTcpCookedAclArgsDict: TypeAlias = Mapping[str, Any]
1964
+
1497
1965
  @pulumi.input_type
1498
1966
  class InputsTcpCookedAclArgs:
1499
1967
  def __init__(__self__, *,
@@ -1519,7 +1987,7 @@ class InputsTcpCookedAclArgs:
1519
1987
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
1520
1988
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
1521
1989
  :param pulumi.Input[str] sharing: 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
1522
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
1990
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
1523
1991
  """
1524
1992
  if app is not None:
1525
1993
  pulumi.set(__self__, "app", app)
@@ -1668,7 +2136,7 @@ class InputsTcpCookedAclArgs:
1668
2136
  @pulumi.getter
1669
2137
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1670
2138
  """
1671
- Properties that indicate write permissions of the resource.
2139
+ Properties that indicate resource write permissions.
1672
2140
  """
1673
2141
  return pulumi.get(self, "writes")
1674
2142
 
@@ -1677,6 +2145,55 @@ class InputsTcpCookedAclArgs:
1677
2145
  pulumi.set(self, "writes", value)
1678
2146
 
1679
2147
 
2148
+ if not MYPY:
2149
+ class InputsTcpRawAclArgsDict(TypedDict):
2150
+ app: NotRequired[pulumi.Input[str]]
2151
+ """
2152
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
2153
+ """
2154
+ can_change_perms: NotRequired[pulumi.Input[bool]]
2155
+ """
2156
+ Indicates if the active user can change permissions for this object. Defaults to true.
2157
+ """
2158
+ can_share_app: NotRequired[pulumi.Input[bool]]
2159
+ """
2160
+ Indicates if the active user can change sharing to app level. Defaults to true.
2161
+ """
2162
+ can_share_global: NotRequired[pulumi.Input[bool]]
2163
+ """
2164
+ Indicates if the active user can change sharing to system level. Defaults to true.
2165
+ """
2166
+ can_share_user: NotRequired[pulumi.Input[bool]]
2167
+ """
2168
+ Indicates if the active user can change sharing to user level. Defaults to true.
2169
+ """
2170
+ can_write: NotRequired[pulumi.Input[bool]]
2171
+ """
2172
+ Indicates if the active user can edit this object. Defaults to true.
2173
+ """
2174
+ owner: NotRequired[pulumi.Input[str]]
2175
+ """
2176
+ 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.
2177
+ """
2178
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2179
+ """
2180
+ Properties that indicate resource read permissions.
2181
+ """
2182
+ removable: NotRequired[pulumi.Input[bool]]
2183
+ """
2184
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
2185
+ """
2186
+ sharing: NotRequired[pulumi.Input[str]]
2187
+ """
2188
+ 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
2189
+ """
2190
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2191
+ """
2192
+ Properties that indicate resource write permissions.
2193
+ """
2194
+ elif False:
2195
+ InputsTcpRawAclArgsDict: TypeAlias = Mapping[str, Any]
2196
+
1680
2197
  @pulumi.input_type
1681
2198
  class InputsTcpRawAclArgs:
1682
2199
  def __init__(__self__, *,
@@ -1702,7 +2219,239 @@ class InputsTcpRawAclArgs:
1702
2219
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
1703
2220
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
1704
2221
  :param pulumi.Input[str] sharing: 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
1705
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
2222
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2223
+ """
2224
+ if app is not None:
2225
+ pulumi.set(__self__, "app", app)
2226
+ if can_change_perms is not None:
2227
+ pulumi.set(__self__, "can_change_perms", can_change_perms)
2228
+ if can_share_app is not None:
2229
+ pulumi.set(__self__, "can_share_app", can_share_app)
2230
+ if can_share_global is not None:
2231
+ pulumi.set(__self__, "can_share_global", can_share_global)
2232
+ if can_share_user is not None:
2233
+ pulumi.set(__self__, "can_share_user", can_share_user)
2234
+ if can_write is not None:
2235
+ pulumi.set(__self__, "can_write", can_write)
2236
+ if owner is not None:
2237
+ pulumi.set(__self__, "owner", owner)
2238
+ if reads is not None:
2239
+ pulumi.set(__self__, "reads", reads)
2240
+ if removable is not None:
2241
+ pulumi.set(__self__, "removable", removable)
2242
+ if sharing is not None:
2243
+ pulumi.set(__self__, "sharing", sharing)
2244
+ if writes is not None:
2245
+ pulumi.set(__self__, "writes", writes)
2246
+
2247
+ @property
2248
+ @pulumi.getter
2249
+ def app(self) -> Optional[pulumi.Input[str]]:
2250
+ """
2251
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
2252
+ """
2253
+ return pulumi.get(self, "app")
2254
+
2255
+ @app.setter
2256
+ def app(self, value: Optional[pulumi.Input[str]]):
2257
+ pulumi.set(self, "app", value)
2258
+
2259
+ @property
2260
+ @pulumi.getter(name="canChangePerms")
2261
+ def can_change_perms(self) -> Optional[pulumi.Input[bool]]:
2262
+ """
2263
+ Indicates if the active user can change permissions for this object. Defaults to true.
2264
+ """
2265
+ return pulumi.get(self, "can_change_perms")
2266
+
2267
+ @can_change_perms.setter
2268
+ def can_change_perms(self, value: Optional[pulumi.Input[bool]]):
2269
+ pulumi.set(self, "can_change_perms", value)
2270
+
2271
+ @property
2272
+ @pulumi.getter(name="canShareApp")
2273
+ def can_share_app(self) -> Optional[pulumi.Input[bool]]:
2274
+ """
2275
+ Indicates if the active user can change sharing to app level. Defaults to true.
2276
+ """
2277
+ return pulumi.get(self, "can_share_app")
2278
+
2279
+ @can_share_app.setter
2280
+ def can_share_app(self, value: Optional[pulumi.Input[bool]]):
2281
+ pulumi.set(self, "can_share_app", value)
2282
+
2283
+ @property
2284
+ @pulumi.getter(name="canShareGlobal")
2285
+ def can_share_global(self) -> Optional[pulumi.Input[bool]]:
2286
+ """
2287
+ Indicates if the active user can change sharing to system level. Defaults to true.
2288
+ """
2289
+ return pulumi.get(self, "can_share_global")
2290
+
2291
+ @can_share_global.setter
2292
+ def can_share_global(self, value: Optional[pulumi.Input[bool]]):
2293
+ pulumi.set(self, "can_share_global", value)
2294
+
2295
+ @property
2296
+ @pulumi.getter(name="canShareUser")
2297
+ def can_share_user(self) -> Optional[pulumi.Input[bool]]:
2298
+ """
2299
+ Indicates if the active user can change sharing to user level. Defaults to true.
2300
+ """
2301
+ return pulumi.get(self, "can_share_user")
2302
+
2303
+ @can_share_user.setter
2304
+ def can_share_user(self, value: Optional[pulumi.Input[bool]]):
2305
+ pulumi.set(self, "can_share_user", value)
2306
+
2307
+ @property
2308
+ @pulumi.getter(name="canWrite")
2309
+ def can_write(self) -> Optional[pulumi.Input[bool]]:
2310
+ """
2311
+ Indicates if the active user can edit this object. Defaults to true.
2312
+ """
2313
+ return pulumi.get(self, "can_write")
2314
+
2315
+ @can_write.setter
2316
+ def can_write(self, value: Optional[pulumi.Input[bool]]):
2317
+ pulumi.set(self, "can_write", value)
2318
+
2319
+ @property
2320
+ @pulumi.getter
2321
+ def owner(self) -> Optional[pulumi.Input[str]]:
2322
+ """
2323
+ 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.
2324
+ """
2325
+ return pulumi.get(self, "owner")
2326
+
2327
+ @owner.setter
2328
+ def owner(self, value: Optional[pulumi.Input[str]]):
2329
+ pulumi.set(self, "owner", value)
2330
+
2331
+ @property
2332
+ @pulumi.getter
2333
+ def reads(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2334
+ """
2335
+ Properties that indicate resource read permissions.
2336
+ """
2337
+ return pulumi.get(self, "reads")
2338
+
2339
+ @reads.setter
2340
+ def reads(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2341
+ pulumi.set(self, "reads", value)
2342
+
2343
+ @property
2344
+ @pulumi.getter
2345
+ def removable(self) -> Optional[pulumi.Input[bool]]:
2346
+ """
2347
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
2348
+ """
2349
+ return pulumi.get(self, "removable")
2350
+
2351
+ @removable.setter
2352
+ def removable(self, value: Optional[pulumi.Input[bool]]):
2353
+ pulumi.set(self, "removable", value)
2354
+
2355
+ @property
2356
+ @pulumi.getter
2357
+ def sharing(self) -> Optional[pulumi.Input[str]]:
2358
+ """
2359
+ 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
2360
+ """
2361
+ return pulumi.get(self, "sharing")
2362
+
2363
+ @sharing.setter
2364
+ def sharing(self, value: Optional[pulumi.Input[str]]):
2365
+ pulumi.set(self, "sharing", value)
2366
+
2367
+ @property
2368
+ @pulumi.getter
2369
+ def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2370
+ """
2371
+ Properties that indicate resource write permissions.
2372
+ """
2373
+ return pulumi.get(self, "writes")
2374
+
2375
+ @writes.setter
2376
+ def writes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2377
+ pulumi.set(self, "writes", value)
2378
+
2379
+
2380
+ if not MYPY:
2381
+ class InputsTcpSplunkTcpTokenAclArgsDict(TypedDict):
2382
+ app: NotRequired[pulumi.Input[str]]
2383
+ """
2384
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
2385
+ """
2386
+ can_change_perms: NotRequired[pulumi.Input[bool]]
2387
+ """
2388
+ Indicates if the active user can change permissions for this object. Defaults to true.
2389
+ """
2390
+ can_share_app: NotRequired[pulumi.Input[bool]]
2391
+ """
2392
+ Indicates if the active user can change sharing to app level. Defaults to true.
2393
+ """
2394
+ can_share_global: NotRequired[pulumi.Input[bool]]
2395
+ """
2396
+ Indicates if the active user can change sharing to system level. Defaults to true.
2397
+ """
2398
+ can_share_user: NotRequired[pulumi.Input[bool]]
2399
+ """
2400
+ Indicates if the active user can change sharing to user level. Defaults to true.
2401
+ """
2402
+ can_write: NotRequired[pulumi.Input[bool]]
2403
+ """
2404
+ Indicates if the active user can edit this object. Defaults to true.
2405
+ """
2406
+ owner: NotRequired[pulumi.Input[str]]
2407
+ """
2408
+ 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.
2409
+ """
2410
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2411
+ """
2412
+ Properties that indicate resource read permissions.
2413
+ """
2414
+ removable: NotRequired[pulumi.Input[bool]]
2415
+ """
2416
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
2417
+ """
2418
+ sharing: NotRequired[pulumi.Input[str]]
2419
+ """
2420
+ 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
2421
+ """
2422
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2423
+ """
2424
+ Properties that indicate resource write permissions.
2425
+ """
2426
+ elif False:
2427
+ InputsTcpSplunkTcpTokenAclArgsDict: TypeAlias = Mapping[str, Any]
2428
+
2429
+ @pulumi.input_type
2430
+ class InputsTcpSplunkTcpTokenAclArgs:
2431
+ def __init__(__self__, *,
2432
+ app: Optional[pulumi.Input[str]] = None,
2433
+ can_change_perms: Optional[pulumi.Input[bool]] = None,
2434
+ can_share_app: Optional[pulumi.Input[bool]] = None,
2435
+ can_share_global: Optional[pulumi.Input[bool]] = None,
2436
+ can_share_user: Optional[pulumi.Input[bool]] = None,
2437
+ can_write: Optional[pulumi.Input[bool]] = None,
2438
+ owner: Optional[pulumi.Input[str]] = None,
2439
+ reads: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2440
+ removable: Optional[pulumi.Input[bool]] = None,
2441
+ sharing: Optional[pulumi.Input[str]] = None,
2442
+ writes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
2443
+ """
2444
+ :param pulumi.Input[str] app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
2445
+ :param pulumi.Input[bool] can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
2446
+ :param pulumi.Input[bool] can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
2447
+ :param pulumi.Input[bool] can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
2448
+ :param pulumi.Input[bool] can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
2449
+ :param pulumi.Input[bool] can_write: Indicates if the active user can edit this object. Defaults to true.
2450
+ :param pulumi.Input[str] owner: 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.
2451
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2452
+ :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2453
+ :param pulumi.Input[str] sharing: 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
2454
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
1706
2455
  """
1707
2456
  if app is not None:
1708
2457
  pulumi.set(__self__, "app", app)
@@ -1841,27 +2590,76 @@ class InputsTcpRawAclArgs:
1841
2590
  """
1842
2591
  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
1843
2592
  """
1844
- return pulumi.get(self, "sharing")
1845
-
1846
- @sharing.setter
1847
- def sharing(self, value: Optional[pulumi.Input[str]]):
1848
- pulumi.set(self, "sharing", value)
1849
-
1850
- @property
1851
- @pulumi.getter
1852
- def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2593
+ return pulumi.get(self, "sharing")
2594
+
2595
+ @sharing.setter
2596
+ def sharing(self, value: Optional[pulumi.Input[str]]):
2597
+ pulumi.set(self, "sharing", value)
2598
+
2599
+ @property
2600
+ @pulumi.getter
2601
+ def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2602
+ """
2603
+ Properties that indicate resource write permissions.
2604
+ """
2605
+ return pulumi.get(self, "writes")
2606
+
2607
+ @writes.setter
2608
+ def writes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2609
+ pulumi.set(self, "writes", value)
2610
+
2611
+
2612
+ if not MYPY:
2613
+ class InputsUdpAclArgsDict(TypedDict):
2614
+ app: NotRequired[pulumi.Input[str]]
2615
+ """
2616
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
2617
+ """
2618
+ can_change_perms: NotRequired[pulumi.Input[bool]]
2619
+ """
2620
+ Indicates if the active user can change permissions for this object. Defaults to true.
2621
+ """
2622
+ can_share_app: NotRequired[pulumi.Input[bool]]
2623
+ """
2624
+ Indicates if the active user can change sharing to app level. Defaults to true.
2625
+ """
2626
+ can_share_global: NotRequired[pulumi.Input[bool]]
2627
+ """
2628
+ Indicates if the active user can change sharing to system level. Defaults to true.
2629
+ """
2630
+ can_share_user: NotRequired[pulumi.Input[bool]]
2631
+ """
2632
+ Indicates if the active user can change sharing to user level. Defaults to true.
2633
+ """
2634
+ can_write: NotRequired[pulumi.Input[bool]]
2635
+ """
2636
+ Indicates if the active user can edit this object. Defaults to true.
2637
+ """
2638
+ owner: NotRequired[pulumi.Input[str]]
2639
+ """
2640
+ 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.
2641
+ """
2642
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2643
+ """
2644
+ Properties that indicate resource read permissions.
2645
+ """
2646
+ removable: NotRequired[pulumi.Input[bool]]
2647
+ """
2648
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
2649
+ """
2650
+ sharing: NotRequired[pulumi.Input[str]]
2651
+ """
2652
+ 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
2653
+ """
2654
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1853
2655
  """
1854
- Properties that indicate write permissions of the resource.
2656
+ Properties that indicate resource write permissions.
1855
2657
  """
1856
- return pulumi.get(self, "writes")
1857
-
1858
- @writes.setter
1859
- def writes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1860
- pulumi.set(self, "writes", value)
1861
-
2658
+ elif False:
2659
+ InputsUdpAclArgsDict: TypeAlias = Mapping[str, Any]
1862
2660
 
1863
2661
  @pulumi.input_type
1864
- class InputsTcpSplunkTcpTokenAclArgs:
2662
+ class InputsUdpAclArgs:
1865
2663
  def __init__(__self__, *,
1866
2664
  app: Optional[pulumi.Input[str]] = None,
1867
2665
  can_change_perms: Optional[pulumi.Input[bool]] = None,
@@ -1885,7 +2683,7 @@ class InputsTcpSplunkTcpTokenAclArgs:
1885
2683
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
1886
2684
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
1887
2685
  :param pulumi.Input[str] sharing: 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
1888
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
2686
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
1889
2687
  """
1890
2688
  if app is not None:
1891
2689
  pulumi.set(__self__, "app", app)
@@ -2034,7 +2832,7 @@ class InputsTcpSplunkTcpTokenAclArgs:
2034
2832
  @pulumi.getter
2035
2833
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2036
2834
  """
2037
- Properties that indicate write permissions of the resource.
2835
+ Properties that indicate resource write permissions.
2038
2836
  """
2039
2837
  return pulumi.get(self, "writes")
2040
2838
 
@@ -2043,8 +2841,57 @@ class InputsTcpSplunkTcpTokenAclArgs:
2043
2841
  pulumi.set(self, "writes", value)
2044
2842
 
2045
2843
 
2844
+ if not MYPY:
2845
+ class LookupDefinitionAclArgsDict(TypedDict):
2846
+ app: NotRequired[pulumi.Input[str]]
2847
+ """
2848
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
2849
+ """
2850
+ can_change_perms: NotRequired[pulumi.Input[bool]]
2851
+ """
2852
+ Indicates if the active user can change permissions for this object. Defaults to true.
2853
+ """
2854
+ can_share_app: NotRequired[pulumi.Input[bool]]
2855
+ """
2856
+ Indicates if the active user can change sharing to app level. Defaults to true.
2857
+ """
2858
+ can_share_global: NotRequired[pulumi.Input[bool]]
2859
+ """
2860
+ Indicates if the active user can change sharing to system level. Defaults to true.
2861
+ """
2862
+ can_share_user: NotRequired[pulumi.Input[bool]]
2863
+ """
2864
+ Indicates if the active user can change sharing to user level. Defaults to true.
2865
+ """
2866
+ can_write: NotRequired[pulumi.Input[bool]]
2867
+ """
2868
+ Indicates if the active user can edit this object. Defaults to true.
2869
+ """
2870
+ owner: NotRequired[pulumi.Input[str]]
2871
+ """
2872
+ 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.
2873
+ """
2874
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2875
+ """
2876
+ Properties that indicate resource read permissions.
2877
+ """
2878
+ removable: NotRequired[pulumi.Input[bool]]
2879
+ """
2880
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
2881
+ """
2882
+ sharing: NotRequired[pulumi.Input[str]]
2883
+ """
2884
+ 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
2885
+ """
2886
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2887
+ """
2888
+ Properties that indicate resource write permissions.
2889
+ """
2890
+ elif False:
2891
+ LookupDefinitionAclArgsDict: TypeAlias = Mapping[str, Any]
2892
+
2046
2893
  @pulumi.input_type
2047
- class InputsUdpAclArgs:
2894
+ class LookupDefinitionAclArgs:
2048
2895
  def __init__(__self__, *,
2049
2896
  app: Optional[pulumi.Input[str]] = None,
2050
2897
  can_change_perms: Optional[pulumi.Input[bool]] = None,
@@ -2068,7 +2915,7 @@ class InputsUdpAclArgs:
2068
2915
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2069
2916
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2070
2917
  :param pulumi.Input[str] sharing: 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
2071
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
2918
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2072
2919
  """
2073
2920
  if app is not None:
2074
2921
  pulumi.set(__self__, "app", app)
@@ -2217,7 +3064,7 @@ class InputsUdpAclArgs:
2217
3064
  @pulumi.getter
2218
3065
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2219
3066
  """
2220
- Properties that indicate write permissions of the resource.
3067
+ Properties that indicate resource write permissions.
2221
3068
  """
2222
3069
  return pulumi.get(self, "writes")
2223
3070
 
@@ -2226,6 +3073,55 @@ class InputsUdpAclArgs:
2226
3073
  pulumi.set(self, "writes", value)
2227
3074
 
2228
3075
 
3076
+ if not MYPY:
3077
+ class OutputsTcpDefaultAclArgsDict(TypedDict):
3078
+ app: NotRequired[pulumi.Input[str]]
3079
+ """
3080
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
3081
+ """
3082
+ can_change_perms: NotRequired[pulumi.Input[bool]]
3083
+ """
3084
+ Indicates if the active user can change permissions for this object. Defaults to true.
3085
+ """
3086
+ can_share_app: NotRequired[pulumi.Input[bool]]
3087
+ """
3088
+ Indicates if the active user can change sharing to app level. Defaults to true.
3089
+ """
3090
+ can_share_global: NotRequired[pulumi.Input[bool]]
3091
+ """
3092
+ Indicates if the active user can change sharing to system level. Defaults to true.
3093
+ """
3094
+ can_share_user: NotRequired[pulumi.Input[bool]]
3095
+ """
3096
+ Indicates if the active user can change sharing to user level. Defaults to true.
3097
+ """
3098
+ can_write: NotRequired[pulumi.Input[bool]]
3099
+ """
3100
+ Indicates if the active user can edit this object. Defaults to true.
3101
+ """
3102
+ owner: NotRequired[pulumi.Input[str]]
3103
+ """
3104
+ 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.
3105
+ """
3106
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3107
+ """
3108
+ Properties that indicate resource read permissions.
3109
+ """
3110
+ removable: NotRequired[pulumi.Input[bool]]
3111
+ """
3112
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
3113
+ """
3114
+ sharing: NotRequired[pulumi.Input[str]]
3115
+ """
3116
+ 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
3117
+ """
3118
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3119
+ """
3120
+ Properties that indicate resource write permissions.
3121
+ """
3122
+ elif False:
3123
+ OutputsTcpDefaultAclArgsDict: TypeAlias = Mapping[str, Any]
3124
+
2229
3125
  @pulumi.input_type
2230
3126
  class OutputsTcpDefaultAclArgs:
2231
3127
  def __init__(__self__, *,
@@ -2251,7 +3147,7 @@ class OutputsTcpDefaultAclArgs:
2251
3147
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2252
3148
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2253
3149
  :param pulumi.Input[str] sharing: 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
2254
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
3150
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2255
3151
  """
2256
3152
  if app is not None:
2257
3153
  pulumi.set(__self__, "app", app)
@@ -2400,7 +3296,7 @@ class OutputsTcpDefaultAclArgs:
2400
3296
  @pulumi.getter
2401
3297
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2402
3298
  """
2403
- Properties that indicate write permissions of the resource.
3299
+ Properties that indicate resource write permissions.
2404
3300
  """
2405
3301
  return pulumi.get(self, "writes")
2406
3302
 
@@ -2409,6 +3305,55 @@ class OutputsTcpDefaultAclArgs:
2409
3305
  pulumi.set(self, "writes", value)
2410
3306
 
2411
3307
 
3308
+ if not MYPY:
3309
+ class OutputsTcpGroupAclArgsDict(TypedDict):
3310
+ app: NotRequired[pulumi.Input[str]]
3311
+ """
3312
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
3313
+ """
3314
+ can_change_perms: NotRequired[pulumi.Input[bool]]
3315
+ """
3316
+ Indicates if the active user can change permissions for this object. Defaults to true.
3317
+ """
3318
+ can_share_app: NotRequired[pulumi.Input[bool]]
3319
+ """
3320
+ Indicates if the active user can change sharing to app level. Defaults to true.
3321
+ """
3322
+ can_share_global: NotRequired[pulumi.Input[bool]]
3323
+ """
3324
+ Indicates if the active user can change sharing to system level. Defaults to true.
3325
+ """
3326
+ can_share_user: NotRequired[pulumi.Input[bool]]
3327
+ """
3328
+ Indicates if the active user can change sharing to user level. Defaults to true.
3329
+ """
3330
+ can_write: NotRequired[pulumi.Input[bool]]
3331
+ """
3332
+ Indicates if the active user can edit this object. Defaults to true.
3333
+ """
3334
+ owner: NotRequired[pulumi.Input[str]]
3335
+ """
3336
+ 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.
3337
+ """
3338
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3339
+ """
3340
+ Properties that indicate resource read permissions.
3341
+ """
3342
+ removable: NotRequired[pulumi.Input[bool]]
3343
+ """
3344
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
3345
+ """
3346
+ sharing: NotRequired[pulumi.Input[str]]
3347
+ """
3348
+ 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
3349
+ """
3350
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3351
+ """
3352
+ Properties that indicate resource write permissions.
3353
+ """
3354
+ elif False:
3355
+ OutputsTcpGroupAclArgsDict: TypeAlias = Mapping[str, Any]
3356
+
2412
3357
  @pulumi.input_type
2413
3358
  class OutputsTcpGroupAclArgs:
2414
3359
  def __init__(__self__, *,
@@ -2434,7 +3379,7 @@ class OutputsTcpGroupAclArgs:
2434
3379
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2435
3380
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2436
3381
  :param pulumi.Input[str] sharing: 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
2437
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
3382
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2438
3383
  """
2439
3384
  if app is not None:
2440
3385
  pulumi.set(__self__, "app", app)
@@ -2583,7 +3528,7 @@ class OutputsTcpGroupAclArgs:
2583
3528
  @pulumi.getter
2584
3529
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2585
3530
  """
2586
- Properties that indicate write permissions of the resource.
3531
+ Properties that indicate resource write permissions.
2587
3532
  """
2588
3533
  return pulumi.get(self, "writes")
2589
3534
 
@@ -2592,6 +3537,55 @@ class OutputsTcpGroupAclArgs:
2592
3537
  pulumi.set(self, "writes", value)
2593
3538
 
2594
3539
 
3540
+ if not MYPY:
3541
+ class OutputsTcpServerAclArgsDict(TypedDict):
3542
+ app: NotRequired[pulumi.Input[str]]
3543
+ """
3544
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
3545
+ """
3546
+ can_change_perms: NotRequired[pulumi.Input[bool]]
3547
+ """
3548
+ Indicates if the active user can change permissions for this object. Defaults to true.
3549
+ """
3550
+ can_share_app: NotRequired[pulumi.Input[bool]]
3551
+ """
3552
+ Indicates if the active user can change sharing to app level. Defaults to true.
3553
+ """
3554
+ can_share_global: NotRequired[pulumi.Input[bool]]
3555
+ """
3556
+ Indicates if the active user can change sharing to system level. Defaults to true.
3557
+ """
3558
+ can_share_user: NotRequired[pulumi.Input[bool]]
3559
+ """
3560
+ Indicates if the active user can change sharing to user level. Defaults to true.
3561
+ """
3562
+ can_write: NotRequired[pulumi.Input[bool]]
3563
+ """
3564
+ Indicates if the active user can edit this object. Defaults to true.
3565
+ """
3566
+ owner: NotRequired[pulumi.Input[str]]
3567
+ """
3568
+ 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.
3569
+ """
3570
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3571
+ """
3572
+ Properties that indicate resource read permissions.
3573
+ """
3574
+ removable: NotRequired[pulumi.Input[bool]]
3575
+ """
3576
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
3577
+ """
3578
+ sharing: NotRequired[pulumi.Input[str]]
3579
+ """
3580
+ 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
3581
+ """
3582
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3583
+ """
3584
+ Properties that indicate resource write permissions.
3585
+ """
3586
+ elif False:
3587
+ OutputsTcpServerAclArgsDict: TypeAlias = Mapping[str, Any]
3588
+
2595
3589
  @pulumi.input_type
2596
3590
  class OutputsTcpServerAclArgs:
2597
3591
  def __init__(__self__, *,
@@ -2617,7 +3611,7 @@ class OutputsTcpServerAclArgs:
2617
3611
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2618
3612
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2619
3613
  :param pulumi.Input[str] sharing: 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
2620
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
3614
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2621
3615
  """
2622
3616
  if app is not None:
2623
3617
  pulumi.set(__self__, "app", app)
@@ -2766,7 +3760,7 @@ class OutputsTcpServerAclArgs:
2766
3760
  @pulumi.getter
2767
3761
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2768
3762
  """
2769
- Properties that indicate write permissions of the resource.
3763
+ Properties that indicate resource write permissions.
2770
3764
  """
2771
3765
  return pulumi.get(self, "writes")
2772
3766
 
@@ -2775,6 +3769,55 @@ class OutputsTcpServerAclArgs:
2775
3769
  pulumi.set(self, "writes", value)
2776
3770
 
2777
3771
 
3772
+ if not MYPY:
3773
+ class OutputsTcpSyslogAclArgsDict(TypedDict):
3774
+ app: NotRequired[pulumi.Input[str]]
3775
+ """
3776
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
3777
+ """
3778
+ can_change_perms: NotRequired[pulumi.Input[bool]]
3779
+ """
3780
+ Indicates if the active user can change permissions for this object. Defaults to true.
3781
+ """
3782
+ can_share_app: NotRequired[pulumi.Input[bool]]
3783
+ """
3784
+ Indicates if the active user can change sharing to app level. Defaults to true.
3785
+ """
3786
+ can_share_global: NotRequired[pulumi.Input[bool]]
3787
+ """
3788
+ Indicates if the active user can change sharing to system level. Defaults to true.
3789
+ """
3790
+ can_share_user: NotRequired[pulumi.Input[bool]]
3791
+ """
3792
+ Indicates if the active user can change sharing to user level. Defaults to true.
3793
+ """
3794
+ can_write: NotRequired[pulumi.Input[bool]]
3795
+ """
3796
+ Indicates if the active user can edit this object. Defaults to true.
3797
+ """
3798
+ owner: NotRequired[pulumi.Input[str]]
3799
+ """
3800
+ 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.
3801
+ """
3802
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3803
+ """
3804
+ Properties that indicate resource read permissions.
3805
+ """
3806
+ removable: NotRequired[pulumi.Input[bool]]
3807
+ """
3808
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
3809
+ """
3810
+ sharing: NotRequired[pulumi.Input[str]]
3811
+ """
3812
+ 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
3813
+ """
3814
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3815
+ """
3816
+ Properties that indicate resource write permissions.
3817
+ """
3818
+ elif False:
3819
+ OutputsTcpSyslogAclArgsDict: TypeAlias = Mapping[str, Any]
3820
+
2778
3821
  @pulumi.input_type
2779
3822
  class OutputsTcpSyslogAclArgs:
2780
3823
  def __init__(__self__, *,
@@ -2800,7 +3843,7 @@ class OutputsTcpSyslogAclArgs:
2800
3843
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2801
3844
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2802
3845
  :param pulumi.Input[str] sharing: 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
2803
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
3846
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2804
3847
  """
2805
3848
  if app is not None:
2806
3849
  pulumi.set(__self__, "app", app)
@@ -2949,7 +3992,7 @@ class OutputsTcpSyslogAclArgs:
2949
3992
  @pulumi.getter
2950
3993
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2951
3994
  """
2952
- Properties that indicate write permissions of the resource.
3995
+ Properties that indicate resource write permissions.
2953
3996
  """
2954
3997
  return pulumi.get(self, "writes")
2955
3998
 
@@ -2958,6 +4001,55 @@ class OutputsTcpSyslogAclArgs:
2958
4001
  pulumi.set(self, "writes", value)
2959
4002
 
2960
4003
 
4004
+ if not MYPY:
4005
+ class SavedSearchesAclArgsDict(TypedDict):
4006
+ app: NotRequired[pulumi.Input[str]]
4007
+ """
4008
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
4009
+ """
4010
+ can_change_perms: NotRequired[pulumi.Input[bool]]
4011
+ """
4012
+ Indicates if the active user can change permissions for this object. Defaults to true.
4013
+ """
4014
+ can_share_app: NotRequired[pulumi.Input[bool]]
4015
+ """
4016
+ Indicates if the active user can change sharing to app level. Defaults to true.
4017
+ """
4018
+ can_share_global: NotRequired[pulumi.Input[bool]]
4019
+ """
4020
+ Indicates if the active user can change sharing to system level. Defaults to true.
4021
+ """
4022
+ can_share_user: NotRequired[pulumi.Input[bool]]
4023
+ """
4024
+ Indicates if the active user can change sharing to user level. Defaults to true.
4025
+ """
4026
+ can_write: NotRequired[pulumi.Input[bool]]
4027
+ """
4028
+ Indicates if the active user can edit this object. Defaults to true.
4029
+ """
4030
+ owner: NotRequired[pulumi.Input[str]]
4031
+ """
4032
+ 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.
4033
+ """
4034
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
4035
+ """
4036
+ Properties that indicate resource read permissions.
4037
+ """
4038
+ removable: NotRequired[pulumi.Input[bool]]
4039
+ """
4040
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
4041
+ """
4042
+ sharing: NotRequired[pulumi.Input[str]]
4043
+ """
4044
+ 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
4045
+ """
4046
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
4047
+ """
4048
+ Properties that indicate resource write permissions.
4049
+ """
4050
+ elif False:
4051
+ SavedSearchesAclArgsDict: TypeAlias = Mapping[str, Any]
4052
+
2961
4053
  @pulumi.input_type
2962
4054
  class SavedSearchesAclArgs:
2963
4055
  def __init__(__self__, *,
@@ -2983,7 +4075,7 @@ class SavedSearchesAclArgs:
2983
4075
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
2984
4076
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
2985
4077
  :param pulumi.Input[str] sharing: 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
2986
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
4078
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
2987
4079
  """
2988
4080
  if app is not None:
2989
4081
  pulumi.set(__self__, "app", app)
@@ -3132,7 +4224,7 @@ class SavedSearchesAclArgs:
3132
4224
  @pulumi.getter
3133
4225
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3134
4226
  """
3135
- Properties that indicate write permissions of the resource.
4227
+ Properties that indicate resource write permissions.
3136
4228
  """
3137
4229
  return pulumi.get(self, "writes")
3138
4230
 
@@ -3141,6 +4233,55 @@ class SavedSearchesAclArgs:
3141
4233
  pulumi.set(self, "writes", value)
3142
4234
 
3143
4235
 
4236
+ if not MYPY:
4237
+ class ShIndexesManagerAclArgsDict(TypedDict):
4238
+ app: NotRequired[pulumi.Input[str]]
4239
+ """
4240
+ The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
4241
+ """
4242
+ can_change_perms: NotRequired[pulumi.Input[bool]]
4243
+ """
4244
+ Indicates if the active user can change permissions for this object. Defaults to true.
4245
+ """
4246
+ can_share_app: NotRequired[pulumi.Input[bool]]
4247
+ """
4248
+ Indicates if the active user can change sharing to app level. Defaults to true.
4249
+ """
4250
+ can_share_global: NotRequired[pulumi.Input[bool]]
4251
+ """
4252
+ Indicates if the active user can change sharing to system level. Defaults to true.
4253
+ """
4254
+ can_share_user: NotRequired[pulumi.Input[bool]]
4255
+ """
4256
+ Indicates if the active user can change sharing to user level. Defaults to true.
4257
+ """
4258
+ can_write: NotRequired[pulumi.Input[bool]]
4259
+ """
4260
+ Indicates if the active user can edit this object. Defaults to true.
4261
+ """
4262
+ owner: NotRequired[pulumi.Input[str]]
4263
+ """
4264
+ 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.
4265
+ """
4266
+ reads: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
4267
+ """
4268
+ Properties that indicate resource read permissions.
4269
+ """
4270
+ removable: NotRequired[pulumi.Input[bool]]
4271
+ """
4272
+ Indicates whether an admin or user with sufficient permissions can delete the entity.
4273
+ """
4274
+ sharing: NotRequired[pulumi.Input[str]]
4275
+ """
4276
+ 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
4277
+ """
4278
+ writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
4279
+ """
4280
+ Properties that indicate resource write permissions.
4281
+ """
4282
+ elif False:
4283
+ ShIndexesManagerAclArgsDict: TypeAlias = Mapping[str, Any]
4284
+
3144
4285
  @pulumi.input_type
3145
4286
  class ShIndexesManagerAclArgs:
3146
4287
  def __init__(__self__, *,
@@ -3166,7 +4307,7 @@ class ShIndexesManagerAclArgs:
3166
4307
  :param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
3167
4308
  :param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
3168
4309
  :param pulumi.Input[str] sharing: 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
3169
- :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions of the resource.
4310
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
3170
4311
  """
3171
4312
  if app is not None:
3172
4313
  pulumi.set(__self__, "app", app)
@@ -3315,7 +4456,7 @@ class ShIndexesManagerAclArgs:
3315
4456
  @pulumi.getter
3316
4457
  def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3317
4458
  """
3318
- Properties that indicate write permissions of the resource.
4459
+ Properties that indicate resource write permissions.
3319
4460
  """
3320
4461
  return pulumi.get(self, "writes")
3321
4462