swagger_aem 3.1.0 → 3.2.0

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.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -1
  3. data/Gemfile.lock +44 -43
  4. data/README.md +15 -7
  5. data/docs/ConsoleApi.md +43 -33
  6. data/docs/CqApi.md +12 -8
  7. data/docs/CrxApi.md +41 -27
  8. data/docs/CustomApi.md +19 -13
  9. data/docs/InlineObject.md +17 -0
  10. data/docs/InlineObject1.md +17 -0
  11. data/docs/InlineObject2.md +17 -0
  12. data/docs/InlineObject3.md +17 -0
  13. data/docs/InlineObject4.md +21 -0
  14. data/docs/InstallStatus.md +9 -0
  15. data/docs/InstallStatusStatus.md +11 -1
  16. data/docs/KeystoreChainItems.md +13 -0
  17. data/docs/KeystoreInfo.md +11 -1
  18. data/docs/KeystoreItems.md +13 -0
  19. data/docs/SamlConfigurationInfo.md +14 -0
  20. data/docs/SamlConfigurationProperties.md +32 -0
  21. data/docs/SamlConfigurationPropertyItemsArray.md +16 -2
  22. data/docs/SamlConfigurationPropertyItemsBoolean.md +17 -3
  23. data/docs/SamlConfigurationPropertyItemsLong.md +16 -2
  24. data/docs/SamlConfigurationPropertyItemsString.md +16 -2
  25. data/docs/SlingApi.md +320 -214
  26. data/docs/TruststoreInfo.md +11 -1
  27. data/docs/TruststoreItems.md +15 -0
  28. data/git_push.sh +10 -7
  29. data/lib/swagger_aem.rb +7 -2
  30. data/lib/swagger_aem/api/console_api.rb +118 -67
  31. data/lib/swagger_aem/api/cq_api.rb +43 -23
  32. data/lib/swagger_aem/api/crx_api.rb +154 -84
  33. data/lib/swagger_aem/api/custom_api.rb +60 -29
  34. data/lib/swagger_aem/api/sling_api.rb +850 -500
  35. data/lib/swagger_aem/api_client.rb +42 -43
  36. data/lib/swagger_aem/api_error.rb +21 -2
  37. data/lib/swagger_aem/configuration.rb +46 -7
  38. data/lib/swagger_aem/models/inline_object.rb +206 -0
  39. data/lib/swagger_aem/models/inline_object1.rb +206 -0
  40. data/lib/swagger_aem/models/inline_object2.rb +206 -0
  41. data/lib/swagger_aem/models/inline_object3.rb +206 -0
  42. data/lib/swagger_aem/models/inline_object4.rb +224 -0
  43. data/lib/swagger_aem/models/install_status.rb +35 -12
  44. data/lib/swagger_aem/models/install_status_status.rb +38 -15
  45. data/lib/swagger_aem/models/keystore_chain_items.rb +42 -19
  46. data/lib/swagger_aem/models/keystore_info.rb +37 -14
  47. data/lib/swagger_aem/models/keystore_items.rb +41 -18
  48. data/lib/swagger_aem/models/saml_configuration_info.rb +40 -17
  49. data/lib/swagger_aem/models/saml_configuration_properties.rb +81 -58
  50. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +42 -19
  51. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +43 -20
  52. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +42 -19
  53. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +42 -19
  54. data/lib/swagger_aem/models/truststore_info.rb +37 -14
  55. data/lib/swagger_aem/models/truststore_items.rb +46 -23
  56. data/lib/swagger_aem/version.rb +3 -3
  57. data/spec/models/inline_object1_spec.rb +41 -0
  58. data/spec/models/inline_object2_spec.rb +41 -0
  59. data/spec/models/inline_object3_spec.rb +41 -0
  60. data/spec/models/inline_object4_spec.rb +53 -0
  61. data/spec/models/inline_object_spec.rb +41 -0
  62. data/swagger_aem.gemspec +2 -8
  63. metadata +22 -122
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 356295edd81bc8d4c769be69ca7ee8f9f065369c
4
- data.tar.gz: 7e8a1e6749c515ebe10228084731605b983879dd
3
+ metadata.gz: 50cf59c756f132a6b2596af97f8c2a8e137b19b9
4
+ data.tar.gz: f66719e9c848cfa3d0cfb4bade836b3c6149b2ff
5
5
  SHA512:
