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 5
5
6
6
### New features and APIs
7
7
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.
9
10
10
- * Example *
11
+ 2 . Added a ` GenerateHelloCommand ` script to the searchcommand_app.
11
12
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 ` .
20
14
21
15
### Bug fixes
22
16
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.
24
18
25
- 2 . Fixed a perfomance issue with connecting to Windows.
19
+ 2 . Fixed a perfomance issue with connecting to Splunk in Windows.
26
20
27
- 3 . Improved the ``` service.restart() `` ` function.
21
+ 3 . Improved the ` service.restart() ` function.
28
22
29
- 4 . Renamed the searchcommand ``` csv ``` module to ``` splunk_csv `` ` .
23
+ 4 . Renamed the searchcommand ` csv ` module to ` splunk_csv ` .
30
24
31
25
## Version 1.2.3
32
26
Original file line number Diff line number Diff line change 14
14
15
15
"""Python library for Splunk."""
16
16
17
- __version_info__ = (1 , 2 , 3 )
17
+ __version_info__ = (1 , 3 , 0 )
18
18
__version__ = "." .join (map (str , __version_info__ ))
19
19
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ def fired_alerts(self):
410
410
"""
411
411
return Collection (self , PATH_FIRED_ALERTS , item = AlertGroup )
412
412
413
- @xla
413
+ @property
414
414
def indexes (self ):
415
415
"""Returns the collection of indexes for this Splunk instance.
416
416
You can’t perform that action at this time.
0 commit comments