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/outputs.py
CHANGED
|
@@ -27,6 +27,7 @@ __all__ = [
|
|
|
27
27
|
'InputsTcpRawAcl',
|
|
28
28
|
'InputsTcpSplunkTcpTokenAcl',
|
|
29
29
|
'InputsUdpAcl',
|
|
30
|
+
'LookupDefinitionAcl',
|
|
30
31
|
'OutputsTcpDefaultAcl',
|
|
31
32
|
'OutputsTcpGroupAcl',
|
|
32
33
|
'OutputsTcpServerAcl',
|
|
@@ -85,7 +86,7 @@ class AppsLocalAcl(dict):
|
|
|
85
86
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
86
87
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
87
88
|
:param 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
|
|
88
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
89
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
89
90
|
"""
|
|
90
91
|
if app is not None:
|
|
91
92
|
pulumi.set(__self__, "app", app)
|
|
@@ -194,7 +195,7 @@ class AppsLocalAcl(dict):
|
|
|
194
195
|
@pulumi.getter
|
|
195
196
|
def writes(self) -> Optional[Sequence[str]]:
|
|
196
197
|
"""
|
|
197
|
-
Properties that indicate write permissions
|
|
198
|
+
Properties that indicate resource write permissions.
|
|
198
199
|
"""
|
|
199
200
|
return pulumi.get(self, "writes")
|
|
200
201
|
|
|
@@ -249,7 +250,7 @@ class ConfigsConfAcl(dict):
|
|
|
249
250
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
250
251
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
251
252
|
:param 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
|
|
252
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
253
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
253
254
|
"""
|
|
254
255
|
if app is not None:
|
|
255
256
|
pulumi.set(__self__, "app", app)
|
|
@@ -358,7 +359,7 @@ class ConfigsConfAcl(dict):
|
|
|
358
359
|
@pulumi.getter
|
|
359
360
|
def writes(self) -> Optional[Sequence[str]]:
|
|
360
361
|
"""
|
|
361
|
-
Properties that indicate write permissions
|
|
362
|
+
Properties that indicate resource write permissions.
|
|
362
363
|
"""
|
|
363
364
|
return pulumi.get(self, "writes")
|
|
364
365
|
|
|
@@ -413,7 +414,7 @@ class DataUiViewsAcl(dict):
|
|
|
413
414
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
414
415
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
415
416
|
:param 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
|
|
416
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
417
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
417
418
|
"""
|
|
418
419
|
if app is not None:
|
|
419
420
|
pulumi.set(__self__, "app", app)
|
|
@@ -522,7 +523,7 @@ class DataUiViewsAcl(dict):
|
|
|
522
523
|
@pulumi.getter
|
|
523
524
|
def writes(self) -> Optional[Sequence[str]]:
|
|
524
525
|
"""
|
|
525
|
-
Properties that indicate write permissions
|
|
526
|
+
Properties that indicate resource write permissions.
|
|
526
527
|
"""
|
|
527
528
|
return pulumi.get(self, "writes")
|
|
528
529
|
|
|
@@ -577,7 +578,7 @@ class GenericAclAcl(dict):
|
|
|
577
578
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
578
579
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
579
580
|
:param 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
|
|
580
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
581
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
581
582
|
"""
|
|
582
583
|
if app is not None:
|
|
583
584
|
pulumi.set(__self__, "app", app)
|
|
@@ -686,7 +687,7 @@ class GenericAclAcl(dict):
|
|
|
686
687
|
@pulumi.getter
|
|
687
688
|
def writes(self) -> Optional[Sequence[str]]:
|
|
688
689
|
"""
|
|
689
|
-
Properties that indicate write permissions
|
|
690
|
+
Properties that indicate resource write permissions.
|
|
690
691
|
"""
|
|
691
692
|
return pulumi.get(self, "writes")
|
|
692
693
|
|
|
@@ -741,7 +742,7 @@ class IndexesAcl(dict):
|
|
|
741
742
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
742
743
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
743
744
|
:param 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
|
|
744
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
745
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
745
746
|
"""
|
|
746
747
|
if app is not None:
|
|
747
748
|
pulumi.set(__self__, "app", app)
|
|
@@ -850,7 +851,7 @@ class IndexesAcl(dict):
|
|
|
850
851
|
@pulumi.getter
|
|
851
852
|
def writes(self) -> Optional[Sequence[str]]:
|
|
852
853
|
"""
|
|
853
|
-
Properties that indicate write permissions
|
|
854
|
+
Properties that indicate resource write permissions.
|
|
854
855
|
"""
|
|
855
856
|
return pulumi.get(self, "writes")
|
|
856
857
|
|
|
@@ -905,7 +906,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
905
906
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
906
907
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
907
908
|
:param 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
|
|
908
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
909
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
909
910
|
"""
|
|
910
911
|
if app is not None:
|
|
911
912
|
pulumi.set(__self__, "app", app)
|
|
@@ -1014,7 +1015,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
1014
1015
|
@pulumi.getter
|
|
1015
1016
|
def writes(self) -> Optional[Sequence[str]]:
|
|
1016
1017
|
"""
|
|
1017
|
-
Properties that indicate write permissions
|
|
1018
|
+
Properties that indicate resource write permissions.
|
|
1018
1019
|
"""
|
|
1019
1020
|
return pulumi.get(self, "writes")
|
|
1020
1021
|
|
|
@@ -1069,7 +1070,7 @@ class InputsMonitorAcl(dict):
|
|
|
1069
1070
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1070
1071
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1071
1072
|
:param 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
|
|
1072
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
1073
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1073
1074
|
"""
|
|
1074
1075
|
if app is not None:
|
|
1075
1076
|
pulumi.set(__self__, "app", app)
|
|
@@ -1178,7 +1179,7 @@ class InputsMonitorAcl(dict):
|
|
|
1178
1179
|
@pulumi.getter
|
|
1179
1180
|
def writes(self) -> Optional[Sequence[str]]:
|
|
1180
1181
|
"""
|
|
1181
|
-
Properties that indicate write permissions
|
|
1182
|
+
Properties that indicate resource write permissions.
|
|
1182
1183
|
"""
|
|
1183
1184
|
return pulumi.get(self, "writes")
|
|
1184
1185
|
|
|
@@ -1233,7 +1234,7 @@ class InputsScriptAcl(dict):
|
|
|
1233
1234
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1234
1235
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1235
1236
|
:param 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
|
|
1236
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
1237
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1237
1238
|
"""
|
|
1238
1239
|
if app is not None:
|
|
1239
1240
|
pulumi.set(__self__, "app", app)
|
|
@@ -1342,7 +1343,7 @@ class InputsScriptAcl(dict):
|
|
|
1342
1343
|
@pulumi.getter
|
|
1343
1344
|
def writes(self) -> Optional[Sequence[str]]:
|
|
1344
1345
|
"""
|
|
1345
|
-
Properties that indicate write permissions
|
|
1346
|
+
Properties that indicate resource write permissions.
|
|
1346
1347
|
"""
|
|
1347
1348
|
return pulumi.get(self, "writes")
|
|
1348
1349
|
|
|
@@ -1397,7 +1398,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1397
1398
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1398
1399
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1399
1400
|
:param 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
|
|
1400
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
1401
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1401
1402
|
"""
|
|
1402
1403
|
if app is not None:
|
|
1403
1404
|
pulumi.set(__self__, "app", app)
|
|
@@ -1506,7 +1507,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1506
1507
|
@pulumi.getter
|
|
1507
1508
|
def writes(self) -> Optional[Sequence[str]]:
|
|
1508
1509
|
"""
|
|
1509
|
-
Properties that indicate write permissions
|
|
1510
|
+
Properties that indicate resource write permissions.
|
|
1510
1511
|
"""
|
|
1511
1512
|
return pulumi.get(self, "writes")
|
|
1512
1513
|
|
|
@@ -1561,7 +1562,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1561
1562
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1562
1563
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1563
1564
|
:param 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
|
|
1564
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
1565
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1565
1566
|
"""
|
|
1566
1567
|
if app is not None:
|
|
1567
1568
|
pulumi.set(__self__, "app", app)
|
|
@@ -1670,7 +1671,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1670
1671
|
@pulumi.getter
|
|
1671
1672
|
def writes(self) -> Optional[Sequence[str]]:
|
|
1672
1673
|
"""
|
|
1673
|
-
Properties that indicate write permissions
|
|
1674
|
+
Properties that indicate resource write permissions.
|
|
1674
1675
|
"""
|
|
1675
1676
|
return pulumi.get(self, "writes")
|
|
1676
1677
|
|
|
@@ -1725,7 +1726,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1725
1726
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1726
1727
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1727
1728
|
:param 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
|
|
1728
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
1729
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1729
1730
|
"""
|
|
1730
1731
|
if app is not None:
|
|
1731
1732
|
pulumi.set(__self__, "app", app)
|
|
@@ -1834,7 +1835,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1834
1835
|
@pulumi.getter
|
|
1835
1836
|
def writes(self) -> Optional[Sequence[str]]:
|
|
1836
1837
|
"""
|
|
1837
|
-
Properties that indicate write permissions
|
|
1838
|
+
Properties that indicate resource write permissions.
|
|
1838
1839
|
"""
|
|
1839
1840
|
return pulumi.get(self, "writes")
|
|
1840
1841
|
|
|
@@ -1889,7 +1890,7 @@ class InputsUdpAcl(dict):
|
|
|
1889
1890
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1890
1891
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1891
1892
|
:param 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
|
|
1892
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
1893
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1893
1894
|
"""
|
|
1894
1895
|
if app is not None:
|
|
1895
1896
|
pulumi.set(__self__, "app", app)
|
|
@@ -1998,7 +1999,171 @@ class InputsUdpAcl(dict):
|
|
|
1998
1999
|
@pulumi.getter
|
|
1999
2000
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2000
2001
|
"""
|
|
2001
|
-
Properties that indicate write permissions
|
|
2002
|
+
Properties that indicate resource write permissions.
|
|
2003
|
+
"""
|
|
2004
|
+
return pulumi.get(self, "writes")
|
|
2005
|
+
|
|
2006
|
+
|
|
2007
|
+
@pulumi.output_type
|
|
2008
|
+
class LookupDefinitionAcl(dict):
|
|
2009
|
+
@staticmethod
|
|
2010
|
+
def __key_warning(key: str):
|
|
2011
|
+
suggest = None
|
|
2012
|
+
if key == "canChangePerms":
|
|
2013
|
+
suggest = "can_change_perms"
|
|
2014
|
+
elif key == "canShareApp":
|
|
2015
|
+
suggest = "can_share_app"
|
|
2016
|
+
elif key == "canShareGlobal":
|
|
2017
|
+
suggest = "can_share_global"
|
|
2018
|
+
elif key == "canShareUser":
|
|
2019
|
+
suggest = "can_share_user"
|
|
2020
|
+
elif key == "canWrite":
|
|
2021
|
+
suggest = "can_write"
|
|
2022
|
+
|
|
2023
|
+
if suggest:
|
|
2024
|
+
pulumi.log.warn(f"Key '{key}' not found in LookupDefinitionAcl. Access the value via the '{suggest}' property getter instead.")
|
|
2025
|
+
|
|
2026
|
+
def __getitem__(self, key: str) -> Any:
|
|
2027
|
+
LookupDefinitionAcl.__key_warning(key)
|
|
2028
|
+
return super().__getitem__(key)
|
|
2029
|
+
|
|
2030
|
+
def get(self, key: str, default = None) -> Any:
|
|
2031
|
+
LookupDefinitionAcl.__key_warning(key)
|
|
2032
|
+
return super().get(key, default)
|
|
2033
|
+
|
|
2034
|
+
def __init__(__self__, *,
|
|
2035
|
+
app: Optional[str] = None,
|
|
2036
|
+
can_change_perms: Optional[bool] = None,
|
|
2037
|
+
can_share_app: Optional[bool] = None,
|
|
2038
|
+
can_share_global: Optional[bool] = None,
|
|
2039
|
+
can_share_user: Optional[bool] = None,
|
|
2040
|
+
can_write: Optional[bool] = None,
|
|
2041
|
+
owner: Optional[str] = None,
|
|
2042
|
+
reads: Optional[Sequence[str]] = None,
|
|
2043
|
+
removable: Optional[bool] = None,
|
|
2044
|
+
sharing: Optional[str] = None,
|
|
2045
|
+
writes: Optional[Sequence[str]] = None):
|
|
2046
|
+
"""
|
|
2047
|
+
:param 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
|
|
2048
|
+
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2049
|
+
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2050
|
+
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2051
|
+
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2052
|
+
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2053
|
+
:param 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.
|
|
2054
|
+
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2055
|
+
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2056
|
+
:param 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
|
|
2057
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2058
|
+
"""
|
|
2059
|
+
if app is not None:
|
|
2060
|
+
pulumi.set(__self__, "app", app)
|
|
2061
|
+
if can_change_perms is not None:
|
|
2062
|
+
pulumi.set(__self__, "can_change_perms", can_change_perms)
|
|
2063
|
+
if can_share_app is not None:
|
|
2064
|
+
pulumi.set(__self__, "can_share_app", can_share_app)
|
|
2065
|
+
if can_share_global is not None:
|
|
2066
|
+
pulumi.set(__self__, "can_share_global", can_share_global)
|
|
2067
|
+
if can_share_user is not None:
|
|
2068
|
+
pulumi.set(__self__, "can_share_user", can_share_user)
|
|
2069
|
+
if can_write is not None:
|
|
2070
|
+
pulumi.set(__self__, "can_write", can_write)
|
|
2071
|
+
if owner is not None:
|
|
2072
|
+
pulumi.set(__self__, "owner", owner)
|
|
2073
|
+
if reads is not None:
|
|
2074
|
+
pulumi.set(__self__, "reads", reads)
|
|
2075
|
+
if removable is not None:
|
|
2076
|
+
pulumi.set(__self__, "removable", removable)
|
|
2077
|
+
if sharing is not None:
|
|
2078
|
+
pulumi.set(__self__, "sharing", sharing)
|
|
2079
|
+
if writes is not None:
|
|
2080
|
+
pulumi.set(__self__, "writes", writes)
|
|
2081
|
+
|
|
2082
|
+
@property
|
|
2083
|
+
@pulumi.getter
|
|
2084
|
+
def app(self) -> Optional[str]:
|
|
2085
|
+
"""
|
|
2086
|
+
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2087
|
+
"""
|
|
2088
|
+
return pulumi.get(self, "app")
|
|
2089
|
+
|
|
2090
|
+
@property
|
|
2091
|
+
@pulumi.getter(name="canChangePerms")
|
|
2092
|
+
def can_change_perms(self) -> Optional[bool]:
|
|
2093
|
+
"""
|
|
2094
|
+
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2095
|
+
"""
|
|
2096
|
+
return pulumi.get(self, "can_change_perms")
|
|
2097
|
+
|
|
2098
|
+
@property
|
|
2099
|
+
@pulumi.getter(name="canShareApp")
|
|
2100
|
+
def can_share_app(self) -> Optional[bool]:
|
|
2101
|
+
"""
|
|
2102
|
+
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2103
|
+
"""
|
|
2104
|
+
return pulumi.get(self, "can_share_app")
|
|
2105
|
+
|
|
2106
|
+
@property
|
|
2107
|
+
@pulumi.getter(name="canShareGlobal")
|
|
2108
|
+
def can_share_global(self) -> Optional[bool]:
|
|
2109
|
+
"""
|
|
2110
|
+
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2111
|
+
"""
|
|
2112
|
+
return pulumi.get(self, "can_share_global")
|
|
2113
|
+
|
|
2114
|
+
@property
|
|
2115
|
+
@pulumi.getter(name="canShareUser")
|
|
2116
|
+
def can_share_user(self) -> Optional[bool]:
|
|
2117
|
+
"""
|
|
2118
|
+
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2119
|
+
"""
|
|
2120
|
+
return pulumi.get(self, "can_share_user")
|
|
2121
|
+
|
|
2122
|
+
@property
|
|
2123
|
+
@pulumi.getter(name="canWrite")
|
|
2124
|
+
def can_write(self) -> Optional[bool]:
|
|
2125
|
+
"""
|
|
2126
|
+
Indicates if the active user can edit this object. Defaults to true.
|
|
2127
|
+
"""
|
|
2128
|
+
return pulumi.get(self, "can_write")
|
|
2129
|
+
|
|
2130
|
+
@property
|
|
2131
|
+
@pulumi.getter
|
|
2132
|
+
def owner(self) -> Optional[str]:
|
|
2133
|
+
"""
|
|
2134
|
+
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.
|
|
2135
|
+
"""
|
|
2136
|
+
return pulumi.get(self, "owner")
|
|
2137
|
+
|
|
2138
|
+
@property
|
|
2139
|
+
@pulumi.getter
|
|
2140
|
+
def reads(self) -> Optional[Sequence[str]]:
|
|
2141
|
+
"""
|
|
2142
|
+
Properties that indicate resource read permissions.
|
|
2143
|
+
"""
|
|
2144
|
+
return pulumi.get(self, "reads")
|
|
2145
|
+
|
|
2146
|
+
@property
|
|
2147
|
+
@pulumi.getter
|
|
2148
|
+
def removable(self) -> Optional[bool]:
|
|
2149
|
+
"""
|
|
2150
|
+
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2151
|
+
"""
|
|
2152
|
+
return pulumi.get(self, "removable")
|
|
2153
|
+
|
|
2154
|
+
@property
|
|
2155
|
+
@pulumi.getter
|
|
2156
|
+
def sharing(self) -> Optional[str]:
|
|
2157
|
+
"""
|
|
2158
|
+
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
|
|
2159
|
+
"""
|
|
2160
|
+
return pulumi.get(self, "sharing")
|
|
2161
|
+
|
|
2162
|
+
@property
|
|
2163
|
+
@pulumi.getter
|
|
2164
|
+
def writes(self) -> Optional[Sequence[str]]:
|
|
2165
|
+
"""
|
|
2166
|
+
Properties that indicate resource write permissions.
|
|
2002
2167
|
"""
|
|
2003
2168
|
return pulumi.get(self, "writes")
|
|
2004
2169
|
|
|
@@ -2053,7 +2218,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2053
2218
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2054
2219
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2055
2220
|
:param 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
|
|
2056
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
2221
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2057
2222
|
"""
|
|
2058
2223
|
if app is not None:
|
|
2059
2224
|
pulumi.set(__self__, "app", app)
|
|
@@ -2162,7 +2327,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2162
2327
|
@pulumi.getter
|
|
2163
2328
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2164
2329
|
"""
|
|
2165
|
-
Properties that indicate write permissions
|
|
2330
|
+
Properties that indicate resource write permissions.
|
|
2166
2331
|
"""
|
|
2167
2332
|
return pulumi.get(self, "writes")
|
|
2168
2333
|
|
|
@@ -2217,7 +2382,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2217
2382
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2218
2383
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2219
2384
|
:param 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 Sequence[str] writes: Properties that indicate write permissions
|
|
2385
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2221
2386
|
"""
|
|
2222
2387
|
if app is not None:
|
|
2223
2388
|
pulumi.set(__self__, "app", app)
|
|
@@ -2326,7 +2491,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2326
2491
|
@pulumi.getter
|
|
2327
2492
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2328
2493
|
"""
|
|
2329
|
-
Properties that indicate write permissions
|
|
2494
|
+
Properties that indicate resource write permissions.
|
|
2330
2495
|
"""
|
|
2331
2496
|
return pulumi.get(self, "writes")
|
|
2332
2497
|
|
|
@@ -2381,7 +2546,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2381
2546
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2382
2547
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2383
2548
|
:param 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
|
|
2384
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
2549
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2385
2550
|
"""
|
|
2386
2551
|
if app is not None:
|
|
2387
2552
|
pulumi.set(__self__, "app", app)
|
|
@@ -2490,7 +2655,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2490
2655
|
@pulumi.getter
|
|
2491
2656
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2492
2657
|
"""
|
|
2493
|
-
Properties that indicate write permissions
|
|
2658
|
+
Properties that indicate resource write permissions.
|
|
2494
2659
|
"""
|
|
2495
2660
|
return pulumi.get(self, "writes")
|
|
2496
2661
|
|
|
@@ -2545,7 +2710,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2545
2710
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2546
2711
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2547
2712
|
:param 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
|
|
2548
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
2713
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2549
2714
|
"""
|
|
2550
2715
|
if app is not None:
|
|
2551
2716
|
pulumi.set(__self__, "app", app)
|
|
@@ -2654,7 +2819,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2654
2819
|
@pulumi.getter
|
|
2655
2820
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2656
2821
|
"""
|
|
2657
|
-
Properties that indicate write permissions
|
|
2822
|
+
Properties that indicate resource write permissions.
|
|
2658
2823
|
"""
|
|
2659
2824
|
return pulumi.get(self, "writes")
|
|
2660
2825
|
|
|
@@ -2709,7 +2874,7 @@ class SavedSearchesAcl(dict):
|
|
|
2709
2874
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2710
2875
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2711
2876
|
:param 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
|
|
2712
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
2877
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2713
2878
|
"""
|
|
2714
2879
|
if app is not None:
|
|
2715
2880
|
pulumi.set(__self__, "app", app)
|
|
@@ -2818,7 +2983,7 @@ class SavedSearchesAcl(dict):
|
|
|
2818
2983
|
@pulumi.getter
|
|
2819
2984
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2820
2985
|
"""
|
|
2821
|
-
Properties that indicate write permissions
|
|
2986
|
+
Properties that indicate resource write permissions.
|
|
2822
2987
|
"""
|
|
2823
2988
|
return pulumi.get(self, "writes")
|
|
2824
2989
|
|
|
@@ -2873,7 +3038,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
2873
3038
|
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2874
3039
|
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2875
3040
|
:param 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
|
|
2876
|
-
:param Sequence[str] writes: Properties that indicate write permissions
|
|
3041
|
+
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2877
3042
|
"""
|
|
2878
3043
|
if app is not None:
|
|
2879
3044
|
pulumi.set(__self__, "app", app)
|
|
@@ -2982,7 +3147,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
2982
3147
|
@pulumi.getter
|
|
2983
3148
|
def writes(self) -> Optional[Sequence[str]]:
|
|
2984
3149
|
"""
|
|
2985
|
-
Properties that indicate write permissions
|
|
3150
|
+
Properties that indicate resource write permissions.
|
|
2986
3151
|
"""
|
|
2987
3152
|
return pulumi.get(self, "writes")
|
|
2988
3153
|
|
pulumi_splunk/pulumi-plugin.json
CHANGED
{pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_splunk
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.0a1732277463
|
|
4
4
|
Summary: A Pulumi package for creating and managing splunk cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumi/pulumi-splunk
|
|
|
8
8
|
Keywords: pulumi,splunk
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver
|
|
12
|
-
Requires-Dist: pulumi
|
|
13
|
-
Requires-Dist: semver
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.0.0a1
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-splunk/actions)
|
|
17
17
|
[](https://slack.pulumi.com)
|
{pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_splunk/__init__.py,sha256=
|
|
2
|
-
pulumi_splunk/_inputs.py,sha256=
|
|
1
|
+
pulumi_splunk/__init__.py,sha256=DnpgAl9BJo5UgZt1djUISP79ckXP8UW41vWj1Uqj5-E,5859
|
|
2
|
+
pulumi_splunk/_inputs.py,sha256=mvf0KlqvF_8dRCM517bLE5vErnjM796P2kBs2uv9QAo,199966
|
|
3
3
|
pulumi_splunk/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_splunk/admin_saml_groups.py,sha256=d-QgAivUc_imbo3kP4WQMaADOBOD3LFUGUjnUHxQFgI,8709
|
|
5
5
|
pulumi_splunk/apps_local.py,sha256=Am9_qDclmFbCMftkzObWb4a0c8B9m_vBHtQQZoL_axA,38989
|
|
@@ -18,21 +18,22 @@ pulumi_splunk/inputs_tcp_raw.py,sha256=sWr0EnBYjfp6h0EPHDbMYgcdobH_sudGDPtsMwcX5
|
|
|
18
18
|
pulumi_splunk/inputs_tcp_splunk_tcp_token.py,sha256=FMUA4MMg_4YSqB1BTua5IiizlvfCaOyo0Ec0shoyvG8,10902
|
|
19
19
|
pulumi_splunk/inputs_tcp_ssl.py,sha256=WLkkAMt9bJybuJoI_UjPmkT2tTxITkwTKJ4K57WmV9A,14113
|
|
20
20
|
pulumi_splunk/inputs_udp.py,sha256=PHQwNAW81IN2ho6kvD2d_Z12Iq1uEQGZDvPqj-Tv1vE,34484
|
|
21
|
+
pulumi_splunk/lookup_definition.py,sha256=ksEqg3bM2ifC4hXh6Ywgv__10x2L9zHcyqo1gp-C_fM,12122
|
|
21
22
|
pulumi_splunk/lookup_table_file.py,sha256=5MP9tP-B8kLXu7O0J8SSG2hmVcjVqZqH_Y3Lu_4lcRw,15326
|
|
22
|
-
pulumi_splunk/outputs.py,sha256=
|
|
23
|
+
pulumi_splunk/outputs.py,sha256=BA27g2eCvmzPImNaMrTx7VyqGCpxvh9p_IaBGwK_Ri4,134782
|
|
23
24
|
pulumi_splunk/outputs_tcp_default.py,sha256=GlgeXiXVOvA5_-Kdy7vk-3IM3dmfgmUHzVbLz2iO0js,44310
|
|
24
25
|
pulumi_splunk/outputs_tcp_group.py,sha256=OiCTZCJlIX54IDkFhuPqXIHbScKMurSSMdHPbVS6kvE,43752
|
|
25
26
|
pulumi_splunk/outputs_tcp_server.py,sha256=P1vMbgoke9CT2wK95j0evExIVgnNgGZ7tdDx5GDNNKU,32239
|
|
26
27
|
pulumi_splunk/outputs_tcp_syslog.py,sha256=7qRjcE4mNGEFRuAQZdiz5_aSnTlWkqNNJL0RQ0OdrBM,28145
|
|
27
28
|
pulumi_splunk/provider.py,sha256=q-CEo18DUxiHYhRqyrMwH0gTJ7-8lTlu0gixHC_bTxo,10090
|
|
28
|
-
pulumi_splunk/pulumi-plugin.json,sha256=
|
|
29
|
+
pulumi_splunk/pulumi-plugin.json,sha256=MDY8uA9aPrvuK5JzuAu47pzDm3SreLkp-C1t-nPcX_o,82
|
|
29
30
|
pulumi_splunk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
31
|
pulumi_splunk/saved_searches.py,sha256=tWzyib6Eeu8wYhVEU7FB9RQjhF5Y7_vtDyssna5Chns,518393
|
|
31
32
|
pulumi_splunk/sh_indexes_manager.py,sha256=zug7D5j6wdRireZB55kegu4bAdIN5tGN5gkcQ2mJMf0,17256
|
|
32
33
|
pulumi_splunk/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
33
34
|
pulumi_splunk/config/__init__.pyi,sha256=Z9Louc2L1VjejfxNdntr8Pgnf1QtO-qlIZ5HKQ3Ljcg,1037
|
|
34
35
|
pulumi_splunk/config/vars.py,sha256=LaFK6IrW6dkub_tlV5wSvKkJVQ4u_jUrUX8TuWNCHrk,1740
|
|
35
|
-
pulumi_splunk-1.3.
|
|
36
|
-
pulumi_splunk-1.3.
|
|
37
|
-
pulumi_splunk-1.3.
|
|
38
|
-
pulumi_splunk-1.3.
|
|
36
|
+
pulumi_splunk-1.3.0a1732277463.dist-info/METADATA,sha256=2h46My4Vfq6WeSfXg43f_fEU4r2WZfkmM7EMqY3h9WE,3518
|
|
37
|
+
pulumi_splunk-1.3.0a1732277463.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
38
|
+
pulumi_splunk-1.3.0a1732277463.dist-info/top_level.txt,sha256=zmxpq9fZIUBGt-pxCnkSu6rtI7Fv5oulTfnHOBfA7uA,14
|
|
39
|
+
pulumi_splunk-1.3.0a1732277463.dist-info/RECORD,,
|
{pulumi_splunk-1.3.0a1731738558.dist-info → pulumi_splunk-1.3.0a1732277463.dist-info}/top_level.txt
RENAMED
|
File without changes
|