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,8 @@
1
+ # CloudmersiveValidateApiClient::UserAgentValidateRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **user_agent_string** | **String** | The user agent string you wish to parse and validate | [optional]
7
+
8
+
@@ -0,0 +1,21 @@
1
+ # CloudmersiveValidateApiClient::UserAgentValidateResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **successful** | **BOOLEAN** | True if the operation was successful, false otherwise | [optional]
7
+ **is_bot** | **BOOLEAN** | True if the request is a known robot, false otherwise | [optional]
8
+ **bot_name** | **String** | Optional; name of the robot if the request was from a known robot, otherwise null | [optional]
9
+ **bot_url** | **String** | Optional; if available, the URL to the robot | [optional]
10
+ **operating_system** | **String** | Operating System of the User-Agent (e.g. Windows) | [optional]
11
+ **operating_system_cpu_platform** | **String** | The CPU platform of the User-Agent (e.g. x64) | [optional]
12
+ **operating_system_version** | **String** | The version of the operating system of the User-Agent (e.g. \"10\" for Windows 10) | [optional]
13
+ **device_type** | **String** | Device type of the User-Agent; possible values are \"DESKTOP\", \"SMARTPHONE\", \"TABLET\" | [optional]
14
+ **device_brand_name** | **String** | Brand name of the User-Agent | [optional]
15
+ **device_model** | **String** | Model name or number of the User-Agent | [optional]
16
+ **browser_name** | **String** | Name of the Browser | [optional]
17
+ **browser_version** | **String** | Version of the Browser | [optional]
18
+ **browser_engine_name** | **String** | Name of the Browser Engine | [optional]
19
+ **browser_engine_version** | **String** | Version of the Browser Engine | [optional]
20
+
21
+
@@ -0,0 +1,15 @@
1
+ # CloudmersiveValidateApiClient::ValidateIdentifierRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **input** | **String** | Text string identifier input | [optional]
7
+ **allow_whitespace** | **BOOLEAN** | True if whitespace is allowed in the identifier, false otherwise | [optional]
8
+ **allow_hyphens** | **BOOLEAN** | True if hyphens are allowd in the identifier, false otherwise | [optional]
9
+ **allow_underscore** | **BOOLEAN** | True if underscores are allowed in the identifier, false otherwise | [optional]
10
+ **allow_numbers** | **BOOLEAN** | True if numbers are allowed in the identifier, false otherwise | [optional]
11
+ **allow_periods** | **BOOLEAN** | True if periods are allowed in the identifier, false otherwise | [optional]
12
+ **max_length** | **Integer** | Optional; maximum length, if any, of the identifier | [optional]
13
+ **min_length** | **Integer** | Optional; minimum length, if any, of the identifier | [optional]
14
+
15
+
@@ -0,0 +1,9 @@
1
+ # CloudmersiveValidateApiClient::ValidateIdentifierResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **valid_identifier** | **BOOLEAN** | True if the input identifier is valid, false otherwise | [optional]
7
+ **error** | **String** | Resulting error from the identifier validation; possible errors are: \"InputIsEmpty\", \"ContainsWhitespace\", \"ContainsNumbers\", \"ContainsHyphen\", \"ContainsUnderscore\", \"ContainsPeriod\", \"TooShort\", \"TooLong\", \"ContainsSpecialCharacters\" | [optional]
8
+
9
+
@@ -0,0 +1,8 @@
1
+ # CloudmersiveValidateApiClient::ValidateUrlRequestFull
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **url** | **String** | URL to validate | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # CloudmersiveValidateApiClient::ValidateUrlRequestSyntaxOnly
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **url** | **String** | URL to validate | [optional]
7
+
8
+
@@ -0,0 +1,12 @@
1
+ # CloudmersiveValidateApiClient::ValidateUrlResponseFull
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **valid_url** | **BOOLEAN** | True if the URL has valid syntax, a valid domain, a valid endpoint, and passes virus scan checks; false otherwise | [optional]
7
+ **valid_syntax** | **BOOLEAN** | True if the URL has valid syntax, false otherwise | [optional]
8
+ **valid_domain** | **BOOLEAN** | True if the domain name is valid and exists, false otherwise | [optional]
9
+ **valid_endpoint** | **BOOLEAN** | True if the endpoint is up and responsive and passes a virus scan check, false otherwise | [optional]
10
+ **well_formed_url** | **String** | Well-formed version of the URL | [optional]
11
+
12
+
@@ -0,0 +1,9 @@
1
+ # CloudmersiveValidateApiClient::ValidateUrlResponseSyntaxOnly
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **valid_url** | **BOOLEAN** | True if the URL is valid, false otherwise | [optional]
7
+ **well_formed_url** | **String** | Well-formed version of the URL | [optional]
8
+
9
+
@@ -3,6 +3,6 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
- **vat_code** | **String** | | [optional]
6
+ **vat_code** | **String** | VAT code to lookup; example \"CZ25123891\" | [optional]
7
7
 
8
8
 
@@ -3,10 +3,10 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
- **country_code** | **String** | | [optional]
7
- **vat_number** | **String** | | [optional]
8
- **is_valid** | **BOOLEAN** | | [optional]
9
- **business_name** | **String** | | [optional]
10
- **business_address** | **String** | | [optional]
6
+ **country_code** | **String** | Two-letter country code | [optional]
7
+ **vat_number** | **String** | VAT number | [optional]
8
+ **is_valid** | **BOOLEAN** | True if the VAT code is valid, false otherwise | [optional]
9
+ **business_name** | **String** | Name of the business | [optional]
10
+ **business_address** | **String** | Business address | [optional]
11
11
 
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
 
@@ -30,18 +30,30 @@ require 'cloudmersive-validate-api-client/models/get_gender_request'
30
30
  require 'cloudmersive-validate-api-client/models/get_gender_response'
31
31
  require 'cloudmersive-validate-api-client/models/last_name_validation_request'
32
32
  require 'cloudmersive-validate-api-client/models/last_name_validation_response'
33
+ require 'cloudmersive-validate-api-client/models/parse_address_request'
34
+ require 'cloudmersive-validate-api-client/models/parse_address_response'
33
35
  require 'cloudmersive-validate-api-client/models/phone_number_validate_request'
34
36
  require 'cloudmersive-validate-api-client/models/phone_number_validation_response'
37
+ require 'cloudmersive-validate-api-client/models/user_agent_validate_request'
38
+ require 'cloudmersive-validate-api-client/models/user_agent_validate_response'
39
+ require 'cloudmersive-validate-api-client/models/validate_identifier_request'
40
+ require 'cloudmersive-validate-api-client/models/validate_identifier_response'
41
+ require 'cloudmersive-validate-api-client/models/validate_url_request_full'
42
+ require 'cloudmersive-validate-api-client/models/validate_url_request_syntax_only'
43
+ require 'cloudmersive-validate-api-client/models/validate_url_response_full'
44
+ require 'cloudmersive-validate-api-client/models/validate_url_response_syntax_only'
35
45
  require 'cloudmersive-validate-api-client/models/vat_lookup_request'
36
46
  require 'cloudmersive-validate-api-client/models/vat_lookup_response'
37
47
  require 'cloudmersive-validate-api-client/models/whois_response'
38
48
 
39
49
  # APIs
50
+ require 'cloudmersive-validate-api-client/api/address_api'
40
51
  require 'cloudmersive-validate-api-client/api/domain_api'
41
52
  require 'cloudmersive-validate-api-client/api/email_api'
42
53
  require 'cloudmersive-validate-api-client/api/ip_address_api'
43
54
  require 'cloudmersive-validate-api-client/api/name_api'
44
55
  require 'cloudmersive-validate-api-client/api/phone_number_api'
56
+ require 'cloudmersive-validate-api-client/api/user_agent_api'
45
57
  require 'cloudmersive-validate-api-client/api/vat_api'
46
58
 
47
59
  module CloudmersiveValidateApiClient
@@ -0,0 +1,78 @@
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 "uri"
14
+
15
+ module CloudmersiveValidateApiClient
16
+ class AddressApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+
23
+ # Parse an unstructured input text string into an international, formatted address
24
+ # Uses machine learning and Natural Language Processing (NLP) to handle a wide array of cases, including non-standard and unstructured address strings across a wide array of countries and address formatting norms.
25
+ # @param input Input parse request
26
+ # @param [Hash] opts the optional parameters
27
+ # @return [ParseAddressResponse]
28
+ def address_parse_string(input, opts = {})
29
+ data, _status_code, _headers = address_parse_string_with_http_info(input, opts)
30
+ return data
31
+ end
32
+
33
+ # Parse an unstructured input text string into an international, formatted address
34
+ # Uses machine learning and Natural Language Processing (NLP) to handle a wide array of cases, including non-standard and unstructured address strings across a wide array of countries and address formatting norms.
35
+ # @param input Input parse request
36
+ # @param [Hash] opts the optional parameters
37
+ # @return [Array<(ParseAddressResponse, Fixnum, Hash)>] ParseAddressResponse data, response status code and response headers
38
+ def address_parse_string_with_http_info(input, opts = {})
39
+ if @api_client.config.debugging
40
+ @api_client.config.logger.debug "Calling API: AddressApi.address_parse_string ..."
41
+ end
42
+ # verify the required parameter 'input' is set
43
+ if @api_client.config.client_side_validation && input.nil?
44
+ fail ArgumentError, "Missing the required parameter 'input' when calling AddressApi.address_parse_string"
45
+ end
46
+ # resource path
47
+ local_var_path = "/validate/address/parse"
48
+
49
+ # query parameters
50
+ query_params = {}
51
+
52
+ # header parameters
53
+ header_params = {}
54
+ # HTTP header 'Accept' (if needed)
55
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
56
+ # HTTP header 'Content-Type'
57
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'text/json', 'application/xml', 'text/xml', 'application/x-www-form-urlencoded'])
58
+
59
+ # form parameters
60
+ form_params = {}
61
+
62
+ # http body (model)
63
+ post_body = @api_client.object_to_http_body(input)
64
+ auth_names = ['Apikey']
65
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
66
+ :header_params => header_params,
67
+ :query_params => query_params,
68
+ :form_params => form_params,
69
+ :body => post_body,
70
+ :auth_names => auth_names,
71
+ :return_type => 'ParseAddressResponse')
72
+ if @api_client.config.debugging
73
+ @api_client.config.logger.debug "API called: AddressApi#address_parse_string\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
74
+ end
75
+ return data, status_code, headers
76
+ end
77
+ end
78
+ 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
 
