File tree Expand file tree Collapse file tree 3 files changed +10
-16
lines changed
Expand file tree Collapse file tree 3 files changed +10
-16
lines changed Original file line number Diff line number Diff line change 55
66### New features and APIs
77
8- 1 . Added the ability to work with Storage Passwords.
8+ 1 . Added the ability to interact with Storage Passwords. Both the ` Entity `
9+ and the ` ReadOnlyCollection ` functionalities have been added.
910
10- * Example *
11+ 2 . Added a ` GenerateHelloCommand ` script to the searchcommand_app.
1112
12- ```
13- storage_passwords_collection = service.storage_passwords
14- new_storage_password = storage_passwords_collection.create(password="mypw", username="myuser")
15- ```
16-
17- 2 . Improved the searchcommand_app example.
18-
19- 3 . Added a human readable title parameter to modularinput argument.
13+ 3 . Added a human readable title parameter to ` modularinput.argument ` .
2014
2115### Bug fixes
2216
23- 1 . Now entities that contain slashes in their name can be created/ deleted and accessed correctly.
17+ 1 . Now entities that contain slashes in their name can be created, deleted and accessed correctly.
2418
25- 2 . Fixed a perfomance issue with connecting to Windows.
19+ 2 . Fixed a perfomance issue with connecting to Splunk in Windows.
2620
27- 3 . Improved the ``` service.restart() `` ` function.
21+ 3 . Improved the ` service.restart() ` function.
2822
29- 4 . Renamed the searchcommand ``` csv ``` module to ``` splunk_csv `` ` .
23+ 4 . Renamed the searchcommand ` csv ` module to ` splunk_csv ` .
3024
3125## Version 1.2.3
3226
Original file line number Diff line number Diff line change 1414
1515"""Python library for Splunk."""
1616
17- __version_info__ = (1 , 2 , 3 )
17+ __version_info__ = (1 , 3 , 0 )
1818__version__ = "." .join (map (str , __version_info__ ))
1919
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ def fired_alerts(self):
410410 """
411411 return Collection (self , PATH_FIRED_ALERTS , item = AlertGroup )
412412
413- @xla
413+ @property
414414 def indexes (self ):
415415 """Returns the collection of indexes for this Splunk instance.
416416
You can’t perform that action at this time.
0 commit comments