junos-space-api 0.2.2 → 0.2.3
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.
- data/README.md +3 -2
- data/junos-space-api-0.2.2.gem +0 -0
- data/junos-space-api.gemspec +1 -1
- data/lib/junos-space-api/platform/job.rb +1 -1
- metadata +3 -2
data/README.md
CHANGED
|
@@ -15,14 +15,15 @@ Here are the current web services available so far in this API:
|
|
|
15
15
|
|
|
16
16
|
*Platform*
|
|
17
17
|
|
|
18
|
-
-
|
|
18
|
+
- Audit Log Management
|
|
19
19
|
- Device Management
|
|
20
|
+
- Job Management
|
|
20
21
|
|
|
21
22
|
*Security Director*
|
|
22
23
|
|
|
23
24
|
- Address Management
|
|
24
|
-
- Service Management
|
|
25
25
|
- Device Management
|
|
26
|
+
- Service Management
|
|
26
27
|
|
|
27
28
|
Please see Juniper's documentation for the full release notes on the [Junos Space API][5], as well as
|
|
28
29
|
the [Security Director API][2].
|
|
Binary file
|
data/junos-space-api.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ require 'rake'
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.license = 'MIT'
|
|
5
5
|
s.name = 'junos-space-api'
|
|
6
|
-
s.version = '0.2.
|
|
6
|
+
s.version = '0.2.3'
|
|
7
7
|
s.summary = 'Interact with the Junos Space REST API.'
|
|
8
8
|
s.description = 'This gem is used to interact with Juniper Networks Junos Space management platform using the REST API.'
|
|
9
9
|
s.authors = ["Scott Ware"]
|
|
@@ -14,7 +14,7 @@ class JunosSpace::Platform::Job
|
|
|
14
14
|
# 'inprogress', or 'cancelled'. If no status is given, then all of the jobs are
|
|
15
15
|
# returned. The name of the job is the key, and the ID is the value.
|
|
16
16
|
#
|
|
17
|
-
def list(status)
|
|
17
|
+
def list(status = '')
|
|
18
18
|
result = {}
|
|
19
19
|
|
|
20
20
|
begin
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: junos-space-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-07-
|
|
12
|
+
date: 2013-07-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: This gem is used to interact with Juniper Networks Junos Space management
|
|
15
15
|
platform using the REST API.
|
|
@@ -19,6 +19,7 @@ extensions: []
|
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
21
|
- junos-space-api-0.2.1.gem
|
|
22
|
+
- junos-space-api-0.2.2.gem
|
|
22
23
|
- junos-space-api.gemspec
|
|
23
24
|
- LICENSE
|
|
24
25
|
- README.md
|