pnap_ip_api 1.0.0 → 1.1.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 +4 -4
- data/README.md +7 -1
- data/VERSION +1 -1
- data/docs/IPBlocksApi.md +84 -5
- data/docs/IpBlock.md +7 -1
- data/docs/IpBlockCreate.md +3 -1
- data/docs/TagAssignment.md +26 -0
- data/docs/TagAssignmentRequest.md +20 -0
- data/lib/pnap_ip_api/api/ip_blocks_api.rb +74 -1
- data/lib/pnap_ip_api/api_client.rb +4 -2
- data/lib/pnap_ip_api/api_error.rb +1 -1
- data/lib/pnap_ip_api/configuration.rb +3 -2
- data/lib/pnap_ip_api/models/delete_ip_block_result.rb +2 -1
- data/lib/pnap_ip_api/models/error.rb +2 -1
- data/lib/pnap_ip_api/models/ip_block.rb +48 -5
- data/lib/pnap_ip_api/models/ip_block_create.rb +18 -5
- data/lib/pnap_ip_api/models/ip_block_patch.rb +2 -1
- data/lib/pnap_ip_api/models/tag_assignment.rb +310 -0
- data/lib/pnap_ip_api/models/tag_assignment_request.rb +236 -0
- data/lib/pnap_ip_api/version.rb +1 -1
- data/lib/pnap_ip_api.rb +3 -1
- data/pnap_ip_api.gemspec +2 -2
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/tag_assignment_request_spec.rb +40 -0
- data/spec/models/tag_assignment_spec.rb +62 -0
- data/spec/spec_helper.rb +1 -1
- metadata +12 -4
@@ -0,0 +1,62 @@
|
|
1
|
+
=begin
|
2
|
+
#IP Addresses API
|
3
|
+
|
4
|
+
#Public IP blocks are a set of contiguous IPs that allow you to access your servers or networks from the internet. Use the IP Addresses API to request and delete IP blocks.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/public-ip-management#bmc-public-ip-allocations-api' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/ips/v1/)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
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 IpApi::TagAssignment
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe IpApi::TagAssignment do
|
21
|
+
let(:instance) { IpApi::TagAssignment.new }
|
22
|
+
|
23
|
+
describe 'test an instance of TagAssignment' do
|
24
|
+
it 'should create an instance of TagAssignment' do
|
25
|
+
expect(instance).to be_instance_of(IpApi::TagAssignment)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "id"' 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 "name"' 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 "value"' 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 "is_billing_tag"' 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 "created_by"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["USER", "SYSTEM"])
|
56
|
+
# validator.allowable_values.each do |value|
|
57
|
+
# expect { instance.created_by = value }.not_to raise_error
|
58
|
+
# end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pnap_ip_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PhoenixNAP
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -67,6 +67,8 @@ files:
|
|
67
67
|
- docs/IpBlock.md
|
68
68
|
- docs/IpBlockCreate.md
|
69
69
|
- docs/IpBlockPatch.md
|
70
|
+
- docs/TagAssignment.md
|
71
|
+
- docs/TagAssignmentRequest.md
|
70
72
|
- lib/pnap_ip_api.rb
|
71
73
|
- lib/pnap_ip_api/api/ip_blocks_api.rb
|
72
74
|
- lib/pnap_ip_api/api_client.rb
|
@@ -77,6 +79,8 @@ files:
|
|
77
79
|
- lib/pnap_ip_api/models/ip_block.rb
|
78
80
|
- lib/pnap_ip_api/models/ip_block_create.rb
|
79
81
|
- lib/pnap_ip_api/models/ip_block_patch.rb
|
82
|
+
- lib/pnap_ip_api/models/tag_assignment.rb
|
83
|
+
- lib/pnap_ip_api/models/tag_assignment_request.rb
|
80
84
|
- lib/pnap_ip_api/version.rb
|
81
85
|
- pnap_ip_api.gemspec
|
82
86
|
- spec/api/ip_blocks_api_spec.rb
|
@@ -87,12 +91,14 @@ files:
|
|
87
91
|
- spec/models/ip_block_create_spec.rb
|
88
92
|
- spec/models/ip_block_patch_spec.rb
|
89
93
|
- spec/models/ip_block_spec.rb
|
94
|
+
- spec/models/tag_assignment_request_spec.rb
|
95
|
+
- spec/models/tag_assignment_spec.rb
|
90
96
|
- spec/spec_helper.rb
|
91
97
|
homepage: https://phoenixnap.com/bare-metal-cloud
|
92
98
|
licenses:
|
93
99
|
- MPL-2.0
|
94
100
|
metadata:
|
95
|
-
source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
|
101
|
+
source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
|
96
102
|
post_install_message:
|
97
103
|
rdoc_options: []
|
98
104
|
require_paths:
|
@@ -116,9 +122,11 @@ test_files:
|
|
116
122
|
- spec/api/ip_blocks_api_spec.rb
|
117
123
|
- spec/api_client_spec.rb
|
118
124
|
- spec/configuration_spec.rb
|
125
|
+
- spec/models/ip_block_spec.rb
|
119
126
|
- spec/models/ip_block_patch_spec.rb
|
120
127
|
- spec/models/ip_block_create_spec.rb
|
121
|
-
- spec/models/ip_block_spec.rb
|
122
128
|
- spec/models/error_spec.rb
|
123
129
|
- spec/models/delete_ip_block_result_spec.rb
|
130
|
+
- spec/models/tag_assignment_request_spec.rb
|
131
|
+
- spec/models/tag_assignment_spec.rb
|
124
132
|
- spec/spec_helper.rb
|