pnap_rancher_api 1.0.0
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 +7 -0
- data/Gemfile +9 -0
- data/README.md +154 -0
- data/Rakefile +10 -0
- data/VERSION +1 -0
- data/docs/Cluster.md +36 -0
- data/docs/ClustersApi.md +286 -0
- data/docs/DeleteResult.md +20 -0
- data/docs/Error.md +20 -0
- data/docs/Node.md +18 -0
- data/docs/NodePool.md +26 -0
- data/docs/RancherClusterCertificates.md +22 -0
- data/docs/RancherClusterConfig.md +30 -0
- data/docs/RancherServerMetadata.md +22 -0
- data/docs/SshConfig.md +22 -0
- data/docs/WorkloadClusterConfig.md +24 -0
- data/lib/pnap_rancher_api/api/clusters_api.rb +269 -0
- data/lib/pnap_rancher_api/api_client.rb +392 -0
- data/lib/pnap_rancher_api/api_error.rb +57 -0
- data/lib/pnap_rancher_api/configuration.rb +278 -0
- data/lib/pnap_rancher_api/models/cluster.rb +341 -0
- data/lib/pnap_rancher_api/models/delete_result.rb +235 -0
- data/lib/pnap_rancher_api/models/error.rb +236 -0
- data/lib/pnap_rancher_api/models/node.rb +220 -0
- data/lib/pnap_rancher_api/models/node_pool.rb +264 -0
- data/lib/pnap_rancher_api/models/rancher_cluster_certificates.rb +240 -0
- data/lib/pnap_rancher_api/models/rancher_cluster_config.rb +284 -0
- data/lib/pnap_rancher_api/models/rancher_server_metadata.rb +240 -0
- data/lib/pnap_rancher_api/models/ssh_config.rb +246 -0
- data/lib/pnap_rancher_api/models/workload_cluster_config.rb +264 -0
- data/lib/pnap_rancher_api/version.rb +19 -0
- data/lib/pnap_rancher_api.rb +50 -0
- data/pnap_rancher_api.gemspec +39 -0
- data/spec/api/clusters_api_spec.rb +82 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/cluster_spec.rb +88 -0
- data/spec/models/delete_result_spec.rb +40 -0
- data/spec/models/error_spec.rb +40 -0
- data/spec/models/node_pool_spec.rb +58 -0
- data/spec/models/node_spec.rb +34 -0
- data/spec/models/rancher_cluster_certificates_spec.rb +46 -0
- data/spec/models/rancher_cluster_config_spec.rb +70 -0
- data/spec/models/rancher_server_metadata_spec.rb +46 -0
- data/spec/models/ssh_config_spec.rb +46 -0
- data/spec/models/workload_cluster_config_spec.rb +52 -0
- data/spec/spec_helper.rb +111 -0
- metadata +144 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
=begin
|
2
|
+
#Rancher Solution API
|
3
|
+
|
4
|
+
#Simplify enterprise-grade Kubernetes cluster operations and management with Rancher on Bare Metal Cloud. Deploy Kubernetes clusters using a few API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/rancher-bmc-integration-kubernetes' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/solutions/rancher/v1beta)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for RancherApi::RancherClusterConfig
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe RancherApi::RancherClusterConfig do
|
21
|
+
let(:instance) { RancherApi::RancherClusterConfig.new }
|
22
|
+
|
23
|
+
describe 'test an instance of RancherClusterConfig' do
|
24
|
+
it 'should create an instance of RancherClusterConfig' do
|
25
|
+
expect(instance).to be_instance_of(RancherApi::RancherClusterConfig)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "tls_san"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "etcd_snapshot_schedule_cron"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "etcd_snapshot_retention"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "node_taint"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "cluster_domain"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "certificates"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Rancher Solution API
|
3
|
+
|
4
|
+
#Simplify enterprise-grade Kubernetes cluster operations and management with Rancher on Bare Metal Cloud. Deploy Kubernetes clusters using a few API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/rancher-bmc-integration-kubernetes' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/solutions/rancher/v1beta)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for RancherApi::RancherServerMetadata
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe RancherApi::RancherServerMetadata do
|
21
|
+
let(:instance) { RancherApi::RancherServerMetadata.new }
|
22
|
+
|
23
|
+
describe 'test an instance of RancherServerMetadata' do
|
24
|
+
it 'should create an instance of RancherServerMetadata' do
|
25
|
+
expect(instance).to be_instance_of(RancherApi::RancherServerMetadata)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "url"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "username"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "password"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Rancher Solution API
|
3
|
+
|
4
|
+
#Simplify enterprise-grade Kubernetes cluster operations and management with Rancher on Bare Metal Cloud. Deploy Kubernetes clusters using a few API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/rancher-bmc-integration-kubernetes' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/solutions/rancher/v1beta)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for RancherApi::SshConfig
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe RancherApi::SshConfig do
|
21
|
+
let(:instance) { RancherApi::SshConfig.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SshConfig' do
|
24
|
+
it 'should create an instance of SshConfig' do
|
25
|
+
expect(instance).to be_instance_of(RancherApi::SshConfig)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "install_default_keys"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "keys"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "key_ids"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
=begin
|
2
|
+
#Rancher Solution API
|
3
|
+
|
4
|
+
#Simplify enterprise-grade Kubernetes cluster operations and management with Rancher on Bare Metal Cloud. Deploy Kubernetes clusters using a few API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/rancher-bmc-integration-kubernetes' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/solutions/rancher/v1beta)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for RancherApi::WorkloadClusterConfig
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe RancherApi::WorkloadClusterConfig do
|
21
|
+
let(:instance) { RancherApi::WorkloadClusterConfig.new }
|
22
|
+
|
23
|
+
describe 'test an instance of WorkloadClusterConfig' do
|
24
|
+
it 'should create an instance of WorkloadClusterConfig' do
|
25
|
+
expect(instance).to be_instance_of(RancherApi::WorkloadClusterConfig)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "name"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "server_count"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "server_type"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "location"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
=begin
|
2
|
+
#Rancher Solution API
|
3
|
+
|
4
|
+
#Simplify enterprise-grade Kubernetes cluster operations and management with Rancher on Bare Metal Cloud. Deploy Kubernetes clusters using a few API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/rancher-bmc-integration-kubernetes' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/solutions/rancher/v1beta)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
# load the gem
|
14
|
+
require 'pnap_rancher_api'
|
15
|
+
|
16
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
17
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
18
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
19
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
20
|
+
# files.
|
21
|
+
#
|
22
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
23
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
24
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
25
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
26
|
+
# a separate helper file that requires the additional dependencies and performs
|
27
|
+
# the additional setup, and require it from the spec files that actually need
|
28
|
+
# it.
|
29
|
+
#
|
30
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
31
|
+
# users commonly want.
|
32
|
+
#
|
33
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
34
|
+
RSpec.configure do |config|
|
35
|
+
# rspec-expectations config goes here. You can use an alternate
|
36
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
37
|
+
# assertions if you prefer.
|
38
|
+
config.expect_with :rspec do |expectations|
|
39
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
40
|
+
# and `failure_message` of custom matchers include text for helper methods
|
41
|
+
# defined using `chain`, e.g.:
|
42
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
43
|
+
# # => "be bigger than 2 and smaller than 4"
|
44
|
+
# ...rather than:
|
45
|
+
# # => "be bigger than 2"
|
46
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
47
|
+
end
|
48
|
+
|
49
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
50
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
51
|
+
config.mock_with :rspec do |mocks|
|
52
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
53
|
+
# a real object. This is generally recommended, and will default to
|
54
|
+
# `true` in RSpec 4.
|
55
|
+
mocks.verify_partial_doubles = true
|
56
|
+
end
|
57
|
+
|
58
|
+
# The settings below are suggested to provide a good initial experience
|
59
|
+
# with RSpec, but feel free to customize to your heart's content.
|
60
|
+
=begin
|
61
|
+
# These two settings work together to allow you to limit a spec run
|
62
|
+
# to individual examples or groups you care about by tagging them with
|
63
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
64
|
+
# get run.
|
65
|
+
config.filter_run :focus
|
66
|
+
config.run_all_when_everything_filtered = true
|
67
|
+
|
68
|
+
# Allows RSpec to persist some state between runs in order to support
|
69
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
70
|
+
# you configure your source control system to ignore this file.
|
71
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
72
|
+
|
73
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
74
|
+
# recommended. For more details, see:
|
75
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
76
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
77
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
78
|
+
config.disable_monkey_patching!
|
79
|
+
|
80
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
81
|
+
# be too noisy due to issues in dependencies.
|
82
|
+
config.warnings = true
|
83
|
+
|
84
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
85
|
+
# file, and it's useful to allow more verbose output when running an
|
86
|
+
# individual spec file.
|
87
|
+
if config.files_to_run.one?
|
88
|
+
# Use the documentation formatter for detailed output,
|
89
|
+
# unless a formatter has already been configured
|
90
|
+
# (e.g. via a command-line flag).
|
91
|
+
config.default_formatter = 'doc'
|
92
|
+
end
|
93
|
+
|
94
|
+
# Print the 10 slowest examples and example groups at the
|
95
|
+
# end of the spec run, to help surface which specs are running
|
96
|
+
# particularly slow.
|
97
|
+
config.profile_examples = 10
|
98
|
+
|
99
|
+
# Run specs in random order to surface order dependencies. If you find an
|
100
|
+
# order dependency and want to debug it, you can fix the order by providing
|
101
|
+
# the seed, which is printed after each run.
|
102
|
+
# --seed 1234
|
103
|
+
config.order = :random
|
104
|
+
|
105
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
106
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
107
|
+
# test failures related to randomization by passing the same `--seed` value
|
108
|
+
# as the one that triggered the failure.
|
109
|
+
Kernel.srand config.seed
|
110
|
+
=end
|
111
|
+
end
|
metadata
ADDED
@@ -0,0 +1,144 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pnap_rancher_api
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- PhoenixNAP
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-04-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: typhoeus
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rspec
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '3.6'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 3.6.0
|
43
|
+
type: :development
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '3.6'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.6.0
|
53
|
+
description: Rancher Solution API Ruby Gem
|
54
|
+
email:
|
55
|
+
- support@phoenixnap.com
|
56
|
+
executables: []
|
57
|
+
extensions: []
|
58
|
+
extra_rdoc_files: []
|
59
|
+
files:
|
60
|
+
- Gemfile
|
61
|
+
- README.md
|
62
|
+
- Rakefile
|
63
|
+
- VERSION
|
64
|
+
- docs/Cluster.md
|
65
|
+
- docs/ClustersApi.md
|
66
|
+
- docs/DeleteResult.md
|
67
|
+
- docs/Error.md
|
68
|
+
- docs/Node.md
|
69
|
+
- docs/NodePool.md
|
70
|
+
- docs/RancherClusterCertificates.md
|
71
|
+
- docs/RancherClusterConfig.md
|
72
|
+
- docs/RancherServerMetadata.md
|
73
|
+
- docs/SshConfig.md
|
74
|
+
- docs/WorkloadClusterConfig.md
|
75
|
+
- lib/pnap_rancher_api.rb
|
76
|
+
- lib/pnap_rancher_api/api/clusters_api.rb
|
77
|
+
- lib/pnap_rancher_api/api_client.rb
|
78
|
+
- lib/pnap_rancher_api/api_error.rb
|
79
|
+
- lib/pnap_rancher_api/configuration.rb
|
80
|
+
- lib/pnap_rancher_api/models/cluster.rb
|
81
|
+
- lib/pnap_rancher_api/models/delete_result.rb
|
82
|
+
- lib/pnap_rancher_api/models/error.rb
|
83
|
+
- lib/pnap_rancher_api/models/node.rb
|
84
|
+
- lib/pnap_rancher_api/models/node_pool.rb
|
85
|
+
- lib/pnap_rancher_api/models/rancher_cluster_certificates.rb
|
86
|
+
- lib/pnap_rancher_api/models/rancher_cluster_config.rb
|
87
|
+
- lib/pnap_rancher_api/models/rancher_server_metadata.rb
|
88
|
+
- lib/pnap_rancher_api/models/ssh_config.rb
|
89
|
+
- lib/pnap_rancher_api/models/workload_cluster_config.rb
|
90
|
+
- lib/pnap_rancher_api/version.rb
|
91
|
+
- pnap_rancher_api.gemspec
|
92
|
+
- spec/api/clusters_api_spec.rb
|
93
|
+
- spec/api_client_spec.rb
|
94
|
+
- spec/configuration_spec.rb
|
95
|
+
- spec/models/cluster_spec.rb
|
96
|
+
- spec/models/delete_result_spec.rb
|
97
|
+
- spec/models/error_spec.rb
|
98
|
+
- spec/models/node_pool_spec.rb
|
99
|
+
- spec/models/node_spec.rb
|
100
|
+
- spec/models/rancher_cluster_certificates_spec.rb
|
101
|
+
- spec/models/rancher_cluster_config_spec.rb
|
102
|
+
- spec/models/rancher_server_metadata_spec.rb
|
103
|
+
- spec/models/ssh_config_spec.rb
|
104
|
+
- spec/models/workload_cluster_config_spec.rb
|
105
|
+
- spec/spec_helper.rb
|
106
|
+
homepage: https://phoenixnap.com/bare-metal-cloud
|
107
|
+
licenses:
|
108
|
+
- MPL-2.0
|
109
|
+
metadata:
|
110
|
+
source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc-poc
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options: []
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '2.4'
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
requirements: []
|
126
|
+
rubygems_version: 3.1.2
|
127
|
+
signing_key:
|
128
|
+
specification_version: 4
|
129
|
+
summary: Rancher Solution API Ruby Gem
|
130
|
+
test_files:
|
131
|
+
- spec/api/clusters_api_spec.rb
|
132
|
+
- spec/api_client_spec.rb
|
133
|
+
- spec/configuration_spec.rb
|
134
|
+
- spec/models/ssh_config_spec.rb
|
135
|
+
- spec/models/workload_cluster_config_spec.rb
|
136
|
+
- spec/models/error_spec.rb
|
137
|
+
- spec/models/delete_result_spec.rb
|
138
|
+
- spec/models/rancher_server_metadata_spec.rb
|
139
|
+
- spec/models/cluster_spec.rb
|
140
|
+
- spec/models/node_spec.rb
|
141
|
+
- spec/models/node_pool_spec.rb
|
142
|
+
- spec/models/rancher_cluster_certificates_spec.rb
|
143
|
+
- spec/models/rancher_cluster_config_spec.rb
|
144
|
+
- spec/spec_helper.rb
|