vsphere-automation-runtime 0.2.1 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5da074f50dce976740f6e7968cb383c3687d53d4ad87a8bc2bf80984088c3111
4
- data.tar.gz: af6d608e31ab600a1efbcef17a37d614faa1340a17ae117c63f0b7b0e9467993
3
+ metadata.gz: bd4ebdc645408623ffb698f7a4db66ab7151fad0db4af5429b206d29cf93ef59
4
+ data.tar.gz: a4fdf9a56af812164a7fc2109201753f97f509e5601ed869f5ae844d79469ca3
5
5
  SHA512:
6
- metadata.gz: e19f7e1168c55e584b1cffb92061cc7706af8395bc437cf834d4190f98a4115ad5a2db085019e7faf908dbf97679059b928ba7b223e8eee7e20e21481e0c4582
7
- data.tar.gz: 15e00a8bcc6a3f0f73f09af526cd1445e4ca36a74ee32e6f43b6a7e951885033ec070181623f6cc59a9fb7f5ea3afcb9436697efb05030ff233b3a71627876d8
6
+ metadata.gz: bd846e6aca0f31f9a7e4aebf2afd77c6f1662ec45cbb778bbf52e308251f05ccbe7e29ae7f81b9fcf22e5473178d8d3685df49e58d99cdddfce5da5ce8edb54d
7
+ data.tar.gz: 2420f9d1eecf3e99aa52bfbeaaae34003a882dbde9b802537672e4a00d210ca8ec51d198c78731fed69755732a2c9fa41e11b6cad49a79f814f3e91c4c0c3530
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vsphere-automation-runtime (0.2.1)
4
+ vsphere-automation-runtime (0.2.2)
5
5
  typhoeus (~> 1.3)
6
6
 
7
7
  GEM
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.2.1
6
+ - Package version: 0.2.2
7
7
 
8
8
  ## Installation
9
9
 
@@ -29,7 +29,7 @@ module VSphereAutomation
29
29
  # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
30
30
  def initialize(config = Configuration.default)
31
31
  @config = config
32
- @user_agent = "SDK/0.2.1 Ruby/#{RUBY_VERSION} (#{Gem::Platform.local.os}; #{Gem::Platform.local.version}; #{Gem::Platform.local.cpu})"
32
+ @user_agent = "SDK/0.2.2 Ruby/#{RUBY_VERSION} (#{Gem::Platform.local.os}; #{Gem::Platform.local.version}; #{Gem::Platform.local.cpu})"
33
33
  @default_headers = {
34
34
  'Content-Type' => 'application/json',
35
35
  'User-Agent' => @user_agent
@@ -133,7 +133,7 @@ module VSphereAutomation
133
133
  @client_side_validation = true
134
134
  @verify_ssl = true
135
135
  @verify_ssl_host = true
136
- @params_encoding = nil
136
+ @params_encoding = :multi
137
137
  @cert_file = nil
138
138
  @key_file = nil
139
139
  @debugging = false
@@ -8,6 +8,6 @@
8
8
 
9
9
  module VSphereAutomation
10
10
  module Runtime
11
- VERSION = '0.2.1'
11
+ VERSION = '0.2.2'
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.2.1
4
+ version: 0.2.2
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-08-07 00:00:00.000000000 Z
11
+ date: 2019-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -139,6 +139,7 @@ files:
139
139
  - lib/vsphere-automation-runtime/api_error.rb
140
140
  - lib/vsphere-automation-runtime/configuration.rb
141
141
  - lib/vsphere-automation-runtime/version.rb
142
+ - pkg/vsphere-automation-runtime-0.2.1.gem
142
143
  - spec/api_client_spec.rb
143
144
  - spec/configuration_spec.rb
144
145
  - spec/spec_helper.rb