File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed
Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 11# Splunk SDK for Python Changelog
22
33
4+ ## Version 1.3.0
5+
6+ ### New features and APIs
7+
8+ 1 . Added the ability to work with Storage Passwords.
9+
10+ * Example*
11+
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.
20+
21+ ### Bug fixes
22+
23+ 1 . Now entities that contain slashes in their name can be created/deleted and accessed correctly.
24+
25+ 2 . Fixed a perfomance issue with connecting to Windows.
26+
27+ 3 . Improved the ``` service.restart() ``` function.
28+
29+ 4 . Renamed the searchcommand ``` csv ``` module to ``` splunk_csv ``` .
30+
431## Version 1.2.3
532
633### New features and APIs
Original file line number Diff line number Diff line change 11# The Splunk Software Development Kit for Python
22
3- #### Version 1.2.3
3+ #### Version 1.3.0
44
55The Splunk Software Development Kit (SDK) for Python contains library code and
66examples designed to enable developers to build applications using Splunk.
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- @property
413+ @xla
414414 def indexes (self ):
415415 """Returns the collection of indexes for this Splunk instance.
416416
@@ -473,9 +473,9 @@ def modular_input_kinds(self):
473473
474474 @property
475475 def storage_passwords (self ):
476- """Returns the collection of the modular input kinds on this Splunk instance.
476+ """Returns the collection of the storage passwords on this Splunk instance.
477477
478- :return: A :class:`ReadOnlyCollection` of :class:`ModularInputKind ` entities.
478+ :return: A :class:`ReadOnlyCollection` of :class:`StoragePasswords ` entities.
479479 """
480480 return StoragePasswords (self )
481481
You can’t perform that action at this time.
0 commit comments