@@ -129,5 +129,115 @@ module CloudmersiveValidateApiClient
129
129
  end
130
130
  return data, status_code, headers
131
131
  end
132
+
133
+ # Validate a URL fully
134
+ # Validate whether a URL is syntactically valid (does not check endpoint for validity), whether it exists, and whether the endpoint is up and passes virus scan checks. Accepts various types of input and produces a well-formed URL as output.
135
+ # @param request
136
+ # @param [Hash] opts the optional parameters
137
+ # @return [ValidateUrlResponseFull]
138
+ def domain_url_full(request, opts = {})
139
+ data, _status_code, _headers = domain_url_full_with_http_info(request, opts)
140
+ return data
141
+ end
142
+
143
+ # Validate a URL fully
144
+ # Validate whether a URL is syntactically valid (does not check endpoint for validity), whether it exists, and whether the endpoint is up and passes virus scan checks. Accepts various types of input and produces a well-formed URL as output.
145
+ # @param request
146
+ # @param [Hash] opts the optional parameters
147
+ # @return [Array<(ValidateUrlResponseFull, Fixnum, Hash)>] ValidateUrlResponseFull data, response status code and response headers
148
+ def domain_url_full_with_http_info(request, opts = {})
149
+ if @api_client.config.debugging
150
+ @api_client.config.logger.debug "Calling API: DomainApi.domain_url_full ..."
151
+ end
152
+ # verify the required parameter 'request' is set
153
+ if @api_client.config.client_side_validation && request.nil?
154
+ fail ArgumentError, "Missing the required parameter 'request' when calling DomainApi.domain_url_full"
155
+ end
156
+ # resource path
157
+ local_var_path = "/validate/domain/url/full"
158
+
159
+ # query parameters
160
+ query_params = {}
161
+
162
+ # header parameters
163
+ header_params = {}
164
+ # HTTP header 'Accept' (if needed)
165
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
166
+ # HTTP header 'Content-Type'
167
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'text/json', 'application/xml', 'text/xml', 'application/x-www-form-urlencoded'])
168
+
169
+ # form parameters
170
+ form_params = {}
171
+
172
+ # http body (model)
173
+ post_body = @api_client.object_to_http_body(request)
174
+ auth_names = ['Apikey']
175
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
176
+ :header_params => header_params,
177
+ :query_params => query_params,
178
+ :form_params => form_params,
179
+ :body => post_body,
180
+ :auth_names => auth_names,
181
+ :return_type => 'ValidateUrlResponseFull')
182
+ if @api_client.config.debugging
183
+ @api_client.config.logger.debug "API called: DomainApi#domain_url_full\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
184
+ end
185
+ return data, status_code, headers
186
+ end
187
+
188
+ # Validate a URL syntactically
189
+ # Validate whether a URL is syntactically valid (does not check endpoint for validity). Accepts various types of input and produces a well-formed URL as output.
190
+ # @param request
191
+ # @param [Hash] opts the optional parameters
192
+ # @return [ValidateUrlResponseSyntaxOnly]
193
+ def domain_url_syntax_only(request, opts = {})
194
+ data, _status_code, _headers = domain_url_syntax_only_with_http_info(request, opts)
195
+ return data
196
+ end
197
+
198
+ # Validate a URL syntactically
199
+ # Validate whether a URL is syntactically valid (does not check endpoint for validity). Accepts various types of input and produces a well-formed URL as output.
200
+ # @param request
201
+ # @param [Hash] opts the optional parameters
202
+ # @return [Array<(ValidateUrlResponseSyntaxOnly, Fixnum, Hash)>] ValidateUrlResponseSyntaxOnly data, response status code and response headers
203
+ def domain_url_syntax_only_with_http_info(request, opts = {})
204
+ if @api_client.config.debugging
205
+ @api_client.config.logger.debug "Calling API: DomainApi.domain_url_syntax_only ..."
206
+ end
207
+ # verify the required parameter 'request' is set
208
+ if @api_client.config.client_side_validation && request.nil?
209
+ fail ArgumentError, "Missing the required parameter 'request' when calling DomainApi.domain_url_syntax_only"
210
+ end
211
+ # resource path
212
+ local_var_path = "/validate/domain/url/syntax-only"
213
+
214
+ # query parameters
215
+ query_params = {}
216
+
217
+ # header parameters
218
+ header_params = {}
219
+ # HTTP header 'Accept' (if needed)
220
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
221
+ # HTTP header 'Content-Type'
222
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'text/json', 'application/xml', 'text/xml', 'application/x-www-form-urlencoded'])
223
+
224
+ # form parameters
225
+ form_params = {}
226
+
227
+ # http body (model)
228
+ post_body = @api_client.object_to_http_body(request)
229
+ auth_names = ['Apikey']
230
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
231
+ :header_params => header_params,
232
+ :query_params => query_params,
233
+ :form_params => form_params,
234
+ :body => post_body,
235
+ :auth_names => auth_names,
236
+ :return_type => 'ValidateUrlResponseSyntaxOnly')
237
+ if @api_client.config.debugging
238
+ @api_client.config.logger.debug "API called: DomainApi#domain_url_syntax_only\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
239
+ end
240
+ return data, status_code, headers
241
+ end
132
242
  end
