pnap_ip_api 1.0.0 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0621b6cfe51d0216c6b878169fe8fdaa6f605e275f1beeba3d8e0f162b24a4ab
4
- data.tar.gz: 885941b7eab57da49c3f17e4f9589c8d163af90f0a4efa05ba4de87e708232d7
3
+ metadata.gz: ba4ac72b679b6224376b61b5f1a4079898c2c93b0c9dced7796541d2c825c040
4
+ data.tar.gz: e84cb0ea1a3ebb2802ead0eff85c2f6f2a51c88207caed21db4df76779555097
5
5
  SHA512:
6
- metadata.gz: 10b942c79b848d3a116b6a0d4eb7bcbbc41788299f058bb1e53714e3027408578c4583f1be2bdaa29441bcab809cb69454fa8cbd0b8e4eeee9275f236f3f5e87
7
- data.tar.gz: 47e5baafabd8a2de3b4affeb1ef10ab2ec080ec1aeb1d87cf32883000167ecee35a480d71db3f20161a9c95d065ecf72b8b862743c5630e27549ab376daf11ad
6
+ metadata.gz: 433377f9e50cc718396947f90a7758d60b90133e59d373b2b289c976930232f24e765c1da2572b936eb1a18ea2b0c5fcfc261ea15bd6bdf73674124e92601fbd
7
+ data.tar.gz: 4bc896299d899386c09b9c31eab9531e259d1525b5b7d56aec73cfc7a4c30c0bc1be98aa46d4e1b744464044ca4b9c8bee19de236d2dff55c5a1ce9670a30de1
data/README.md CHANGED
@@ -77,10 +77,13 @@ IpApi.configure do |config|
77
77
  end
78
78
 
79
79
  api_instance = IpApi::IPBlocksApi.new
80
+ opts = {
81
+ tag: ['inner_example'] # Array<String> | List of tags, in the form tagName.tagValue, to filter by.
82
+ }
80
83
 
81
84
  begin
82
85
  #List IP Blocks.
83
- result = api_instance.ip_blocks_get
86
+ result = api_instance.ip_blocks_get(opts)
84
87
  p result
85
88
  rescue IpApi::ApiError => e
86
89
  puts "Exception when calling IPBlocksApi->ip_blocks_get: #{e}"
@@ -123,6 +126,7 @@ Class | Method | HTTP request | Description
123
126
  *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
127
  *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
