cloudmersive-validate-api-client 1.3.2 → 1.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -9
  3. data/cloudmersive-validate-api-client.gemspec +1 -1
  4. data/docs/AddressApi.md +63 -0
  5. data/docs/AddressGetServersResponse.md +2 -2
  6. data/docs/DomainApi.md +110 -0
  7. data/docs/FullEmailValidationResponse.md +2 -0
  8. data/docs/NameApi.md +55 -0
  9. data/docs/ParseAddressRequest.md +9 -0
  10. data/docs/ParseAddressResponse.md +15 -0
  11. data/docs/UserAgentApi.md +63 -0
  12. data/docs/UserAgentValidateRequest.md +8 -0
  13. data/docs/UserAgentValidateResponse.md +21 -0
  14. data/docs/ValidateIdentifierRequest.md +15 -0
  15. data/docs/ValidateIdentifierResponse.md +9 -0
  16. data/docs/ValidateUrlRequestFull.md +8 -0
  17. data/docs/ValidateUrlRequestSyntaxOnly.md +8 -0
  18. data/docs/ValidateUrlResponseFull.md +12 -0
  19. data/docs/ValidateUrlResponseSyntaxOnly.md +9 -0
  20. data/docs/VatLookupRequest.md +1 -1
  21. data/docs/VatLookupResponse.md +5 -5
  22. data/lib/cloudmersive-validate-api-client.rb +13 -1
  23. data/lib/cloudmersive-validate-api-client/api/address_api.rb +78 -0
  24. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +111 -1
  25. data/lib/cloudmersive-validate-api-client/api/email_api.rb +1 -1
  26. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +1 -1
  27. data/lib/cloudmersive-validate-api-client/api/name_api.rb +56 -1
  28. data/lib/cloudmersive-validate-api-client/api/phone_number_api.rb +1 -1
  29. data/lib/cloudmersive-validate-api-client/api/user_agent_api.rb +78 -0
  30. data/lib/cloudmersive-validate-api-client/api/vat_api.rb +1 -1
  31. data/lib/cloudmersive-validate-api-client/api_client.rb +1 -1
  32. data/lib/cloudmersive-validate-api-client/api_error.rb +1 -1
  33. data/lib/cloudmersive-validate-api-client/configuration.rb +1 -1
  34. data/lib/cloudmersive-validate-api-client/models/address_get_servers_response.rb +3 -1
  35. data/lib/cloudmersive-validate-api-client/models/address_verify_syntax_only_response.rb +1 -1
  36. data/lib/cloudmersive-validate-api-client/models/check_response.rb +1 -1
  37. data/lib/cloudmersive-validate-api-client/models/first_name_validation_request.rb +1 -1
  38. data/lib/cloudmersive-validate-api-client/models/first_name_validation_response.rb +1 -1
  39. data/lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb +25 -5
  40. data/lib/cloudmersive-validate-api-client/models/full_name_validation_request.rb +1 -1
  41. data/lib/cloudmersive-validate-api-client/models/full_name_validation_response.rb +1 -1
  42. data/lib/cloudmersive-validate-api-client/models/geolocate_response.rb +1 -1
  43. data/lib/cloudmersive-validate-api-client/models/get_gender_request.rb +1 -1
  44. data/lib/cloudmersive-validate-api-client/models/get_gender_response.rb +1 -1
  45. data/lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb +1 -1
  46. data/lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb +1 -1
  47. data/lib/cloudmersive-validate-api-client/models/parse_address_request.rb +199 -0
  48. data/lib/cloudmersive-validate-api-client/models/parse_address_response.rb +259 -0
  49. data/lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb +1 -1
  50. data/lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb +1 -1
  51. data/lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb +189 -0
  52. data/lib/cloudmersive-validate-api-client/models/user_agent_validate_response.rb +319 -0
  53. data/lib/cloudmersive-validate-api-client/models/validate_identifier_request.rb +259 -0
  54. data/lib/cloudmersive-validate-api-client/models/validate_identifier_response.rb +199 -0
  55. data/lib/cloudmersive-validate-api-client/models/validate_url_request_full.rb +189 -0
  56. data/lib/cloudmersive-validate-api-client/models/validate_url_request_syntax_only.rb +189 -0
  57. data/lib/cloudmersive-validate-api-client/models/validate_url_response_full.rb +229 -0
  58. data/lib/cloudmersive-validate-api-client/models/validate_url_response_syntax_only.rb +199 -0
  59. data/lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb +2 -1
  60. data/lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb +6 -1
  61. data/lib/cloudmersive-validate-api-client/models/whois_response.rb +1 -1
  62. data/lib/cloudmersive-validate-api-client/version.rb +2 -2
  63. data/spec/api/address_api_spec.rb +47 -0
  64. data/spec/api/domain_api_spec.rb +25 -1
  65. data/spec/api/email_api_spec.rb +1 -1
  66. data/spec/api/ip_address_api_spec.rb +1 -1
  67. data/spec/api/name_api_spec.rb +13 -1
  68. data/spec/api/phone_number_api_spec.rb +1 -1
  69. data/spec/api/user_agent_api_spec.rb +47 -0
  70. data/spec/api/vat_api_spec.rb +1 -1
  71. data/spec/api_client_spec.rb +1 -1
  72. data/spec/configuration_spec.rb +1 -1
  73. data/spec/models/address_get_servers_response_spec.rb +1 -1
  74. data/spec/models/address_verify_syntax_only_response_spec.rb +1 -1
  75. data/spec/models/check_response_spec.rb +1 -1
  76. data/spec/models/first_name_validation_request_spec.rb +1 -1
  77. data/spec/models/first_name_validation_response_spec.rb +1 -1
  78. data/spec/models/full_email_validation_response_spec.rb +13 -1
  79. data/spec/models/full_name_validation_request_spec.rb +1 -1
  80. data/spec/models/full_name_validation_response_spec.rb +1 -1
  81. data/spec/models/geolocate_response_spec.rb +1 -1
  82. data/spec/models/get_gender_request_spec.rb +1 -1
  83. data/spec/models/get_gender_response_spec.rb +1 -1
  84. data/spec/models/last_name_validation_request_spec.rb +1 -1
  85. data/spec/models/last_name_validation_response_spec.rb +1 -1
  86. data/spec/models/parse_address_request_spec.rb +48 -0
  87. data/spec/models/parse_address_response_spec.rb +84 -0
  88. data/spec/models/phone_number_validate_request_spec.rb +1 -1
  89. data/spec/models/phone_number_validation_response_spec.rb +1 -1
  90. data/spec/models/user_agent_validate_request_spec.rb +42 -0
  91. data/spec/models/user_agent_validate_response_spec.rb +120 -0
  92. data/spec/models/validate_identifier_request_spec.rb +84 -0
  93. data/spec/models/validate_identifier_response_spec.rb +48 -0
  94. data/spec/models/validate_url_request_full_spec.rb +42 -0
  95. data/spec/models/validate_url_request_syntax_only_spec.rb +42 -0
  96. data/spec/models/validate_url_response_full_spec.rb +66 -0
  97. data/spec/models/validate_url_response_syntax_only_spec.rb +48 -0
  98. data/spec/models/vat_lookup_request_spec.rb +1 -1
  99. data/spec/models/vat_lookup_response_spec.rb +1 -1
  100. data/spec/models/whois_response_spec.rb +1 -1
  101. data/spec/spec_helper.rb +1 -1
  102. metadata +51 -16