6
- metadata.gz: d7a3864f6ae27a17f32fe86f0776eeab63cf17d265cf938918eda8e6ceb16e3f0d541ce2269724a1710bf751580e27f82be3fb19cfa790d34b2550c24c45ad94
7
- data.tar.gz: 114ca231ac562594a23bfc70556819a37f026ff8df289026a637fca3144519abcee9bf4a09439eb3086ec790b6dacaf9968fce2a5e77c51cf7bdfed750e227ab
6
+ metadata.gz: 1e9a6321085148e9879c34cfe1e676ef555eea7053e36b80ae167e12ddbe6361e2f99519017d03971916f23da104e9f2b9e8e36f0a8aa6b887ea69ecee231343
7
+ data.tar.gz: ccf2de0f2d12ca02d064a97d3eca26799731c349498ba2150a68f3161870a905bbb0c22322e2d3bf592f861c932c23cebb7400fca630cc1dc986d63bfd1408a5
data/Gemfile CHANGED
@@ -3,5 +3,7 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  group :development, :test do
6
- gem 'rake', '~> 12.0.0'
6
+ gem 'rake', '~> 13.0.1'
7
+ gem 'pry-byebug'
8
+ gem 'rubocop', '~> 0.66.0'
7
9
  end
@@ -1,69 +1,70 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- swagger_aem (3.1.0)
4
+ swagger_aem (3.2.0)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- ZenTest (4.11.2)
12
- addressable (2.6.0)
13
- public_suffix (>= 2.0.2, < 4.0)
14
- autotest (4.4.6)
15
- ZenTest (>= 4.4.1)
16
- autotest-fsevent (0.2.14)
17
- sys-uname
18
- autotest-growl (0.2.16)
19
- autotest-rails-pure (4.1.2)
20
- crack (0.4.3)
21
- safe_yaml (~> 1.0.0)
11
+ ast (2.4.0)
12
+ byebug (11.1.1)
13
+ coderay (1.1.2)
22
14
  diff-lcs (1.3)
23
15
  ethon (0.12.0)
24
16
  ffi (>= 1.3.0)
25
- ffi (1.11.1)
26
- hashdiff (0.4.0)
27
- json (2.2.0)
28
- public_suffix (3.1.0)
29
- rake (12.0.0)
30
- rspec (3.8.0)
31
- rspec-core (~> 3.8.0)
32
- rspec-expectations (~> 3.8.0)
33
- rspec-mocks (~> 3.8.0)
34
- rspec-core (3.8.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-expectations (3.8.3)
17
+ ffi (1.12.2)
18
+ jaro_winkler (1.5.4)
19
+ json (2.3.0)
20
+ method_source (1.0.0)
21
+ parallel (1.19.1)
22
+ parser (2.7.1.1)
23
+ ast (~> 2.4.0)
24
+ pry (0.13.1)
25
+ coderay (~> 1.1)
26
+ method_source (~> 1.0)
27
+ pry-byebug (3.9.0)
28
+ byebug (~> 11.0)
29
+ pry (~> 0.13.0)
30
+ psych (3.1.0)
31
+ rainbow (3.0.0)
32
+ rake (13.0.1)
33
+ rspec (3.9.0)
34
+ rspec-core (~> 3.9.0)
35
+ rspec-expectations (~> 3.9.0)
36
+ rspec-mocks (~> 3.9.0)
37
+ rspec-core (3.9.1)
38
+ rspec-support (~> 3.9.1)
39
+ rspec-expectations (3.9.1)
37
40
  diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-mocks (3.8.0)
41
+ rspec-support (~> 3.9.0)
42
+ rspec-mocks (3.9.1)
40
43
  diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.8.0)
