vmware-vra 3.1.0 → 3.1.3
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 +4 -4
- data/.github/workflows/linters.yml +9 -0
- data/.markdownlint.yaml +5 -0
- data/.mdlrc +1 -0
- data/CHANGELOG.md +196 -143
- data/Gemfile +3 -0
- data/README.md +37 -26
- data/Rakefile +2 -2
- data/lib/vra/catalog.rb +6 -7
- data/lib/vra/catalog_base.rb +4 -4
- data/lib/vra/catalog_item.rb +12 -12
- data/lib/vra/catalog_source.rb +13 -13
- data/lib/vra/catalog_type.rb +6 -6
- data/lib/vra/client.rb +13 -13
- data/lib/vra/deployment.rb +21 -21
- data/lib/vra/deployment_request.rb +8 -9
- data/lib/vra/deployments.rb +1 -1
- data/lib/vra/http.rb +6 -6
- data/lib/vra/request.rb +6 -6
- data/lib/vra/request_parameters.rb +9 -9
- data/lib/vra/resource.rb +16 -16
- data/lib/vra/version.rb +1 -1
- data/lib/vra.rb +14 -14
- data/spec/catalog_item_spec.rb +50 -50
- data/spec/catalog_source_spec.rb +53 -53
- data/spec/catalog_spec.rb +45 -45
- data/spec/catalog_type_spec.rb +32 -32
- data/spec/client_spec.rb +202 -202
- data/spec/deployment_request_spec.rb +74 -74
- data/spec/deployment_spec.rb +70 -70
- data/spec/deployments_spec.rb +19 -19
- data/spec/http_spec.rb +59 -59
- data/spec/request_spec.rb +34 -34
- data/spec/resource_spec.rb +55 -55
- data/spec/spec_helper.rb +4 -4
- data/vmware-vra.gemspec +1 -1
- metadata +8 -7
- data/.github/ISSUE_TEMPLATE.md +0 -23
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -14
data/.github/ISSUE_TEMPLATE.md
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
### Versions:
|
2
|
-
<!--- Version of the software where you are encountering the issue --->
|
3
|
-
<!-- You should probably update in this is not newest release.--->
|
4
|
-
* Version of vmware-vra-gem:
|
5
|
-
* Version of chef:
|
6
|
-
* Version of ruby:
|
7
|
-
|
8
|
-
### Platform Details
|
9
|
-
<!--- What version of vRA are you running? What version of ESXi are you using too?--->
|
10
|
-
* Version of vRA:
|
11
|
-
* Version of ESXi:
|
12
|
-
|
13
|
-
### Scenario:
|
14
|
-
<!--- What you are trying to achieve and you can't?--->
|
15
|
-
|
16
|
-
### Steps to Reproduce:
|
17
|
-
<!--- If you are filing an issue what are the things we need to do in order to repro your problem? How are you using this gem or any resources it includes?--->
|
18
|
-
|
19
|
-
### Expected Result:
|
20
|
-
<!--- What are you expecting to happen as the consequence of above reproduction steps?--->
|
21
|
-
|
22
|
-
### Actual Result:
|
23
|
-
<!--- What actually happens after the reproduction steps? Include the error output or a link to a gist if possible.--->
|
@@ -1,14 +0,0 @@
|
|
1
|
-
### Description
|
2
|
-
|
3
|
-
<!--- Describe what this change achieves--->
|
4
|
-
|
5
|
-
### Issues Resolved
|
6
|
-
|
7
|
-
<!--- List any existing issues this PR resolves--->
|
8
|
-
|
9
|
-
### Check List
|
10
|
-
|
11
|
-
- [ ] All tests pass.
|
12
|
-
- [ ] All style checks pass.
|
13
|
-
- [ ] Functionality includes testing.
|
14
|
-
- [ ] Functionality has been documented in the README if applicable
|