swagger_aem 0.9.8 → 0.9.9
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 +5 -5
- data/docs/SlingApi.md +7 -1
- 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/sling_api.rb +10 -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/swagger_aem.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6b6891658c3af69488ee2ca40f8416c7c46b376
|
|
4
|
+
data.tar.gz: 6a1e14e767e447a9b727d417421672445bcce4e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f31fa137ddad460cbbe4a0df53e24d87440c773e0519587e7adf00c4569661024ab3437e4ed1215632567cf858235ff89e7f2175b142e4e6a64038b545739bf
|
|
7
|
+
data.tar.gz: 82c2c2d0671ee70618cdd73352f974e5a1b77abb83cb6ac8fcca89d88b3e6facaf301d4c5dea3a84f7d2f444ee43b104a853d549245403701209906c6d2f92fd
|
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.9
|
|
10
|
+
- Package version: 0.9.9
|
|
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.9.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.9.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.9'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
data/docs/SlingApi.md
CHANGED
|
@@ -437,7 +437,10 @@ opts = {
|
|
|
437
437
|
jcrcontentcqtemplate: "jcrcontentcqtemplate_example", # String |
|
|
438
438
|
jcrcontentenabled: true, # BOOLEAN |
|
|
439
439
|
jcrcontentreverse_replication: true, # BOOLEAN |
|
|
440
|
-
operation: "operation_example" # String |
|
|
440
|
+
operation: "operation_example", # String |
|
|
441
|
+
jcrcontenttrigger_distribute: true, # BOOLEAN |
|
|
442
|
+
jcrcontenttrigger_modified: true, # BOOLEAN |
|
|
443
|
+
jcrcontentuser_id: "jcrcontentuser_id_example" # String |
|
|
441
444
|
}
|
|
442
445
|
|
|
443
446
|
begin
|
|
@@ -475,6 +478,9 @@ Name | Type | Description | Notes
|
|
|
475
478
|
**jcrcontentenabled** | **BOOLEAN**| | [optional]
|
|
476
479
|
**jcrcontentreverse_replication** | **BOOLEAN**| | [optional]
|
|
477
480
|
**operation** | **String**| | [optional]
|
|
481
|
+
**jcrcontenttrigger_distribute** | **BOOLEAN**| | [optional]
|
|
482
|
+
**jcrcontenttrigger_modified** | **BOOLEAN**| | [optional]
|
|
483
|
+
**jcrcontentuser_id** | **String**| | [optional]
|
|
478
484
|
|
|
479
485
|
### Return type
|
|
480
486
|
|
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.9
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -431,6 +431,9 @@ module SwaggerAemClient
|
|
|
431
431
|
# @option opts [BOOLEAN] :jcrcontentenabled
|
|
432
432
|
# @option opts [BOOLEAN] :jcrcontentreverse_replication
|
|
433
433
|
# @option opts [String] :operation
|
|
434
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_distribute
|
|
435
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_modified
|
|
436
|
+
# @option opts [String] :jcrcontentuser_id
|
|
434
437
|
# @return [nil]
|
|
435
438
|
def post_agent(runmode, name, opts = {})
|
|
436
439
|
post_agent_with_http_info(runmode, name, opts)
|
|
@@ -464,6 +467,9 @@ module SwaggerAemClient
|
|
|
464
467
|
# @option opts [BOOLEAN] :jcrcontentenabled
|
|
465
468
|
# @option opts [BOOLEAN] :jcrcontentreverse_replication
|
|
466
469
|
# @option opts [String] :operation
|
|
470
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_distribute
|
|
471
|
+
# @option opts [BOOLEAN] :jcrcontenttrigger_modified
|
|
472
|
+
# @option opts [String] :jcrcontentuser_id
|
|
467
473
|
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
|
468
474
|
def post_agent_with_http_info(runmode, name, opts = {})
|
|
469
475
|
if @api_client.config.debugging
|
|
@@ -500,6 +506,9 @@ module SwaggerAemClient
|
|
|
500
506
|
query_params[:'jcr:content/enabled'] = opts[:'jcrcontentenabled'] if !opts[:'jcrcontentenabled'].nil?
|
|
501
507
|
query_params[:'jcr:content/reverseReplication'] = opts[:'jcrcontentreverse_replication'] if !opts[:'jcrcontentreverse_replication'].nil?
|
|
502
508
|
query_params[:':operation'] = opts[:'operation'] if !opts[:'operation'].nil?
|
|
509
|
+
query_params[:'jcr:content/triggerDistribute'] = opts[:'jcrcontenttrigger_distribute'] if !opts[:'jcrcontenttrigger_distribute'].nil?
|
|
510
|
+
query_params[:'jcr:content/triggerModified'] = opts[:'jcrcontenttrigger_modified'] if !opts[:'jcrcontenttrigger_modified'].nil?
|
|
511
|
+
query_params[:'jcr:content/userId'] = opts[:'jcrcontentuser_id'] if !opts[:'jcrcontentuser_id'].nil?
|
|
503
512
|
|
|
504
513
|
# header parameters
|
|
505
514
|
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.9
|
|
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.9"
|
|
14
14
|
end
|
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.9
|
|
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-03-
|
|
11
|
+
date: 2017-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|