42
- rspec-support (3.8.0)
43
- safe_yaml (1.0.5)
44
- sys-uname (1.0.4)
45
- ffi (>= 1.0.0)
44
+ rspec-support (~> 3.9.0)
45
+ rspec-support (3.9.2)
46
+ rubocop (0.66.0)
47
+ jaro_winkler (~> 1.5.1)
48
+ parallel (~> 1.10)
49
+ parser (>= 2.5, != 2.5.1.1)
50
+ psych (>= 3.1.0)
51
+ rainbow (>= 2.2.2, < 4.0)
52
+ ruby-progressbar (~> 1.7)
53
+ unicode-display_width (>= 1.4.0, < 1.6)
54
+ ruby-progressbar (1.10.1)
46
55
  typhoeus (1.3.1)
47
56
  ethon (>= 0.9.0)
48
- vcr (3.0.3)
49
- webmock (1.24.6)
50
- addressable (>= 2.3.6)
51
- crack (>= 0.3.2)
52
- hashdiff
57
+ unicode-display_width (1.5.0)
53
58
 
54
59
  PLATFORMS
55
60
  ruby
56
61
 
57
62
  DEPENDENCIES
58
- autotest (~> 4.4, >= 4.4.6)
59
- autotest-fsevent (~> 0.2, >= 0.2.12)
60
- autotest-growl (~> 0.2, >= 0.2.16)
61
- autotest-rails-pure (~> 4.1, >= 4.1.2)
62
- rake (~> 12.0.0)
63
+ pry-byebug
64
+ rake (~> 13.0.1)
63
65
  rspec (~> 3.6, >= 3.6.0)
66
+ rubocop (~> 0.66.0)
64
67
  swagger_aem!
65
- vcr (~> 3.0, >= 3.0.1)
66
- webmock (~> 1.24, >= 1.24.3)
67
68
 
68
69
  BUNDLED WITH
