cloudmersive-validate-api-client 2.1.2 → 2.1.7
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 +4 -4
- data/README.md +27 -4
- data/docs/BotCheckResponse.md +8 -0
- data/docs/DomainApi.md +275 -0
- data/docs/IPAddressApi.md +165 -0
- data/docs/IPIntelligenceResponse.md +16 -0
- data/docs/IPReverseDNSLookupResponse.md +9 -0
- data/docs/PhishingCheckRequest.md +8 -0
- data/docs/PhishingCheckResponse.md +9 -0
- data/docs/TextInputApi.md +55 -0
- data/docs/UrlSafetyCheckRequestFull.md +8 -0
- data/docs/UrlSafetyCheckResponseFull.md +9 -0
- data/docs/UrlSsrfRequestBatch.md +8 -0
- data/docs/UrlSsrfRequestFull.md +9 -0
- data/docs/UrlSsrfResponseBatch.md +8 -0
- data/docs/UrlSsrfResponseFull.md +9 -0
- data/docs/ValidateUrlResponseSyntaxOnly.md +1 -0
- data/docs/XssProtectionBatchRequest.md +8 -0
- data/docs/XssProtectionBatchResponse.md +8 -0
- data/docs/XssProtectionRequestItem.md +8 -0
- data/lib/cloudmersive-validate-api-client.rb +14 -0
- data/lib/cloudmersive-validate-api-client/api/domain_api.rb +270 -0
- data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +162 -0
- data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +54 -0
- data/lib/cloudmersive-validate-api-client/models/bot_check_response.rb +186 -0
- data/lib/cloudmersive-validate-api-client/models/geolocate_response.rb +1 -1
- data/lib/cloudmersive-validate-api-client/models/ip_intelligence_response.rb +266 -0
- data/lib/cloudmersive-validate-api-client/models/ip_reverse_dns_lookup_response.rb +196 -0
- data/lib/cloudmersive-validate-api-client/models/phishing_check_request.rb +186 -0
- data/lib/cloudmersive-validate-api-client/models/phishing_check_response.rb +196 -0
- data/lib/cloudmersive-validate-api-client/models/url_safety_check_request_full.rb +186 -0
- data/lib/cloudmersive-validate-api-client/models/url_safety_check_response_full.rb +196 -0
- data/lib/cloudmersive-validate-api-client/models/url_ssrf_request_batch.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/url_ssrf_request_full.rb +198 -0
- data/lib/cloudmersive-validate-api-client/models/url_ssrf_response_batch.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/url_ssrf_response_full.rb +196 -0
- data/lib/cloudmersive-validate-api-client/models/validate_url_response_syntax_only.rb +14 -4
- data/lib/cloudmersive-validate-api-client/models/xss_protection_batch_request.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/xss_protection_batch_response.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/xss_protection_request_item.rb +186 -0
- data/lib/cloudmersive-validate-api-client/version.rb +1 -1
- data/spec/api/domain_api_spec.rb +60 -0
- data/spec/api/ip_address_api_spec.rb +36 -0
- data/spec/api/text_input_api_spec.rb +12 -0
- data/spec/models/bot_check_response_spec.rb +41 -0
- data/spec/models/ip_intelligence_response_spec.rb +89 -0
- data/spec/models/ip_reverse_dns_lookup_response_spec.rb +47 -0
- data/spec/models/phishing_check_request_spec.rb +41 -0
- data/spec/models/phishing_check_response_spec.rb +47 -0
- data/spec/models/url_safety_check_request_full_spec.rb +41 -0
- data/spec/models/url_safety_check_response_full_spec.rb +47 -0
- data/spec/models/url_ssrf_request_batch_spec.rb +41 -0
- data/spec/models/url_ssrf_request_full_spec.rb +47 -0
- data/spec/models/url_ssrf_response_batch_spec.rb +41 -0
- data/spec/models/url_ssrf_response_full_spec.rb +47 -0
- data/spec/models/validate_url_response_syntax_only_spec.rb +6 -0
- data/spec/models/xss_protection_batch_request_spec.rb +41 -0
- data/spec/models/xss_protection_batch_response_spec.rb +41 -0
- data/spec/models/xss_protection_request_item_spec.rb +41 -0
- metadata +44 -2
@@ -0,0 +1,47 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::UrlSafetyCheckResponseFull
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UrlSafetyCheckResponseFull' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::UrlSafetyCheckResponseFull.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UrlSafetyCheckResponseFull' do
|
31
|
+
it 'should create an instance of UrlSafetyCheckResponseFull' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSafetyCheckResponseFull)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "clean_url"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "threat_type"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::UrlSsrfRequestBatch
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UrlSsrfRequestBatch' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::UrlSsrfRequestBatch.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UrlSsrfRequestBatch' do
|
31
|
+
it 'should create an instance of UrlSsrfRequestBatch' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSsrfRequestBatch)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "input_items"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::UrlSsrfRequestFull
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UrlSsrfRequestFull' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::UrlSsrfRequestFull.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UrlSsrfRequestFull' do
|
31
|
+
it 'should create an instance of UrlSsrfRequestFull' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSsrfRequestFull)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "url"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "blocked_domains"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::UrlSsrfResponseBatch
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UrlSsrfResponseBatch' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::UrlSsrfResponseBatch.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UrlSsrfResponseBatch' do
|
31
|
+
it 'should create an instance of UrlSsrfResponseBatch' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSsrfResponseBatch)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "output_items"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::UrlSsrfResponseFull
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UrlSsrfResponseFull' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::UrlSsrfResponseFull.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UrlSsrfResponseFull' do
|
31
|
+
it 'should create an instance of UrlSsrfResponseFull' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSsrfResponseFull)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "clean_url"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "threat_level"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -44,4 +44,10 @@ describe 'ValidateUrlResponseSyntaxOnly' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "top_level_domain_name"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
end
|
@@ -0,0 +1,41 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::XssProtectionBatchRequest
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'XssProtectionBatchRequest' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::XssProtectionBatchRequest.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of XssProtectionBatchRequest' do
|
31
|
+
it 'should create an instance of XssProtectionBatchRequest' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XssProtectionBatchRequest)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "request_items"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::XssProtectionBatchResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'XssProtectionBatchResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::XssProtectionBatchResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of XssProtectionBatchResponse' do
|
31
|
+
it 'should create an instance of XssProtectionBatchResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XssProtectionBatchResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "result_items"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveValidateApiClient::XssProtectionRequestItem
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'XssProtectionRequestItem' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveValidateApiClient::XssProtectionRequestItem.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of XssProtectionRequestItem' do
|
31
|
+
it 'should create an instance of XssProtectionRequestItem' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XssProtectionRequestItem)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "input_text"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudmersive-validate-api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cloudmersive
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -206,6 +206,7 @@ files:
|
|
206
206
|
- "./docs/AddressApi.md"
|
207
207
|
- "./docs/AddressGetServersResponse.md"
|
208
208
|
- "./docs/AddressVerifySyntaxOnlyResponse.md"
|
209
|
+
- "./docs/BotCheckResponse.md"
|
209
210
|
- "./docs/CheckResponse.md"
|
210
211
|
- "./docs/CountryDetails.md"
|
211
212
|
- "./docs/CountryListResult.md"
|
@@ -230,6 +231,8 @@ files:
|
|
230
231
|
- "./docs/GetTimezonesRequest.md"
|
231
232
|
- "./docs/GetTimezonesResponse.md"
|
232
233
|
- "./docs/IPAddressApi.md"
|
234
|
+
- "./docs/IPIntelligenceResponse.md"
|
235
|
+
- "./docs/IPReverseDNSLookupResponse.md"
|
233
236
|
- "./docs/IPThreatResponse.md"
|
234
237
|
- "./docs/LastNameValidationRequest.md"
|
235
238
|
- "./docs/LastNameValidationResponse.md"
|
@@ -240,6 +243,8 @@ files:
|
|
240
243
|
- "./docs/NormalizeAddressResponse.md"
|
241
244
|
- "./docs/ParseAddressRequest.md"
|
242
245
|
- "./docs/ParseAddressResponse.md"
|
246
|
+
- "./docs/PhishingCheckRequest.md"
|
247
|
+
- "./docs/PhishingCheckResponse.md"
|
243
248
|
- "./docs/PhoneNumberApi.md"
|
244
249
|
- "./docs/PhoneNumberValidateRequest.md"
|
245
250
|
- "./docs/PhoneNumberValidationResponse.md"
|
@@ -250,6 +255,12 @@ files:
|
|
250
255
|
- "./docs/TextInputApi.md"
|
251
256
|
- "./docs/Timezone.md"
|
252
257
|
- "./docs/TorNodeResponse.md"
|
258
|
+
- "./docs/UrlSafetyCheckRequestFull.md"
|
259
|
+
- "./docs/UrlSafetyCheckResponseFull.md"
|
260
|
+
- "./docs/UrlSsrfRequestBatch.md"
|
261
|
+
- "./docs/UrlSsrfRequestFull.md"
|
262
|
+
- "./docs/UrlSsrfResponseBatch.md"
|
263
|
+
- "./docs/UrlSsrfResponseFull.md"
|
253
264
|
- "./docs/UserAgentApi.md"
|
254
265
|
- "./docs/UserAgentValidateRequest.md"
|
255
266
|
- "./docs/UserAgentValidateResponse.md"
|
@@ -273,6 +284,9 @@ files:
|
|
273
284
|
- "./docs/VatLookupRequest.md"
|
274
285
|
- "./docs/VatLookupResponse.md"
|
275
286
|
- "./docs/WhoisResponse.md"
|
287
|
+
- "./docs/XssProtectionBatchRequest.md"
|
288
|
+
- "./docs/XssProtectionBatchResponse.md"
|
289
|
+
- "./docs/XssProtectionRequestItem.md"
|
276
290
|
- "./docs/XssProtectionResult.md"
|
277
291
|
- "./git_push.sh"
|
278
292
|
- "./lib/cloudmersive-validate-api-client.rb"
|
@@ -292,6 +306,7 @@ files:
|
|
292
306
|
- "./lib/cloudmersive-validate-api-client/configuration.rb"
|
293
307
|
- "./lib/cloudmersive-validate-api-client/models/address_get_servers_response.rb"
|
294
308
|
- "./lib/cloudmersive-validate-api-client/models/address_verify_syntax_only_response.rb"
|
309
|
+
- "./lib/cloudmersive-validate-api-client/models/bot_check_response.rb"
|
295
310
|
- "./lib/cloudmersive-validate-api-client/models/check_response.rb"
|
296
311
|
- "./lib/cloudmersive-validate-api-client/models/country_details.rb"
|
297
312
|
- "./lib/cloudmersive-validate-api-client/models/country_list_result.rb"
|
@@ -312,6 +327,8 @@ files:
|
|
312
327
|
- "./lib/cloudmersive-validate-api-client/models/get_public_holidays_request.rb"
|
313
328
|
- "./lib/cloudmersive-validate-api-client/models/get_timezones_request.rb"
|
314
329
|
- "./lib/cloudmersive-validate-api-client/models/get_timezones_response.rb"
|
330
|
+
- "./lib/cloudmersive-validate-api-client/models/ip_intelligence_response.rb"
|
331
|
+
- "./lib/cloudmersive-validate-api-client/models/ip_reverse_dns_lookup_response.rb"
|
315
332
|
- "./lib/cloudmersive-validate-api-client/models/ip_threat_response.rb"
|
316
333
|
- "./lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb"
|
317
334
|
- "./lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb"
|
@@ -320,6 +337,8 @@ files:
|
|
320
337
|
- "./lib/cloudmersive-validate-api-client/models/normalize_address_response.rb"
|
321
338
|
- "./lib/cloudmersive-validate-api-client/models/parse_address_request.rb"
|
322
339
|
- "./lib/cloudmersive-validate-api-client/models/parse_address_response.rb"
|
340
|
+
- "./lib/cloudmersive-validate-api-client/models/phishing_check_request.rb"
|
341
|
+
- "./lib/cloudmersive-validate-api-client/models/phishing_check_response.rb"
|
323
342
|
- "./lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb"
|
324
343
|
- "./lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb"
|
325
344
|
- "./lib/cloudmersive-validate-api-client/models/public_holiday_occurrence.rb"
|
@@ -328,6 +347,12 @@ files:
|
|
328
347
|
- "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb"
|
329
348
|
- "./lib/cloudmersive-validate-api-client/models/timezone.rb"
|
330
349
|
- "./lib/cloudmersive-validate-api-client/models/tor_node_response.rb"
|
350
|
+
- "./lib/cloudmersive-validate-api-client/models/url_safety_check_request_full.rb"
|
351
|
+
- "./lib/cloudmersive-validate-api-client/models/url_safety_check_response_full.rb"
|
352
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_request_batch.rb"
|
353
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_request_full.rb"
|
354
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_response_batch.rb"
|
355
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_response_full.rb"
|
331
356
|
- "./lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb"
|
332
357
|
- "./lib/cloudmersive-validate-api-client/models/user_agent_validate_response.rb"
|
333
358
|
- "./lib/cloudmersive-validate-api-client/models/validate_address_request.rb"
|
@@ -349,6 +374,9 @@ files:
|
|
349
374
|
- "./lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb"
|
350
375
|
- "./lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb"
|
351
376
|
- "./lib/cloudmersive-validate-api-client/models/whois_response.rb"
|
377
|
+
- "./lib/cloudmersive-validate-api-client/models/xss_protection_batch_request.rb"
|
378
|
+
- "./lib/cloudmersive-validate-api-client/models/xss_protection_batch_response.rb"
|
379
|
+
- "./lib/cloudmersive-validate-api-client/models/xss_protection_request_item.rb"
|
352
380
|
- "./lib/cloudmersive-validate-api-client/models/xss_protection_result.rb"
|
353
381
|
- "./lib/cloudmersive-validate-api-client/version.rb"
|
354
382
|
- "./spec/api/address_api_spec.rb"
|
@@ -366,6 +394,7 @@ files:
|
|
366
394
|
- "./spec/configuration_spec.rb"
|
367
395
|
- "./spec/models/address_get_servers_response_spec.rb"
|
368
396
|
- "./spec/models/address_verify_syntax_only_response_spec.rb"
|
397
|
+
- "./spec/models/bot_check_response_spec.rb"
|
369
398
|
- "./spec/models/check_response_spec.rb"
|
370
399
|
- "./spec/models/country_details_spec.rb"
|
371
400
|
- "./spec/models/country_list_result_spec.rb"
|
@@ -386,6 +415,8 @@ files:
|
|
386
415
|
- "./spec/models/get_public_holidays_request_spec.rb"
|
387
416
|
- "./spec/models/get_timezones_request_spec.rb"
|
388
417
|
- "./spec/models/get_timezones_response_spec.rb"
|
418
|
+
- "./spec/models/ip_intelligence_response_spec.rb"
|
419
|
+
- "./spec/models/ip_reverse_dns_lookup_response_spec.rb"
|
389
420
|
- "./spec/models/ip_threat_response_spec.rb"
|
390
421
|
- "./spec/models/last_name_validation_request_spec.rb"
|
391
422
|
- "./spec/models/last_name_validation_response_spec.rb"
|
@@ -394,6 +425,8 @@ files:
|
|
394
425
|
- "./spec/models/normalize_address_response_spec.rb"
|
395
426
|
- "./spec/models/parse_address_request_spec.rb"
|
396
427
|
- "./spec/models/parse_address_response_spec.rb"
|
428
|
+
- "./spec/models/phishing_check_request_spec.rb"
|
429
|
+
- "./spec/models/phishing_check_response_spec.rb"
|
397
430
|
- "./spec/models/phone_number_validate_request_spec.rb"
|
398
431
|
- "./spec/models/phone_number_validation_response_spec.rb"
|
399
432
|
- "./spec/models/public_holiday_occurrence_spec.rb"
|
@@ -402,6 +435,12 @@ files:
|
|
402
435
|
- "./spec/models/reverse_geocode_address_response_spec.rb"
|
403
436
|
- "./spec/models/timezone_spec.rb"
|
404
437
|
- "./spec/models/tor_node_response_spec.rb"
|
438
|
+
- "./spec/models/url_safety_check_request_full_spec.rb"
|
439
|
+
- "./spec/models/url_safety_check_response_full_spec.rb"
|
440
|
+
- "./spec/models/url_ssrf_request_batch_spec.rb"
|
441
|
+
- "./spec/models/url_ssrf_request_full_spec.rb"
|
442
|
+
- "./spec/models/url_ssrf_response_batch_spec.rb"
|
443
|
+
- "./spec/models/url_ssrf_response_full_spec.rb"
|
405
444
|
- "./spec/models/user_agent_validate_request_spec.rb"
|
406
445
|
- "./spec/models/user_agent_validate_response_spec.rb"
|
407
446
|
- "./spec/models/validate_address_request_spec.rb"
|
@@ -423,6 +462,9 @@ files:
|
|
423
462
|
- "./spec/models/vat_lookup_request_spec.rb"
|
424
463
|
- "./spec/models/vat_lookup_response_spec.rb"
|
425
464
|
- "./spec/models/whois_response_spec.rb"
|
465
|
+
- "./spec/models/xss_protection_batch_request_spec.rb"
|
466
|
+
- "./spec/models/xss_protection_batch_response_spec.rb"
|
467
|
+
- "./spec/models/xss_protection_request_item_spec.rb"
|
426
468
|
- "./spec/models/xss_protection_result_spec.rb"
|
427
469
|
- "./spec/spec_helper.rb"
|
428
470
|
homepage: https://www.cloudmersive.com/validate-api
|