pnap_tag_api 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62515981401552054a25abbda774728907405c23bbe9523094ad518095d06aa8
4
- data.tar.gz: 9b8d3f828e717d10ab061e660463f0ebea73e1d1d345ef14f1dcc6f150fbea2b
3
+ metadata.gz: 74baea95f99e1280a87128cf1fad49ecef6edcb2b2c78dd64dd83946c99c0f08
4
+ data.tar.gz: a1d3971e6322787ebe664f4b98922ff139e5a3111e1c12deff9d68efbdd1db5d
5
5
  SHA512:
6
- metadata.gz: '09e57c677228328e17f43c219fca65b2f42da45e8c2125e2f4a22a13bb6d43150b34cf06b04e7f0e8b348246838f3cc04a4b1e564f9ab71cc63795382e7c4897'
7
- data.tar.gz: '08878ee2bb4cebd2582a7db42c6675c16ba09ca995501495d01942bbf8a7f3f67d5fd9a5c4fc5f7c73e8fbe5b9ce88d026a4314bdfb899cf90dadba7be3c0acc'
6
+ metadata.gz: 8bed6ef043a9802dcf417efb5c2b88cd5ac2959cb8d578dd0404b1fd22a93cb53a772120ee46d9a38cdbaa3eae3892fb1d2507d944de49dfd488fee2acd4b24b
7
+ data.tar.gz: 0da810a37a4b72020260e007852b18d77e5ea0f4b39890bcf1e856aca29f30b5d75308c06fa32d67f6f408621c361d624c5642f1c12b1d21f78eba03deea5e1a
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **resource_name** | **String** | The resource name. | |
7
+ | **resource_name** | **String** | The resource name which is automatically generated by the tags-api. It is a unique resource identifier made up of the API name (e.g. bmc, ips), the resource type and the resource ID. This is not to be confused with custom names that are defined for particular resources, such as the server name or network name. | |
8
8
  | **value** | **String** | The value of the tag assigned to the resource. | [optional] |
9
9
 
10
10
  ## Example
@@ -16,7 +16,7 @@ require 'time'
16
16
  module TagApi
17
17
  # Resource assigned to a tag.
18
18
  class ResourceAssignment
19
- # The resource name.
19
+ # The resource name which is automatically generated by the tags-api. It is a unique resource identifier made up of the API name (e.g. bmc, ips), the resource type and the resource ID. This is not to be confused with custom names that are defined for particular resources, such as the server name or network name.
20
20
  attr_accessor :resource_name
21
21
 
22
22
  # The value of the tag assigned to the resource.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pnap_tag_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - PhoenixNAP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-03 00:00:00.000000000 Z
11
+ date: 2022-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
- rubygems_version: 3.1.2
114
+ rubygems_version: 3.3.5
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: Tags API Ruby Gem
@@ -119,10 +119,10 @@ test_files:
119
119
  - spec/api/tags_api_spec.rb
120
120
  - spec/api_client_spec.rb
121
121
  - spec/configuration_spec.rb
122
+ - spec/models/tag_update_spec.rb
123
+ - spec/models/delete_result_spec.rb
122
124
  - spec/models/resource_assignment_spec.rb
123
125
  - spec/models/tag_spec.rb
124
126
  - spec/models/error_spec.rb
125
- - spec/models/delete_result_spec.rb
126
- - spec/models/tag_update_spec.rb
127
127
  - spec/models/tag_create_spec.rb
128
128
  - spec/spec_helper.rb