69
70
  1.17.3
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 [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
- - API version: 3.1.0
10
- - Package version: 3.1.0
9
+ - API version: 3.2.0
10
+ - Package version: 3.2.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
13
13
 
@@ -24,15 +24,16 @@ gem build swagger_aem.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./swagger_aem-3.1.0.gem
27
+ gem install ./swagger_aem-3.2.0.gem
28
28
  ```
29
- (for development, run `gem install --dev ./swagger_aem-3.1.0.gem` to install the development dependencies)
29
+
30
+ (for development, run `gem install --dev ./swagger_aem-3.2.0.gem` to install the development dependencies)
30
31
 
31
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
33
 
33
34
  Finally add this to the Gemfile:
34
35
 
35
- gem 'swagger_aem', '~> 3.1.0'
36
+ gem 'swagger_aem', '~> 3.2.0'
36
37
 
37
38
  ### Install from Git
38
39
 
@@ -51,6 +52,7 @@ ruby -Ilib script.rb
51
52
  ## Getting Started
52
53
 
53
54
  Please follow the [installation](#installation) procedure and then run the following code:
55
+
54
56
  ```ruby
55
57
  # Load the gem
56
58
  require 'swagger_aem'
@@ -58,8 +60,8 @@ require 'swagger_aem'
58
60
  # Setup authorization
59
61
  SwaggerAemClient.configure do |config|
60
62
  # Configure HTTP basic authorization: aemAuth
61
- config.username = 'YOUR USERNAME'
62
- config.password = 'YOUR PASSWORD'
63
+ config.username = 'YOUR_USERNAME'
64
+ config.password = 'YOUR_PASSWORD'
63
65
  end
64
66
 
65
67
  api_instance = SwaggerAemClient::ConsoleApi.new
@@ -117,6 +119,7 @@ Class | Method | HTTP request | Description
117
119
  *SwaggerAemClient::SlingApi* | [**post_config_apache_sling_dav_ex_servlet**](docs/SlingApi.md#post_config_apache_sling_dav_ex_servlet) | **POST** /apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet |
118
120
  *SwaggerAemClient::SlingApi* | [**post_config_apache_sling_get_servlet**](docs/SlingApi.md#post_config_apache_sling_get_servlet) | **POST** /apps/system/config/org.apache.sling.servlets.get.DefaultGetServlet |
119
121
  *SwaggerAemClient::SlingApi* | [**post_config_apache_sling_referrer_filter**](docs/SlingApi.md#post_config_apache_sling_referrer_filter) | **POST** /apps/system/config/org.apache.sling.security.impl.ReferrerFilter |
122
+ *SwaggerAemClient::SlingApi* | [**post_config_property**](docs/SlingApi.md#post_config_property) | **POST** /apps/system/config/{configNodeName} |
120
123
  *SwaggerAemClient::SlingApi* | [**post_node**](docs/SlingApi.md#post_node) | **POST** /{path}/{name} |
121
124
  *SwaggerAemClient::SlingApi* | [**post_node_rw**](docs/SlingApi.md#post_node_rw) | **POST** /{path}/{name}.rw.html |
122
125
  *SwaggerAemClient::SlingApi* | [**post_path**](docs/SlingApi.md#post_path) | **POST** /{path}/ |
@@ -128,6 +131,11 @@ Class | Method | HTTP request | Description
128
131
 
129
132
  ## Documentation for Models
130
133
 
134
+ - [SwaggerAemClient::InlineObject](docs/InlineObject.md)
135
+ - [SwaggerAemClient::InlineObject1](docs/InlineObject1.md)
136
+ - [SwaggerAemClient::InlineObject2](docs/InlineObject2.md)
137
+ - [SwaggerAemClient::InlineObject3](docs/InlineObject3.md)
138
+ - [SwaggerAemClient::InlineObject4](docs/InlineObject4.md)
131
139
  - [SwaggerAemClient::InstallStatus](docs/InstallStatus.md)
132
140
  - [SwaggerAemClient::InstallStatusStatus](docs/InstallStatusStatus.md)
133
141
  - [SwaggerAemClient::KeystoreChainItems](docs/KeystoreChainItems.md)
@@ -11,12 +11,15 @@ Method | HTTP request | Description
11
11
  [**post_saml_configuration**](ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
12
12
 
13
13
 
14
- # **get_aem_product_info**
14
+
15
+ ## get_aem_product_info
16
+
15
17
  > Array&lt;String&gt; get_aem_product_info
16
18
 
17
19
 
18
20
 
19
21
  ### Example
22
+
20
23
  ```ruby
21
24
  # load the gem
22
25
  require 'swagger_aem'
@@ -38,6 +41,7 @@ end
38
41
  ```
39
42
 
40
43
  ### Parameters
44
+
41
45
  This endpoint does not need any parameter.
42
46
 
43
47
  ### Return type
@@ -50,17 +54,18 @@ This endpoint does not need any parameter.
50
54
 
51
55
  ### HTTP request headers
52
56
 
53
- - **Content-Type**: Not defined
54
- - **Accept**: application/json
57
+ - **Content-Type**: Not defined
58
+ - **Accept**: application/json
55
59
 
56
60
 
61
+ ## get_config_mgr
57
62
 
58
- # **get_config_mgr**
59
63
  > String get_config_mgr
60
64
 
61
65
 
62
66
 
63
67
  ### Example
68
+
64
69
  ```ruby
65
70
  # load the gem
66
71
  require 'swagger_aem'
@@ -82,6 +87,7 @@ end
82
87
  ```
83
88
 
84
89
  ### Parameters
90
+
85
91
  This endpoint does not need any parameter.
86
92
 
87
93
  ### Return type
@@ -94,17 +100,18 @@ This endpoint does not need any parameter.
94
100
 
95
101
  ### HTTP request headers
96
102
 
97
- - **Content-Type**: Not defined
98
- - **Accept**: text/xml
103
+ - **Content-Type**: Not defined
104
+ - **Accept**: text/xml
99
105
 
100
106
 
107
+ ## post_bundle
101
108
 
102
- # **post_bundle**
103
109
  > post_bundle(name, action)
104
110
 
105
111
 
106
112
 
107
113
  ### Example
114
+
108
115
  ```ruby
109
116
  # load the gem
110
117
  require 'swagger_aem'
@@ -128,6 +135,7 @@ end
128
135
 
129
136
  ### Parameters
130
137
 
138
+
131
139
  Name | Type | Description | Notes
132
140
  ------------- | ------------- | ------------- | -------------
133
141
  **name** | **String**| |
@@ -143,17 +151,18 @@ nil (empty response body)
143
151
 
144
152
  ### HTTP request headers
145
153
 
146
- - **Content-Type**: Not defined
147
- - **Accept**: Not defined
154
+ - **Content-Type**: Not defined
155
+ - **Accept**: Not defined
148
156
 
149
157
 
158
+ ## post_jmx_repository
150
159
 
151
- # **post_jmx_repository**
152
160
  > post_jmx_repository(action)
153
161
 
154
162
 
155
163
 
156
164
  ### Example
165
+
157
166
  ```ruby
158
167
  # load the gem
159
168
  require 'swagger_aem'
@@ -176,6 +185,7 @@ end
176
185
 
177
186
  ### Parameters
178
187
 
188
+
179
189
  Name | Type | Description | Notes
180
190
  ------------- | ------------- | ------------- | -------------
181
191
  **action** | **String**| |
@@ -190,17 +200,18 @@ nil (empty response body)
190
200
 
191
201
  ### HTTP request headers
192
202
 
193
- - **Content-Type**: Not defined
194
- - **Accept**: Not defined
203
+ - **Content-Type**: Not defined
204
+ - **Accept**: Not defined
195
205
 
196
206
 
207
+ ## post_saml_configuration
197
208
 
198
- # **post_saml_configuration**
199
209
  > SamlConfigurationInfo post_saml_configuration(opts)
200
210
 
201
211
 
202
212
 
203
213
  ### Example
214
+
204
215
  ```ruby
205
216
  # load the gem
206
217
  require 'swagger_aem'
@@ -213,30 +224,30 @@ end
213
224
 
214
225
  api_instance = SwaggerAemClient::ConsoleApi.new
215
226
  opts = {
216
- post: true, # BOOLEAN |
217
- apply: true, # BOOLEAN |
218
- delete: true, # BOOLEAN |
227
+ post: true, # Boolean |
228
+ apply: true, # Boolean |
229
+ delete: true, # Boolean |
219
230
  action: 'action_example', # String |
220
231
  location: 'location_example', # String |
221
232
  path: ['path_example'], # Array<String> |
222
233
  service_ranking: 56, # Integer |
223
234
  idp_url: 'idp_url_example', # String |
224
235
  idp_cert_alias: 'idp_cert_alias_example', # String |
225
- idp_http_redirect: true, # BOOLEAN |
236
+ idp_http_redirect: true, # Boolean |
226
237
  service_provider_entity_id: 'service_provider_entity_id_example', # String |
227
238
  assertion_consumer_service_url: 'assertion_consumer_service_url_example', # String |
228
239
  sp_private_key_alias: 'sp_private_key_alias_example', # String |
229
240
  key_store_password: 'key_store_password_example', # String |
230
241
  default_redirect_url: 'default_redirect_url_example', # String |
231
242
  user_id_attribute: 'user_id_attribute_example', # String |
232
- use_encryption: true, # BOOLEAN |
233
- create_user: true, # BOOLEAN |
234
- add_group_memberships: true, # BOOLEAN |
243
+ use_encryption: true, # Boolean |
244
+ create_user: true, # Boolean |
245
+ add_group_memberships: true, # Boolean |
235
246
  group_membership_attribute: 'group_membership_attribute_example', # String |
236
247
  default_groups: ['default_groups_example'], # Array<String> |
237
248
  name_id_format: 'name_id_format_example', # String |
238
249
  synchronize_attributes: ['synchronize_attributes_example'], # Array<String> |
239
- handle_logout: true, # BOOLEAN |
250
+ handle_logout: true, # Boolean |
240
251
  logout_url: 'logout_url_example', # String |
241
252
  clock_tolerance: 56, # Integer |
242
253
  digest_method: 'digest_method_example', # String |
@@ -255,32 +266,33 @@ end
255
266
 
256
267
  ### Parameters
257
268
 
269
+
258
270
  Name | Type | Description | Notes
259
271
  ------------- | ------------- | ------------- | -------------
260
- **post** | **BOOLEAN**| | [optional]
261
- **apply** | **BOOLEAN**| | [optional]
262
- **delete** | **BOOLEAN**| | [optional]
272
+ **post** | **Boolean**| | [optional]
273
+ **apply** | **Boolean**| | [optional]
274
+ **delete** | **Boolean**| | [optional]
263
275
  **action** | **String**| | [optional]
264
276
  **location** | **String**| | [optional]
265
277
  **path** | [**Array&lt;String&gt;**](String.md)| | [optional]
266
278
  **service_ranking** | **Integer**| | [optional]
267
279
  **idp_url** | **String**| | [optional]
268
280
  **idp_cert_alias** | **String**| | [optional]
269
- **idp_http_redirect** | **BOOLEAN**| | [optional]
281
+ **idp_http_redirect** | **Boolean**| | [optional]
270
282
  **service_provider_entity_id** | **String**| | [optional]
271
283
  **assertion_consumer_service_url** | **String**| | [optional]
272
284
  **sp_private_key_alias** | **String**| | [optional]
273
285
  **key_store_password** | **String**| | [optional]
274
286
  **default_redirect_url** | **String**| | [optional]
275
287
  **user_id_attribute** | **String**| | [optional]
276
- **use_encryption** | **BOOLEAN**| | [optional]
277
- **create_user** | **BOOLEAN**| | [optional]
278
- **add_group_memberships** | **BOOLEAN**| | [optional]
288
+ **use_encryption** | **Boolean**| | [optional]
289
+ **create_user** | **Boolean**| | [optional]
290
+ **add_group_memberships** | **Boolean**| | [optional]
279
291
  **group_membership_attribute** | **String**| | [optional]
280
292
  **default_groups** | [**Array&lt;String&gt;**](String.md)| | [optional]
281
293
  **name_id_format** | **String**| | [optional]
282
294
  **synchronize_attributes** | [**Array&lt;String&gt;**](String.md)| | [optional]
283
- **handle_logout** | **BOOLEAN**| | [optional]
295
+ **handle_logout** | **Boolean**| | [optional]
284
296
  **logout_url** | **String**| | [optional]
285
297
  **clock_tolerance** | **Integer**| | [optional]
286
298
  **digest_method** | **String**| | [optional]
@@ -298,8 +310,6 @@ Name | Type | Description | Notes
298
310
 
299
311
  ### HTTP request headers
300
312
 
301
- - **Content-Type**: Not defined
302
- - **Accept**: text/plain
303
-
304
-
313
+ - **Content-Type**: Not defined
314
+ - **Accept**: text/plain
305
315
 
@@ -8,12 +8,15 @@ Method | HTTP request | Description
8
8
  [**post_cq_actions**](CqApi.md#post_cq_actions) | **POST** /.cqactions.html |
9
9
 
10
10
 
11
- # **get_login_page**
11
+
12
+ ## get_login_page
13
+
12
14
  > String get_login_page
13
15
 
14
16
 
15
17
 
16
18
  ### Example
19
+
17
20
  ```ruby
18
21
  # load the gem
19
22
  require 'swagger_aem'
@@ -29,6 +32,7 @@ end
29
32
  ```
30
33
 
31
34
  ### Parameters
35
+
32
36
  This endpoint does not need any parameter.
33
37
 
34
38
  ### Return type
@@ -41,17 +45,18 @@ No authorization required
41
45
 
42
46
  ### HTTP request headers
43
47
 
44
- - **Content-Type**: Not defined
45
- - **Accept**: text/html
48
+ - **Content-Type**: Not defined
49
+ - **Accept**: text/html
46
50
 
47
51
 
52
+ ## post_cq_actions
48
53
 
49
- # **post_cq_actions**
50
54
  > post_cq_actions(authorizable_id, changelog)
51
55
 
52
56
 
53
57
 
54
58
  ### Example
59
+
55
60
  ```ruby
56
61
  # load the gem
57
62
  require 'swagger_aem'
@@ -75,6 +80,7 @@ end
75
80
 
76
81
  ### Parameters
77
82
 
83
+
78
84
  Name | Type | Description | Notes
79
85
  ------------- | ------------- | ------------- | -------------
80
86
  **authorizable_id** | **String**| |
@@ -90,8 +96,6 @@ nil (empty response body)
90
96
 
91
97
  ### HTTP request headers
92
98
 
93
- - **Content-Type**: Not defined
94
- - **Accept**: Not defined
95
-
96
-
99
+ - **Content-Type**: Not defined
100
+ - **Accept**: Not defined
97
101