purest 1.0.1 → 1.0.2
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/purest/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: daf312e4a9f4e684d30ff143073640fb0c383b56b1d44f0c8b9b3550195c6a9e
|
|
4
|
+
data.tar.gz: a6afeef48fe986433d07b9f14b379c3a96226459370025d93693d0041e8ba2cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdcb8d67a737212753332272d25f6d1edd00a80300f41ac0696ea289acabca7a31b7106713a37f881ad2651c2544a3e106531ac579761a34b7a2b78f71baba03
|
|
7
|
+
data.tar.gz: ac4bed40d5ded45656de62b9e306a6807f4c0afd388e93e75235652610d31da75c70ae1d32b9c0a0952268f38874147afdfade5ded33e56553a27ec3d4c9b3c7
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ This started as sort of a labor of love/learning exercise, and sort of blossomed
|
|
|
9
9
|
|
|
10
10
|
2) I am not affiliated with Pure Storage, beyond the fact that my company uses their product.
|
|
11
11
|
|
|
12
|
-
3) While all of the classes exist, currently only up to API version 1.11 is supported.
|
|
12
|
+
3) While all of the classes exist, currently only up to API version 1.11 is supported.
|
|
13
13
|
|
|
14
14
|
## Requirements
|
|
15
15
|
|
|
@@ -21,7 +21,7 @@ This library requires you use Ruby 2.3 or above.
|
|
|
21
21
|
|
|
22
22
|
## Configuration
|
|
23
23
|
|
|
24
|
-
```
|
|
24
|
+
```rb
|
|
25
25
|
require 'purest'
|
|
26
26
|
|
|
27
27
|
Purest.configure do |config|
|
|
@@ -339,7 +339,7 @@ Purest::PhysicalArray.update(new_name: 'new_name')
|
|
|
339
339
|
Disconnect the current array from a specified array:
|
|
340
340
|
```ruby
|
|
341
341
|
# Given that your pure is purehost.yourdomain.com, as defined in the config block above
|
|
342
|
-
# Disconnect purehost2.yourdomain.com from
|
|
342
|
+
# Disconnect purehost2.yourdomain.com from purehost.yourdomain.com
|
|
343
343
|
Purest::PhysicalArray.delete(name: 'purehost2.yourdomain.com')
|
|
344
344
|
```
|
|
345
345
|
|
|
@@ -409,7 +409,7 @@ Purest::SNMP.create(name: 'snmp-manager1', host: 'snmp.yourdomain.com')
|
|
|
409
409
|
Purest::SNMP.create(name: 'snmp-manager1', host: '111.11.11.111:222')
|
|
410
410
|
|
|
411
411
|
# For those brave few; the strong souls using IPv6 with a custom port
|
|
412
|
-
Purest::SNMP.create(
|
|
412
|
+
Purest::SNMP.create(name: 'snmp-manager1', host: '[2001:db8:0:1]:222')
|
|
413
413
|
```
|
|
414
414
|
|
|
415
415
|
Updating an existing SNMP manager
|
data/lib/purest/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: purest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean McKinley
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cucumber
|