128
  *IpApi::IPBlocksApi* | [**ip_blocks_ip_block_id_patch**](docs/IPBlocksApi.md#ip_blocks_ip_block_id_patch) | **PATCH** /ip-blocks/{ipBlockId} | Update IP block.
129
+ *IpApi::IPBlocksApi* | [**ip_blocks_ip_block_id_tags_put**](docs/IPBlocksApi.md#ip_blocks_ip_block_id_tags_put) | **PUT** /ip-blocks/{ipBlockId}/tags | Overwrite tags assigned for IP Block.
126
130
  *IpApi::IPBlocksApi* | [**ip_blocks_post**](docs/IPBlocksApi.md#ip_blocks_post) | **POST** /ip-blocks | Create an IP Block.
127
131
 
128
132
 
@@ -133,6 +137,8 @@ Class | Method | HTTP request | Description
133
137
  - [IpApi::IpBlock](docs/IpBlock.md)
134
138
  - [IpApi::IpBlockCreate](docs/IpBlockCreate.md)
135
139
  - [IpApi::IpBlockPatch](docs/IpBlockPatch.md)
140
+ - [IpApi::TagAssignment](docs/TagAssignment.md)
141
+ - [IpApi::TagAssignmentRequest](docs/TagAssignmentRequest.md)
136
142
 
137
143
 
138
144
  ## Documentation for Authorization
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
data/docs/IPBlocksApi.md CHANGED
@@ -8,12 +8,13 @@ All URIs are relative to *https://api.phoenixnap.com/ips/v1*
8
8
  | [**ip_blocks_ip_block_id_delete**](IPBlocksApi.md#ip_blocks_ip_block_id_delete) | **DELETE** /ip-blocks/{ipBlockId} | Delete IP Block. |
9
9
  | [**ip_blocks_ip_block_id_get**](IPBlocksApi.md#ip_blocks_ip_block_id_get) | **GET** /ip-blocks/{ipBlockId} | Get IP Block. |
10
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_ip_block_id_tags_put**](IPBlocksApi.md#ip_blocks_ip_block_id_tags_put) | **PUT** /ip-blocks/{ipBlockId}/tags | Overwrite tags assigned for IP Block. |
11
12
  | [**ip_blocks_post**](IPBlocksApi.md#ip_blocks_post) | **POST** /ip-blocks | Create an IP Block. |
12
13
 
13
14
 
14
15
  ## ip_blocks_get
15
16
 
16
- > <Array<IpBlock>> ip_blocks_get
17
+ > <Array<IpBlock>> ip_blocks_get(opts)
17
18
 
18
19
  List IP Blocks.
19
20
 
@@ -31,10 +32,13 @@ IpApi.configure do |config|
31
32
  end
32
33
 
33
34
  api_instance = IpApi::IPBlocksApi.new
35
+ opts = {
36
+ tag: ['inner_example'] # Array<String> | List of tags, in the form tagName.tagValue, to filter by.
37
+ }
34
38
 
35
39
  begin
36
40
  # List IP Blocks.
37
- result = api_instance.ip_blocks_get
41
+ result = api_instance.ip_blocks_get(opts)
38
42
  p result
39
43
  rescue IpApi::ApiError => e
40
44
  puts "Error when calling IPBlocksApi->ip_blocks_get: #{e}"
@@ -45,12 +49,12 @@ end
45
49
 
46
50
  This returns an Array which contains the response data, status code and headers.
47
51
 
48
- > <Array(<Array<IpBlock>>, Integer, Hash)> ip_blocks_get_with_http_info
52
+ > <Array(<Array<IpBlock>>, Integer, Hash)> ip_blocks_get_with_http_info(opts)
49
53
 
50
54
  ```ruby
51
55
  begin
52
56
  # List IP Blocks.
53
- data, status_code, headers = api_instance.ip_blocks_get_with_http_info
57
+ data, status_code, headers = api_instance.ip_blocks_get_with_http_info(opts)
54
58
  p status_code # => 2xx
55
59
  p headers # => { ... }
56
60
  p data # => <Array<IpBlock>>
@@ -61,7 +65,9 @@ end
61
65
 
62
66
  ### Parameters
63
67
 
64
- This endpoint does not need any parameter.
68
+ | Name | Type | Description | Notes |
69
+ | ---- | ---- | ----------- | ----- |
70
+ | **tag** | [**Array&lt;String&gt;**](String.md) | List of tags, in the form tagName.tagValue, to filter by. | [optional] |
65
71
 
66
72
  ### Return type
67
73
 
@@ -288,6 +294,79 @@ end
288
294
  - **Accept**: application/json
289
295
 
290
296
 
297
+ ## ip_blocks_ip_block_id_tags_put
298
+
299
+ > <IpBlock> ip_blocks_ip_block_id_tags_put(ip_block_id, opts)
300
+
301
+ Overwrite tags assigned for IP Block.
302
+
303
+ Overwrites tags assigned for IP Block and unassigns any tags not part of the request.
304
+
305
+ ### Examples
306
+
307
+ ```ruby
308
+ require 'time'
309
+ require 'pnap_ip_api'
310
+ # setup authorization
311
+ IpApi.configure do |config|
312
+ # Configure OAuth2 access token for authorization: OAuth2
313
+ config.access_token = 'YOUR ACCESS TOKEN'
314
+ end
315
+
316
+ api_instance = IpApi::IPBlocksApi.new
317
+ ip_block_id = '6047127fed34ecc3ba8402d2' # String | The IP Block identifier.
318
+ opts = {
319
+ tag_assignment_request: [IpApi::TagAssignmentRequest.new({name: 'Environment'})] # Array<TagAssignmentRequest> |
320
+ }
321
+
322
+ begin
323
+ # Overwrite tags assigned for IP Block.
324
+ result = api_instance.ip_blocks_ip_block_id_tags_put(ip_block_id, opts)
325
+ p result
326
+ rescue IpApi::ApiError => e
327
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_tags_put: #{e}"
328
+ end
329
+ ```
330
+
331
+ #### Using the ip_blocks_ip_block_id_tags_put_with_http_info variant
332
+
333
+ This returns an Array which contains the response data, status code and headers.
334
+
335
+ > <Array(<IpBlock>, Integer, Hash)> ip_blocks_ip_block_id_tags_put_with_http_info(ip_block_id, opts)
336
+
337
+ ```ruby
338
+ begin
339
+ # Overwrite tags assigned for IP Block.
340
+ data, status_code, headers = api_instance.ip_blocks_ip_block_id_tags_put_with_http_info(ip_block_id, opts)
341
+ p status_code # => 2xx
342
+ p headers # => { ... }
343
+ p data # => <IpBlock>
344
+ rescue IpApi::ApiError => e
345
+ puts "Error when calling IPBlocksApi->ip_blocks_ip_block_id_tags_put_with_http_info: #{e}"
346
+ end
347
+ ```
348
+
349
+ ### Parameters
350
+
351
+ | Name | Type | Description | Notes |
352
+ | ---- | ---- | ----------- | ----- |
353
+ | **ip_block_id** | **String** | The IP Block identifier. | |
354
+ | **tag_assignment_request** | [**Array&lt;TagAssignmentRequest&gt;**](TagAssignmentRequest.md) | | [optional] |
355
+
356
+ ### Return type
357
+
358
+ [**IpBlock**](IpBlock.md)
359
+
360
+ ### Authorization
361
+
362
+ [OAuth2](../README.md#OAuth2)
363
+
364
+ ### HTTP request headers
365
+
366
+ - **Content-Type**: application/json
367
+ - **Accept**: application/json
368
+
369
+
291
370
  ## ip_blocks_post
292
371
 
293
372
  > <IpBlock> ip_blocks_post(opts)
data/docs/IpBlock.md CHANGED
@@ -12,6 +12,9 @@
12
12
  | **assigned_resource_id** | **String** | ID of the resource assigned to the IP Block. | [optional] |
13
13
  | **assigned_resource_type** | **String** | Type of the resource assigned to the IP Block. | [optional] |
14
14
  | **description** | **String** | The description of the IP Block. | [optional] |
15
+ | **tags** | [**Array&lt;TagAssignment&gt;**](TagAssignment.md) | The tags assigned if any. | [optional] |
16
+ | **is_bring_your_own** | **Boolean** | True if the IP block is a &#x60;bring your own&#x60; block. | |
17
+ | **created_on** | **Time** | Date and time when the IP block was created. | |
15
18
 
16
19
  ## Example
17
20
 
@@ -26,7 +29,10 @@ instance = IpApi::IpBlock.new(
26
29
  status: unassigned,
27
30
  assigned_resource_id: 6047127fed34ecc3ba8402d2,
28
31
  assigned_resource_type: server,
29
- description: IP Block #1 used for publicly accessing server #1.
32
+ description: IP Block #1 used for publicly accessing server #1.,
33
+ tags: [{&quot;name&quot;:&quot;stage&quot;,&quot;value&quot;:&quot;beta&quot;},{&quot;name&quot;:&quot;group&quot;,&quot;value&quot;:&quot;discounted&quot;}],
34
+ is_bring_your_own: false,
35
+ created_on: 2021-03-13T20:24:32.491Z
30
36
  )
31
37
  ```
32
38
 
@@ -7,6 +7,7 @@
7
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
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
9
  | **description** | **String** | The description of the IP Block. | [optional] |
10
+ | **tags** | [**Array&lt;TagAssignmentRequest&gt;**](TagAssignmentRequest.md) | Tags to set to the ip-block. To create a new tag or list all the existing tags that you can use, refer to [Tags API](https://developers.phoenixnap.com/docs/tags/1/overview). | [optional] |
10
11
 
11
12
  ## Example
12
13
 
@@ -16,7 +17,8 @@ require 'pnap_ip_api'
16
17
  instance = IpApi::IpBlockCreate.new(
17
18
  location: PHX,
18
19
  cidr_block_size: /30,
19
- description: IP Block #1 used for publicly accessing server #1.
20
+ description: IP Block #1 used for publicly accessing server #1.,
21
+ tags: [{&quot;name&quot;:&quot;stage&quot;,&quot;value&quot;:&quot;beta&quot;},{&quot;name&quot;:&quot;group&quot;,&quot;value&quot;:&quot;discounted&quot;}]
20
22
  )
21
23
  ```
22
24
 
@@ -0,0 +1,26 @@
1
+ # IpApi::TagAssignment
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | The unique id of the tag. | |
8
+ | **name** | **String** | The name of the tag. | |
9
+ | **value** | **String** | The value of the tag assigned to the resource. | [optional] |
10
+ | **is_billing_tag** | **Boolean** | Whether or not to show the tag as part of billing and invoices | |
11
+ | **created_by** | **String** | Who the tag was created by. | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'pnap_ip_api'
17
+
18
+ instance = IpApi::TagAssignment.new(
19
+ id: 60ffafcdffb8b074c7968dad,
20
+ name: Environment,
21
+ value: PROD,
22
+ is_billing_tag: true,
23
+ created_by: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,20 @@
1
+ # IpApi::TagAssignmentRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | The name of the tag. Tag names are case-sensitive, and should be composed of a maximum of 100 characters including UTF-8 Unicode letters, numbers, and the following symbols: &#39;-&#39;, &#39;_&#39;. Regex: [A-zÀ-ú0-9_-]{1,100}. | |
8
+ | **value** | **String** | The value of the tag assigned to the resource. Tag values are case-sensitive, and should be composed of a maximum of 100 characters including UTF-8 Unicode letters, numbers, and the following symbols: &#39;-&#39;, &#39;_&#39;. Regex: [A-zÀ-ú0-9_-]{1,100}. | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'pnap_ip_api'
14
+
15
+ instance = IpApi::TagAssignmentRequest.new(
16
+ name: Environment,
17
+ value: PROD
18
+ )
19
+ ```
20
+
@@ -22,6 +22,7 @@ module IpApi
22
22
  # List IP Blocks.
23
23
  # List all IP Blocks.
24
24
  # @param [Hash] opts the optional parameters
25
+ # @option opts [Array<String>] :tag List of tags, in the form tagName.tagValue, to filter by.
25
26
  # @return [Array<IpBlock>]
26
27
  def ip_blocks_get(opts = {})
27
28
  data, _status_code, _headers = ip_blocks_get_with_http_info(opts)
@@ -31,6 +32,7 @@ module IpApi
31
32
  # List IP Blocks.
32
33
  # List all IP Blocks.
33
34
  # @param [Hash] opts the optional parameters
35
+ # @option opts [Array<String>] :tag List of tags, in the form tagName.tagValue, to filter by.
34
36
  # @return [Array<(Array<IpBlock>, Integer, Hash)>] Array<IpBlock> data, response status code and response headers
35
37
  def ip_blocks_get_with_http_info(opts = {})
36
38
  if @api_client.config.debugging
@@ -41,6 +43,7 @@ module IpApi
41
43
 
42
44
  # query parameters
43
45
  query_params = opts[:query_params] || {}
46
+ query_params[:'tag'] = @api_client.build_collection_param(opts[:'tag'], :multi) if !opts[:'tag'].nil?
44
47
 
45
48
  # header parameters
46
49
  header_params = opts[:header_params] || {}
@@ -272,6 +275,76 @@ module IpApi
272
275
  return data, status_code, headers
273
276
  end
274
277
 
278
+ # Overwrite tags assigned for IP Block.
279
+ # Overwrites tags assigned for IP Block and unassigns any tags not part of the request.
280
+ # @param ip_block_id [String] The IP Block identifier.
281
+ # @param [Hash] opts the optional parameters
282
+ # @option opts [Array<TagAssignmentRequest>] :tag_assignment_request
283
+ # @return [IpBlock]
284
+ def ip_blocks_ip_block_id_tags_put(ip_block_id, opts = {})
285
+ data, _status_code, _headers = ip_blocks_ip_block_id_tags_put_with_http_info(ip_block_id, opts)
286
+ data
287
+ end
288
+
289
+ # Overwrite tags assigned for IP Block.
290
+ # Overwrites tags assigned for IP Block and unassigns any tags not part of the request.
291
+ # @param ip_block_id [String] The IP Block identifier.
292
+ # @param [Hash] opts the optional parameters
293
+ # @option opts [Array<TagAssignmentRequest>] :tag_assignment_request
294
+ # @return [Array<(IpBlock, Integer, Hash)>] IpBlock data, response status code and response headers
295
+ def ip_blocks_ip_block_id_tags_put_with_http_info(ip_block_id, opts = {})
296
+ if @api_client.config.debugging
297
+ @api_client.config.logger.debug 'Calling API: IPBlocksApi.ip_blocks_ip_block_id_tags_put ...'
298
+ end
299
+ # verify the required parameter 'ip_block_id' is set
300
+ if @api_client.config.client_side_validation && ip_block_id.nil?
301
+ fail ArgumentError, "Missing the required parameter 'ip_block_id' when calling IPBlocksApi.ip_blocks_ip_block_id_tags_put"
302
+ end
303
+ # resource path
304
+ local_var_path = '/ip-blocks/{ipBlockId}/tags'.sub('{' + 'ipBlockId' + '}', CGI.escape(ip_block_id.to_s))
305
+
306
+ # query parameters
307
+ query_params = opts[:query_params] || {}
308
+
309
+ # header parameters
310
+ header_params = opts[:header_params] || {}
311
+ # HTTP header 'Accept' (if needed)
312
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
313
+ # HTTP header 'Content-Type'
314
+ content_type = @api_client.select_header_content_type(['application/json'])
315
+ if !content_type.nil?
316
+ header_params['Content-Type'] = content_type
317
+ end
318
+
319
+ # form parameters
320
+ form_params = opts[:form_params] || {}
321
+
322
+ # http body (model)
323
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'tag_assignment_request'])
324
+
325
+ # return_type
326
+ return_type = opts[:debug_return_type] || 'IpBlock'
327
+
328
+ # auth_names
329
+ auth_names = opts[:debug_auth_names] || ['OAuth2']
330
+
331
+ new_options = opts.merge(
332
+ :operation => :"IPBlocksApi.ip_blocks_ip_block_id_tags_put",
333
+ :header_params => header_params,
334
+ :query_params => query_params,
335
+ :form_params => form_params,
336
+ :body => post_body,
337
+ :auth_names => auth_names,
338
+ :return_type => return_type
339
+ )
340
+
341
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
342
+ if @api_client.config.debugging
343
+ @api_client.config.logger.debug "API called: IPBlocksApi#ip_blocks_ip_block_id_tags_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
344
+ end
345
+ return data, status_code, headers
346
+ end
347
+
275
348
  # Create an IP Block.
276
349
  # Request an IP Block. An IP Block is a set of contiguous IPs that can be assigned to other resources such as servers.
277
350
  # @param [Hash] opts the optional parameters
@@ -40,6 +40,15 @@ module IpApi
40
40
  # The description of the IP Block.
41
41
  attr_accessor :description
42
42
 
43
+ # The tags assigned if any.
44
+ attr_accessor :tags
45
+
46
+ # True if the IP block is a `bring your own` block.
47
+ attr_accessor :is_bring_your_own
48
+
49
+ # Date and time when the IP block was created.
50
+ attr_accessor :created_on
51
+
43
52
  # Attribute mapping from ruby-style variable name to JSON key.
44
53
  def self.attribute_map
45
54
  {
@@ -50,7 +59,10 @@ module IpApi
50
59
  :'status' => :'status',
51
60
  :'assigned_resource_id' => :'assignedResourceId',
52
61
  :'assigned_resource_type' => :'assignedResourceType',
53
- :'description' => :'description'
62
+ :'description' => :'description',
63
+ :'tags' => :'tags',
64
+ :'is_bring_your_own' => :'isBringYourOwn',
65
+ :'created_on' => :'createdOn'
54
66
  }
55
67
  end
56
68
 
@@ -69,7 +81,10 @@ module IpApi
69
81
  :'status' => :'String',
70
82
  :'assigned_resource_id' => :'String',
71
83
  :'assigned_resource_type' => :'String',
72
- :'description' => :'String'
84
+ :'description' => :'String',
85
+ :'tags' => :'Array<TagAssignment>',
86
+ :'is_bring_your_own' => :'Boolean',
87
+ :'created_on' => :'Time'
73
88
  }
74
89
  end
75
90
 
@@ -125,6 +140,20 @@ module IpApi
125
140
  if attributes.key?(:'description')
126
141
  self.description = attributes[:'description']
127
142
  end
143
+
144
+ if attributes.key?(:'tags')
145
+ if (value = attributes[:'tags']).is_a?(Array)
146
+ self.tags = value
147
+ end
148
+ end
149
+
150
+ if attributes.key?(:'is_bring_your_own')
151
+ self.is_bring_your_own = attributes[:'is_bring_your_own']
152
+ end
153
+
154
+ if attributes.key?(:'created_on')
155
+ self.created_on = attributes[:'created_on']
156
+ end
128
157
  end
129
158
 
130
159
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -155,6 +184,14 @@ module IpApi
155
184
  invalid_properties.push('invalid value for "description", the character length must be smaller than or equal to 250.')
156
185
  end
157
186
 
187
+ if @is_bring_your_own.nil?
188
+ invalid_properties.push('invalid value for "is_bring_your_own", is_bring_your_own cannot be nil.')
189
+ end
190
+
191
+ if @created_on.nil?
192
+ invalid_properties.push('invalid value for "created_on", created_on cannot be nil.')
193
+ end
194
+
158
195
  invalid_properties
159
196
  end
160
197
 
@@ -167,6 +204,8 @@ module IpApi
167
204
  return false if @cidr.nil?
168
205
  return false if @status.nil?
169
206
  return false if !@description.nil? && @description.to_s.length > 250
207
+ return false if @is_bring_your_own.nil?
208
+ return false if @created_on.nil?
170
209
  true
171
210
  end
172
211
 
@@ -192,7 +231,10 @@ module IpApi
192
231
  status == o.status &&
193
232
  assigned_resource_id == o.assigned_resource_id &&
194
233
  assigned_resource_type == o.assigned_resource_type &&
195
- description == o.description
234
+ description == o.description &&
235
+ tags == o.tags &&
236
+ is_bring_your_own == o.is_bring_your_own &&
237
+ created_on == o.created_on
196
238
  end
197
239
 
198
240
  # @see the `==` method
@@ -204,7 +246,7 @@ module IpApi
204
246
  # Calculates hash code according to all attributes.
205
247
  # @return [Integer] Hash code
206
248
  def hash
207
- [id, location, cidr_block_size, cidr, status, assigned_resource_id, assigned_resource_type, description].hash
249
+ [id, location, cidr_block_size, cidr, status, assigned_resource_id, assigned_resource_type, description, tags, is_bring_your_own, created_on].hash
208
250
  end
209
251
 
210
252
  # Builds the object from hash
@@ -25,12 +25,16 @@ module IpApi
25
25
  # The description of the IP Block.
26
26
  attr_accessor :description
27
27
 
28
+ # Tags to set to the ip-block. To create a new tag or list all the existing tags that you can use, refer to [Tags API](https://developers.phoenixnap.com/docs/tags/1/overview).
29
+ attr_accessor :tags
30
+
28
31
  # Attribute mapping from ruby-style variable name to JSON key.
29
32
  def self.attribute_map
30
33
  {
31
34
  :'location' => :'location',
32
35
  :'cidr_block_size' => :'cidrBlockSize',
33
- :'description' => :'description'
36
+ :'description' => :'description',
37
+ :'tags' => :'tags'
34
38
  }
35
39
  end
36
40
 
@@ -44,7 +48,8 @@ module IpApi
44
48
  {
45
49
  :'location' => :'String',
46
50
  :'cidr_block_size' => :'String',
47
- :'description' => :'String'
51
+ :'description' => :'String',
52
+ :'tags' => :'Array<TagAssignmentRequest>'
48
53
  }
49
54
  end
50
55
 
@@ -80,6 +85,12 @@ module IpApi
80
85
  if attributes.key?(:'description')
81
86
  self.description = attributes[:'description']
82
87
  end
88
+
89
+ if attributes.key?(:'tags')
90
+ if (value = attributes[:'tags']).is_a?(Array)
91
+ self.tags = value
92
+ end
93
+ end
83
94
  end
84
95
 
85
96
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -127,7 +138,8 @@ module IpApi
127
138
  self.class == o.class &&
128
139
  location == o.location &&
129
140
  cidr_block_size == o.cidr_block_size &&
130
- description == o.description
141
+ description == o.description &&
142
+ tags == o.tags
131
143
  end
132
144
 
133
145
  # @see the `==` method
@@ -139,7 +151,7 @@ module IpApi
139
151
  # Calculates hash code according to all attributes.
140
152
  # @return [Integer] Hash code
141
153
  def hash
142
- [location, cidr_block_size, description].hash
154
+ [location, cidr_block_size, description, tags].hash
143
155
  end
144
156
 
145
157
  # Builds the object from hash
@@ -0,0 +1,309 @@
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 'date'
14
+ require 'time'
15
+
16
+ module IpApi
17
+ # Tag assigned to resource.
18
+ class TagAssignment
19
+ # The unique id of the tag.
20
+ attr_accessor :id
21
+
22
+ # The name of the tag.
23
+ attr_accessor :name
24
+
25
+ # The value of the tag assigned to the resource.
26
+ attr_accessor :value
27
+
28
+ # Whether or not to show the tag as part of billing and invoices
29
+ attr_accessor :is_billing_tag
30
+
31
+ # Who the tag was created by.
32
+ attr_accessor :created_by
33
+
34
+ class EnumAttributeValidator
35
+ attr_reader :datatype
36
+ attr_reader :allowable_values
37
+
38
+ def initialize(datatype, allowable_values)
39
+ @allowable_values = allowable_values.map do |value|
40
+ case datatype.to_s
41
+ when /Integer/i
42
+ value.to_i
43
+ when /Float/i
44
+ value.to_f
45
+ else
46
+ value
47
+ end
48
+ end
49
+ end
50
+
51
+ def valid?(value)
52
+ !value || allowable_values.include?(value)
53
+ end
54
+ end
55
+
56
+ # Attribute mapping from ruby-style variable name to JSON key.
57
+ def self.attribute_map
58
+ {
59
+ :'id' => :'id',
60
+ :'name' => :'name',
61
+ :'value' => :'value',
62
+ :'is_billing_tag' => :'isBillingTag',
63
+ :'created_by' => :'createdBy'
64
+ }
65
+ end
66
+
67
+ # Returns all the JSON keys this model knows about
68
+ def self.acceptable_attributes
69
+ attribute_map.values
70
+ end
71
+
72
+ # Attribute type mapping.
73
+ def self.openapi_types
74
+ {
75
+ :'id' => :'String',
76
+ :'name' => :'String',
77
+ :'value' => :'String',
78
+ :'is_billing_tag' => :'Boolean',
79
+ :'created_by' => :'String'
80
+ }
81
+ end
82
+
83
+ # List of attributes with nullable: true
84
+ def self.openapi_nullable
85
+ Set.new([
86
+ ])
87
+ end
88
+
89
+ # Initializes the object
90
+ # @param [Hash] attributes Model attributes in the form of hash
91
+ def initialize(attributes = {})
92
+ if (!attributes.is_a?(Hash))
93
+ fail ArgumentError, "The input argument (attributes) must be a hash in `IpApi::TagAssignment` initialize method"
94
+ end
95
+
96
+ # check to see if the attribute exists and convert string to symbol for hash key
97
+ attributes = attributes.each_with_object({}) { |(k, v), h|
98
+ if (!self.class.attribute_map.key?(k.to_sym))
99
+ fail ArgumentError, "`#{k}` is not a valid attribute in `IpApi::TagAssignment`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
100
+ end
101
+ h[k.to_sym] = v
102
+ }
103
+
104
+ if attributes.key?(:'id')
105
+ self.id = attributes[:'id']
106
+ end
107
+
108
+ if attributes.key?(:'name')
109
+ self.name = attributes[:'name']
110
+ end
111
+
112
+ if attributes.key?(:'value')
113
+ self.value = attributes[:'value']
114
+ end
115
+
116
+ if attributes.key?(:'is_billing_tag')
117
+ self.is_billing_tag = attributes[:'is_billing_tag']
118
+ end
119
+
120
+ if attributes.key?(:'created_by')
121
+ self.created_by = attributes[:'created_by']
122
+ end
123
+ end
124
+
125
+ # Show invalid properties with the reasons. Usually used together with valid?
126
+ # @return Array for valid properties with the reasons
127
+ def list_invalid_properties
128
+ invalid_properties = Array.new
129
+ if @id.nil?
130
+ invalid_properties.push('invalid value for "id", id cannot be nil.')
131
+ end
132
+
133
+ if @name.nil?
134
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
135
+ end
136
+
137
+ if @is_billing_tag.nil?
138
+ invalid_properties.push('invalid value for "is_billing_tag", is_billing_tag cannot be nil.')
139
+ end
140
+
141
+ invalid_properties
142
+ end
143
+
144
+ # Check to see if the all the properties in the model are valid
145
+ # @return true if the model is valid
146
+ def valid?
147
+ return false if @id.nil?
148
+ return false if @name.nil?
149
+ return false if @is_billing_tag.nil?
150
+ created_by_validator = EnumAttributeValidator.new('String', ["USER", "SYSTEM"])
151
+ return false unless created_by_validator.valid?(@created_by)
152
+ true
153
+ end
154
+
155
+ # Custom attribute writer method checking allowed values (enum).
156
+ # @param [Object] created_by Object to be assigned
157
+ def created_by=(created_by)
158
+ validator = EnumAttributeValidator.new('String', ["USER", "SYSTEM"])
159
+ unless validator.valid?(created_by)
160
+ fail ArgumentError, "invalid value for \"created_by\", must be one of #{validator.allowable_values}."
161
+ end
162
+ @created_by = created_by
163
+ end
164
+
165
+ # Checks equality by comparing each attribute.
166
+ # @param [Object] Object to be compared
167
+ def ==(o)
168
+ return true if self.equal?(o)
169
+ self.class == o.class &&
170
+ id == o.id &&
171
+ name == o.name &&
172
+ value == o.value &&
173
+ is_billing_tag == o.is_billing_tag &&
174
+ created_by == o.created_by
175
+ end
176
+
177
+ # @see the `==` method
178
+ # @param [Object] Object to be compared
179
+ def eql?(o)
180
+ self == o
181
+ end
182
+
183
+ # Calculates hash code according to all attributes.
184
+ # @return [Integer] Hash code
185
+ def hash
186
+ [id, name, value, is_billing_tag, created_by].hash
187
+ end
188
+
189
+ # Builds the object from hash
190
+ # @param [Hash] attributes Model attributes in the form of hash
191
+ # @return [Object] Returns the model itself
192
+ def self.build_from_hash(attributes)
193
+ new.build_from_hash(attributes)
194
+ end
195
+
196
+ # Builds the object from hash
197
+ # @param [Hash] attributes Model attributes in the form of hash
198
+ # @return [Object] Returns the model itself
199
+ def build_from_hash(attributes)
200
+ return nil unless attributes.is_a?(Hash)
201
+ self.class.openapi_types.each_pair do |key, type|
202
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
203
+ self.send("#{key}=", nil)
204
+ elsif type =~ /\AArray<(.*)>/i
205
+ # check to ensure the input is an array given that the attribute
206
+ # is documented as an array but the input is not
207
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
208
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
209
+ end
210
+ elsif !attributes[self.class.attribute_map[key]].nil?
211
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
212
+ end
213
+ end
214
+
215
+ self
216
+ end
217
+
218
+ # Deserializes the data based on type
219
+ # @param string type Data type
220
+ # @param string value Value to be deserialized
221
+ # @return [Object] Deserialized data
222
+ def _deserialize(type, value)
223
+ case type.to_sym
224
+ when :Time
225
+ Time.parse(value)
226
+ when :Date
227
+ Date.parse(value)
228
+ when :String
229
+ value.to_s
230
+ when :Integer
231
+ value.to_i
232
+ when :Float
233
+ value.to_f
234
+ when :Boolean
235
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
236
+ true
237
+ else
238
+ false
239
+ end
240
+ when :Object
241
+ # generic object (usually a Hash), return directly
242
+ value
243
+ when /\AArray<(?<inner_type>.+)>\z/
244
+ inner_type = Regexp.last_match[:inner_type]
245
+ value.map { |v| _deserialize(inner_type, v) }
246
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
247
+ k_type = Regexp.last_match[:k_type]
248
+ v_type = Regexp.last_match[:v_type]
249
+ {}.tap do |hash|
250
+ value.each do |k, v|
251
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
252
+ end
253
+ end
254
+ else # model
255
+ # models (e.g. Pet) or oneOf
256
+ klass = IpApi.const_get(type)
257
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
258
+ end
259
+ end
260
+
261
+ # Returns the string representation of the object
262
+ # @return [String] String presentation of the object
263
+ def to_s
264
+ to_hash.to_s
265
+ end
266
+
267
+ # to_body is an alias to to_hash (backward compatibility)
268
+ # @return [Hash] Returns the object in the form of hash
269
+ def to_body
270
+ to_hash
271
+ end
272
+
273
+ # Returns the object in the form of hash
274
+ # @return [Hash] Returns the object in the form of hash
275
+ def to_hash
276
+ hash = {}
277
+ self.class.attribute_map.each_pair do |attr, param|
278
+ value = self.send(attr)
279
+ if value.nil?
280
+ is_nullable = self.class.openapi_nullable.include?(attr)
281
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
282
+ end
283
+
284
+ hash[param] = _to_hash(value)
285
+ end
286
+ hash
287
+ end
288
+
289
+ # Outputs non-array value in the form of hash
290
+ # For object, use to_hash. Otherwise, just return the value
291
+ # @param [Object] value Any valid value
292
+ # @return [Hash] Returns the value in the form of hash
293
+ def _to_hash(value)
294
+ if value.is_a?(Array)
295
+ value.compact.map { |v| _to_hash(v) }
296
+ elsif value.is_a?(Hash)
297
+ {}.tap do |hash|
298
+ value.each { |k, v| hash[k] = _to_hash(v) }
299
+ end
300
+ elsif value.respond_to? :to_hash
301
+ value.to_hash
302
+ else
303
+ value
304
+ end
305
+ end
306
+
307
+ end
308
+
309
+ end
@@ -0,0 +1,235 @@
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 'date'
14
+ require 'time'
15
+
16
+ module IpApi
17
+ # Tag request to assign to resource.
18
+ class TagAssignmentRequest
19
+ # The name of the tag. Tag names are case-sensitive, and should be composed of a maximum of 100 characters including UTF-8 Unicode letters, numbers, and the following symbols: '-', '_'. Regex: [A-zÀ-ú0-9_-]{1,100}.
20
+ attr_accessor :name
21
+
22
+ # The value of the tag assigned to the resource. Tag values are case-sensitive, and should be composed of a maximum of 100 characters including UTF-8 Unicode letters, numbers, and the following symbols: '-', '_'. Regex: [A-zÀ-ú0-9_-]{1,100}.
23
+ attr_accessor :value
24
+
25
+ # Attribute mapping from ruby-style variable name to JSON key.
26
+ def self.attribute_map
27
+ {
28
+ :'name' => :'name',
29
+ :'value' => :'value'
30
+ }
31
+ end
32
+
33
+ # Returns all the JSON keys this model knows about
34
+ def self.acceptable_attributes
35
+ attribute_map.values
36
+ end
37
+
38
+ # Attribute type mapping.
39
+ def self.openapi_types
40
+ {
41
+ :'name' => :'String',
42
+ :'value' => :'String'
43
+ }
44
+ end
45
+
46
+ # List of attributes with nullable: true
47
+ def self.openapi_nullable
48
+ Set.new([
49
+ ])
50
+ end
51
+
52
+ # Initializes the object
53
+ # @param [Hash] attributes Model attributes in the form of hash
54
+ def initialize(attributes = {})
55
+ if (!attributes.is_a?(Hash))
56
+ fail ArgumentError, "The input argument (attributes) must be a hash in `IpApi::TagAssignmentRequest` initialize method"
57
+ end
58
+
59
+ # check to see if the attribute exists and convert string to symbol for hash key
60
+ attributes = attributes.each_with_object({}) { |(k, v), h|
61
+ if (!self.class.attribute_map.key?(k.to_sym))
62
+ fail ArgumentError, "`#{k}` is not a valid attribute in `IpApi::TagAssignmentRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ end
64
+ h[k.to_sym] = v
65
+ }
66
+
67
+ if attributes.key?(:'name')
68
+ self.name = attributes[:'name']
69
+ end
70
+
71
+ if attributes.key?(:'value')
72
+ self.value = attributes[:'value']
73
+ end
74
+ end
75
+
76
+ # Show invalid properties with the reasons. Usually used together with valid?
77
+ # @return Array for valid properties with the reasons
78
+ def list_invalid_properties
79
+ invalid_properties = Array.new
80
+ if @name.nil?
81
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
82
+ end
83
+
84
+ invalid_properties
85
+ end
86
+
87
+ # Check to see if the all the properties in the model are valid
88
+ # @return true if the model is valid
89
+ def valid?
90
+ return false if @name.nil?
91
+ true
92
+ end
93
+
94
+ # Checks equality by comparing each attribute.
95
+ # @param [Object] Object to be compared
96
+ def ==(o)
97
+ return true if self.equal?(o)
98
+ self.class == o.class &&
99
+ name == o.name &&
100
+ value == o.value
101
+ end
102
+
103
+ # @see the `==` method
104
+ # @param [Object] Object to be compared
105
+ def eql?(o)
106
+ self == o
107
+ end
108
+
109
+ # Calculates hash code according to all attributes.
110
+ # @return [Integer] Hash code
111
+ def hash
112
+ [name, value].hash
113
+ end
114
+
115
+ # Builds the object from hash
116
+ # @param [Hash] attributes Model attributes in the form of hash
117
+ # @return [Object] Returns the model itself
118
+ def self.build_from_hash(attributes)
119
+ new.build_from_hash(attributes)
120
+ end
121
+
122
+ # Builds the object from hash
123
+ # @param [Hash] attributes Model attributes in the form of hash
124
+ # @return [Object] Returns the model itself
125
+ def build_from_hash(attributes)
126
+ return nil unless attributes.is_a?(Hash)
127
+ self.class.openapi_types.each_pair do |key, type|
128
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
129
+ self.send("#{key}=", nil)
130
+ elsif type =~ /\AArray<(.*)>/i
131
+ # check to ensure the input is an array given that the attribute
132
+ # is documented as an array but the input is not
133
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
134
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
135
+ end
136
+ elsif !attributes[self.class.attribute_map[key]].nil?
137
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
138
+ end
139
+ end
140
+
141
+ self
142
+ end
143
+
144
+ # Deserializes the data based on type
145
+ # @param string type Data type
146
+ # @param string value Value to be deserialized
147
+ # @return [Object] Deserialized data
148
+ def _deserialize(type, value)
149
+ case type.to_sym
150
+ when :Time
151
+ Time.parse(value)
152
+ when :Date
153
+ Date.parse(value)
154
+ when :String
155
+ value.to_s
156
+ when :Integer
157
+ value.to_i
158
+ when :Float
159
+ value.to_f
160
+ when :Boolean
161
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
162
+ true
163
+ else
164
+ false
165
+ end
166
+ when :Object
167
+ # generic object (usually a Hash), return directly
168
+ value
169
+ when /\AArray<(?<inner_type>.+)>\z/
170
+ inner_type = Regexp.last_match[:inner_type]
171
+ value.map { |v| _deserialize(inner_type, v) }
172
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
173
+ k_type = Regexp.last_match[:k_type]
174
+ v_type = Regexp.last_match[:v_type]
175
+ {}.tap do |hash|
176
+ value.each do |k, v|
177
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
178
+ end
179
+ end
180
+ else # model
181
+ # models (e.g. Pet) or oneOf
182
+ klass = IpApi.const_get(type)
183
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
184
+ end
185
+ end
186
+
187
+ # Returns the string representation of the object
188
+ # @return [String] String presentation of the object
189
+ def to_s
190
+ to_hash.to_s
191
+ end
192
+
193
+ # to_body is an alias to to_hash (backward compatibility)
194
+ # @return [Hash] Returns the object in the form of hash
195
+ def to_body
196
+ to_hash
197
+ end
198
+
199
+ # Returns the object in the form of hash
200
+ # @return [Hash] Returns the object in the form of hash
201
+ def to_hash
202
+ hash = {}
203
+ self.class.attribute_map.each_pair do |attr, param|
204
+ value = self.send(attr)
205
+ if value.nil?
206
+ is_nullable = self.class.openapi_nullable.include?(attr)
207
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
208
+ end
209
+
210
+ hash[param] = _to_hash(value)
211
+ end
212
+ hash
213
+ end
214
+
215
+ # Outputs non-array value in the form of hash
216
+ # For object, use to_hash. Otherwise, just return the value
217
+ # @param [Object] value Any valid value
218
+ # @return [Hash] Returns the value in the form of hash
219
+ def _to_hash(value)
220
+ if value.is_a?(Array)
221
+ value.compact.map { |v| _to_hash(v) }
222
+ elsif value.is_a?(Hash)
223
+ {}.tap do |hash|
224
+ value.each { |k, v| hash[k] = _to_hash(v) }
225
+ end
226
+ elsif value.respond_to? :to_hash
227
+ value.to_hash
228
+ else
229
+ value
230
+ end
231
+ end
232
+
233
+ end
234
+
235
+ end
data/lib/pnap_ip_api.rb CHANGED
@@ -22,6 +22,8 @@ require 'pnap_ip_api/models/error'
22
22
  require 'pnap_ip_api/models/ip_block'
23
23
  require 'pnap_ip_api/models/ip_block_create'
24
24
  require 'pnap_ip_api/models/ip_block_patch'
25
+ require 'pnap_ip_api/models/tag_assignment'
26
+ require 'pnap_ip_api/models/tag_assignment_request'
25
27
 
26
28
  # APIs
27
29
  require 'pnap_ip_api/api/ip_blocks_api'
data/pnap_ip_api.gemspec CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
26
26
  s.description = "IP Addresses API Ruby Gem"
27
27
  s.license = "MPL-2.0"
28
28
  s.required_ruby_version = ">= 2.4"
29
- s.metadata = { "source_code_uri" => "https://github.com/phoenixnap/ruby-sdk-bmc-poc" }
29
+ s.metadata = { "source_code_uri" => "https://github.com/phoenixnap/ruby-sdk-bmc" }
30
30
 
31
31
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
32
32
 
@@ -0,0 +1,40 @@
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::TagAssignmentRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe IpApi::TagAssignmentRequest do
21
+ let(:instance) { IpApi::TagAssignmentRequest.new }
22
+
23
+ describe 'test an instance of TagAssignmentRequest' do
24
+ it 'should create an instance of TagAssignmentRequest' do
25
+ expect(instance).to be_instance_of(IpApi::TagAssignmentRequest)
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 "value"' 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
+ end
@@ -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
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.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PhoenixNAP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-11 00:00:00.000000000 Z
11
+ date: 2022-09-27 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-poc
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