Skip to content

Commit 8c2ed31

Browse files
author
Sam Stelle
committed
Added the new version to the SDK. Nit fixes.
1 parent 486ad19 commit 8c2ed31

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Splunk Software Development Kit for Python
22

3-
#### Version 1.2.3
3+
#### Version 1.3.0
44

55
The Splunk Software Development Kit (SDK) for Python contains library code and
66
examples designed to enable developers to build applications using Splunk.

splunklib/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)