133
243
  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
 
@@ -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
 
@@ -75,6 +75,61 @@ module CloudmersiveValidateApiClient
75
75
  return data, status_code, headers
76
76
  end
77
77
 
78
+ # Validate a code identifier
79
+ # Determines if the input name is a valid technical / code identifier. Configure input rules such as whether whitespace, hyphens, underscores, etc. are allowed. For example, a valid identifier might be \"helloWorld\" but not \"hello*World\".
80
+ # @param input Identifier validation request information
81
+ # @param [Hash] opts the optional parameters
82
+ # @return [ValidateIdentifierResponse]
83
+ def name_identifier(input, opts = {})
84
+ data, _status_code, _headers = name_identifier_with_http_info(input, opts)
85
+ return data
86
+ end
87
+
88
+ # Validate a code identifier
89
+ # Determines if the input name is a valid technical / code identifier. Configure input rules such as whether whitespace, hyphens, underscores, etc. are allowed. For example, a valid identifier might be \&quot;helloWorld\&quot; but not \&quot;hello*World\&quot;.
90
+ # @param input Identifier validation request information
91
+ # @param [Hash] opts the optional parameters
92
+ # @return [Array<(ValidateIdentifierResponse, Fixnum, Hash)>] ValidateIdentifierResponse data, response status code and response headers
93
+ def name_identifier_with_http_info(input, opts = {})
94
+ if @api_client.config.debugging
95
+ @api_client.config.logger.debug "Calling API: NameApi.name_identifier ..."
96
+ end
97
+ # verify the required parameter 'input' is set
98
+ if @api_client.config.client_side_validation && input.nil?
99
+ fail ArgumentError, "Missing the required parameter 'input' when calling NameApi.name_identifier"
100
+ end
101
+ # resource path
102
+ local_var_path = "/validate/name/identifier"
103
+
104
+ # query parameters
105
+ query_params = {}
106
+
107
+ # header parameters
108
+ header_params = {}
109
+ # HTTP header 'Accept' (if needed)
110
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
111
+ # HTTP header 'Content-Type'
112
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'text/json', 'application/xml', 'text/xml', 'application/x-www-form-urlencoded'])
113
+
114
+ # form parameters
115
+ form_params = {}
116
+
117
+ # http body (model)
118
+ post_body = @api_client.object_to_http_body(input)
119
+ auth_names = ['Apikey']
120
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
121
+ :header_params => header_params,
122
+ :query_params => query_params,
123
+ :form_params => form_params,
124
+ :body => post_body,
125
+ :auth_names => auth_names,
126
+ :return_type => 'ValidateIdentifierResponse')
127
+ if @api_client.config.debugging
128
+ @api_client.config.logger.debug "API called: NameApi#name_identifier\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
129
+ end
130
+ return data, status_code, headers
131
+ end
132
+
78
133
  # Validate a first name
79
134
  # Determines if a string is a valid first name (given name)
80
135
  # @param input Validation request information