pulumi-splunk 1.3.0a1731738558__py3-none-any.whl → 1.3.0a1732277463__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.
- pulumi_splunk/__init__.py +9 -0
- pulumi_splunk/_inputs.py +288 -54
- pulumi_splunk/lookup_definition.py +300 -0
- pulumi_splunk/outputs.py +201 -36
- pulumi_splunk/pulumi-plugin.json +1 -1
- {pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/METADATA +5 -5
- {pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/RECORD +9 -8
- {pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/WHEEL +1 -1
- {pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/top_level.txt +0 -0
pulumi_splunk/_inputs.py
CHANGED
|
@@ -39,6 +39,8 @@ __all__ = [
|
|
|
39
39
|
'InputsTcpSplunkTcpTokenAclArgsDict',
|
|
40
40
|
'InputsUdpAclArgs',
|
|
41
41
|
'InputsUdpAclArgsDict',
|
|
42
|
+
'LookupDefinitionAclArgs',
|
|
43
|
+
'LookupDefinitionAclArgsDict',
|
|
42
44
|
'OutputsTcpDefaultAclArgs',
|
|
43
45
|
'OutputsTcpDefaultAclArgsDict',
|
|
44
46
|
'OutputsTcpGroupAclArgs',
|
|
@@ -99,7 +101,7 @@ if not MYPY:
|
|
|
99
101
|
"""
|
|
100
102
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
101
103
|
"""
|
|
102
|
-
Properties that indicate write permissions
|
|
104
|
+
Properties that indicate resource write permissions.
|
|
103
105
|
"""
|
|
104
106
|
elif False:
|
|
105
107
|
AppsLocalAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -129,7 +131,7 @@ class AppsLocalAclArgs:
|
|
|
129
131
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
130
132
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
131
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
|
|
132
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
134
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
133
135
|
"""
|
|
134
136
|
if app is not None:
|
|
135
137
|
pulumi.set(__self__, "app", app)
|
|
@@ -278,7 +280,7 @@ class AppsLocalAclArgs:
|
|
|
278
280
|
@pulumi.getter
|
|
279
281
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
280
282
|
"""
|
|
281
|
-
Properties that indicate write permissions
|
|
283
|
+
Properties that indicate resource write permissions.
|
|
282
284
|
"""
|
|
283
285
|
return pulumi.get(self, "writes")
|
|
284
286
|
|
|
@@ -331,7 +333,7 @@ if not MYPY:
|
|
|
331
333
|
"""
|
|
332
334
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
333
335
|
"""
|
|
334
|
-
Properties that indicate write permissions
|
|
336
|
+
Properties that indicate resource write permissions.
|
|
335
337
|
"""
|
|
336
338
|
elif False:
|
|
337
339
|
ConfigsConfAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -361,7 +363,7 @@ class ConfigsConfAclArgs:
|
|
|
361
363
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
362
364
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
363
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
|
|
364
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
366
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
365
367
|
"""
|
|
366
368
|
if app is not None:
|
|
367
369
|
pulumi.set(__self__, "app", app)
|
|
@@ -510,7 +512,7 @@ class ConfigsConfAclArgs:
|
|
|
510
512
|
@pulumi.getter
|
|
511
513
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
512
514
|
"""
|
|
513
|
-
Properties that indicate write permissions
|
|
515
|
+
Properties that indicate resource write permissions.
|
|
514
516
|
"""
|
|
515
517
|
return pulumi.get(self, "writes")
|
|
516
518
|
|
|
@@ -563,7 +565,7 @@ if not MYPY:
|
|
|
563
565
|
"""
|
|
564
566
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
565
567
|
"""
|
|
566
|
-
Properties that indicate write permissions
|
|
568
|
+
Properties that indicate resource write permissions.
|
|
567
569
|
"""
|
|
568
570
|
elif False:
|
|
569
571
|
DataUiViewsAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -593,7 +595,7 @@ class DataUiViewsAclArgs:
|
|
|
593
595
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
594
596
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
595
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
|
|
596
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
598
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
597
599
|
"""
|
|
598
600
|
if app is not None:
|
|
599
601
|
pulumi.set(__self__, "app", app)
|
|
@@ -742,7 +744,7 @@ class DataUiViewsAclArgs:
|
|
|
742
744
|
@pulumi.getter
|
|
743
745
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
744
746
|
"""
|
|
745
|
-
Properties that indicate write permissions
|
|
747
|
+
Properties that indicate resource write permissions.
|
|
746
748
|
"""
|
|
747
749
|
return pulumi.get(self, "writes")
|
|
748
750
|
|
|
@@ -795,7 +797,7 @@ if not MYPY:
|
|
|
795
797
|
"""
|
|
796
798
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
797
799
|
"""
|
|
798
|
-
Properties that indicate write permissions
|
|
800
|
+
Properties that indicate resource write permissions.
|
|
799
801
|
"""
|
|
800
802
|
elif False:
|
|
801
803
|
GenericAclAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -825,7 +827,7 @@ class GenericAclAclArgs:
|
|
|
825
827
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
826
828
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
827
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
|
|
828
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
830
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
829
831
|
"""
|
|
830
832
|
if app is not None:
|
|
831
833
|
pulumi.set(__self__, "app", app)
|
|
@@ -974,7 +976,7 @@ class GenericAclAclArgs:
|
|
|
974
976
|
@pulumi.getter
|
|
975
977
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
976
978
|
"""
|
|
977
|
-
Properties that indicate write permissions
|
|
979
|
+
Properties that indicate resource write permissions.
|
|
978
980
|
"""
|
|
979
981
|
return pulumi.get(self, "writes")
|
|
980
982
|
|
|
@@ -1027,7 +1029,7 @@ if not MYPY:
|
|
|
1027
1029
|
"""
|
|
1028
1030
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1029
1031
|
"""
|
|
1030
|
-
Properties that indicate write permissions
|
|
1032
|
+
Properties that indicate resource write permissions.
|
|
1031
1033
|
"""
|
|
1032
1034
|
elif False:
|
|
1033
1035
|
IndexesAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1057,7 +1059,7 @@ class IndexesAclArgs:
|
|
|
1057
1059
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
1058
1060
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1059
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
|
|
1060
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
1062
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
1061
1063
|
"""
|
|
1062
1064
|
if app is not None:
|
|
1063
1065
|
pulumi.set(__self__, "app", app)
|
|
@@ -1206,7 +1208,7 @@ class IndexesAclArgs:
|
|
|
1206
1208
|
@pulumi.getter
|
|
1207
1209
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1208
1210
|
"""
|
|
1209
|
-
Properties that indicate write permissions
|
|
1211
|
+
Properties that indicate resource write permissions.
|
|
1210
1212
|
"""
|
|
1211
1213
|
return pulumi.get(self, "writes")
|
|
1212
1214
|
|
|
@@ -1259,7 +1261,7 @@ if not MYPY:
|
|
|
1259
1261
|
"""
|
|
1260
1262
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1261
1263
|
"""
|
|
1262
|
-
Properties that indicate write permissions
|
|
1264
|
+
Properties that indicate resource write permissions.
|
|
1263
1265
|
"""
|
|
1264
1266
|
elif False:
|
|
1265
1267
|
InputsHttpEventCollectorAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1289,7 +1291,7 @@ class InputsHttpEventCollectorAclArgs:
|
|
|
1289
1291
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
1290
1292
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1291
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
|
|
1292
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
1294
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
1293
1295
|
"""
|
|
1294
1296
|
if app is not None:
|
|
1295
1297
|
pulumi.set(__self__, "app", app)
|
|
@@ -1438,7 +1440,7 @@ class InputsHttpEventCollectorAclArgs:
|
|
|
1438
1440
|
@pulumi.getter
|
|
1439
1441
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1440
1442
|
"""
|
|
1441
|
-
Properties that indicate write permissions
|
|
1443
|
+
Properties that indicate resource write permissions.
|
|
1442
1444
|
"""
|
|
1443
1445
|
return pulumi.get(self, "writes")
|
|
1444
1446
|
|
|
@@ -1491,7 +1493,7 @@ if not MYPY:
|
|
|
1491
1493
|
"""
|
|
1492
1494
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1493
1495
|
"""
|
|
1494
|
-
Properties that indicate write permissions
|
|
1496
|
+
Properties that indicate resource write permissions.
|
|
1495
1497
|
"""
|
|
1496
1498
|
elif False:
|
|
1497
1499
|
InputsMonitorAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1521,7 +1523,7 @@ class InputsMonitorAclArgs:
|
|
|
1521
1523
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
1522
1524
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1523
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
|
|
1524
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
1526
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
1525
1527
|
"""
|
|
1526
1528
|
if app is not None:
|
|
1527
1529
|
pulumi.set(__self__, "app", app)
|
|
@@ -1670,7 +1672,7 @@ class InputsMonitorAclArgs:
|
|
|
1670
1672
|
@pulumi.getter
|
|
1671
1673
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1672
1674
|
"""
|
|
1673
|
-
Properties that indicate write permissions
|
|
1675
|
+
Properties that indicate resource write permissions.
|
|
1674
1676
|
"""
|
|
1675
1677
|
return pulumi.get(self, "writes")
|
|
1676
1678
|
|
|
@@ -1723,7 +1725,7 @@ if not MYPY:
|
|
|
1723
1725
|
"""
|
|
1724
1726
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1725
1727
|
"""
|
|
1726
|
-
Properties that indicate write permissions
|
|
1728
|
+
Properties that indicate resource write permissions.
|
|
1727
1729
|
"""
|
|
1728
1730
|
elif False:
|
|
1729
1731
|
InputsScriptAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1753,7 +1755,7 @@ class InputsScriptAclArgs:
|
|
|
1753
1755
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
1754
1756
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1755
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
|
|
1756
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
1758
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
1757
1759
|
"""
|
|
1758
1760
|
if app is not None:
|
|
1759
1761
|
pulumi.set(__self__, "app", app)
|
|
@@ -1902,7 +1904,7 @@ class InputsScriptAclArgs:
|
|
|
1902
1904
|
@pulumi.getter
|
|
1903
1905
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1904
1906
|
"""
|
|
1905
|
-
Properties that indicate write permissions
|
|
1907
|
+
Properties that indicate resource write permissions.
|
|
1906
1908
|
"""
|
|
1907
1909
|
return pulumi.get(self, "writes")
|
|
1908
1910
|
|
|
@@ -1955,7 +1957,7 @@ if not MYPY:
|
|
|
1955
1957
|
"""
|
|
1956
1958
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1957
1959
|
"""
|
|
1958
|
-
Properties that indicate write permissions
|
|
1960
|
+
Properties that indicate resource write permissions.
|
|
1959
1961
|
"""
|
|
1960
1962
|
elif False:
|
|
1961
1963
|
InputsTcpCookedAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1985,7 +1987,7 @@ class InputsTcpCookedAclArgs:
|
|
|
1985
1987
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
1986
1988
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1987
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
|
|
1988
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
1990
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
1989
1991
|
"""
|
|
1990
1992
|
if app is not None:
|
|
1991
1993
|
pulumi.set(__self__, "app", app)
|
|
@@ -2134,7 +2136,7 @@ class InputsTcpCookedAclArgs:
|
|
|
2134
2136
|
@pulumi.getter
|
|
2135
2137
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2136
2138
|
"""
|
|
2137
|
-
Properties that indicate write permissions
|
|
2139
|
+
Properties that indicate resource write permissions.
|
|
2138
2140
|
"""
|
|
2139
2141
|
return pulumi.get(self, "writes")
|
|
2140
2142
|
|
|
@@ -2187,7 +2189,7 @@ if not MYPY:
|
|
|
2187
2189
|
"""
|
|
2188
2190
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2189
2191
|
"""
|
|
2190
|
-
Properties that indicate write permissions
|
|
2192
|
+
Properties that indicate resource write permissions.
|
|
2191
2193
|
"""
|
|
2192
2194
|
elif False:
|
|
2193
2195
|
InputsTcpRawAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2217,7 +2219,7 @@ class InputsTcpRawAclArgs:
|
|
|
2217
2219
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
2218
2220
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2219
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
|
|
2220
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
2222
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
2221
2223
|
"""
|
|
2222
2224
|
if app is not None:
|
|
2223
2225
|
pulumi.set(__self__, "app", app)
|
|
@@ -2366,7 +2368,7 @@ class InputsTcpRawAclArgs:
|
|
|
2366
2368
|
@pulumi.getter
|
|
2367
2369
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2368
2370
|
"""
|
|
2369
|
-
Properties that indicate write permissions
|
|
2371
|
+
Properties that indicate resource write permissions.
|
|
2370
2372
|
"""
|
|
2371
2373
|
return pulumi.get(self, "writes")
|
|
2372
2374
|
|
|
@@ -2419,7 +2421,7 @@ if not MYPY:
|
|
|
2419
2421
|
"""
|
|
2420
2422
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2421
2423
|
"""
|
|
2422
|
-
Properties that indicate write permissions
|
|
2424
|
+
Properties that indicate resource write permissions.
|
|
2423
2425
|
"""
|
|
2424
2426
|
elif False:
|
|
2425
2427
|
InputsTcpSplunkTcpTokenAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2449,7 +2451,7 @@ class InputsTcpSplunkTcpTokenAclArgs:
|
|
|
2449
2451
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
2450
2452
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2451
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
|
|
2452
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
2454
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
2453
2455
|
"""
|
|
2454
2456
|
if app is not None:
|
|
2455
2457
|
pulumi.set(__self__, "app", app)
|
|
@@ -2598,7 +2600,7 @@ class InputsTcpSplunkTcpTokenAclArgs:
|
|
|
2598
2600
|
@pulumi.getter
|
|
2599
2601
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2600
2602
|
"""
|
|
2601
|
-
Properties that indicate write permissions
|
|
2603
|
+
Properties that indicate resource write permissions.
|
|
2602
2604
|
"""
|
|
2603
2605
|
return pulumi.get(self, "writes")
|
|
2604
2606
|
|
|
@@ -2651,7 +2653,7 @@ if not MYPY:
|
|
|
2651
2653
|
"""
|
|
2652
2654
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2653
2655
|
"""
|
|
2654
|
-
Properties that indicate write permissions
|
|
2656
|
+
Properties that indicate resource write permissions.
|
|
2655
2657
|
"""
|
|
2656
2658
|
elif False:
|
|
2657
2659
|
InputsUdpAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2681,7 +2683,7 @@ class InputsUdpAclArgs:
|
|
|
2681
2683
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
2682
2684
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2683
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
|
|
2684
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
2686
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
2685
2687
|
"""
|
|
2686
2688
|
if app is not None:
|
|
2687
2689
|
pulumi.set(__self__, "app", app)
|
|
@@ -2830,7 +2832,239 @@ class InputsUdpAclArgs:
|
|
|
2830
2832
|
@pulumi.getter
|
|
2831
2833
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2832
2834
|
"""
|
|
2833
|
-
Properties that indicate write permissions
|
|
2835
|
+
Properties that indicate resource write permissions.
|
|
2836
|
+
"""
|
|
2837
|
+
return pulumi.get(self, "writes")
|
|
2838
|
+
|
|
2839
|
+
@writes.setter
|
|
2840
|
+
def writes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
2841
|
+
pulumi.set(self, "writes", value)
|
|
2842
|
+
|
|
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
|
+
|
|
2893
|
+
@pulumi.input_type
|
|
2894
|
+
class LookupDefinitionAclArgs:
|
|
2895
|
+
def __init__(__self__, *,
|
|
2896
|
+
app: Optional[pulumi.Input[str]] = None,
|
|
2897
|
+
can_change_perms: Optional[pulumi.Input[bool]] = None,
|
|
2898
|
+
can_share_app: Optional[pulumi.Input[bool]] = None,
|
|
2899
|
+
can_share_global: Optional[pulumi.Input[bool]] = None,
|
|
2900
|
+
can_share_user: Optional[pulumi.Input[bool]] = None,
|
|
2901
|
+
can_write: Optional[pulumi.Input[bool]] = None,
|
|
2902
|
+
owner: Optional[pulumi.Input[str]] = None,
|
|
2903
|
+
reads: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2904
|
+
removable: Optional[pulumi.Input[bool]] = None,
|
|
2905
|
+
sharing: Optional[pulumi.Input[str]] = None,
|
|
2906
|
+
writes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
2907
|
+
"""
|
|
2908
|
+
: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
|
|
2909
|
+
:param pulumi.Input[bool] can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2910
|
+
:param pulumi.Input[bool] can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2911
|
+
:param pulumi.Input[bool] can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2912
|
+
:param pulumi.Input[bool] can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2913
|
+
:param pulumi.Input[bool] can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2914
|
+
: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.
|
|
2915
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
2916
|
+
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
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
|
|
2918
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
2919
|
+
"""
|
|
2920
|
+
if app is not None:
|
|
2921
|
+
pulumi.set(__self__, "app", app)
|
|
2922
|
+
if can_change_perms is not None:
|
|
2923
|
+
pulumi.set(__self__, "can_change_perms", can_change_perms)
|
|
2924
|
+
if can_share_app is not None:
|
|
2925
|
+
pulumi.set(__self__, "can_share_app", can_share_app)
|
|
2926
|
+
if can_share_global is not None:
|
|
2927
|
+
pulumi.set(__self__, "can_share_global", can_share_global)
|
|
2928
|
+
if can_share_user is not None:
|
|
2929
|
+
pulumi.set(__self__, "can_share_user", can_share_user)
|
|
2930
|
+
if can_write is not None:
|
|
2931
|
+
pulumi.set(__self__, "can_write", can_write)
|
|
2932
|
+
if owner is not None:
|
|
2933
|
+
pulumi.set(__self__, "owner", owner)
|
|
2934
|
+
if reads is not None:
|
|
2935
|
+
pulumi.set(__self__, "reads", reads)
|
|
2936
|
+
if removable is not None:
|
|
2937
|
+
pulumi.set(__self__, "removable", removable)
|
|
2938
|
+
if sharing is not None:
|
|
2939
|
+
pulumi.set(__self__, "sharing", sharing)
|
|
2940
|
+
if writes is not None:
|
|
2941
|
+
pulumi.set(__self__, "writes", writes)
|
|
2942
|
+
|
|
2943
|
+
@property
|
|
2944
|
+
@pulumi.getter
|
|
2945
|
+
def app(self) -> Optional[pulumi.Input[str]]:
|
|
2946
|
+
"""
|
|
2947
|
+
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2948
|
+
"""
|
|
2949
|
+
return pulumi.get(self, "app")
|
|
2950
|
+
|
|
2951
|
+
@app.setter
|
|
2952
|
+
def app(self, value: Optional[pulumi.Input[str]]):
|
|
2953
|
+
pulumi.set(self, "app", value)
|
|
2954
|
+
|
|
2955
|
+
@property
|
|
2956
|
+
@pulumi.getter(name="canChangePerms")
|
|
2957
|
+
def can_change_perms(self) -> Optional[pulumi.Input[bool]]:
|
|
2958
|
+
"""
|
|
2959
|
+
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2960
|
+
"""
|
|
2961
|
+
return pulumi.get(self, "can_change_perms")
|
|
2962
|
+
|
|
2963
|
+
@can_change_perms.setter
|
|
2964
|
+
def can_change_perms(self, value: Optional[pulumi.Input[bool]]):
|
|
2965
|
+
pulumi.set(self, "can_change_perms", value)
|
|
2966
|
+
|
|
2967
|
+
@property
|
|
2968
|
+
@pulumi.getter(name="canShareApp")
|
|
2969
|
+
def can_share_app(self) -> Optional[pulumi.Input[bool]]:
|
|
2970
|
+
"""
|
|
2971
|
+
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2972
|
+
"""
|
|
2973
|
+
return pulumi.get(self, "can_share_app")
|
|
2974
|
+
|
|
2975
|
+
@can_share_app.setter
|
|
2976
|
+
def can_share_app(self, value: Optional[pulumi.Input[bool]]):
|
|
2977
|
+
pulumi.set(self, "can_share_app", value)
|
|
2978
|
+
|
|
2979
|
+
@property
|
|
2980
|
+
@pulumi.getter(name="canShareGlobal")
|
|
2981
|
+
def can_share_global(self) -> Optional[pulumi.Input[bool]]:
|
|
2982
|
+
"""
|
|
2983
|
+
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2984
|
+
"""
|
|
2985
|
+
return pulumi.get(self, "can_share_global")
|
|
2986
|
+
|
|
2987
|
+
@can_share_global.setter
|
|
2988
|
+
def can_share_global(self, value: Optional[pulumi.Input[bool]]):
|
|
2989
|
+
pulumi.set(self, "can_share_global", value)
|
|
2990
|
+
|
|
2991
|
+
@property
|
|
2992
|
+
@pulumi.getter(name="canShareUser")
|
|
2993
|
+
def can_share_user(self) -> Optional[pulumi.Input[bool]]:
|
|
2994
|
+
"""
|
|
2995
|
+
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2996
|
+
"""
|
|
2997
|
+
return pulumi.get(self, "can_share_user")
|
|
2998
|
+
|
|
2999
|
+
@can_share_user.setter
|
|
3000
|
+
def can_share_user(self, value: Optional[pulumi.Input[bool]]):
|
|
3001
|
+
pulumi.set(self, "can_share_user", value)
|
|
3002
|
+
|
|
3003
|
+
@property
|
|
3004
|
+
@pulumi.getter(name="canWrite")
|
|
3005
|
+
def can_write(self) -> Optional[pulumi.Input[bool]]:
|
|
3006
|
+
"""
|
|
3007
|
+
Indicates if the active user can edit this object. Defaults to true.
|
|
3008
|
+
"""
|
|
3009
|
+
return pulumi.get(self, "can_write")
|
|
3010
|
+
|
|
3011
|
+
@can_write.setter
|
|
3012
|
+
def can_write(self, value: Optional[pulumi.Input[bool]]):
|
|
3013
|
+
pulumi.set(self, "can_write", value)
|
|
3014
|
+
|
|
3015
|
+
@property
|
|
3016
|
+
@pulumi.getter
|
|
3017
|
+
def owner(self) -> Optional[pulumi.Input[str]]:
|
|
3018
|
+
"""
|
|
3019
|
+
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.
|
|
3020
|
+
"""
|
|
3021
|
+
return pulumi.get(self, "owner")
|
|
3022
|
+
|
|
3023
|
+
@owner.setter
|
|
3024
|
+
def owner(self, value: Optional[pulumi.Input[str]]):
|
|
3025
|
+
pulumi.set(self, "owner", value)
|
|
3026
|
+
|
|
3027
|
+
@property
|
|
3028
|
+
@pulumi.getter
|
|
3029
|
+
def reads(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3030
|
+
"""
|
|
3031
|
+
Properties that indicate resource read permissions.
|
|
3032
|
+
"""
|
|
3033
|
+
return pulumi.get(self, "reads")
|
|
3034
|
+
|
|
3035
|
+
@reads.setter
|
|
3036
|
+
def reads(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
3037
|
+
pulumi.set(self, "reads", value)
|
|
3038
|
+
|
|
3039
|
+
@property
|
|
3040
|
+
@pulumi.getter
|
|
3041
|
+
def removable(self) -> Optional[pulumi.Input[bool]]:
|
|
3042
|
+
"""
|
|
3043
|
+
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3044
|
+
"""
|
|
3045
|
+
return pulumi.get(self, "removable")
|
|
3046
|
+
|
|
3047
|
+
@removable.setter
|
|
3048
|
+
def removable(self, value: Optional[pulumi.Input[bool]]):
|
|
3049
|
+
pulumi.set(self, "removable", value)
|
|
3050
|
+
|
|
3051
|
+
@property
|
|
3052
|
+
@pulumi.getter
|
|
3053
|
+
def sharing(self) -> Optional[pulumi.Input[str]]:
|
|
3054
|
+
"""
|
|
3055
|
+
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
|
|
3056
|
+
"""
|
|
3057
|
+
return pulumi.get(self, "sharing")
|
|
3058
|
+
|
|
3059
|
+
@sharing.setter
|
|
3060
|
+
def sharing(self, value: Optional[pulumi.Input[str]]):
|
|
3061
|
+
pulumi.set(self, "sharing", value)
|
|
3062
|
+
|
|
3063
|
+
@property
|
|
3064
|
+
@pulumi.getter
|
|
3065
|
+
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3066
|
+
"""
|
|
3067
|
+
Properties that indicate resource write permissions.
|
|
2834
3068
|
"""
|
|
2835
3069
|
return pulumi.get(self, "writes")
|
|
2836
3070
|
|
|
@@ -2883,7 +3117,7 @@ if not MYPY:
|
|
|
2883
3117
|
"""
|
|
2884
3118
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2885
3119
|
"""
|
|
2886
|
-
Properties that indicate write permissions
|
|
3120
|
+
Properties that indicate resource write permissions.
|
|
2887
3121
|
"""
|
|
2888
3122
|
elif False:
|
|
2889
3123
|
OutputsTcpDefaultAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2913,7 +3147,7 @@ class OutputsTcpDefaultAclArgs:
|
|
|
2913
3147
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
2914
3148
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2915
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
|
|
2916
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
3150
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
2917
3151
|
"""
|
|
2918
3152
|
if app is not None:
|
|
2919
3153
|
pulumi.set(__self__, "app", app)
|
|
@@ -3062,7 +3296,7 @@ class OutputsTcpDefaultAclArgs:
|
|
|
3062
3296
|
@pulumi.getter
|
|
3063
3297
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3064
3298
|
"""
|
|
3065
|
-
Properties that indicate write permissions
|
|
3299
|
+
Properties that indicate resource write permissions.
|
|
3066
3300
|
"""
|
|
3067
3301
|
return pulumi.get(self, "writes")
|
|
3068
3302
|
|
|
@@ -3115,7 +3349,7 @@ if not MYPY:
|
|
|
3115
3349
|
"""
|
|
3116
3350
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
3117
3351
|
"""
|
|
3118
|
-
Properties that indicate write permissions
|
|
3352
|
+
Properties that indicate resource write permissions.
|
|
3119
3353
|
"""
|
|
3120
3354
|
elif False:
|
|
3121
3355
|
OutputsTcpGroupAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3145,7 +3379,7 @@ class OutputsTcpGroupAclArgs:
|
|
|
3145
3379
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
3146
3380
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3147
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
|
|
3148
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
3382
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
3149
3383
|
"""
|
|
3150
3384
|
if app is not None:
|
|
3151
3385
|
pulumi.set(__self__, "app", app)
|
|
@@ -3294,7 +3528,7 @@ class OutputsTcpGroupAclArgs:
|
|
|
3294
3528
|
@pulumi.getter
|
|
3295
3529
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3296
3530
|
"""
|
|
3297
|
-
Properties that indicate write permissions
|
|
3531
|
+
Properties that indicate resource write permissions.
|
|
3298
3532
|
"""
|
|
3299
3533
|
return pulumi.get(self, "writes")
|
|
3300
3534
|
|
|
@@ -3347,7 +3581,7 @@ if not MYPY:
|
|
|
3347
3581
|
"""
|
|
3348
3582
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
3349
3583
|
"""
|
|
3350
|
-
Properties that indicate write permissions
|
|
3584
|
+
Properties that indicate resource write permissions.
|
|
3351
3585
|
"""
|
|
3352
3586
|
elif False:
|
|
3353
3587
|
OutputsTcpServerAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3377,7 +3611,7 @@ class OutputsTcpServerAclArgs:
|
|
|
3377
3611
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
3378
3612
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3379
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
|
|
3380
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
3614
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
3381
3615
|
"""
|
|
3382
3616
|
if app is not None:
|
|
3383
3617
|
pulumi.set(__self__, "app", app)
|
|
@@ -3526,7 +3760,7 @@ class OutputsTcpServerAclArgs:
|
|
|
3526
3760
|
@pulumi.getter
|
|
3527
3761
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3528
3762
|
"""
|
|
3529
|
-
Properties that indicate write permissions
|
|
3763
|
+
Properties that indicate resource write permissions.
|
|
3530
3764
|
"""
|
|
3531
3765
|
return pulumi.get(self, "writes")
|
|
3532
3766
|
|
|
@@ -3579,7 +3813,7 @@ if not MYPY:
|
|
|
3579
3813
|
"""
|
|
3580
3814
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
3581
3815
|
"""
|
|
3582
|
-
Properties that indicate write permissions
|
|
3816
|
+
Properties that indicate resource write permissions.
|
|
3583
3817
|
"""
|
|
3584
3818
|
elif False:
|
|
3585
3819
|
OutputsTcpSyslogAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3609,7 +3843,7 @@ class OutputsTcpSyslogAclArgs:
|
|
|
3609
3843
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
3610
3844
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3611
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
|
|
3612
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
3846
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
3613
3847
|
"""
|
|
3614
3848
|
if app is not None:
|
|
3615
3849
|
pulumi.set(__self__, "app", app)
|
|
@@ -3758,7 +3992,7 @@ class OutputsTcpSyslogAclArgs:
|
|
|
3758
3992
|
@pulumi.getter
|
|
3759
3993
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3760
3994
|
"""
|
|
3761
|
-
Properties that indicate write permissions
|
|
3995
|
+
Properties that indicate resource write permissions.
|
|
3762
3996
|
"""
|
|
3763
3997
|
return pulumi.get(self, "writes")
|
|
3764
3998
|
|
|
@@ -3811,7 +4045,7 @@ if not MYPY:
|
|
|
3811
4045
|
"""
|
|
3812
4046
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
3813
4047
|
"""
|
|
3814
|
-
Properties that indicate write permissions
|
|
4048
|
+
Properties that indicate resource write permissions.
|
|
3815
4049
|
"""
|
|
3816
4050
|
elif False:
|
|
3817
4051
|
SavedSearchesAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3841,7 +4075,7 @@ class SavedSearchesAclArgs:
|
|
|
3841
4075
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
3842
4076
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3843
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
|
|
3844
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
4078
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
3845
4079
|
"""
|
|
3846
4080
|
if app is not None:
|
|
3847
4081
|
pulumi.set(__self__, "app", app)
|
|
@@ -3990,7 +4224,7 @@ class SavedSearchesAclArgs:
|
|
|
3990
4224
|
@pulumi.getter
|
|
3991
4225
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
3992
4226
|
"""
|
|
3993
|
-
Properties that indicate write permissions
|
|
4227
|
+
Properties that indicate resource write permissions.
|
|
3994
4228
|
"""
|
|
3995
4229
|
return pulumi.get(self, "writes")
|
|
3996
4230
|
|
|
@@ -4043,7 +4277,7 @@ if not MYPY:
|
|
|
4043
4277
|
"""
|
|
4044
4278
|
writes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
4045
4279
|
"""
|
|
4046
|
-
Properties that indicate write permissions
|
|
4280
|
+
Properties that indicate resource write permissions.
|
|
4047
4281
|
"""
|
|
4048
4282
|
elif False:
|
|
4049
4283
|
ShIndexesManagerAclArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4073,7 +4307,7 @@ class ShIndexesManagerAclArgs:
|
|
|
4073
4307
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] reads: Properties that indicate resource read permissions.
|
|
4074
4308
|
:param pulumi.Input[bool] removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
4075
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
|
|
4076
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate write permissions
|
|
4310
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] writes: Properties that indicate resource write permissions.
|
|
4077
4311
|
"""
|
|
4078
4312
|
if app is not None:
|
|
4079
4313
|
pulumi.set(__self__, "app", app)
|
|
@@ -4222,7 +4456,7 @@ class ShIndexesManagerAclArgs:
|
|
|
4222
4456
|
@pulumi.getter
|
|
4223
4457
|
def writes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
4224
4458
|
"""
|
|
4225
|
-
Properties that indicate write permissions
|
|
4459
|
+
Properties that indicate resource write permissions.
|
|
4226
4460
|
"""
|
|
4227
4461
|
return pulumi.get(self, "writes")
|
|
4228
4462
|
|