vsphere-automation-vapi 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e85f027a2f00f05da6c5976c7724d21d0139606a5fb846e416e66008f7cde00
4
- data.tar.gz: '0572597039e88ad0bcccdbad380d397591867e0e7ad0ddb9b0960f7033b9bddf'
3
+ metadata.gz: be80ff8f2472f3e1b21b8078287afedfa2aac00b8db3130d7cba51b442c6e074
4
+ data.tar.gz: 7c6a62e18511e92c1cdd286713e5a5cdc87357f74919d538ab816d40cbc285cd
5
5
  SHA512:
6
- metadata.gz: 37cf3e54e7d306a08f174604c4d4a20f4fb6241dae61f5e1511f0825085e13b63f50eefaa433f8fb94f1b1c2c185266956dee4c5dc4cf93ed877779152c7ea10
7
- data.tar.gz: 16cf3e81493d055aa91fd790fbe966684a817f167cc217d722206724fed39d638ba22406b2bc1cb02fe8d33f1cf064586ee739522977912228f6993b508011ea
6
+ metadata.gz: 89fec4f707d378a01091f38dcdc8c61ed914657d2f53753e1ac3222186cef795ee9eed0be8b7c9aa1dab52b05ce7a2da7d69c82993c9de192e4f2ecc4795b12b
7
+ data.tar.gz: e31a083c2793a6cf26af7a678b411c6859f463fdb3e598fffb40ff0e9e5108460e0978b65c6652d2e12c182fa4809a44b196155f15fce986d53df7dafacb8c48
@@ -1,21 +1,21 @@
1
1
  PATH
2
2
  remote: ../cis
3
3
  specs:
4
- vsphere-automation-cis (0.2.1)
5
- vsphere-automation-runtime (~> 0.2.1)
4
+ vsphere-automation-cis (0.2.2)
5
+ vsphere-automation-runtime (~> 0.2.2)
6
6
 
7
7
  PATH
8
8
  remote: ../runtime
9
9
  specs:
10
- vsphere-automation-runtime (0.2.1)
10
+ vsphere-automation-runtime (0.2.2)
11
11
  typhoeus (~> 1.3)
12
12
 
13
13
  PATH
14
14
  remote: .
15
15
  specs:
16
- vsphere-automation-vapi (0.2.1)
17
- vsphere-automation-cis (~> 0.2.1)
18
- vsphere-automation-runtime (~> 0.2.1)
16
+ vsphere-automation-vapi (0.2.2)
17
+ vsphere-automation-cis (~> 0.2.2)
18
+ vsphere-automation-runtime (~> 0.2.2)
19
19
 
20
20
  GEM
21
21
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  The Ruby gem for the vSphere VAPI 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 VAPI
11
- VERSION = '0.2.1'
11
+ VERSION = '0.2.2'
12
12
  end
13
13
  end
@@ -23,8 +23,8 @@ Gem::Specification.new do |s|
23
23
  s.license = 'MIT'
24
24
  s.required_ruby_version = ">= 2.3"
25
25
 
26
- s.add_runtime_dependency 'vsphere-automation-runtime', '~> 0.2.1'
27
- s.add_runtime_dependency 'vsphere-automation-cis', '~> 0.2.1'
26
+ s.add_runtime_dependency 'vsphere-automation-runtime', '~> 0.2.2'
27
+ s.add_runtime_dependency 'vsphere-automation-cis', '~> 0.2.2'
28
28
 
29
29
  s.add_development_dependency 'bundler', '~> 2.0'
30
30
  s.add_development_dependency 'pry', '~> 0.12.2'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vsphere-automation-vapi
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: vsphere-automation-runtime
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.2.1
19
+ version: 0.2.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.2.1
26
+ version: 0.2.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: vsphere-automation-cis
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.2.1
33
+ version: 0.2.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.2.1
40
+ version: 0.2.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -463,6 +463,7 @@ files:
463
463
  - lib/vsphere-automation-vapi/models/vapi_std_errors_unauthorized_error.rb
464
464
  - lib/vsphere-automation-vapi/models/vapi_std_localizable_message.rb
465
465
  - lib/vsphere-automation-vapi/version.rb
466
+ - pkg/vsphere-automation-vapi-0.2.1.gem
466
467
  - spec/api/metadata_authentication_component_api_spec.rb
467
468
  - spec/api/metadata_authentication_package_api_spec.rb
468
469
  - spec/api/metadata_authentication_service_api_spec.rb