vsphere-automation-runtime 0.4.3 → 0.4.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7917a709ed7c07abb03fd5d416bc813cb9c040bc18ca4ca63ecb2099d2a38ffc
4
- data.tar.gz: 065b4e123527b960e8874d654660e170c94a172e998f270c5f8e0f7db32bdc1a
3
+ metadata.gz: f8648ffa1c05b3725ad75630c04135d295d4b7cb5297b30143d3ba8bdd09ca36
4
+ data.tar.gz: 2f5d4b1511549f5175e15ea87717df9543d407c1d33d296d2a3b9158994414e7
5
5
  SHA512:
6
- metadata.gz: f4786d59a399fb0f5970ce6349b39772d570711bc34947a46a352b1618dfad6355074e8a6d1e3a4e83fe89fc40eec22d506eca615c92ee0c2133b133b1986e3e
7
- data.tar.gz: 4df41a168d9008563d9602dd3b2e19b3e89a7d864258d4ffd91b028d05870b7fda6a9701974a38e2d05e9abaef8294bd3d13992046bc0db197c6da68215d15ca
6
+ metadata.gz: 01eb7380314cd7dc4d2efb5992203dd8f6295d136a38d08a8f3c558932b67aeacc3e7400525a439f4787ebc3d3cb9c22da7940cdb1f31ef9f90b63b934c149b0
7
+ data.tar.gz: 210545975a6ec7e1ecafb0510ee5a00d5e155a8a7c3984998f62c44d9bcba55ceb0d1531bc5a3dada40e2d1433d00a44ac37bbafb92b7b9256c656f8c0096dde
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vsphere-automation-runtime (0.4.3)
4
+ vsphere-automation-runtime (0.4.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -17,7 +17,7 @@ GEM
17
17
  jaro_winkler (1.5.3)
18
18
  method_source (0.9.2)
19
19
  parallel (1.17.0)
20
- parser (2.6.4.0)
20
+ parser (2.6.5.0)
21
21
  ast (~> 2.4.0)
22
22
  pry (0.12.2)
23
23
  coderay (~> 1.1.0)
@@ -31,13 +31,13 @@ GEM
31
31
  rspec-mocks (~> 3.8.0)
32
32
  rspec-core (3.8.2)
33
33
  rspec-support (~> 3.8.0)
34
- rspec-expectations (3.8.4)
34
+ rspec-expectations (3.8.5)
35
35
  diff-lcs (>= 1.2.0, < 2.0)
36
36
  rspec-support (~> 3.8.0)
37
- rspec-mocks (3.8.1)
37
+ rspec-mocks (3.8.2)
38
38
  diff-lcs (>= 1.2.0, < 2.0)
39
39
  rspec-support (~> 3.8.0)
40
- rspec-support (3.8.2)
40
+ rspec-support (3.8.3)
41
41
  rubocop (0.73.0)
42
42
  jaro_winkler (~> 1.5.1)
43
43
  parallel (~> 1.10)
@@ -49,7 +49,7 @@ GEM
49
49
  safe_yaml (1.0.5)
50
50
  unicode-display_width (1.6.0)
51
51
  vcr (5.0.0)
52
- webmock (3.7.2)
52
+ webmock (3.7.6)
53
53
  addressable (>= 2.3.6)
54
54
  crack (>= 0.3.2)
55
55
  hashdiff (>= 0.4.0, < 2.0.0)
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  The Ruby gem for the vSphere Runtime API
4
4
 
5
5
  - API version: 2.0.0
6
- - Package version: 0.4.3
6
+ - Package version: 0.4.4
7
7
 
8
8
  ## Installation
9
9
 
@@ -153,6 +153,7 @@ module VSphereAutomation
153
153
  http = Net::HTTP.new(uri.host, uri.port)
154
154
  http.use_ssl = @config.scheme == 'https'
155
155
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE unless @config.verify_ssl_host
156
+ http.read_timeout = @config.timeout
156
157
  http
157
158
  end
158
159
 
@@ -129,7 +129,7 @@ module VSphereAutomation
129
129
  @base_path = '/rest'
130
130
  @api_key = {}
131
131
  @api_key_prefix = {}
132
- @timeout = 0
132
+ @timeout = nil
133
133
  @client_side_validation = true
134
134
  @verify_ssl = true
135
135
  @verify_ssl_host = true
@@ -8,6 +8,6 @@
8
8
 
9
9
  module VSphereAutomation
10
10
  module Runtime
11
- VERSION = '0.4.3'
11
+ VERSION = '0.4.4'
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vsphere-automation-runtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - J.R. Garcia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-25 00:00:00.000000000 Z
11
+ date: 2019-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -155,6 +155,7 @@ files:
155
155
  - lib/vsphere-automation-runtime/version.rb
156
156
  - pkg/vsphere-automation-runtime-0.4.1.gem
157
157
  - pkg/vsphere-automation-runtime-0.4.2.gem
158
+ - pkg/vsphere-automation-runtime-0.4.3.gem
158
159
  - spec/api_client_spec.rb
159
160
  - spec/configuration_spec.rb
160
161
  - spec/spec_helper.rb