manageiq-api-client 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +2 -2
- data/lib/manageiq/api/client/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2f3fc3259917c28315986dcfe8d5ac1c7ca71ea
|
4
|
+
data.tar.gz: 0c5fccb4b827c34e2428874d0ba7c30cb051fe76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7e688118186845b13fb5f450822cec127e24bd7316256fd503d7435585d23fe24977790c58f39ab5480272d145f85bf50924bf4fd3390d8241af15f73216fef
|
7
|
+
data.tar.gz: 26b746cc6614f7514967d4f3ed9a56bdd134426fd359d3b7e87bc950e6db15660246b0edb822d892a7bd090cfa92c8a87965a783296d067f14536c96428da90f
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Change Log
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
|
9
|
+
## [0.1.1]
|
10
|
+
### Added
|
11
|
+
- Add CHANGELOG.md
|
12
|
+
- Update README with simple instructions reflecting the query interface.
|
13
|
+
|
14
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.1.1...HEAD
|
15
|
+
[0.1.1]: https://github.com/ManageIQ/manageiq-api-client/compare/v0.1.0...v0.1.1
|
data/README.md
CHANGED
@@ -35,9 +35,9 @@ miq = ManageIQ::API::Client.new(
|
|
35
35
|
:password => "password"
|
36
36
|
)
|
37
37
|
|
38
|
-
miq.vms.
|
38
|
+
miq.vms.where(:id => 320).first.start
|
39
39
|
|
40
|
-
miq.vms.
|
40
|
+
miq.vms.limit(5).each do |vm|
|
41
41
|
vm.suspend if vm.hardware.memory_mb >= 8192
|
42
42
|
end
|
43
43
|
```
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: manageiq-api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alberto Bellotti
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-11-
|
12
|
+
date: 2016-11-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -150,6 +150,7 @@ files:
|
|
150
150
|
- ".gitignore"
|
151
151
|
- ".rspec"
|
152
152
|
- ".travis.yml"
|
153
|
+
- CHANGELOG.md
|
153
154
|
- Gemfile
|
154
155
|
- LICENSE.txt
|
155
156
|
- README.md
|