cloudmersive-validate-api-client 2.1.5 → 2.2.2
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 +31 -4
- data/docs/DomainApi.md +330 -0
- data/docs/IsAdminPathResponse.md +9 -0
- data/docs/PhishingCheckRequest.md +8 -0
- data/docs/PhishingCheckResponse.md +9 -0
- data/docs/SqlInjectionCheckBatchRequest.md +9 -0
- data/docs/SqlInjectionCheckBatchResponse.md +8 -0
- data/docs/SqlInjectionCheckRequestItem.md +8 -0
- data/docs/SqlInjectionDetectionResult.md +10 -0
- data/docs/TextInputApi.md +233 -1
- 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/XxeDetectionBatchRequest.md +8 -0
- data/docs/XxeDetectionBatchResponse.md +8 -0
- data/docs/XxeDetectionRequestItem.md +11 -0
- data/docs/XxeDetectionResult.md +9 -0
- data/lib/cloudmersive-validate-api-client.rb +17 -0
- data/lib/cloudmersive-validate-api-client/api/domain_api.rb +324 -0
- data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +230 -2
- data/lib/cloudmersive-validate-api-client/models/is_admin_path_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/sql_injection_check_batch_request.rb +198 -0
- data/lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_response.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/sql_injection_check_request_item.rb +186 -0
- data/lib/cloudmersive-validate-api-client/models/sql_injection_detection_result.rb +206 -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/xxe_detection_batch_request.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/xxe_detection_batch_response.rb +188 -0
- data/lib/cloudmersive-validate-api-client/models/xxe_detection_request_item.rb +220 -0
- data/lib/cloudmersive-validate-api-client/models/xxe_detection_result.rb +196 -0
- data/lib/cloudmersive-validate-api-client/version.rb +1 -1
- data/spec/api/domain_api_spec.rb +72 -0
- data/spec/api/text_input_api_spec.rb +53 -1
- data/spec/models/is_admin_path_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/sql_injection_check_batch_request_spec.rb +47 -0
- data/spec/models/sql_injection_check_batch_response_spec.rb +41 -0
- data/spec/models/sql_injection_check_request_item_spec.rb +41 -0
- data/spec/models/sql_injection_detection_result_spec.rb +53 -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/xxe_detection_batch_request_spec.rb +41 -0
- data/spec/models/xxe_detection_batch_response_spec.rb +41 -0
- data/spec/models/xxe_detection_request_item_spec.rb +59 -0
- data/spec/models/xxe_detection_result_spec.rb +47 -0
- metadata +53 -2
|
@@ -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::XxeDetectionBatchRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'XxeDetectionBatchRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveValidateApiClient::XxeDetectionBatchRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of XxeDetectionBatchRequest' do
|
|
31
|
+
it 'should create an instance of XxeDetectionBatchRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionBatchRequest)
|
|
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::XxeDetectionBatchResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'XxeDetectionBatchResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveValidateApiClient::XxeDetectionBatchResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of XxeDetectionBatchResponse' do
|
|
31
|
+
it 'should create an instance of XxeDetectionBatchResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionBatchResponse)
|
|
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,59 @@
|
|
|
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::XxeDetectionRequestItem
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'XxeDetectionRequestItem' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveValidateApiClient::XxeDetectionRequestItem.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of XxeDetectionRequestItem' do
|
|
31
|
+
it 'should create an instance of XxeDetectionRequestItem' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionRequestItem)
|
|
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
|
+
describe 'test attribute "allow_internet_urls"' 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
|
+
describe 'test attribute "known_safe_urls"' 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
|
+
|
|
53
|
+
describe 'test attribute "known_unsafe_urls"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
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::XxeDetectionResult
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'XxeDetectionResult' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveValidateApiClient::XxeDetectionResult.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of XxeDetectionResult' do
|
|
31
|
+
it 'should create an instance of XxeDetectionResult' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionResult)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "successful"' 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 "contained_xxe"' 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
|
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.
|
|
4
|
+
version: 2.2.2
|
|
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-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -234,6 +234,7 @@ files:
|
|
|
234
234
|
- "./docs/IPIntelligenceResponse.md"
|
|
235
235
|
- "./docs/IPReverseDNSLookupResponse.md"
|
|
236
236
|
- "./docs/IPThreatResponse.md"
|
|
237
|
+
- "./docs/IsAdminPathResponse.md"
|
|
237
238
|
- "./docs/LastNameValidationRequest.md"
|
|
238
239
|
- "./docs/LastNameValidationResponse.md"
|
|
239
240
|
- "./docs/LeadEnrichmentApi.md"
|
|
@@ -243,6 +244,8 @@ files:
|
|
|
243
244
|
- "./docs/NormalizeAddressResponse.md"
|
|
244
245
|
- "./docs/ParseAddressRequest.md"
|
|
245
246
|
- "./docs/ParseAddressResponse.md"
|
|
247
|
+
- "./docs/PhishingCheckRequest.md"
|
|
248
|
+
- "./docs/PhishingCheckResponse.md"
|
|
246
249
|
- "./docs/PhoneNumberApi.md"
|
|
247
250
|
- "./docs/PhoneNumberValidateRequest.md"
|
|
248
251
|
- "./docs/PhoneNumberValidationResponse.md"
|
|
@@ -250,9 +253,19 @@ files:
|
|
|
250
253
|
- "./docs/PublicHolidaysResponse.md"
|
|
251
254
|
- "./docs/ReverseGeocodeAddressRequest.md"
|
|
252
255
|
- "./docs/ReverseGeocodeAddressResponse.md"
|
|
256
|
+
- "./docs/SqlInjectionCheckBatchRequest.md"
|
|
257
|
+
- "./docs/SqlInjectionCheckBatchResponse.md"
|
|
258
|
+
- "./docs/SqlInjectionCheckRequestItem.md"
|
|
259
|
+
- "./docs/SqlInjectionDetectionResult.md"
|
|
253
260
|
- "./docs/TextInputApi.md"
|
|
254
261
|
- "./docs/Timezone.md"
|
|
255
262
|
- "./docs/TorNodeResponse.md"
|
|
263
|
+
- "./docs/UrlSafetyCheckRequestFull.md"
|
|
264
|
+
- "./docs/UrlSafetyCheckResponseFull.md"
|
|
265
|
+
- "./docs/UrlSsrfRequestBatch.md"
|
|
266
|
+
- "./docs/UrlSsrfRequestFull.md"
|
|
267
|
+
- "./docs/UrlSsrfResponseBatch.md"
|
|
268
|
+
- "./docs/UrlSsrfResponseFull.md"
|
|
256
269
|
- "./docs/UserAgentApi.md"
|
|
257
270
|
- "./docs/UserAgentValidateRequest.md"
|
|
258
271
|
- "./docs/UserAgentValidateResponse.md"
|
|
@@ -280,6 +293,10 @@ files:
|
|
|
280
293
|
- "./docs/XssProtectionBatchResponse.md"
|
|
281
294
|
- "./docs/XssProtectionRequestItem.md"
|
|
282
295
|
- "./docs/XssProtectionResult.md"
|
|
296
|
+
- "./docs/XxeDetectionBatchRequest.md"
|
|
297
|
+
- "./docs/XxeDetectionBatchResponse.md"
|
|
298
|
+
- "./docs/XxeDetectionRequestItem.md"
|
|
299
|
+
- "./docs/XxeDetectionResult.md"
|
|
283
300
|
- "./git_push.sh"
|
|
284
301
|
- "./lib/cloudmersive-validate-api-client.rb"
|
|
285
302
|
- "./lib/cloudmersive-validate-api-client/api/address_api.rb"
|
|
@@ -322,6 +339,7 @@ files:
|
|
|
322
339
|
- "./lib/cloudmersive-validate-api-client/models/ip_intelligence_response.rb"
|
|
323
340
|
- "./lib/cloudmersive-validate-api-client/models/ip_reverse_dns_lookup_response.rb"
|
|
324
341
|
- "./lib/cloudmersive-validate-api-client/models/ip_threat_response.rb"
|
|
342
|
+
- "./lib/cloudmersive-validate-api-client/models/is_admin_path_response.rb"
|
|
325
343
|
- "./lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb"
|
|
326
344
|
- "./lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb"
|
|
327
345
|
- "./lib/cloudmersive-validate-api-client/models/lead_enrichment_request.rb"
|
|
@@ -329,14 +347,26 @@ files:
|
|
|
329
347
|
- "./lib/cloudmersive-validate-api-client/models/normalize_address_response.rb"
|
|
330
348
|
- "./lib/cloudmersive-validate-api-client/models/parse_address_request.rb"
|
|
331
349
|
- "./lib/cloudmersive-validate-api-client/models/parse_address_response.rb"
|
|
350
|
+
- "./lib/cloudmersive-validate-api-client/models/phishing_check_request.rb"
|
|
351
|
+
- "./lib/cloudmersive-validate-api-client/models/phishing_check_response.rb"
|
|
332
352
|
- "./lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb"
|
|
333
353
|
- "./lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb"
|
|
334
354
|
- "./lib/cloudmersive-validate-api-client/models/public_holiday_occurrence.rb"
|
|
335
355
|
- "./lib/cloudmersive-validate-api-client/models/public_holidays_response.rb"
|
|
336
356
|
- "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb"
|
|
337
357
|
- "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb"
|
|
358
|
+
- "./lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_request.rb"
|
|
359
|
+
- "./lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_response.rb"
|
|
360
|
+
- "./lib/cloudmersive-validate-api-client/models/sql_injection_check_request_item.rb"
|
|
361
|
+
- "./lib/cloudmersive-validate-api-client/models/sql_injection_detection_result.rb"
|
|
338
362
|
- "./lib/cloudmersive-validate-api-client/models/timezone.rb"
|
|
339
363
|
- "./lib/cloudmersive-validate-api-client/models/tor_node_response.rb"
|
|
364
|
+
- "./lib/cloudmersive-validate-api-client/models/url_safety_check_request_full.rb"
|
|
365
|
+
- "./lib/cloudmersive-validate-api-client/models/url_safety_check_response_full.rb"
|
|
366
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_request_batch.rb"
|
|
367
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_request_full.rb"
|
|
368
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_response_batch.rb"
|
|
369
|
+
- "./lib/cloudmersive-validate-api-client/models/url_ssrf_response_full.rb"
|
|
340
370
|
- "./lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb"
|
|
341
371
|
- "./lib/cloudmersive-validate-api-client/models/user_agent_validate_response.rb"
|
|
342
372
|
- "./lib/cloudmersive-validate-api-client/models/validate_address_request.rb"
|
|
@@ -362,6 +392,10 @@ files:
|
|
|
362
392
|
- "./lib/cloudmersive-validate-api-client/models/xss_protection_batch_response.rb"
|
|
363
393
|
- "./lib/cloudmersive-validate-api-client/models/xss_protection_request_item.rb"
|
|
364
394
|
- "./lib/cloudmersive-validate-api-client/models/xss_protection_result.rb"
|
|
395
|
+
- "./lib/cloudmersive-validate-api-client/models/xxe_detection_batch_request.rb"
|
|
396
|
+
- "./lib/cloudmersive-validate-api-client/models/xxe_detection_batch_response.rb"
|
|
397
|
+
- "./lib/cloudmersive-validate-api-client/models/xxe_detection_request_item.rb"
|
|
398
|
+
- "./lib/cloudmersive-validate-api-client/models/xxe_detection_result.rb"
|
|
365
399
|
- "./lib/cloudmersive-validate-api-client/version.rb"
|
|
366
400
|
- "./spec/api/address_api_spec.rb"
|
|
367
401
|
- "./spec/api/date_time_api_spec.rb"
|
|
@@ -402,6 +436,7 @@ files:
|
|
|
402
436
|
- "./spec/models/ip_intelligence_response_spec.rb"
|
|
403
437
|
- "./spec/models/ip_reverse_dns_lookup_response_spec.rb"
|
|
404
438
|
- "./spec/models/ip_threat_response_spec.rb"
|
|
439
|
+
- "./spec/models/is_admin_path_response_spec.rb"
|
|
405
440
|
- "./spec/models/last_name_validation_request_spec.rb"
|
|
406
441
|
- "./spec/models/last_name_validation_response_spec.rb"
|
|
407
442
|
- "./spec/models/lead_enrichment_request_spec.rb"
|
|
@@ -409,14 +444,26 @@ files:
|
|
|
409
444
|
- "./spec/models/normalize_address_response_spec.rb"
|
|
410
445
|
- "./spec/models/parse_address_request_spec.rb"
|
|
411
446
|
- "./spec/models/parse_address_response_spec.rb"
|
|
447
|
+
- "./spec/models/phishing_check_request_spec.rb"
|
|
448
|
+
- "./spec/models/phishing_check_response_spec.rb"
|
|
412
449
|
- "./spec/models/phone_number_validate_request_spec.rb"
|
|
413
450
|
- "./spec/models/phone_number_validation_response_spec.rb"
|
|
414
451
|
- "./spec/models/public_holiday_occurrence_spec.rb"
|
|
415
452
|
- "./spec/models/public_holidays_response_spec.rb"
|
|
416
453
|
- "./spec/models/reverse_geocode_address_request_spec.rb"
|
|
417
454
|
- "./spec/models/reverse_geocode_address_response_spec.rb"
|
|
455
|
+
- "./spec/models/sql_injection_check_batch_request_spec.rb"
|
|
456
|
+
- "./spec/models/sql_injection_check_batch_response_spec.rb"
|
|
457
|
+
- "./spec/models/sql_injection_check_request_item_spec.rb"
|
|
458
|
+
- "./spec/models/sql_injection_detection_result_spec.rb"
|
|
418
459
|
- "./spec/models/timezone_spec.rb"
|
|
419
460
|
- "./spec/models/tor_node_response_spec.rb"
|
|
461
|
+
- "./spec/models/url_safety_check_request_full_spec.rb"
|
|
462
|
+
- "./spec/models/url_safety_check_response_full_spec.rb"
|
|
463
|
+
- "./spec/models/url_ssrf_request_batch_spec.rb"
|
|
464
|
+
- "./spec/models/url_ssrf_request_full_spec.rb"
|
|
465
|
+
- "./spec/models/url_ssrf_response_batch_spec.rb"
|
|
466
|
+
- "./spec/models/url_ssrf_response_full_spec.rb"
|
|
420
467
|
- "./spec/models/user_agent_validate_request_spec.rb"
|
|
421
468
|
- "./spec/models/user_agent_validate_response_spec.rb"
|
|
422
469
|
- "./spec/models/validate_address_request_spec.rb"
|
|
@@ -442,6 +489,10 @@ files:
|
|
|
442
489
|
- "./spec/models/xss_protection_batch_response_spec.rb"
|
|
443
490
|
- "./spec/models/xss_protection_request_item_spec.rb"
|
|
444
491
|
- "./spec/models/xss_protection_result_spec.rb"
|
|
492
|
+
- "./spec/models/xxe_detection_batch_request_spec.rb"
|
|
493
|
+
- "./spec/models/xxe_detection_batch_response_spec.rb"
|
|
494
|
+
- "./spec/models/xxe_detection_request_item_spec.rb"
|
|
495
|
+
- "./spec/models/xxe_detection_result_spec.rb"
|
|
445
496
|
- "./spec/spec_helper.rb"
|
|
446
497
|
homepage: https://www.cloudmersive.com/validate-api
|
|
447
498
|
licenses:
|