@@ -0,0 +1,259 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Result of parsing an address into its component parts
17
+ class ParseAddressResponse
18
+ # True if the parsing operation was successful, false otherwise
19
+ attr_accessor :successful
20
+
21
+ # The name of the building, house or structure if applicable, such as \"Cloudmersive Building 2\". This will often by null.
22
+ attr_accessor :building
23
+
24
+ # The street number or house number of the address. For example, in the address \"1600 Pennsylvania Avenue NW\" the street number would be \"1600\". This value will typically be populated for most addresses.
25
+ attr_accessor :street_number
26
+
27
+ # The name of the street or road of the address. For example, in the address \"1600 Pennsylvania Avenue NW\" the street number would be \"Pennsylvania Avenue NW\".
28
+ attr_accessor :street
29
+
30
+ # The city of the address.
31
+ attr_accessor :city
32
+
33
+ # The state or province of the address.
34
+ attr_accessor :state_or_province
35
+
36
+ # The postal code or zip code of the address.
37
+ attr_accessor :postal_code
38
+
39
+ # Country of the address, if present in the address. If not included in the address it will be null.
40
+ attr_accessor :country
41
+
42
+
43
+ # Attribute mapping from ruby-style variable name to JSON key.
44
+ def self.attribute_map
45
+ {
46
+ :'successful' => :'Successful',
47
+ :'building' => :'Building',
48
+ :'street_number' => :'StreetNumber',
49
+ :'street' => :'Street',
50
+ :'city' => :'City',
51
+ :'state_or_province' => :'StateOrProvince',
52
+ :'postal_code' => :'PostalCode',
53
+ :'country' => :'Country'
54
+ }
55
+ end
56
+
57
+ # Attribute type mapping.
58
+ def self.swagger_types
59
+ {
60
+ :'successful' => :'BOOLEAN',
61
+ :'building' => :'String',
62
+ :'street_number' => :'String',
63
+ :'street' => :'String',
64
+ :'city' => :'String',
65
+ :'state_or_province' => :'String',
66
+ :'postal_code' => :'String',
67
+ :'country' => :'String'
68
+ }
69
+ end
70
+
71
+ # Initializes the object
72
+ # @param [Hash] attributes Model attributes in the form of hash
73
+ def initialize(attributes = {})
74
+ return unless attributes.is_a?(Hash)
75
+
76
+ # convert string to symbol for hash key
77
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
78
+
79
+ if attributes.has_key?(:'Successful')
80
+ self.successful = attributes[:'Successful']
81
+ end
82
+
83
+ if attributes.has_key?(:'Building')
84
+ self.building = attributes[:'Building']
85
+ end
86
+
87
+ if attributes.has_key?(:'StreetNumber')
88
+ self.street_number = attributes[:'StreetNumber']
89
+ end
90
+
91
+ if attributes.has_key?(:'Street')
92
+ self.street = attributes[:'Street']
93
+ end
94
+
95
+ if attributes.has_key?(:'City')
96
+ self.city = attributes[:'City']
97
+ end
98
+
99
+ if attributes.has_key?(:'StateOrProvince')
100
+ self.state_or_province = attributes[:'StateOrProvince']
101
+ end
102
+
103
+ if attributes.has_key?(:'PostalCode')
104
+ self.postal_code = attributes[:'PostalCode']
105
+ end
106
+
107
+ if attributes.has_key?(:'Country')
108
+ self.country = attributes[:'Country']
109
+ end
110
+
111
+ end
112
+
113
+ # Show invalid properties with the reasons. Usually used together with valid?
114
+ # @return Array for valid properties with the reasons
115
+ def list_invalid_properties
116
+ invalid_properties = Array.new
117
+ return invalid_properties
118
+ end
119
+
120
+ # Check to see if the all the properties in the model are valid
121
+ # @return true if the model is valid
122
+ def valid?
123
+ return true
124
+ end
125
+
126
+ # Checks equality by comparing each attribute.
127
+ # @param [Object] Object to be compared
128
+ def ==(o)
129
+ return true if self.equal?(o)
130
+ self.class == o.class &&
131
+ successful == o.successful &&
132
+ building == o.building &&
133
+ street_number == o.street_number &&
134
+ street == o.street &&
135
+ city == o.city &&
136
+ state_or_province == o.state_or_province &&
137
+ postal_code == o.postal_code &&
138
+ country == o.country
139
+ end
140
+
141
+ # @see the `==` method
142
+ # @param [Object] Object to be compared
143
+ def eql?(o)
144
+ self == o
145
+ end
146
+
147
+ # Calculates hash code according to all attributes.
148
+ # @return [Fixnum] Hash code
149
+ def hash
150
+ [successful, building, street_number, street, city, state_or_province, postal_code, country].hash
151
+ end
152
+
153
+ # Builds the object from hash
154
+ # @param [Hash] attributes Model attributes in the form of hash
155
+ # @return [Object] Returns the model itself
156
+ def build_from_hash(attributes)
157
+ return nil unless attributes.is_a?(Hash)
158
+ self.class.swagger_types.each_pair do |key, type|
159
+ if type =~ /\AArray<(.*)>/i
160
+ # check to ensure the input is an array given that the the attribute
161
+ # is documented as an array but the input is not
162
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
163
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
164
+ end
165
+ elsif !attributes[self.class.attribute_map[key]].nil?
166
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
167
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
168
+ end
169
+
170
+ self
171
+ end
172
+
173
+ # Deserializes the data based on type
174
+ # @param string type Data type
175
+ # @param string value Value to be deserialized
176
+ # @return [Object] Deserialized data
177
+ def _deserialize(type, value)
178
+ case type.to_sym
179
+ when :DateTime
180
+ DateTime.parse(value)
181
+ when :Date
182
+ Date.parse(value)
183
+ when :String
184
+ value.to_s
185
+ when :Integer
186
+ value.to_i
187
+ when :Float
188
+ value.to_f
189
+ when :BOOLEAN
190
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
191
+ true
192
+ else
193
+ false
194
+ end
195
+ when :Object
196
+ # generic object (usually a Hash), return directly
197
+ value
198
+ when /\AArray<(?<inner_type>.+)>\z/
199
+ inner_type = Regexp.last_match[:inner_type]
200
+ value.map { |v| _deserialize(inner_type, v) }
201
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
202
+ k_type = Regexp.last_match[:k_type]
203
+ v_type = Regexp.last_match[:v_type]
204
+ {}.tap do |hash|
205
+ value.each do |k, v|
206
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
207
+ end
208
+ end
209
+ else # model
210
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
211
+ temp_model.build_from_hash(value)
212
+ end
213
+ end
214
+
215
+ # Returns the string representation of the object
216
+ # @return [String] String presentation of the object
217
+ def to_s
218
+ to_hash.to_s
219
+ end
220
+
221
+ # to_body is an alias to to_hash (backward compatibility)
222
+ # @return [Hash] Returns the object in the form of hash
223
+ def to_body
224
+ to_hash
225
+ end
226
+
227
+ # Returns the object in the form of hash
228
+ # @return [Hash] Returns the object in the form of hash
229
+ def to_hash
230
+ hash = {}
231
+ self.class.attribute_map.each_pair do |attr, param|
232
+ value = self.send(attr)
233
+ next if value.nil?
234
+ hash[param] = _to_hash(value)
235
+ end
236
+ hash
237
+ end
238
+
239
+ # Outputs non-array value in the form of hash
240
+ # For object, use to_hash. Otherwise, just return the value
241
+ # @param [Object] value Any valid value
242
+ # @return [Hash] Returns the value in the form of hash
243
+ def _to_hash(value)
244
+ if value.is_a?(Array)
245
+ value.compact.map{ |v| _to_hash(v) }
246
+ elsif value.is_a?(Hash)
247
+ {}.tap do |hash|
248
+ value.each { |k, v| hash[k] = _to_hash(v) }
249
+ end
250
+ elsif value.respond_to? :to_hash
251
+ value.to_hash
252
+ else
253
+ value
254
+ end
255
+ end
256
+
257
+ end
258
+
259
+ end
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,189 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # User-Agent parse and validation request
17
+ class UserAgentValidateRequest
18
+ # The user agent string you wish to parse and validate
19
+ attr_accessor :user_agent_string
20
+
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'user_agent_string' => :'UserAgentString'
26
+ }
27
+ end
28
+
29
+ # Attribute type mapping.
30
+ def self.swagger_types
31
+ {
32
+ :'user_agent_string' => :'String'
33
+ }
34
+ end
35
+
36
+ # Initializes the object
37
+ # @param [Hash] attributes Model attributes in the form of hash
38
+ def initialize(attributes = {})
39
+ return unless attributes.is_a?(Hash)
40
+
41
+ # convert string to symbol for hash key
42
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
43
+
44
+ if attributes.has_key?(:'UserAgentString')
45
+ self.user_agent_string = attributes[:'UserAgentString']
46
+ end
47
+
48
+ end
49
+
50
+ # Show invalid properties with the reasons. Usually used together with valid?
51
+ # @return Array for valid properties with the reasons
52
+ def list_invalid_properties
53
+ invalid_properties = Array.new
54
+ return invalid_properties
55
+ end
56
+
57
+ # Check to see if the all the properties in the model are valid
58
+ # @return true if the model is valid
59
+ def valid?
60
+ return true
61
+ end
62
+
63
+ # Checks equality by comparing each attribute.
64
+ # @param [Object] Object to be compared
65
+ def ==(o)
66
+ return true if self.equal?(o)
67
+ self.class == o.class &&
68
+ user_agent_string == o.user_agent_string
69
+ end
70
+
71
+ # @see the `==` method
72
+ # @param [Object] Object to be compared
73
+ def eql?(o)
74
+ self == o
75
+ end
76
+
77
+ # Calculates hash code according to all attributes.
78
+ # @return [Fixnum] Hash code
79
+ def hash
80
+ [user_agent_string].hash
81
+ end
82
+
83
+ # Builds the object from hash
84
+ # @param [Hash] attributes Model attributes in the form of hash
85
+ # @return [Object] Returns the model itself
86
+ def build_from_hash(attributes)
87
+ return nil unless attributes.is_a?(Hash)
88
+ self.class.swagger_types.each_pair do |key, type|
89
+ if type =~ /\AArray<(.*)>/i
90
+ # check to ensure the input is an array given that the the attribute
91
+ # is documented as an array but the input is not
92
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
93
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
94
+ end
95
+ elsif !attributes[self.class.attribute_map[key]].nil?
96
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
97
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
98
+ end
99
+
100
+ self
101
+ end
102
+
103
+ # Deserializes the data based on type
104
+ # @param string type Data type
105
+ # @param string value Value to be deserialized
106
+ # @return [Object] Deserialized data
107
+ def _deserialize(type, value)
108
+ case type.to_sym
109
+ when :DateTime
110
+ DateTime.parse(value)
111
+ when :Date
112
+ Date.parse(value)
113
+ when :String
114
+ value.to_s
115
+ when :Integer
116
+ value.to_i
117
+ when :Float
118
+ value.to_f
119
+ when :BOOLEAN
120
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
121
+ true
122
+ else
123
+ false
124
+ end
125
+ when :Object
126
+ # generic object (usually a Hash), return directly
127
+ value
128
+ when /\AArray<(?<inner_type>.+)>\z/
129
+ inner_type = Regexp.last_match[:inner_type]
130
+ value.map { |v| _deserialize(inner_type, v) }
131
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
132
+ k_type = Regexp.last_match[:k_type]
133
+ v_type = Regexp.last_match[:v_type]
134
+ {}.tap do |hash|
135
+ value.each do |k, v|
136
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
137
+ end
138
+ end
139
+ else # model
140
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
141
+ temp_model.build_from_hash(value)
142
+ end
143
+ end
144
+
145
+ # Returns the string representation of the object
146
+ # @return [String] String presentation of the object
147
+ def to_s
148
+ to_hash.to_s
149
+ end
150
+
151
+ # to_body is an alias to to_hash (backward compatibility)
152
+ # @return [Hash] Returns the object in the form of hash
153
+ def to_body
154
+ to_hash
155
+ end
156
+
157
+ # Returns the object in the form of hash
158
+ # @return [Hash] Returns the object in the form of hash
159
+ def to_hash
160
+ hash = {}
161
+ self.class.attribute_map.each_pair do |attr, param|
162
+ value = self.send(attr)
163
+ next if value.nil?
164
+ hash[param] = _to_hash(value)
165
+ end
166
+ hash
167
+ end
168
+
169
+ # Outputs non-array value in the form of hash
170
+ # For object, use to_hash. Otherwise, just return the value
171
+ # @param [Object] value Any valid value
172
+ # @return [Hash] Returns the value in the form of hash
173
+ def _to_hash(value)
174
+ if value.is_a?(Array)
175
+ value.compact.map{ |v| _to_hash(v) }
176
+ elsif value.is_a?(Hash)
177
+ {}.tap do |hash|
178
+ value.each { |k, v| hash[k] = _to_hash(v) }
179
+ end
180
+ elsif value.respond_to? :to_hash
181
+ value.to_hash
182
+ else
183
+ value
184
+ end
185
+ end
186
+
187
+ end
188
+
189
+ end