pnap_ip_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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0621b6cfe51d0216c6b878169fe8fdaa6f605e275f1beeba3d8e0f162b24a4ab
4
+ data.tar.gz: 885941b7eab57da49c3f17e4f9589c8d163af90f0a4efa05ba4de87e708232d7
5
+ SHA512:
6
+ metadata.gz: 10b942c79b848d3a116b6a0d4eb7bcbbc41788299f058bb1e53714e3027408578c4583f1be2bdaa29441bcab809cb69454fa8cbd0b8e4eeee9275f236f3f5e87
7
+ data.tar.gz: 47e5baafabd8a2de3b4affeb1ef10ab2ec080ec1aeb1d87cf32883000167ecee35a480d71db3f20161a9c95d065ecf72b8b862743c5630e27549ab376daf11ad
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development, :test do
6
+ gem 'rake', '~> 13.0.1'
7
+ gem 'pry-byebug'
8
+ gem 'rubocop', '~> 0.66.0'
9
+ end
data/README.md ADDED
@@ -0,0 +1,150 @@
1
+ # pnap_ip_api
2
+
3
+ IpApi - the Ruby gem for the IP Addresses API
4
+
5
+ Public IP blocks are a set of contiguous IPs that allow you to access your servers or networks from the internet.
6
+ Use the IP Addresses API to request and delete IP blocks.<br>
7
+ <br>
8
+ <span class='pnap-api-knowledge-base-link'>
9
+ Knowledge base articles to help you can be found
10
+ <a href='https://phoenixnap.com/kb/public-ip-management#bmc-public-ip-allocations-api' target='_blank'>here</a>
11
+ </span><br>
12
+ <br>
13
+ <b>All URLs are relative to (https://api.phoenixnap.com/ips/v1/)</b>
14
+
15
+
16
+ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
17
+
18
+ - API version: 1.0
19
+ For more information, please visit [https://phoenixnap.com/](https://phoenixnap.com/)
20
+
21
+ ## Installation
22
+
23
+ ### Build a gem
24
+
25
+ To build the Ruby code into a gem:
26
+
27
+ ```shell
28
+ gem build pnap_ip_api.gemspec
29
+ ```
30
+
31
+ Then either install the gem locally, replacing `<VERSION>` with the actual version:
32
+
33
+ ```shell
34
+ gem install ./pnap_ip_api-<VERSION>.gem
35
+ ```
36
+
37
+ (for development, run `gem install --dev ./pnap_ip_api-<VERSION>.gem` to install the development dependencies)
38
+
39
+ or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
40
+
41
+ Finally add this to the Gemfile:
42
+
43
+ gem 'pnap_ip_api', '~> <VERSION>'
44
+
45
+ ### Install from Git
46
+
47
+ To install this Gem from this repository, you'll need to get Bundler by doing `gem install bundler`. Add the following line in your Gemfile:
48
+
49
+ gem 'pnap_ip_api', git: 'https://github.com/phoenixnap/ruby-sdk-bmc-poc', glob: 'IpApi/*.gemspec'
50
+
51
+ If you'd like the development version:
52
+
53
+ gem 'pnap_ip_api', git: 'https://github.com/phoenixnap/ruby-sdk-bmc-poc', glob: 'IpApi/*.gemspec', branch: 'develop'
54
+
55
+ Then run `bundle install`.
56
+
57
+ ### Include the Ruby code directly
58
+
59
+ Include the Ruby code directly using `-I` as follows:
60
+
61
+ ```shell
62
+ ruby -Ilib script.rb
63
+ ```
64
+
65
+ ## Getting Started
66
+
67
+ Please follow the [installation](#installation) procedure and then run the following code:
68
+
69
+ ```ruby
70
+ # Load the gem
71
+ require 'pnap_ip_api'
72
+
73
+ # Setup authorization
74
+ IpApi.configure do |config|
75
+ # Configure OAuth2 access token for authorization: OAuth2
76
+ config.access_token = 'YOUR ACCESS TOKEN'
77
+ end
78
+
79
+ api_instance = IpApi::IPBlocksApi.new
80
+
81
+ begin
82
+ #List IP Blocks.
83
+ result = api_instance.ip_blocks_get
84
+ p result
85
+ rescue IpApi::ApiError => e
86
+ puts "Exception when calling IPBlocksApi->ip_blocks_get: #{e}"
87
+ end
88
+
89
+ ```
90
+
91
+ Authorization can also be setup by using the [`oauth`](https://github.com/oauth-xx/oauth2) library:
92
+
93
+ ```ruby
94
+ # Load the gem
95
+ require 'pnap_ip_api'
96
+ require 'oauth2'
97
+
98
+ # Setup variables for getting a token.
99
+ client_id = 'YOUR_CLIENT_ID'
100
+ client_secret = 'YOUR_CLIENT_SECRET'
101
+ auth_url = 'https://auth.phoenixnap.com/auth/realms/BMC/protocol/openid-connect/token'
102
+
103
+
104
+ # Setup authorization
105
+ IpApi.configure do |config|
106
+ # Retrieve the token using OAuth2.
107
+ client = OAuth2::Client.new(client_id, client_secret, token_url: auth_url)
108
+ token = client.client_credentials.get_token
109
+
110
+ # Configure OAuth2 access token for authorization: OAuth2
111
+ config.access_token = token.token
112
+ end
113
+
114
+ ```
115
+
116
+ ## Documentation for API Endpoints
117
+
118
+ All URIs are relative to *https://api.phoenixnap.com/ips/v1*
119
+
120
+ Class | Method | HTTP request | Description
121
+ ------------ | ------------- | ------------- | -------------
122
+ *IpApi::IPBlocksApi* | [**ip_blocks_get**](docs/IPBlocksApi.md#ip_blocks_get) | **GET** /ip-blocks | List IP Blocks.
123
+ *IpApi::IPBlocksApi* | [**ip_blocks_ip_block_id_delete**](docs/IPBlocksApi.md#ip_blocks_ip_block_id_delete) | **DELETE** /ip-blocks/{ipBlockId} | Delete IP Block.
124
+ *IpApi::IPBlocksApi* | [**ip_blocks_ip_block_id_get**](docs/IPBlocksApi.md#ip_blocks_ip_block_id_get) | **GET** /ip-blocks/{ipBlockId} | Get IP Block.
125
+ *IpApi::IPBlocksApi* | [**ip_blocks_ip_block_id_patch**](docs/IPBlocksApi.md#ip_blocks_ip_block_id_patch) | **PATCH** /ip-blocks/{ipBlockId} | Update IP block.
126
+ *IpApi::IPBlocksApi* | [**ip_blocks_post**](docs/IPBlocksApi.md#ip_blocks_post) | **POST** /ip-blocks | Create an IP Block.
127
+
128
+
129
+ ## Documentation for Models
130
+
131
+ - [IpApi::DeleteIpBlockResult](docs/DeleteIpBlockResult.md)
132
+ - [IpApi::Error](docs/Error.md)
133
+ - [IpApi::IpBlock](docs/IpBlock.md)
134
+ - [IpApi::IpBlockCreate](docs/IpBlockCreate.md)
135
+ - [IpApi::IpBlockPatch](docs/IpBlockPatch.md)
136
+
137
+
138
+ ## Documentation for Authorization
139
+
140
+
141
+ ### OAuth2
142
+
143
+
144
+ - **Type**: OAuth
145
+ - **Flow**: application
146
+ - **Authorization URL**:
147
+ - **Scopes**:
148
+ - bmc: Grants full access to bmc-api.
149
+ - bmc.read: Grants read only access to bmc-api.
150
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ begin
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+ task default: :spec
8
+ rescue LoadError
9
+ # no rspec available
10
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.0
@@ -0,0 +1,20 @@
1
+ # IpApi::DeleteIpBlockResult
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **result** | **String** | IP Block has been deleted. | |
8
+ | **ip_block_id** | **String** | The unique identifier of the IP Block. | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'pnap_ip_api'
14
+
15
+ instance = IpApi::DeleteIpBlockResult.new(
16
+ result: IP Block has been deleted.,
17
+ ip_block_id: 6047127fed34ecc3ba8402d2
18
+ )
19
+ ```
20
+
data/docs/Error.md ADDED
@@ -0,0 +1,20 @@
1
+ # IpApi::Error
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **message** | **String** | The description detailing the cause of the error code. | [readonly] |
8
+ | **validation_errors** | **Array&lt;String&gt;** | Validation errors, if any. | [optional][readonly] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'pnap_ip_api'
14
+
15
+ instance = IpApi::Error.new(
16
+ message: null,
17
+ validation_errors: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,360 @@
1
+ # IpApi::IPBlocksApi
2
+
3
+ All URIs are relative to *https://api.phoenixnap.com/ips/v1*
4
+
5
+ | Method | HTTP request | Description |
6
+ | ------ | ------------ | ----------- |
7
+ | [**ip_blocks_get**](IPBlocksApi.md#ip_blocks_get) | **GET** /ip-blocks | List IP Blocks. |
8
+ | [**ip_blocks_ip_block_id_delete**](IPBlocksApi.md#ip_blocks_ip_block_id_delete) | **DELETE** /ip-blocks/{ipBlockId} | Delete IP Block. |
9
+ | [**ip_blocks_ip_block_id_get**](IPBlocksApi.md#ip_blocks_ip_block_id_get) | **GET** /ip-blocks/{ipBlockId} | Get IP Block. |
10
+ | [**ip_blocks_ip_block_id_patch**](IPBlocksApi.md#ip_blocks_ip_block_id_patch) | **PATCH** /ip-blocks/{ipBlockId} | Update IP block. |
11
+ | [**ip_blocks_post**](IPBlocksApi.md#ip_blocks_post) | **POST** /ip-blocks | Create an IP Block. |
12
+
13
+
14
+ ## ip_blocks_get
15
+
16
+ > <Array<IpBlock>> ip_blocks_get
17
+
18
+ List IP Blocks.
19
+
20
+ List all IP Blocks.
21
+
22
+ ### Examples
23
+
24
+ ```ruby
25
+ require 'time'
26
+ require 'pnap_ip_api'
27
+ # setup authorization
28
+ IpApi.configure do |config|
29
+ # Configure OAuth2 access token for authorization: OAuth2
30
+ config.access_token = 'YOUR ACCESS TOKEN'
31
+ end
32
+
33
+ api_instance = IpApi::IPBlocksApi.new
34
+
35
+ begin
36
+ # List IP Blocks.
37
+ result = api_instance.ip_blocks_get
38
+ p result
39
+ rescue IpApi::ApiError => e
40
+ puts "Error when calling IPBlocksApi->ip_blocks_get: #{e}"
41
+ end
42
+ ```
43
+
44
+ #### Using the ip_blocks_get_with_http_info variant
45
+
46
+ This returns an Array which contains the response data, status code and headers.
47
+
48
+ > <Array(<Array<IpBlock>>, Integer, Hash)> ip_blocks_get_with_http_info
49
+
50
+ ```ruby
51
+ begin
52
+ # List IP Blocks.
53
+ data, status_code, headers = api_instance.ip_blocks_get_with_http_info
54
+ p status_code # => 2xx
55
+ p headers # => { ... }
56
+ p data # => <Array<IpBlock>>
57
+ rescue IpApi::ApiError => e
58
+ puts "Error when calling IPBlocksApi->ip_blocks_get_with_http_info: #{e}"
59
+ end
60
+ ```
61
+
62
+ ### Parameters
63
+
64
+ This endpoint does not need any parameter.
65
+
66
+ ### Return type
67
+
68
+ [**Array&lt;IpBlock&gt;**](IpBlock.md)
69
+
70
+ ### Authorization
71
+
72
+ [OAuth2](../README.md#OAuth2)
73
+
74
+ ### HTTP request headers
75
+
76
+ - **Content-Type**: Not defined
77
+ - **Accept**: application/json
78
+
79
+
80
+ ## ip_blocks_ip_block_id_delete
81
+
82
+ > <DeleteIpBlockResult> ip_blocks_ip_block_id_delete(ip_block_id)
83
+
84
+ Delete IP Block.
85
+
86
+ Delete an IP Block. An IP Block can only be deleted if not assigned to any resource.
87
+
88
+ ### Examples
89
+
90
+ ```ruby
91
+ require 'time'
92
+ require 'pnap_ip_api'
93
+ # setup authorization
94
+ IpApi.configure do |config|
95
+ # Configure OAuth2 access token for authorization: OAuth2
96
+ config.access_token = 'YOUR ACCESS TOKEN'
97
+ end
98
+
99
+ api_instance = IpApi::IPBlocksApi.new
100
+ ip_block_id = '6047127fed34ecc3ba8402d2' # String | The IP Block identifier.
101
+
102
+ begin
103
+ # Delete IP Block.
104
+ result = api_instance.ip_blocks_ip_block_id_delete(ip_block_id)
105
+ p result
106
+ rescue IpApi::ApiError => e
107
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_delete: #{e}"
108
+ end
109
+ ```
110
+
111
+ #### Using the ip_blocks_ip_block_id_delete_with_http_info variant
112
+
113
+ This returns an Array which contains the response data, status code and headers.
114
+
115
+ > <Array(<DeleteIpBlockResult>, Integer, Hash)> ip_blocks_ip_block_id_delete_with_http_info(ip_block_id)
116
+
117
+ ```ruby
118
+ begin
119
+ # Delete IP Block.
120
+ data, status_code, headers = api_instance.ip_blocks_ip_block_id_delete_with_http_info(ip_block_id)
121
+ p status_code # => 2xx
122
+ p headers # => { ... }
123
+ p data # => <DeleteIpBlockResult>
124
+ rescue IpApi::ApiError => e
125
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_delete_with_http_info: #{e}"
126
+ end
127
+ ```
128
+
129
+ ### Parameters
130
+
131
+ | Name | Type | Description | Notes |
132
+ | ---- | ---- | ----------- | ----- |
133
+ | **ip_block_id** | **String** | The IP Block identifier. | |
134
+
135
+ ### Return type
136
+
137
+ [**DeleteIpBlockResult**](DeleteIpBlockResult.md)
138
+
139
+ ### Authorization
140
+
141
+ [OAuth2](../README.md#OAuth2)
142
+
143
+ ### HTTP request headers
144
+
145
+ - **Content-Type**: Not defined
146
+ - **Accept**: application/json
147
+
148
+
149
+ ## ip_blocks_ip_block_id_get
150
+
151
+ > <IpBlock> ip_blocks_ip_block_id_get(ip_block_id)
152
+
153
+ Get IP Block.
154
+
155
+ Get IP Block.
156
+
157
+ ### Examples
158
+
159
+ ```ruby
160
+ require 'time'
161
+ require 'pnap_ip_api'
162
+ # setup authorization
163
+ IpApi.configure do |config|
164
+ # Configure OAuth2 access token for authorization: OAuth2
165
+ config.access_token = 'YOUR ACCESS TOKEN'
166
+ end
167
+
168
+ api_instance = IpApi::IPBlocksApi.new
169
+ ip_block_id = '6047127fed34ecc3ba8402d2' # String | The IP Block identifier.
170
+
171
+ begin
172
+ # Get IP Block.
173
+ result = api_instance.ip_blocks_ip_block_id_get(ip_block_id)
174
+ p result
175
+ rescue IpApi::ApiError => e
176
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_get: #{e}"
177
+ end
178
+ ```
179
+
180
+ #### Using the ip_blocks_ip_block_id_get_with_http_info variant
181
+
182
+ This returns an Array which contains the response data, status code and headers.
183
+
184
+ > <Array(<IpBlock>, Integer, Hash)> ip_blocks_ip_block_id_get_with_http_info(ip_block_id)
185
+
186
+ ```ruby
187
+ begin
188
+ # Get IP Block.
189
+ data, status_code, headers = api_instance.ip_blocks_ip_block_id_get_with_http_info(ip_block_id)
190
+ p status_code # => 2xx
191
+ p headers # => { ... }
192
+ p data # => <IpBlock>
193
+ rescue IpApi::ApiError => e
194
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_get_with_http_info: #{e}"
195
+ end
196
+ ```
197
+
198
+ ### Parameters
199
+
200
+ | Name | Type | Description | Notes |
201
+ | ---- | ---- | ----------- | ----- |
202
+ | **ip_block_id** | **String** | The IP Block identifier. | |
203
+
204
+ ### Return type
205
+
206
+ [**IpBlock**](IpBlock.md)
207
+
208
+ ### Authorization
209
+
210
+ [OAuth2](../README.md#OAuth2)
211
+
212
+ ### HTTP request headers
213
+
214
+ - **Content-Type**: Not defined
215
+ - **Accept**: application/json
216
+
217
+
218
+ ## ip_blocks_ip_block_id_patch
219
+
220
+ > <IpBlock> ip_blocks_ip_block_id_patch(ip_block_id, opts)
221
+
222
+ Update IP block.
223
+
224
+ Update IP Block's details.
225
+
226
+ ### Examples
227
+
228
+ ```ruby
229
+ require 'time'
230
+ require 'pnap_ip_api'
231
+ # setup authorization
232
+ IpApi.configure do |config|
233
+ # Configure OAuth2 access token for authorization: OAuth2
234
+ config.access_token = 'YOUR ACCESS TOKEN'
235
+ end
236
+
237
+ api_instance = IpApi::IPBlocksApi.new
238
+ ip_block_id = '6047127fed34ecc3ba8402d2' # String | The IP Block identifier.
239
+ opts = {
240
+ ip_block_patch: IpApi::IpBlockPatch.new # IpBlockPatch |
241
+ }
242
+
243
+ begin
244
+ # Update IP block.
245
+ result = api_instance.ip_blocks_ip_block_id_patch(ip_block_id, opts)
246
+ p result
247
+ rescue IpApi::ApiError => e
248
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_patch: #{e}"
249
+ end
250
+ ```
251
+
252
+ #### Using the ip_blocks_ip_block_id_patch_with_http_info variant
253
+
254
+ This returns an Array which contains the response data, status code and headers.
255
+
256
+ > <Array(<IpBlock>, Integer, Hash)> ip_blocks_ip_block_id_patch_with_http_info(ip_block_id, opts)
257
+
258
+ ```ruby
259
+ begin
260
+ # Update IP block.
261
+ data, status_code, headers = api_instance.ip_blocks_ip_block_id_patch_with_http_info(ip_block_id, opts)
262
+ p status_code # => 2xx
263
+ p headers # => { ... }
264
+ p data # => <IpBlock>
265
+ rescue IpApi::ApiError => e
266
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_patch_with_http_info: #{e}"
267
+ end
268
+ ```
269
+
270
+ ### Parameters
271
+
272
+ | Name | Type | Description | Notes |
273
+ | ---- | ---- | ----------- | ----- |
274
+ | **ip_block_id** | **String** | The IP Block identifier. | |
275
+ | **ip_block_patch** | [**IpBlockPatch**](IpBlockPatch.md) | | [optional] |
276
+
277
+ ### Return type
278
+
279
+ [**IpBlock**](IpBlock.md)
280
+
281
+ ### Authorization
282
+
283
+ [OAuth2](../README.md#OAuth2)
284
+
285
+ ### HTTP request headers
286
+
287
+ - **Content-Type**: application/json
288
+ - **Accept**: application/json
289
+
290
+
291
+ ## ip_blocks_post
292
+
293
+ > <IpBlock> ip_blocks_post(opts)
294
+
295
+ Create an IP Block.
296
+
297
+ Request an IP Block. An IP Block is a set of contiguous IPs that can be assigned to other resources such as servers.
298
+
299
+ ### Examples
300
+
301
+ ```ruby
302
+ require 'time'
303
+ require 'pnap_ip_api'
304
+ # setup authorization
305
+ IpApi.configure do |config|
306
+ # Configure OAuth2 access token for authorization: OAuth2
307
+ config.access_token = 'YOUR ACCESS TOKEN'
308
+ end
309
+
310
+ api_instance = IpApi::IPBlocksApi.new
311
+ opts = {
312
+ ip_block_create: IpApi::IpBlockCreate.new({location: 'PHX', cidr_block_size: '/30'}) # IpBlockCreate |
313
+ }
314
+
315
+ begin
316
+ # Create an IP Block.
317
+ result = api_instance.ip_blocks_post(opts)
318
+ p result
319
+ rescue IpApi::ApiError => e
320
+ puts "Error when calling IPBlocksApi->ip_blocks_post: #{e}"
321
+ end
322
+ ```
323
+
324
+ #### Using the ip_blocks_post_with_http_info variant
325
+
326
+ This returns an Array which contains the response data, status code and headers.
327
+
328
+ > <Array(<IpBlock>, Integer, Hash)> ip_blocks_post_with_http_info(opts)
329
+
330
+ ```ruby
331
+ begin
332
+ # Create an IP Block.
333
+ data, status_code, headers = api_instance.ip_blocks_post_with_http_info(opts)
334
+ p status_code # => 2xx
335
+ p headers # => { ... }
336
+ p data # => <IpBlock>
337
+ rescue IpApi::ApiError => e
338
+ puts "Error when calling IPBlocksApi->ip_blocks_post_with_http_info: #{e}"
339
+ end
340
+ ```
341
+
342
+ ### Parameters
343
+
344
+ | Name | Type | Description | Notes |
345
+ | ---- | ---- | ----------- | ----- |
346
+ | **ip_block_create** | [**IpBlockCreate**](IpBlockCreate.md) | | [optional] |
347
+
348
+ ### Return type
349
+
350
+ [**IpBlock**](IpBlock.md)
351
+
352
+ ### Authorization
353
+
354
+ [OAuth2](../README.md#OAuth2)
355
+
356
+ ### HTTP request headers
357
+
358
+ - **Content-Type**: application/json
359
+ - **Accept**: application/json
360
+
data/docs/IpBlock.md ADDED
@@ -0,0 +1,32 @@
1
+ # IpApi::IpBlock
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | IP Block identifier. | |
8
+ | **location** | **String** | IP Block location ID. Currently this field should be set to &#x60;PHX&#x60;, &#x60;ASH&#x60;, &#x60;SGP&#x60;, &#x60;NLD&#x60;, &#x60;CHI&#x60;, &#x60;SEA&#x60; or &#x60;AUS&#x60;. | |
9
+ | **cidr_block_size** | **String** | CIDR IP Block Size. Currently this field should be set to either &#x60;/31&#x60;, &#x60;/30&#x60;, &#x60;/29&#x60;, &#x60;/28&#x60;, &#x60;/27&#x60;, &#x60;/26&#x60;, &#x60;/25&#x60;, &#x60;/24&#x60;, &#x60;/23&#x60; or &#x60;/22&#x60;. | |
10
+ | **cidr** | **String** | The IP Block in CIDR notation. | |
11
+ | **status** | **String** | The status of the IP Block. | |
12
+ | **assigned_resource_id** | **String** | ID of the resource assigned to the IP Block. | [optional] |
13
+ | **assigned_resource_type** | **String** | Type of the resource assigned to the IP Block. | [optional] |
14
+ | **description** | **String** | The description of the IP Block. | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'pnap_ip_api'
20
+
21
+ instance = IpApi::IpBlock.new(
22
+ id: 6047127fed34ecc3ba8402d2,
23
+ location: PHX,
24
+ cidr_block_size: /30,
25
+ cidr: 1.1.1.0/31,
26
+ status: unassigned,
27
+ assigned_resource_id: 6047127fed34ecc3ba8402d2,
28
+ assigned_resource_type: server,
29
+ description: IP Block #1 used for publicly accessing server #1.
30
+ )
31
+ ```
32
+
@@ -0,0 +1,22 @@
1
+ # IpApi::IpBlockCreate
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **location** | **String** | IP Block location ID. Currently this field should be set to &#x60;PHX&#x60;, &#x60;ASH&#x60;, &#x60;SGP&#x60;, &#x60;NLD&#x60;, &#x60;CHI&#x60;, &#x60;SEA&#x60; or &#x60;AUS&#x60;. | |
8
+ | **cidr_block_size** | **String** | CIDR IP Block Size. Currently this field should be set to either &#x60;/31&#x60;, &#x60;/30&#x60;, &#x60;/29&#x60; or &#x60;/28&#x60;. For a larger Block Size contact support. | |
9
+ | **description** | **String** | The description of the IP Block. | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'pnap_ip_api'
15
+
16
+ instance = IpApi::IpBlockCreate.new(
17
+ location: PHX,
18
+ cidr_block_size: /30,
19
+ description: IP Block #1 used for publicly accessing server #1.
20
+ )
21
+ ```
22
+
@@ -0,0 +1,18 @@
1
+ # IpApi::IpBlockPatch
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **description** | **String** | The description of the Ip Block. | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'pnap_ip_api'
13
+
14
+ instance = IpApi::IpBlockPatch.new(
15
+ description: Ip Block allocation.
16
+ )
17
+ ```
18
+