vmware-vra 3.2.0 → 3.2.1

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: 0e0045f6ebfa8fa27f8842d7d99cab6caebbfed8dde6143caeca4f3586b84e89
4
- data.tar.gz: f44441731dd50642476d4a47c0e5d7c0d2bd957cb262cd10f566011ff902b299
3
+ metadata.gz: bc60678fe126d3ac933294836bb7c415963e78ab2087f8bf45e2783ba718d3d1
4
+ data.tar.gz: 68a6040b6c4d5fcd9ae4ff5670941a8053d94dd1986bc51fc68eb2ec770e8592
5
5
  SHA512:
6
- metadata.gz: ae31f69005d0e71b02712f75486619e8e68b22265ba5d45874a7f96e2c83ee75f5eea71d9c0bcd6eb8bad93bc8e3cf254b1fb1b2d2d0dbefb1447a7b3f26419d
7
- data.tar.gz: c8c59ca96efa6784ddcad31204fa1e23b2c9119e5173a829cd87fdfb4f08fefd0af0eb84366593f3f731259da3b71c840e9471e743852acdd80a52fc68734e8b
6
+ metadata.gz: d83893175c1b696df315383e84d2633562f81cef798ce2e153d782e5aacd2719a28e0ef44a31616b8cd20e2f792ecf4882fa0f6aec2a21a4b2a92c264250673c
7
+ data.tar.gz: 698afb80954710c79618402bc6a06a6c42015a7ab081cf735d6db6d2f02eb04cdc04eb2bd1478cbacfb3482995c29e040826bda41640653db73c283dfe678aea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## [3.2.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v3.2.1) (2023-07-05)
4
+
5
+ - Make deployment name an optional parameter
6
+
7
+ [Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v3.2.0...v3.2.1)
8
+
3
9
  ## [3.2.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v3.2.0) (2022-12-19)
4
10
 
5
11
  - Updated the tenant attribute to domain
@@ -85,7 +85,7 @@ module Vra
85
85
 
86
86
  def validate!
87
87
  missing_params = []
88
- %i{image_mapping flavor_mapping name project_id}.each do |arg|
88
+ %i{image_mapping flavor_mapping project_id}.each do |arg|
89
89
  missing_params << arg if send(arg).nil?
90
90
  end
91
91
 
data/lib/vra/version.rb CHANGED
@@ -18,5 +18,5 @@
18
18
  #
19
19
 
20
20
  module Vra
21
- VERSION = "3.2.0"
21
+ VERSION = "3.2.1"
22
22
  end
@@ -71,6 +71,17 @@ describe Vra::DeploymentRequest do
71
71
  expect { request.send(:validate!) }.not_to raise_error(ArgumentError)
72
72
  end
73
73
 
74
+ it "should not return error if deployment name is missing" do
75
+ request = described_class.new(client, catalog_id)
76
+
77
+ request.image_mapping = "Centos Image"
78
+ request.flavor_mapping = "Small"
79
+ request.version = "1"
80
+ request.project_id = "pro-123"
81
+
82
+ expect { request.send(:validate!) }.not_to raise_error(ArgumentError)
83
+ end
84
+
74
85
  context "versions" do
75
86
  let(:dep_request) do
76
87
  described_class.new(
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vmware-vra
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Leff
8
8
  - JJ Asghar
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-12-19 00:00:00.000000000 Z
12
+ date: 2023-07-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi-yajl
@@ -192,7 +192,7 @@ homepage: https://github.com/chef-partners/vmware-vra-gem
192
192
  licenses:
193
193
  - Apache 2.0
194
194
  metadata: {}
195
- post_install_message:
195
+ post_install_message:
196
196
  rdoc_options: []
197
197
  require_paths:
198
198
  - lib
@@ -207,8 +207,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
207
207
  - !ruby/object:Gem::Version
208
208
  version: '0'
209
209
  requirements: []
210
- rubygems_version: 3.2.32
211
- signing_key:
210
+ rubygems_version: 3.3.3
211
+ signing_key:
212
212
  specification_version: 4
213
213
  summary: Client gem for interacting with VMware vRealize Automation.
214
214
  test_files: