swagger_aem 0.9.10 → 0.9.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/docs/CustomApi.md +4 -4
- data/lib/swagger_aem.rb +1 -1
- data/lib/swagger_aem/api/console_api.rb +1 -1
- data/lib/swagger_aem/api/cq_api.rb +1 -1
- data/lib/swagger_aem/api/crx_api.rb +1 -1
- data/lib/swagger_aem/api/custom_api.rb +7 -7
- data/lib/swagger_aem/api/sling_api.rb +1 -1
- data/lib/swagger_aem/api_client.rb +1 -1
- data/lib/swagger_aem/api_error.rb +1 -1
- data/lib/swagger_aem/configuration.rb +1 -1
- data/lib/swagger_aem/version.rb +2 -2
- data/spec/api/console_api_spec.rb +6 -15
- data/spec/api/cq_api_spec.rb +7 -16
- data/spec/api/crx_api_spec.rb +9 -25
- data/spec/api/custom_api_spec.rb +5 -4
- data/spec/api/sling_api_spec.rb +75 -77
- data/spec/api_client_spec.rb +1 -13
- data/spec/configuration_spec.rb +1 -13
- data/spec/spec_helper.rb +1 -13
- data/swagger_aem.gemspec +1 -1
- metadata +2 -3
- data/LICENSE +0 -201
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6089dffeb3fbe8cb24c7fb04b3c1029adee7e3b
|
4
|
+
data.tar.gz: 5926f659388b1c613f11d16a8311587187a5c7fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eea0bce38d11d6d10ead967eb9ad5a91cca6fa3e52bea3d01308647a16764002c3ba168aa940452242b045075436205d7ee41b8d2f7a133503d068a5d530a74e
|
7
|
+
data.tar.gz: 64b6d315cad076f4863a738e22fb35b6c68e5c42fc3eee6d2897a6c1722bff3b71b806118fc2a973574852389d566e5335ef51d765724cbf886d68105e83cfb3
|
data/README.md
CHANGED
@@ -6,8 +6,8 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
6
6
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
|
-
- API version: 1.1.
|
10
|
-
- Package version: 0.9.
|
9
|
+
- API version: 1.1.11
|
10
|
+
- Package version: 0.9.11
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build swagger_aem.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./swagger_aem-0.9.
|
27
|
+
gem install ./swagger_aem-0.9.11.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-0.9.
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-0.9.11.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'swagger_aem', '~> 0.9.
|
35
|
+
gem 'swagger_aem', '~> 0.9.11'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
data/docs/CustomApi.md
CHANGED
@@ -82,8 +82,8 @@ api_instance = SwaggerAemClient::CustomApi.new
|
|
82
82
|
runmode = "runmode_example" # String |
|
83
83
|
|
84
84
|
opts = {
|
85
|
-
|
86
|
-
|
85
|
+
pwdreset_authorizables: ["pwdreset_authorizables_example"], # Array<String> |
|
86
|
+
pwdreset_authorizables_type_hint: "pwdreset_authorizables_type_hint_example" # String |
|
87
87
|
}
|
88
88
|
|
89
89
|
begin
|
@@ -98,8 +98,8 @@ end
|
|
98
98
|
Name | Type | Description | Notes
|
99
99
|
------------- | ------------- | ------------- | -------------
|
100
100
|
**runmode** | **String**| |
|
101
|
-
**
|
102
|
-
**
|
101
|
+
**pwdreset_authorizables** | [**Array<String>**](String.md)| | [optional]
|
102
|
+
**pwdreset_authorizables_type_hint** | **String**| | [optional]
|
103
103
|
|
104
104
|
### Return type
|
105
105
|
|
data/lib/swagger_aem.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -76,8 +76,8 @@ module SwaggerAemClient
|
|
76
76
|
#
|
77
77
|
# @param runmode
|
78
78
|
# @param [Hash] opts the optional parameters
|
79
|
-
# @option opts [String] :
|
80
|
-
# @option opts [String] :
|
79
|
+
# @option opts [Array<String>] :pwdreset_authorizables
|
80
|
+
# @option opts [String] :pwdreset_authorizables_type_hint
|
81
81
|
# @return [nil]
|
82
82
|
def post_config_aem_password_reset(runmode, opts = {})
|
83
83
|
post_config_aem_password_reset_with_http_info(runmode, opts)
|
@@ -88,8 +88,8 @@ module SwaggerAemClient
|
|
88
88
|
#
|
89
89
|
# @param runmode
|
90
90
|
# @param [Hash] opts the optional parameters
|
91
|
-
# @option opts [String] :
|
92
|
-
# @option opts [String] :
|
91
|
+
# @option opts [Array<String>] :pwdreset_authorizables
|
92
|
+
# @option opts [String] :pwdreset_authorizables_type_hint
|
93
93
|
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
94
94
|
def post_config_aem_password_reset_with_http_info(runmode, opts = {})
|
95
95
|
if @api_client.config.debugging
|
@@ -102,8 +102,8 @@ module SwaggerAemClient
|
|
102
102
|
|
103
103
|
# query parameters
|
104
104
|
query_params = {}
|
105
|
-
query_params[:'
|
106
|
-
query_params[:'
|
105
|
+
query_params[:'pwdreset.authorizables'] = @api_client.build_collection_param(opts[:'pwdreset_authorizables'], :csv) if !opts[:'pwdreset_authorizables'].nil?
|
106
|
+
query_params[:'pwdreset.authorizables@TypeHint'] = opts[:'pwdreset_authorizables_type_hint'] if !opts[:'pwdreset_authorizables_type_hint'].nil?
|
107
107
|
|
108
108
|
# header parameters
|
109
109
|
header_params = {}
|
data/lib/swagger_aem/version.rb
CHANGED
@@ -3,12 +3,12 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
=end
|
11
11
|
|
12
12
|
module SwaggerAemClient
|
13
|
-
VERSION = "0.9.
|
13
|
+
VERSION = "0.9.11"
|
14
14
|
end
|
@@ -1,13 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Adobe Experience Manager (AEM) API
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
3
|
|
4
|
-
Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
@@ -28,7 +27,7 @@ describe 'ConsoleApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of ConsoleApi' do
|
30
29
|
it 'should create an instact of ConsoleApi' do
|
31
|
-
@instance.
|
30
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::ConsoleApi)
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
@@ -41,11 +40,7 @@ describe 'ConsoleApi' do
|
|
41
40
|
# @return [nil]
|
42
41
|
describe 'post_bundle test' do
|
43
42
|
it "should work" do
|
44
|
-
# assertion here
|
45
|
-
# should be_a()
|
46
|
-
# should be_nil
|
47
|
-
# should ==
|
48
|
-
# should_not ==
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
44
|
end
|
50
45
|
end
|
51
46
|
|
@@ -57,11 +52,7 @@ describe 'ConsoleApi' do
|
|
57
52
|
# @return [nil]
|
58
53
|
describe 'post_jmx_repository test' do
|
59
54
|
it "should work" do
|
60
|
-
# assertion here
|
61
|
-
# should be_a()
|
62
|
-
# should be_nil
|
63
|
-
# should ==
|
64
|
-
# should_not ==
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
65
56
|
end
|
66
57
|
end
|
67
58
|
|
data/spec/api/cq_api_spec.rb
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Adobe Experience Manager (AEM) API
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
3
|
|
4
|
-
Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
@@ -28,7 +27,7 @@ describe 'CqApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of CqApi' do
|
30
29
|
it 'should create an instact of CqApi' do
|
31
|
-
@instance.
|
30
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::CqApi)
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
@@ -36,14 +35,10 @@ describe 'CqApi' do
|
|
36
35
|
#
|
37
36
|
#
|
38
37
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @return [
|
38
|
+
# @return [String]
|
40
39
|
describe 'get_login_page test' do
|
41
40
|
it "should work" do
|
42
|
-
# assertion here
|
43
|
-
# should be_a()
|
44
|
-
# should be_nil
|
45
|
-
# should ==
|
46
|
-
# should_not ==
|
41
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
47
42
|
end
|
48
43
|
end
|
49
44
|
|
@@ -56,11 +51,7 @@ describe 'CqApi' do
|
|
56
51
|
# @return [nil]
|
57
52
|
describe 'post_cq_actions test' do
|
58
53
|
it "should work" do
|
59
|
-
# assertion here
|
60
|
-
# should be_a()
|
61
|
-
# should be_nil
|
62
|
-
# should ==
|
63
|
-
# should_not ==
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
64
55
|
end
|
65
56
|
end
|
66
57
|
|
data/spec/api/crx_api_spec.rb
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Adobe Experience Manager (AEM) API
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
3
|
|
4
|
-
Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
@@ -28,7 +27,7 @@ describe 'CrxApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of CrxApi' do
|
30
29
|
it 'should create an instact of CrxApi' do
|
31
|
-
@instance.
|
30
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::CrxApi)
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
@@ -40,11 +39,7 @@ describe 'CrxApi' do
|
|
40
39
|
# @return [String]
|
41
40
|
describe 'post_package_service test' do
|
42
41
|
it "should work" do
|
43
|
-
# assertion here
|
44
|
-
# should be_a()
|
45
|
-
# should be_nil
|
46
|
-
# should ==
|
47
|
-
# should_not ==
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
48
43
|
end
|
49
44
|
end
|
50
45
|
|
@@ -59,15 +54,12 @@ describe 'CrxApi' do
|
|
59
54
|
# @option opts [String] :package_version
|
60
55
|
# @option opts [String] :_charset_
|
61
56
|
# @option opts [BOOLEAN] :force
|
57
|
+
# @option opts [BOOLEAN] :recursive
|
62
58
|
# @option opts [File] :package
|
63
59
|
# @return [String]
|
64
60
|
describe 'post_package_service_json test' do
|
65
61
|
it "should work" do
|
66
|
-
# assertion here
|
67
|
-
# should be_a()
|
68
|
-
# should be_nil
|
69
|
-
# should ==
|
70
|
-
# should_not ==
|
62
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
71
63
|
end
|
72
64
|
end
|
73
65
|
|
@@ -84,11 +76,7 @@ describe 'CrxApi' do
|
|
84
76
|
# @return [String]
|
85
77
|
describe 'post_package_update test' do
|
86
78
|
it "should work" do
|
87
|
-
# assertion here
|
88
|
-
# should be_a()
|
89
|
-
# should be_nil
|
90
|
-
# should ==
|
91
|
-
# should_not ==
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
80
|
end
|
93
81
|
end
|
94
82
|
|
@@ -102,11 +90,7 @@ describe 'CrxApi' do
|
|
102
90
|
# @return [nil]
|
103
91
|
describe 'post_set_password test' do
|
104
92
|
it "should work" do
|
105
|
-
# assertion here
|
106
|
-
# should be_a()
|
107
|
-
# should be_nil
|
108
|
-
# should ==
|
109
|
-
# should_not ==
|
93
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
94
|
end
|
111
95
|
end
|
112
96
|
|
data/spec/api/custom_api_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -34,10 +34,10 @@ describe 'CustomApi' do
|
|
34
34
|
# unit tests for get_aem_health_check
|
35
35
|
#
|
36
36
|
#
|
37
|
-
# @param tags
|
38
37
|
# @param [Hash] opts the optional parameters
|
38
|
+
# @option opts [String] :tags
|
39
39
|
# @option opts [BOOLEAN] :combine_tags_or
|
40
|
-
# @return [
|
40
|
+
# @return [String]
|
41
41
|
describe 'get_aem_health_check test' do
|
42
42
|
it "should work" do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -49,7 +49,8 @@ describe 'CustomApi' do
|
|
49
49
|
#
|
50
50
|
# @param runmode
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :
|
52
|
+
# @option opts [Array<String>] :pwdreset_authorizables
|
53
|
+
# @option opts [String] :pwdreset_authorizables_type_hint
|
53
54
|
# @return [nil]
|
54
55
|
describe 'post_config_aem_password_reset test' do
|
55
56
|
it "should work" do
|
data/spec/api/sling_api_spec.rb
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Adobe Experience Manager (AEM) API
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
3
|
|
4
|
-
Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
@@ -28,7 +27,7 @@ describe 'SlingApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of SlingApi' do
|
30
29
|
it 'should create an instact of SlingApi' do
|
31
|
-
@instance.
|
30
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::SlingApi)
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
@@ -41,11 +40,7 @@ describe 'SlingApi' do
|
|
41
40
|
# @return [nil]
|
42
41
|
describe 'delete_agent test' do
|
43
42
|
it "should work" do
|
44
|
-
# assertion here
|
45
|
-
# should be_a()
|
46
|
-
# should be_nil
|
47
|
-
# should ==
|
48
|
-
# should_not ==
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
44
|
end
|
50
45
|
end
|
51
46
|
|
@@ -58,11 +53,7 @@ describe 'SlingApi' do
|
|
58
53
|
# @return [nil]
|
59
54
|
describe 'delete_node test' do
|
60
55
|
it "should work" do
|
61
|
-
# assertion here
|
62
|
-
# should be_a()
|
63
|
-
# should be_nil
|
64
|
-
# should ==
|
65
|
-
# should_not ==
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
66
57
|
end
|
67
58
|
end
|
68
59
|
|
@@ -75,11 +66,19 @@ describe 'SlingApi' do
|
|
75
66
|
# @return [nil]
|
76
67
|
describe 'get_agent test' do
|
77
68
|
it "should work" do
|
78
|
-
# assertion here
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
69
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# unit tests for get_agents
|
74
|
+
#
|
75
|
+
#
|
76
|
+
# @param runmode
|
77
|
+
# @param [Hash] opts the optional parameters
|
78
|
+
# @return [String]
|
79
|
+
describe 'get_agents test' do
|
80
|
+
it "should work" do
|
81
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
83
82
|
end
|
84
83
|
end
|
85
84
|
|
@@ -92,11 +91,7 @@ describe 'SlingApi' do
|
|
92
91
|
# @return [nil]
|
93
92
|
describe 'get_node test' do
|
94
93
|
it "should work" do
|
95
|
-
# assertion here
|
96
|
-
# should be_a()
|
97
|
-
# should be_nil
|
98
|
-
# should ==
|
99
|
-
# should_not ==
|
94
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
100
95
|
end
|
101
96
|
end
|
102
97
|
|
@@ -110,11 +105,7 @@ describe 'SlingApi' do
|
|
110
105
|
# @return [File]
|
111
106
|
describe 'get_package test' do
|
112
107
|
it "should work" do
|
113
|
-
# assertion here
|
114
|
-
# should be_a()
|
115
|
-
# should be_nil
|
116
|
-
# should ==
|
117
|
-
# should_not ==
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
118
109
|
end
|
119
110
|
end
|
120
111
|
|
@@ -128,11 +119,7 @@ describe 'SlingApi' do
|
|
128
119
|
# @return [String]
|
129
120
|
describe 'get_package_filter test' do
|
130
121
|
it "should work" do
|
131
|
-
# assertion here
|
132
|
-
# should be_a()
|
133
|
-
# should be_nil
|
134
|
-
# should ==
|
135
|
-
# should_not ==
|
122
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
136
123
|
end
|
137
124
|
end
|
138
125
|
|
@@ -164,14 +151,14 @@ describe 'SlingApi' do
|
|
164
151
|
# @option opts [BOOLEAN] :jcrcontentenabled
|
165
152
|
# @option opts [BOOLEAN] :jcrcontentreverse_replication
|
166
153
|
# @option opts [String] :operation
|
154
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_distribute
|
155
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_modified
|
156
|
+
# @option opts [String] :jcrcontentuser_id
|
157
|
+
# @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
|
167
158
|
# @return [nil]
|
168
159
|
describe 'post_agent test' do
|
169
160
|
it "should work" do
|
170
|
-
# assertion here
|
171
|
-
# should be_a()
|
172
|
-
# should be_nil
|
173
|
-
# should ==
|
174
|
-
# should_not ==
|
161
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
175
162
|
end
|
176
163
|
end
|
177
164
|
|
@@ -188,19 +175,14 @@ describe 'SlingApi' do
|
|
188
175
|
# @return [String]
|
189
176
|
describe 'post_authorizables test' do
|
190
177
|
it "should work" do
|
191
|
-
# assertion here
|
192
|
-
# should be_a()
|
193
|
-
# should be_nil
|
194
|
-
# should ==
|
195
|
-
# should_not ==
|
178
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
196
179
|
end
|
197
180
|
end
|
198
181
|
|
199
|
-
# unit tests for
|
182
|
+
# unit tests for post_config_apache_felix_jetty_based_http_service
|
200
183
|
#
|
201
184
|
#
|
202
185
|
# @param runmode
|
203
|
-
# @param name
|
204
186
|
# @param [Hash] opts the optional parameters
|
205
187
|
# @option opts [BOOLEAN] :org_apache_felix_https_nio
|
206
188
|
# @option opts [String] :org_apache_felix_https_nio_type_hint
|
@@ -222,6 +204,34 @@ describe 'SlingApi' do
|
|
222
204
|
# @option opts [String] :org_apache_felix_https_enable_type_hint
|
223
205
|
# @option opts [String] :org_osgi_service_http_port_secure
|
224
206
|
# @option opts [String] :org_osgi_service_http_port_secure_type_hint
|
207
|
+
# @return [nil]
|
208
|
+
describe 'post_config_apache_felix_jetty_based_http_service test' do
|
209
|
+
it "should work" do
|
210
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
211
|
+
end
|
212
|
+
end
|
213
|
+
|
214
|
+
# unit tests for post_config_apache_sling_dav_ex_servlet
|
215
|
+
#
|
216
|
+
#
|
217
|
+
# @param runmode
|
218
|
+
# @param [Hash] opts the optional parameters
|
219
|
+
# @option opts [String] :_alias
|
220
|
+
# @option opts [String] :alias_type_hint
|
221
|
+
# @option opts [BOOLEAN] :dav_create_absolute_uri
|
222
|
+
# @option opts [String] :dav_create_absolute_uri_type_hint
|
223
|
+
# @return [nil]
|
224
|
+
describe 'post_config_apache_sling_dav_ex_servlet test' do
|
225
|
+
it "should work" do
|
226
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|
230
|
+
# unit tests for post_config_apache_sling_get_servlet
|
231
|
+
#
|
232
|
+
#
|
233
|
+
# @param runmode
|
234
|
+
# @param [Hash] opts the optional parameters
|
225
235
|
# @option opts [String] :json_maximumresults
|
226
236
|
# @option opts [String] :json_maximumresults_type_hint
|
227
237
|
# @option opts [BOOLEAN] :enable_html
|
@@ -230,24 +240,28 @@ describe 'SlingApi' do
|
|
230
240
|
# @option opts [String] :enable_txt_type_hint
|
231
241
|
# @option opts [BOOLEAN] :enable_xml
|
232
242
|
# @option opts [String] :enable_xml_type_hint
|
243
|
+
# @return [nil]
|
244
|
+
describe 'post_config_apache_sling_get_servlet test' do
|
245
|
+
it "should work" do
|
246
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
# unit tests for post_config_apache_sling_referrer_filter
|
251
|
+
#
|
252
|
+
#
|
253
|
+
# @param runmode
|
254
|
+
# @param [Hash] opts the optional parameters
|
233
255
|
# @option opts [BOOLEAN] :allow_empty
|
234
256
|
# @option opts [String] :allow_empty_type_hint
|
235
257
|
# @option opts [String] :allow_hosts
|
236
258
|
# @option opts [String] :allow_hosts_type_hint
|
237
259
|
# @option opts [String] :allow_hosts_regexp
|
238
260
|
# @option opts [String] :allow_hosts_regexp_type_hint
|
239
|
-
# @option opts [String] :_alias
|
240
|
-
# @option opts [String] :alias_type_hint
|
241
|
-
# @option opts [BOOLEAN] :dav_create_absolute_uri
|
242
|
-
# @option opts [String] :dav_create_absolute_uri_type_hint
|
243
261
|
# @return [nil]
|
244
|
-
describe '
|
262
|
+
describe 'post_config_apache_sling_referrer_filter test' do
|
245
263
|
it "should work" do
|
246
|
-
# assertion here
|
247
|
-
# should be_a()
|
248
|
-
# should be_nil
|
249
|
-
# should ==
|
250
|
-
# should_not ==
|
264
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
251
265
|
end
|
252
266
|
end
|
253
267
|
|
@@ -261,11 +275,7 @@ describe 'SlingApi' do
|
|
261
275
|
# @return [nil]
|
262
276
|
describe 'post_node_rw test' do
|
263
277
|
it "should work" do
|
264
|
-
# assertion here
|
265
|
-
# should be_a()
|
266
|
-
# should be_nil
|
267
|
-
# should ==
|
268
|
-
# should_not ==
|
278
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
269
279
|
end
|
270
280
|
end
|
271
281
|
|
@@ -279,11 +289,7 @@ describe 'SlingApi' do
|
|
279
289
|
# @return [nil]
|
280
290
|
describe 'post_path test' do
|
281
291
|
it "should work" do
|
282
|
-
# assertion here
|
283
|
-
# should be_a()
|
284
|
-
# should be_nil
|
285
|
-
# should ==
|
286
|
-
# should_not ==
|
292
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
287
293
|
end
|
288
294
|
end
|
289
295
|
|
@@ -298,11 +304,7 @@ describe 'SlingApi' do
|
|
298
304
|
# @return [String]
|
299
305
|
describe 'post_query test' do
|
300
306
|
it "should work" do
|
301
|
-
# assertion here
|
302
|
-
# should be_a()
|
303
|
-
# should be_nil
|
304
|
-
# should ==
|
305
|
-
# should_not ==
|
307
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
306
308
|
end
|
307
309
|
end
|
308
310
|
|
@@ -316,11 +318,7 @@ describe 'SlingApi' do
|
|
316
318
|
# @return [nil]
|
317
319
|
describe 'post_tree_activation test' do
|
318
320
|
it "should work" do
|
319
|
-
# assertion here
|
320
|
-
# should be_a()
|
321
|
-
# should be_nil
|
322
|
-
# should ==
|
323
|
-
# should_not ==
|
321
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
324
322
|
end
|
325
323
|
end
|
326
324
|
|
data/spec/api_client_spec.rb
CHANGED
@@ -3,22 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
21
|
-
|
22
10
|
=end
|
23
11
|
|
24
12
|
require 'spec_helper'
|
data/spec/configuration_spec.rb
CHANGED
@@ -3,22 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
21
|
-
|
22
10
|
=end
|
23
11
|
|
24
12
|
require 'spec_helper'
|
data/spec/spec_helper.rb
CHANGED
@@ -3,22 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.11
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
21
|
-
|
22
10
|
=end
|
23
11
|
|
24
12
|
# load the gem
|
data/swagger_aem.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swagger_aem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shine Solutions
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -199,7 +199,6 @@ extensions: []
|
|
199
199
|
extra_rdoc_files: []
|
200
200
|
files:
|
201
201
|
- Gemfile
|
202
|
-
- LICENSE
|
203
202
|
- README.md
|
204
203
|
- Rakefile
|
205
204
|
- docs/ConsoleApi.md
|
data/LICENSE
DELETED
@@ -1,201 +0,0 @@
|
|
1
|
-
Apache License
|
2
|
-
Version 2.0, January 2004
|
3
|
-
http://www.apache.org/licenses/
|
4
|
-
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
-
|
7
|
-
1. Definitions.
|
8
|
-
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
-
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
-
the copyright owner that is granting the License.
|
14
|
-
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
-
other entities that control, are controlled by, or are under common
|
17
|
-
control with that entity. For the purposes of this definition,
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
19
|
-
direction or management of such entity, whether by contract or
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
-
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
-
exercising permissions granted by this License.
|
25
|
-
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
27
|
-
including but not limited to software source code, documentation
|
28
|
-
source, and configuration files.
|
29
|
-
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
31
|
-
transformation or translation of a Source form, including but
|
32
|
-
not limited to compiled object code, generated documentation,
|
33
|
-
and conversions to other media types.
|
34
|
-
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
36
|
-
Object form, made available under the License, as indicated by a
|
37
|
-
copyright notice that is included in or attached to the work
|
38
|
-
(an example is provided in the Appendix below).
|
39
|
-
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
-
the Work and Derivative Works thereof.
|
47
|
-
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
49
|
-
the original version of the Work and any modifications or additions
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
-
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
64
|
-
subsequently incorporated within the Work.
|
65
|
-
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
72
|
-
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
-
where such license applies only to those patent claims licensable
|
79
|
-
by such Contributor that are necessarily infringed by their
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
82
|
-
institute patent litigation against any entity (including a
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
85
|
-
or contributory patent infringement, then any patent licenses
|
86
|
-
granted to You under this License for that Work shall terminate
|
87
|
-
as of the date such litigation is filed.
|
88
|
-
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
91
|
-
modifications, and in Source or Object form, provided that You
|
92
|
-
meet the following conditions:
|
93
|
-
|
94
|
-
(a) You must give any other recipients of the Work or
|
95
|
-
Derivative Works a copy of this License; and
|
96
|
-
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
98
|
-
stating that You changed the files; and
|
99
|
-
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
102
|
-
attribution notices from the Source form of the Work,
|
103
|
-
excluding those notices that do not pertain to any part of
|
104
|
-
the Derivative Works; and
|
105
|
-
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
108
|
-
include a readable copy of the attribution notices contained
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
111
|
-
of the following places: within a NOTICE text file distributed
|
112
|
-
as part of the Derivative Works; within the Source form or
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
114
|
-
within a display generated by the Derivative Works, if and
|
115
|
-
wherever such third-party notices normally appear. The contents
|
116
|
-
of the NOTICE file are for informational purposes only and
|
117
|
-
do not modify the License. You may add Your own attribution
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
120
|
-
that such additional attribution notices cannot be construed
|
121
|
-
as modifying the License.
|
122
|
-
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
124
|
-
may provide additional or different license terms and conditions
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
128
|
-
the conditions stated in this License.
|
129
|
-
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
133
|
-
this License, without any additional terms or conditions.
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
-
the terms of any separate license agreement you may have executed
|
136
|
-
with Licensor regarding such Contributions.
|
137
|
-
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
140
|
-
except as required for reasonable and customary use in describing the
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
-
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
152
|
-
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
158
|
-
incidental, or consequential damages of any character arising as a
|
159
|
-
result of this License or out of the use or inability to use the
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
162
|
-
other commercial damages or losses), even if such Contributor
|
163
|
-
has been advised of the possibility of such damages.
|
164
|
-
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
-
or other liability obligations and/or rights consistent with this
|
169
|
-
License. However, in accepting such obligations, You may act only
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
174
|
-
of your accepting any such warranty or additional liability.
|
175
|
-
|
176
|
-
END OF TERMS AND CONDITIONS
|
177
|
-
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
179
|
-
|
180
|
-
To apply the Apache License to your work, attach the following
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
-
replaced with your own identifying information. (Don't include
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
184
|
-
comment syntax for the file format. We also recommend that a
|
185
|
-
file or class name and description of purpose be included on the
|
186
|
-
same "printed page" as the copyright notice for easier
|
187
|
-
identification within third-party archives.
|
188
|
-
|
189
|
-
Copyright {yyyy} {name of copyright owner}
|
190
|
-
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
-
you may not use this file except in compliance with the License.
|
193
|
-
You may obtain a copy of the License at
|
194
|
-
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
-
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
-
See the License for the specific language governing permissions and
|
201
|
-
limitations under the License.
|