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
@@ -1,9 +1,19 @@
1
1
  # SwaggerAemClient::InstallStatusStatus
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
- **finished** | **BOOLEAN** | | [optional]
7
+ **finished** | **Boolean** | | [optional]
7
8
  **item_count** | **Integer** | | [optional]
8
9
 
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'SwaggerAemClient'
14
+
15
+ instance = SwaggerAemClient::InstallStatusStatus.new(finished: null,
16
+ item_count: null)
17
+ ```
18
+
9
19
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::KeystoreChainItems
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **subject** | **String** | e.g. \"CN=localhost\" | [optional]
@@ -9,4 +10,16 @@ Name | Type | Description | Notes
9
10
  **not_after** | **String** | e.g. \"Sun Jun 30 23:59:50 AEST 2019\" | [optional]
10
11
  **serial_number** | **Integer** | 18165099476682912368 | [optional]
11
12
 
13
+ ## Code Sample
14
+
15
+ ```ruby
16
+ require 'SwaggerAemClient'
17
+
18
+ instance = SwaggerAemClient::KeystoreChainItems.new(subject: null,
19
+ issuer: null,
20
+ not_before: null,
21
+ not_after: null,
22
+ serial_number: null)
23
+ ```
24
+
12
25
 
@@ -1,9 +1,19 @@
1
1
  # SwaggerAemClient::KeystoreInfo
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **aliases** | [**Array<KeystoreItems>**](KeystoreItems.md) | | [optional]
7
- **exists** | **BOOLEAN** | False if truststore don't exist | [optional]
8
+ **exists** | **Boolean** | False if truststore don't exist | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'SwaggerAemClient'
14
+
15
+ instance = SwaggerAemClient::KeystoreInfo.new(aliases: null,
16
+ exists: null)
17
+ ```
8
18
 
9
19
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::KeystoreItems
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **_alias** | **String** | Keystore alias name | [optional]
@@ -9,4 +10,16 @@ Name | Type | Description | Notes
9
10
  **format** | **String** | e.g. \"PKCS#8\" | [optional]
10
11
  **chain** | [**Array<KeystoreChainItems>**](KeystoreChainItems.md) | | [optional]
11
12
 
13
+ ## Code Sample
14
+
15
+ ```ruby
16
+ require 'SwaggerAemClient'
17
+
18
+ instance = SwaggerAemClient::KeystoreItems.new(_alias: null,
19
+ entry_type: null,
20
+ algorithm: null,
21
+ format: null,
22
+ chain: null)
23
+ ```
24
+
12
25
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::SamlConfigurationInfo
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **pid** | **String** | Persistent Identity (PID) | [optional]
@@ -10,4 +11,17 @@ Name | Type | Description | Notes
10
11
  **service_location** | **String** | needed for configuraiton binding | [optional]
11
12
  **properties** | [**SamlConfigurationProperties**](SamlConfigurationProperties.md) | | [optional]
12
13
 
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationInfo.new(pid: null,
20
+ title: null,
21
+ description: null,
22
+ bundle_location: null,
23
+ service_location: null,
24
+ properties: null)
25
+ ```
26
+
13
27
 
@@ -1,6 +1,7 @@
1
1
  # SwaggerAemClient::SamlConfigurationProperties
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **path** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
@@ -28,4 +29,35 @@ Name | Type | Description | Notes
28
29
  **signature_method** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
29
30
  **user_intermediate_path** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
30
31
 
32
+ ## Code Sample
33
+
34
+ ```ruby
35
+ require 'SwaggerAemClient'
36
+
37
+ instance = SwaggerAemClient::SamlConfigurationProperties.new(path: null,
38
+ service_ranking: null,
39
+ idp_url: null,
40
+ idp_cert_alias: null,
41
+ idp_http_redirect: null,
42
+ service_provider_entity_id: null,
43
+ assertion_consumer_service_url: null,
44
+ sp_private_key_alias: null,
45
+ key_store_password: null,
46
+ default_redirect_url: null,
47
+ user_id_attribute: null,
48
+ use_encryption: null,
49
+ create_user: null,
50
+ add_group_memberships: null,
51
+ group_membership_attribute: null,
52
+ default_groups: null,
53
+ name_id_format: null,
54
+ synchronize_attributes: null,
55
+ handle_logout: null,
56
+ logout_url: null,
57
+ clock_tolerance: null,
58
+ digest_method: null,
59
+ signature_method: null,
60
+ user_intermediate_path: null)
61
+ ```
62
+
31
63
 
@@ -1,13 +1,27 @@
1
1
  # SwaggerAemClient::SamlConfigurationPropertyItemsArray
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **name** | **String** | property name | [optional]
7
- **optional** | **BOOLEAN** | True if optional | [optional]
8
- **is_set** | **BOOLEAN** | True if property is set | [optional]
8
+ **optional** | **Boolean** | True if optional | [optional]
9
+ **is_set** | **Boolean** | True if property is set | [optional]
9
10
  **type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
10
11
  **values** | **Array<String>** | Property value | [optional]
11
12
  **description** | **String** | Property description | [optional]
12
13
 
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationPropertyItemsArray.new(name: null,
20
+ optional: null,
21
+ is_set: null,
22
+ type: null,
23
+ values: null,
24
+ description: null)
25
+ ```
26
+
13
27
 
@@ -1,13 +1,27 @@
1
1
  # SwaggerAemClient::SamlConfigurationPropertyItemsBoolean
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **name** | **String** | property name | [optional]
7
- **optional** | **BOOLEAN** | True if optional | [optional]
8
- **is_set** | **BOOLEAN** | True if property is set | [optional]
8
+ **optional** | **Boolean** | True if optional | [optional]
9
+ **is_set** | **Boolean** | True if property is set | [optional]
9
10
  **type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
10
- **value** | **BOOLEAN** | Property value | [optional]
11
+ **value** | **Boolean** | Property value | [optional]
11
12
  **description** | **String** | Property description | [optional]
12
13
 
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationPropertyItemsBoolean.new(name: null,
20
+ optional: null,
21
+ is_set: null,
22
+ type: null,
23
+ value: null,
24
+ description: null)
25
+ ```
26
+
13
27
 
@@ -1,13 +1,27 @@
1
1
  # SwaggerAemClient::SamlConfigurationPropertyItemsLong
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **name** | **String** | property name | [optional]
7
- **optional** | **BOOLEAN** | True if optional | [optional]
8
- **is_set** | **BOOLEAN** | True if property is set | [optional]
8
+ **optional** | **Boolean** | True if optional | [optional]
9
+ **is_set** | **Boolean** | True if property is set | [optional]
9
10
  **type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
10
11
  **value** | **Integer** | Property value | [optional]
11
12
  **description** | **String** | Property description | [optional]
12
13
 
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationPropertyItemsLong.new(name: null,
20
+ optional: null,
21
+ is_set: null,
22
+ type: null,
23
+ value: null,
24
+ description: null)
25
+ ```
26
+
13
27
 
@@ -1,13 +1,27 @@
1
1
  # SwaggerAemClient::SamlConfigurationPropertyItemsString
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **name** | **String** | property name | [optional]
7
- **optional** | **BOOLEAN** | True if optional | [optional]
8
- **is_set** | **BOOLEAN** | True if property is set | [optional]
8
+ **optional** | **Boolean** | True if optional | [optional]
9
+ **is_set** | **Boolean** | True if property is set | [optional]
9
10
  **type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
10
11
  **value** | **String** | Property value | [optional]
11
12
  **description** | **String** | Property description | [optional]
12
13
 
14
+ ## Code Sample
15
+
16
+ ```ruby
17
+ require 'SwaggerAemClient'
18
+
19
+ instance = SwaggerAemClient::SamlConfigurationPropertyItemsString.new(name: null,
20
+ optional: null,
21
+ is_set: null,
22
+ type: null,
23
+ value: null,
24
+ description: null)
25
+ ```
26
+
13
27
 
@@ -25,6 +25,7 @@ Method | HTTP request | Description
25
25
  [**post_config_apache_sling_dav_ex_servlet**](SlingApi.md#post_config_apache_sling_dav_ex_servlet) | **POST** /apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet |
26
26
  [**post_config_apache_sling_get_servlet**](SlingApi.md#post_config_apache_sling_get_servlet) | **POST** /apps/system/config/org.apache.sling.servlets.get.DefaultGetServlet |
27
27
  [**post_config_apache_sling_referrer_filter**](SlingApi.md#post_config_apache_sling_referrer_filter) | **POST** /apps/system/config/org.apache.sling.security.impl.ReferrerFilter |
28
+ [**post_config_property**](SlingApi.md#post_config_property) | **POST** /apps/system/config/{configNodeName} |
28
29
  [**post_node**](SlingApi.md#post_node) | **POST** /{path}/{name} |
29
30
  [**post_node_rw**](SlingApi.md#post_node_rw) | **POST** /{path}/{name}.rw.html |
30
31
  [**post_path**](SlingApi.md#post_path) | **POST** /{path}/ |
@@ -34,12 +35,15 @@ Method | HTTP request | Description
34
35
  [**post_truststore_pkcs12**](SlingApi.md#post_truststore_pkcs12) | **POST** /etc/truststore |
35
36
 
36
37
 
37
- # **delete_agent**
38
+
39
+ ## delete_agent
40
+
38
41
  > delete_agent(runmode, name)
39
42
 
40
43
 
41
44
 
42
45
  ### Example
46
+
43
47
  ```ruby
44
48
  # load the gem
45
49
  require 'swagger_aem'
@@ -63,6 +67,7 @@ end
63
67
 
64
68
  ### Parameters
65
69
 
70
+
66
71
  Name | Type | Description | Notes
67
72
  ------------- | ------------- | ------------- | -------------
68
73
  **runmode** | **String**| |
@@ -78,17 +83,18 @@ nil (empty response body)
78
83
 
79
84
  ### HTTP request headers
80
85
 
81
- - **Content-Type**: Not defined
82
- - **Accept**: Not defined
86
+ - **Content-Type**: Not defined
87
+ - **Accept**: Not defined
83
88
 
84
89
 
90
+ ## delete_node
85
91
 
86
- # **delete_node**
87
92
  > delete_node(path, name)
88
93
 
89
94
 
90
95
 
91
96
  ### Example
97
+
92
98
  ```ruby
93
99
  # load the gem
94
100
  require 'swagger_aem'
@@ -112,6 +118,7 @@ end
112
118
 
113
119
  ### Parameters
114
120
 
121
+
115
122
  Name | Type | Description | Notes
116
123
  ------------- | ------------- | ------------- | -------------
117
124
  **path** | **String**| |
@@ -127,17 +134,18 @@ nil (empty response body)
127
134
 
128
135
  ### HTTP request headers
129
136
 
130
- - **Content-Type**: Not defined
131
- - **Accept**: Not defined
137
+ - **Content-Type**: Not defined
138
+ - **Accept**: Not defined
132
139
 
133
140
 
141
+ ## get_agent
134
142
 
135
- # **get_agent**
136
143
  > get_agent(runmode, name)
137
144
 
138
145
 
139
146
 
140
147
  ### Example
148
+
141
149
  ```ruby
142
150
  # load the gem
143
151
  require 'swagger_aem'
@@ -161,6 +169,7 @@ end
161
169
 
162
170
  ### Parameters
163
171
 
172
+
164
173
  Name | Type | Description | Notes
165
174
  ------------- | ------------- | ------------- | -------------
166
175
  **runmode** | **String**| |
@@ -176,17 +185,18 @@ nil (empty response body)
176
185
 
177
186
  ### HTTP request headers
178
187
 
179
- - **Content-Type**: Not defined
180
- - **Accept**: Not defined
188
+ - **Content-Type**: Not defined
189
+ - **Accept**: Not defined
181
190
 
182
191
 
192
+ ## get_agents
183
193
 
184
- # **get_agents**
185
194
  > String get_agents(runmode)
186
195
 
187
196
 
188
197
 
189
198
  ### Example
199
+
190
200
  ```ruby
191
201
  # load the gem
192
202
  require 'swagger_aem'
@@ -210,6 +220,7 @@ end
210
220
 
211
221
  ### Parameters
212
222
 
223
+
213
224
  Name | Type | Description | Notes
214
225
  ------------- | ------------- | ------------- | -------------
215
226
  **runmode** | **String**| |
@@ -224,17 +235,18 @@ Name | Type | Description | Notes
224
235
 
225
236
  ### HTTP request headers
226
237
 
227
- - **Content-Type**: Not defined
228
- - **Accept**: application/json
238
+ - **Content-Type**: Not defined
239
+ - **Accept**: application/json
229
240
 
230
241
 
242
+ ## get_authorizable_keystore
231
243
 
232
- # **get_authorizable_keystore**
233
244
  > KeystoreInfo get_authorizable_keystore(intermediate_path, authorizable_id)
234
245
 
235
246
 
236
247
 
237
248
  ### Example
249
+
238
250
  ```ruby
239
251
  # load the gem
240
252
  require 'swagger_aem'
@@ -259,6 +271,7 @@ end
259
271
 
260
272
  ### Parameters
261
273
 
274
+
262
275
  Name | Type | Description | Notes
263
276
  ------------- | ------------- | ------------- | -------------
264
277
  **intermediate_path** | **String**| |
@@ -274,17 +287,18 @@ Name | Type | Description | Notes
274
287
 
275
288
  ### HTTP request headers
276
289
 
277
- - **Content-Type**: Not defined
278
- - **Accept**: text/plain
290
+ - **Content-Type**: Not defined
291
+ - **Accept**: text/plain
279
292
 
280
293
 
294
+ ## get_keystore
281
295
 
282
- # **get_keystore**
283
296
  > File get_keystore(intermediate_path, authorizable_id)
284
297
 
285
298
 
286
299
 
287
300
  ### Example
301
+
288
302
  ```ruby
289
303
  # load the gem
290
304
  require 'swagger_aem'
@@ -309,6 +323,7 @@ end
309
323
 
310
324
  ### Parameters
311
325
 
326
+
312
327
  Name | Type | Description | Notes
313
328
  ------------- | ------------- | ------------- | -------------
314
329
  **intermediate_path** | **String**| |
@@ -324,17 +339,18 @@ Name | Type | Description | Notes
324
339
 
325
340
  ### HTTP request headers
326
341
 
327
- - **Content-Type**: Not defined
328
- - **Accept**: application/octet-stream
342
+ - **Content-Type**: Not defined
343
+ - **Accept**: application/octet-stream
329
344
 
330
345
 
346
+ ## get_node
331
347
 
332
- # **get_node**
333
348
  > get_node(path, name)
334
349
 
335
350
 
336
351
 
337
352
  ### Example
353
+
338
354
  ```ruby
339
355
  # load the gem
340
356
  require 'swagger_aem'
@@ -358,6 +374,7 @@ end
358
374
 
359
375
  ### Parameters
360
376
 
377
+
361
378
  Name | Type | Description | Notes
362
379
  ------------- | ------------- | ------------- | -------------
363
380
  **path** | **String**| |
@@ -373,17 +390,18 @@ nil (empty response body)
373
390
 
374
391
  ### HTTP request headers
375
392
 
376
- - **Content-Type**: Not defined
377
- - **Accept**: Not defined
393
+ - **Content-Type**: Not defined
394
+ - **Accept**: Not defined
378
395
 
379
396
 
397
+ ## get_package
380
398
 
381
- # **get_package**
382
399
  > File get_package(group, name, version)
383
400
 
384
401
 
385
402
 
386
403
  ### Example
404
+
387
405
  ```ruby
388
406
  # load the gem
389
407
  require 'swagger_aem'
@@ -409,6 +427,7 @@ end
409
427
 
410
428
  ### Parameters
411
429
 
430
+
412
431
  Name | Type | Description | Notes
413
432
  ------------- | ------------- | ------------- | -------------
414
433
  **group** | **String**| |
@@ -425,17 +444,18 @@ Name | Type | Description | Notes
425
444
 
426
445
  ### HTTP request headers
427
446
 
428
- - **Content-Type**: Not defined
429
- - **Accept**: application/octet-stream
447
+ - **Content-Type**: Not defined
448
+ - **Accept**: application/octet-stream
430
449
 
431
450
 
451
+ ## get_package_filter
432
452
 
433
- # **get_package_filter**
434
453
  > String get_package_filter(group, name, version)
435
454
 
436
455
 
437
456
 
438
457
  ### Example
458
+
439
459
  ```ruby
440
460
  # load the gem
441
461
  require 'swagger_aem'
@@ -461,6 +481,7 @@ end
461
481
 
462
482
  ### Parameters
463
483
 
484
+
464
485
  Name | Type | Description | Notes
465
486
  ------------- | ------------- | ------------- | -------------
466
487
  **group** | **String**| |
@@ -477,17 +498,18 @@ Name | Type | Description | Notes
477
498
 
478
499
  ### HTTP request headers
479
500
 
480
- - **Content-Type**: Not defined
481
- - **Accept**: application/json
501
+ - **Content-Type**: Not defined
502
+ - **Accept**: application/json
482
503
 
483
504
 
505
+ ## get_query
484
506
 
485
- # **get_query**
486
507
  > String get_query(path, p_limit, _1_property, _1_property_value)
487
508
 
488
509
 
489
510
 
490
511
  ### Example
512
+
491
513
  ```ruby
492
514
  # load the gem
493
515
  require 'swagger_aem'
@@ -514,6 +536,7 @@ end
514
536
 
515
537
  ### Parameters
516
538
 
539
+
517
540
  Name | Type | Description | Notes
518
541
  ------------- | ------------- | ------------- | -------------
519
542
  **path** | **String**| |
@@ -531,17 +554,18 @@ Name | Type | Description | Notes
531
554
 
532
555
  ### HTTP request headers
533
556
 
534
- - **Content-Type**: Not defined
535
- - **Accept**: application/json
557
+ - **Content-Type**: Not defined
558
+ - **Accept**: application/json
536
559
 
537
560
 
561
+ ## get_truststore
538
562
 
539
- # **get_truststore**
540
563
  > File get_truststore
541
564
 
542
565
 
543
566
 
544
567
  ### Example
568
+
545
569
  ```ruby
546
570
  # load the gem
547
571
  require 'swagger_aem'
@@ -563,6 +587,7 @@ end
563
587
  ```
564
588
 
565
589
  ### Parameters
590
+
566
591
  This endpoint does not need any parameter.
567
592
 
568
593
  ### Return type
@@ -575,17 +600,18 @@ This endpoint does not need any parameter.
575
600
 
576
601
  ### HTTP request headers
577
602
 
578
- - **Content-Type**: Not defined
579
- - **Accept**: application/octet-stream
603
+ - **Content-Type**: Not defined
604
+ - **Accept**: application/octet-stream
580
605
 
581
606
 
607
+ ## get_truststore_info
582
608
 
583
- # **get_truststore_info**
584
609
  > TruststoreInfo get_truststore_info
585
610
 
586
611
 
587
612
 
588
613
  ### Example
614
+
589
615
  ```ruby
590
616
  # load the gem
591
617
  require 'swagger_aem'
@@ -607,6 +633,7 @@ end
607
633
  ```
608
634
 
609
635
  ### Parameters
636
+
610
637
  This endpoint does not need any parameter.
611
638
 
612
639
  ### Return type
@@ -619,17 +646,18 @@ This endpoint does not need any parameter.
619
646
 
620
647
  ### HTTP request headers
621
648
 
622
- - **Content-Type**: Not defined
623
- - **Accept**: application/json
649
+ - **Content-Type**: Not defined
650
+ - **Accept**: application/json
624
651
 
625
652
 
653
+ ## post_agent
626
654
 
627
- # **post_agent**
628
655
  > post_agent(runmode, name, opts)
629
656
 
630
657
 
631
658
 
632
659
  ### Example
660
+
633
661
  ```ruby
634
662
  # load the gem
635
663
  require 'swagger_aem'
@@ -644,54 +672,54 @@ api_instance = SwaggerAemClient::SlingApi.new
644
672
  runmode = 'runmode_example' # String |
645
673
  name = 'name_example' # String |
646
674
  opts = {
647
- jcrcontentcqdistribute: true, # BOOLEAN |
648
- jcrcontentcqdistribute_type_hint: 'jcrcontentcqdistribute_type_hint_example', # String |
649
- jcrcontentcqname: 'jcrcontentcqname_example', # String |
650
- jcrcontentcqtemplate: 'jcrcontentcqtemplate_example', # String |
651
- jcrcontentenabled: true, # BOOLEAN |
652
- jcrcontentjcrdescription: 'jcrcontentjcrdescription_example', # String |
653
- jcrcontentjcrlast_modified: 'jcrcontentjcrlast_modified_example', # String |
654
- jcrcontentjcrlast_modified_by: 'jcrcontentjcrlast_modified_by_example', # String |
655
- jcrcontentjcrmixin_types: 'jcrcontentjcrmixin_types_example', # String |
656
- jcrcontentjcrtitle: 'jcrcontentjcrtitle_example', # String |
657
- jcrcontentlog_level: 'jcrcontentlog_level_example', # String |
658
- jcrcontentno_status_update: true, # BOOLEAN |
659
- jcrcontentno_versioning: true, # BOOLEAN |
660
- jcrcontentprotocol_connect_timeout: 3.4, # Float |
661
- jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
662
- jcrcontentprotocol_http_expired: 'jcrcontentprotocol_http_expired_example', # String |
663
- jcrcontentprotocol_http_headers: ['jcrcontentprotocol_http_headers_example'], # Array<String> |
664
- jcrcontentprotocol_http_headers_type_hint: 'jcrcontentprotocol_http_headers_type_hint_example', # String |
665
- jcrcontentprotocol_http_method: 'jcrcontentprotocol_http_method_example', # String |
666
- jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
667
- jcrcontentprotocol_interface: 'jcrcontentprotocol_interface_example', # String |
668
- jcrcontentprotocol_socket_timeout: 3.4, # Float |
669
- jcrcontentprotocol_version: 'jcrcontentprotocol_version_example', # String |
670
- jcrcontentproxy_ntlm_domain: 'jcrcontentproxy_ntlm_domain_example', # String |
671
- jcrcontentproxy_ntlm_host: 'jcrcontentproxy_ntlm_host_example', # String |
672
- jcrcontentproxy_host: 'jcrcontentproxy_host_example', # String |
673
- jcrcontentproxy_password: 'jcrcontentproxy_password_example', # String |
674
- jcrcontentproxy_port: 3.4, # Float |
675
- jcrcontentproxy_user: 'jcrcontentproxy_user_example', # String |
676
- jcrcontentqueue_batch_max_size: 3.4, # Float |
677
- jcrcontentqueue_batch_mode: 'jcrcontentqueue_batch_mode_example', # String |
678
- jcrcontentqueue_batch_wait_time: 3.4, # Float |
679
- jcrcontentretry_delay: 'jcrcontentretry_delay_example', # String |
680
- jcrcontentreverse_replication: true, # BOOLEAN |
681
- jcrcontentserialization_type: 'jcrcontentserialization_type_example', # String |
682
- jcrcontentslingresource_type: 'jcrcontentslingresource_type_example', # String |
683
- jcrcontentssl: 'jcrcontentssl_example', # String |
684
- jcrcontenttransport_ntlm_domain: 'jcrcontenttransport_ntlm_domain_example', # String |
685
- jcrcontenttransport_ntlm_host: 'jcrcontenttransport_ntlm_host_example', # String |
686
- jcrcontenttransport_password: 'jcrcontenttransport_password_example', # String |
687
- jcrcontenttransport_uri: 'jcrcontenttransport_uri_example', # String |
688
- jcrcontenttransport_user: 'jcrcontenttransport_user_example', # String |
689
- jcrcontenttrigger_distribute: true, # BOOLEAN |
690
- jcrcontenttrigger_modified: true, # BOOLEAN |
691
- jcrcontenttrigger_on_off_time: true, # BOOLEAN |
692
- jcrcontenttrigger_receive: true, # BOOLEAN |
693
- jcrcontenttrigger_specific: true, # BOOLEAN |
694
- jcrcontentuser_id: 'jcrcontentuser_id_example', # String |
675
+ jcrcontent_cqdistribute: true, # Boolean |
676
+ jcrcontent_cqdistribute_type_hint: 'jcrcontent_cqdistribute_type_hint_example', # String |
677
+ jcrcontent_cqname: 'jcrcontent_cqname_example', # String |
678
+ jcrcontent_cqtemplate: 'jcrcontent_cqtemplate_example', # String |
679
+ jcrcontent_enabled: true, # Boolean |
680
+ jcrcontent_jcrdescription: 'jcrcontent_jcrdescription_example', # String |
681
+ jcrcontent_jcrlast_modified: 'jcrcontent_jcrlast_modified_example', # String |
682
+ jcrcontent_jcrlast_modified_by: 'jcrcontent_jcrlast_modified_by_example', # String |
683
+ jcrcontent_jcrmixin_types: 'jcrcontent_jcrmixin_types_example', # String |
684
+ jcrcontent_jcrtitle: 'jcrcontent_jcrtitle_example', # String |
685
+ jcrcontent_log_level: 'jcrcontent_log_level_example', # String |
686
+ jcrcontent_no_status_update: true, # Boolean |
687
+ jcrcontent_no_versioning: true, # Boolean |
688
+ jcrcontent_protocol_connect_timeout: 3.4, # Float |
689
+ jcrcontent_protocol_http_connection_closed: true, # Boolean |
690
+ jcrcontent_protocol_http_expired: 'jcrcontent_protocol_http_expired_example', # String |
691
+ jcrcontent_protocol_http_headers: ['jcrcontent_protocol_http_headers_example'], # Array<String> |
692
+ jcrcontent_protocol_http_headers_type_hint: 'jcrcontent_protocol_http_headers_type_hint_example', # String |
693
+ jcrcontent_protocol_http_method: 'jcrcontent_protocol_http_method_example', # String |
694
+ jcrcontent_protocol_https_relaxed: true, # Boolean |
695
+ jcrcontent_protocol_interface: 'jcrcontent_protocol_interface_example', # String |
696
+ jcrcontent_protocol_socket_timeout: 3.4, # Float |
697
+ jcrcontent_protocol_version: 'jcrcontent_protocol_version_example', # String |
698
+ jcrcontent_proxy_ntlm_domain: 'jcrcontent_proxy_ntlm_domain_example', # String |
699
+ jcrcontent_proxy_ntlm_host: 'jcrcontent_proxy_ntlm_host_example', # String |
700
+ jcrcontent_proxy_host: 'jcrcontent_proxy_host_example', # String |
701
+ jcrcontent_proxy_password: 'jcrcontent_proxy_password_example', # String |
702
+ jcrcontent_proxy_port: 3.4, # Float |
703
+ jcrcontent_proxy_user: 'jcrcontent_proxy_user_example', # String |
704
+ jcrcontent_queue_batch_max_size: 3.4, # Float |
705
+ jcrcontent_queue_batch_mode: 'jcrcontent_queue_batch_mode_example', # String |
706
+ jcrcontent_queue_batch_wait_time: 3.4, # Float |
707
+ jcrcontent_retry_delay: 'jcrcontent_retry_delay_example', # String |
708
+ jcrcontent_reverse_replication: true, # Boolean |
709
+ jcrcontent_serialization_type: 'jcrcontent_serialization_type_example', # String |
710
+ jcrcontent_slingresource_type: 'jcrcontent_slingresource_type_example', # String |
711
+ jcrcontent_ssl: 'jcrcontent_ssl_example', # String |
712
+ jcrcontent_transport_ntlm_domain: 'jcrcontent_transport_ntlm_domain_example', # String |
713
+ jcrcontent_transport_ntlm_host: 'jcrcontent_transport_ntlm_host_example', # String |
714
+ jcrcontent_transport_password: 'jcrcontent_transport_password_example', # String |
715
+ jcrcontent_transport_uri: 'jcrcontent_transport_uri_example', # String |
716
+ jcrcontent_transport_user: 'jcrcontent_transport_user_example', # String |
717
+ jcrcontent_trigger_distribute: true, # Boolean |
718
+ jcrcontent_trigger_modified: true, # Boolean |
719
+ jcrcontent_trigger_on_off_time: true, # Boolean |
720
+ jcrcontent_trigger_receive: true, # Boolean |
721
+ jcrcontent_trigger_specific: true, # Boolean |
722
+ jcrcontent_user_id: 'jcrcontent_user_id_example', # String |
695
723
  jcrprimary_type: 'jcrprimary_type_example', # String |
696
724
  operation: 'operation_example' # String |
697
725
  }
@@ -705,58 +733,59 @@ end
705
733
 
706
734
  ### Parameters
707
735
 
736
+
708
737
  Name | Type | Description | Notes
709
738
  ------------- | ------------- | ------------- | -------------
710
739
  **runmode** | **String**| |
711
740
  **name** | **String**| |
712
- **jcrcontentcqdistribute** | **BOOLEAN**| | [optional]
713
- **jcrcontentcqdistribute_type_hint** | **String**| | [optional]
714
- **jcrcontentcqname** | **String**| | [optional]
715
- **jcrcontentcqtemplate** | **String**| | [optional]
716
- **jcrcontentenabled** | **BOOLEAN**| | [optional]
717
- **jcrcontentjcrdescription** | **String**| | [optional]
718
- **jcrcontentjcrlast_modified** | **String**| | [optional]
719
- **jcrcontentjcrlast_modified_by** | **String**| | [optional]
720
- **jcrcontentjcrmixin_types** | **String**| | [optional]
721
- **jcrcontentjcrtitle** | **String**| | [optional]
722
- **jcrcontentlog_level** | **String**| | [optional]
723
- **jcrcontentno_status_update** | **BOOLEAN**| | [optional]
724
- **jcrcontentno_versioning** | **BOOLEAN**| | [optional]
725
- **jcrcontentprotocol_connect_timeout** | **Float**| | [optional]
726
- **jcrcontentprotocol_http_connection_closed** | **BOOLEAN**| | [optional]
727
- **jcrcontentprotocol_http_expired** | **String**| | [optional]
728
- **jcrcontentprotocol_http_headers** | [**Array&lt;String&gt;**](String.md)| | [optional]
729
- **jcrcontentprotocol_http_headers_type_hint** | **String**| | [optional]
730
- **jcrcontentprotocol_http_method** | **String**| | [optional]
731
- **jcrcontentprotocol_https_relaxed** | **BOOLEAN**| | [optional]
732
- **jcrcontentprotocol_interface** | **String**| | [optional]
733
- **jcrcontentprotocol_socket_timeout** | **Float**| | [optional]
734
- **jcrcontentprotocol_version** | **String**| | [optional]
735
- **jcrcontentproxy_ntlm_domain** | **String**| | [optional]
736
- **jcrcontentproxy_ntlm_host** | **String**| | [optional]
737
- **jcrcontentproxy_host** | **String**| | [optional]
738
- **jcrcontentproxy_password** | **String**| | [optional]
739
- **jcrcontentproxy_port** | **Float**| | [optional]
740
- **jcrcontentproxy_user** | **String**| | [optional]
741
- **jcrcontentqueue_batch_max_size** | **Float**| | [optional]
742
- **jcrcontentqueue_batch_mode** | **String**| | [optional]
743
- **jcrcontentqueue_batch_wait_time** | **Float**| | [optional]
744
- **jcrcontentretry_delay** | **String**| | [optional]
745
- **jcrcontentreverse_replication** | **BOOLEAN**| | [optional]
746
- **jcrcontentserialization_type** | **String**| | [optional]
747
- **jcrcontentslingresource_type** | **String**| | [optional]
748
- **jcrcontentssl** | **String**| | [optional]
749
- **jcrcontenttransport_ntlm_domain** | **String**| | [optional]
750
- **jcrcontenttransport_ntlm_host** | **String**| | [optional]
751
- **jcrcontenttransport_password** | **String**| | [optional]
752
- **jcrcontenttransport_uri** | **String**| | [optional]
753
- **jcrcontenttransport_user** | **String**| | [optional]
754
- **jcrcontenttrigger_distribute** | **BOOLEAN**| | [optional]
755
- **jcrcontenttrigger_modified** | **BOOLEAN**| | [optional]
756
- **jcrcontenttrigger_on_off_time** | **BOOLEAN**| | [optional]
757
- **jcrcontenttrigger_receive** | **BOOLEAN**| | [optional]
758
- **jcrcontenttrigger_specific** | **BOOLEAN**| | [optional]
759
- **jcrcontentuser_id** | **String**| | [optional]
741
+ **jcrcontent_cqdistribute** | **Boolean**| | [optional]
742
+ **jcrcontent_cqdistribute_type_hint** | **String**| | [optional]
743
+ **jcrcontent_cqname** | **String**| | [optional]
744
+ **jcrcontent_cqtemplate** | **String**| | [optional]
745
+ **jcrcontent_enabled** | **Boolean**| | [optional]
746
+ **jcrcontent_jcrdescription** | **String**| | [optional]
747
+ **jcrcontent_jcrlast_modified** | **String**| | [optional]
748
+ **jcrcontent_jcrlast_modified_by** | **String**| | [optional]
749
+ **jcrcontent_jcrmixin_types** | **String**| | [optional]
750
+ **jcrcontent_jcrtitle** | **String**| | [optional]
751
+ **jcrcontent_log_level** | **String**| | [optional]
752
+ **jcrcontent_no_status_update** | **Boolean**| | [optional]
753
+ **jcrcontent_no_versioning** | **Boolean**| | [optional]
754
+ **jcrcontent_protocol_connect_timeout** | **Float**| | [optional]
755
+ **jcrcontent_protocol_http_connection_closed** | **Boolean**| | [optional]
756
+ **jcrcontent_protocol_http_expired** | **String**| | [optional]
757
+ **jcrcontent_protocol_http_headers** | [**Array&lt;String&gt;**](String.md)| | [optional]
758
+ **jcrcontent_protocol_http_headers_type_hint** | **String**| | [optional]
759
+ **jcrcontent_protocol_http_method** | **String**| | [optional]
760
+ **jcrcontent_protocol_https_relaxed** | **Boolean**| | [optional]
761
+ **jcrcontent_protocol_interface** | **String**| | [optional]
762
+ **jcrcontent_protocol_socket_timeout** | **Float**| | [optional]
763
+ **jcrcontent_protocol_version** | **String**| | [optional]
764
+ **jcrcontent_proxy_ntlm_domain** | **String**| | [optional]
765
+ **jcrcontent_proxy_ntlm_host** | **String**| | [optional]
766
+ **jcrcontent_proxy_host** | **String**| | [optional]
767
+ **jcrcontent_proxy_password** | **String**| | [optional]
768
+ **jcrcontent_proxy_port** | **Float**| | [optional]
769
+ **jcrcontent_proxy_user** | **String**| | [optional]
770
+ **jcrcontent_queue_batch_max_size** | **Float**| | [optional]
771
+ **jcrcontent_queue_batch_mode** | **String**| | [optional]
772
+ **jcrcontent_queue_batch_wait_time** | **Float**| | [optional]
773
+ **jcrcontent_retry_delay** | **String**| | [optional]
774
+ **jcrcontent_reverse_replication** | **Boolean**| | [optional]
775
+ **jcrcontent_serialization_type** | **String**| | [optional]
776
+ **jcrcontent_slingresource_type** | **String**| | [optional]
777
+ **jcrcontent_ssl** | **String**| | [optional]
778
+ **jcrcontent_transport_ntlm_domain** | **String**| | [optional]
779
+ **jcrcontent_transport_ntlm_host** | **String**| | [optional]
780
+ **jcrcontent_transport_password** | **String**| | [optional]
781
+ **jcrcontent_transport_uri** | **String**| | [optional]
782
+ **jcrcontent_transport_user** | **String**| | [optional]
783
+ **jcrcontent_trigger_distribute** | **Boolean**| | [optional]
784
+ **jcrcontent_trigger_modified** | **Boolean**| | [optional]
785
+ **jcrcontent_trigger_on_off_time** | **Boolean**| | [optional]
786
+ **jcrcontent_trigger_receive** | **Boolean**| | [optional]
787
+ **jcrcontent_trigger_specific** | **Boolean**| | [optional]
788
+ **jcrcontent_user_id** | **String**| | [optional]
760
789
  **jcrprimary_type** | **String**| | [optional]
761
790
  **operation** | **String**| | [optional]
762
791
 
@@ -770,17 +799,18 @@ nil (empty response body)
770
799
 
771
800
  ### HTTP request headers
772
801
 
773
- - **Content-Type**: Not defined
774
- - **Accept**: Not defined
802
+ - **Content-Type**: Not defined
803
+ - **Accept**: Not defined
775
804
 
776
805
 
806
+ ## post_authorizable_keystore
777
807
 
778
- # **post_authorizable_keystore**
779
808
  > KeystoreInfo post_authorizable_keystore(intermediate_path, authorizable_id, opts)
780
809
 
781
810
 
782
811
 
783
812
  ### Example
813
+
784
814
  ```ruby
785
815
  # load the gem
786
816
  require 'swagger_aem'
@@ -819,6 +849,7 @@ end
819
849
 
820
850
  ### Parameters
821
851
 
852
+
822
853
  Name | Type | Description | Notes
823
854
  ------------- | ------------- | ------------- | -------------
824
855
  **intermediate_path** | **String**| |
@@ -846,17 +877,18 @@ Name | Type | Description | Notes
846
877
 
847
878
  ### HTTP request headers
848
879
 
849
- - **Content-Type**: multipart/form-data
850
- - **Accept**: text/plain
880
+ - **Content-Type**: multipart/form-data
881
+ - **Accept**: text/plain
851
882
 
852
883
 
884
+ ## post_authorizables
853
885
 
854
- # **post_authorizables**
855
886
  > String post_authorizables(authorizable_id, intermediate_path, opts)
856
887
 
857
888
 
858
889
 
859
890
  ### Example
891
+
860
892
  ```ruby
861
893
  # load the gem
862
894
  require 'swagger_aem'
@@ -874,7 +906,7 @@ opts = {
874
906
  create_user: 'create_user_example', # String |
875
907
  create_group: 'create_group_example', # String |
876
908
  reppassword: 'reppassword_example', # String |
877
- profilegiven_name: 'profilegiven_name_example' # String |
909
+ profile_given_name: 'profile_given_name_example' # String |
878
910
  }
879
911
 
880
912
  begin
@@ -887,6 +919,7 @@ end
887
919
 
888
920
  ### Parameters
889
921
 
922
+
890
923
  Name | Type | Description | Notes
891
924
  ------------- | ------------- | ------------- | -------------
892
925
  **authorizable_id** | **String**| |
@@ -894,7 +927,7 @@ Name | Type | Description | Notes
894
927
  **create_user** | **String**| | [optional]
895
928
  **create_group** | **String**| | [optional]
896
929
  **reppassword** | **String**| | [optional]
897
- **profilegiven_name** | **String**| | [optional]
930
+ **profile_given_name** | **String**| | [optional]
898
931
 
899
932
  ### Return type
900
933
 
@@ -906,17 +939,18 @@ Name | Type | Description | Notes
906
939
 
907
940
  ### HTTP request headers
908
941
 
909
- - **Content-Type**: Not defined
910
- - **Accept**: text/html
942
+ - **Content-Type**: Not defined
943
+ - **Accept**: text/html
911
944
 
912
945
 
946
+ ## post_config_adobe_granite_saml_authentication_handler
913
947
 
914
- # **post_config_adobe_granite_saml_authentication_handler**
915
948
  > post_config_adobe_granite_saml_authentication_handler(opts)
916
949
 
917
950
 
918
951
 
919
952
  ### Example
953
+
920
954
  ```ruby
921
955
  # load the gem
922
956
  require 'swagger_aem'
@@ -933,9 +967,9 @@ opts = {
933
967
  key_store_password_type_hint: 'key_store_password_type_hint_example', # String |
934
968
  service_ranking: 56, # Integer |
935
969
  service_ranking_type_hint: 'service_ranking_type_hint_example', # String |
936
- idp_http_redirect: true, # BOOLEAN |
970
+ idp_http_redirect: true, # Boolean |
937
971
  idp_http_redirect_type_hint: 'idp_http_redirect_type_hint_example', # String |
938
- create_user: true, # BOOLEAN |
972
+ create_user: true, # Boolean |
939
973
  create_user_type_hint: 'create_user_type_hint_example', # String |
940
974
  default_redirect_url: 'default_redirect_url_example', # String |
941
975
  default_redirect_url_type_hint: 'default_redirect_url_type_hint_example', # String |
@@ -945,7 +979,7 @@ opts = {
945
979
  default_groups_type_hint: 'default_groups_type_hint_example', # String |
946
980
  idp_cert_alias: 'idp_cert_alias_example', # String |
947
981
  idp_cert_alias_type_hint: 'idp_cert_alias_type_hint_example', # String |
948
- add_group_memberships: true, # BOOLEAN |
982
+ add_group_memberships: true, # Boolean |
949
983
  add_group_memberships_type_hint: 'add_group_memberships_type_hint_example', # String |
950
984
  path: ['path_example'], # Array<String> |
951
985
  path_type_hint: 'path_type_hint_example', # String |
@@ -963,11 +997,11 @@ opts = {
963
997
  service_provider_entity_id_type_hint: 'service_provider_entity_id_type_hint_example', # String |
964
998
  assertion_consumer_service_url: 'assertion_consumer_service_url_example', # String |
965
999
  assertion_consumer_service_url_type_hint: 'assertion_consumer_service_url_type_hint_example', # String |
966
- handle_logout: true, # BOOLEAN |
1000
+ handle_logout: true, # Boolean |
967
1001
  handle_logout_type_hint: 'handle_logout_type_hint_example', # String |
968
1002
  sp_private_key_alias: 'sp_private_key_alias_example', # String |
969
1003
  sp_private_key_alias_type_hint: 'sp_private_key_alias_type_hint_example', # String |
970
- use_encryption: true, # BOOLEAN |
1004
+ use_encryption: true, # Boolean |
971
1005
  use_encryption_type_hint: 'use_encryption_type_hint_example', # String |
972
1006
  name_id_format: 'name_id_format_example', # String |
973
1007
  name_id_format_type_hint: 'name_id_format_type_hint_example', # String |
@@ -988,15 +1022,16 @@ end
988
1022
 
989
1023
  ### Parameters
990
1024
 
1025
+
991
1026
  Name | Type | Description | Notes
992
1027
  ------------- | ------------- | ------------- | -------------
993
1028
  **key_store_password** | **String**| | [optional]
994
1029
  **key_store_password_type_hint** | **String**| | [optional]
995
1030
  **service_ranking** | **Integer**| | [optional]
996
1031
  **service_ranking_type_hint** | **String**| | [optional]
997
- **idp_http_redirect** | **BOOLEAN**| | [optional]
1032
+ **idp_http_redirect** | **Boolean**| | [optional]
998
1033
  **idp_http_redirect_type_hint** | **String**| | [optional]
999
- **create_user** | **BOOLEAN**| | [optional]
1034
+ **create_user** | **Boolean**| | [optional]
1000
1035
  **create_user_type_hint** | **String**| | [optional]
1001
1036
  **default_redirect_url** | **String**| | [optional]
1002
1037
  **default_redirect_url_type_hint** | **String**| | [optional]
@@ -1006,7 +1041,7 @@ Name | Type | Description | Notes
1006
1041
  **default_groups_type_hint** | **String**| | [optional]
1007
1042
  **idp_cert_alias** | **String**| | [optional]
1008
1043
  **idp_cert_alias_type_hint** | **String**| | [optional]
1009
- **add_group_memberships** | **BOOLEAN**| | [optional]
1044
+ **add_group_memberships** | **Boolean**| | [optional]
1010
1045
  **add_group_memberships_type_hint** | **String**| | [optional]
1011
1046
  **path** | [**Array&lt;String&gt;**](String.md)| | [optional]
1012
1047
  **path_type_hint** | **String**| | [optional]
@@ -1024,11 +1059,11 @@ Name | Type | Description | Notes
1024
1059
  **service_provider_entity_id_type_hint** | **String**| | [optional]
1025
1060
  **assertion_consumer_service_url** | **String**| | [optional]
1026
1061
  **assertion_consumer_service_url_type_hint** | **String**| | [optional]
1027
- **handle_logout** | **BOOLEAN**| | [optional]
1062
+ **handle_logout** | **Boolean**| | [optional]
1028
1063
  **handle_logout_type_hint** | **String**| | [optional]
1029
1064
  **sp_private_key_alias** | **String**| | [optional]
1030
1065
  **sp_private_key_alias_type_hint** | **String**| | [optional]
1031
- **use_encryption** | **BOOLEAN**| | [optional]
1066
+ **use_encryption** | **Boolean**| | [optional]
1032
1067
  **use_encryption_type_hint** | **String**| | [optional]
1033
1068
  **name_id_format** | **String**| | [optional]
1034
1069
  **name_id_format_type_hint** | **String**| | [optional]
@@ -1049,17 +1084,18 @@ nil (empty response body)
1049
1084
 
1050
1085
  ### HTTP request headers
1051
1086
 
1052
- - **Content-Type**: Not defined
1053
- - **Accept**: Not defined
1087
+ - **Content-Type**: Not defined
1088
+ - **Accept**: Not defined
1054
1089
 
1055
1090
 
1091
+ ## post_config_apache_felix_jetty_based_http_service
1056
1092
 
1057
- # **post_config_apache_felix_jetty_based_http_service**
1058
1093
  > post_config_apache_felix_jetty_based_http_service(opts)
1059
1094
 
1060
1095
 
1061
1096
 
1062
1097
  ### Example
1098
+
1063
1099
  ```ruby
1064
1100
  # load the gem
1065
1101
  require 'swagger_aem'
@@ -1072,7 +1108,7 @@ end
1072
1108
 
1073
1109
  api_instance = SwaggerAemClient::SlingApi.new
1074
1110
  opts = {
1075
- org_apache_felix_https_nio: true, # BOOLEAN |
1111
+ org_apache_felix_https_nio: true, # Boolean |
1076
1112
  org_apache_felix_https_nio_type_hint: 'org_apache_felix_https_nio_type_hint_example', # String |
1077
1113
  org_apache_felix_https_keystore: 'org_apache_felix_https_keystore_example', # String |
1078
1114
  org_apache_felix_https_keystore_type_hint: 'org_apache_felix_https_keystore_type_hint_example', # String |
@@ -1088,7 +1124,7 @@ opts = {
1088
1124
  org_apache_felix_https_truststore_password_type_hint: 'org_apache_felix_https_truststore_password_type_hint_example', # String |
1089
1125
  org_apache_felix_https_clientcertificate: 'org_apache_felix_https_clientcertificate_example', # String |
1090
1126
  org_apache_felix_https_clientcertificate_type_hint: 'org_apache_felix_https_clientcertificate_type_hint_example', # String |
1091
- org_apache_felix_https_enable: true, # BOOLEAN |
1127
+ org_apache_felix_https_enable: true, # Boolean |
1092
1128
  org_apache_felix_https_enable_type_hint: 'org_apache_felix_https_enable_type_hint_example', # String |
1093
1129
  org_osgi_service_http_port_secure: 'org_osgi_service_http_port_secure_example', # String |
1094
1130
  org_osgi_service_http_port_secure_type_hint: 'org_osgi_service_http_port_secure_type_hint_example' # String |
@@ -1103,9 +1139,10 @@ end
1103
1139
 
1104
1140
  ### Parameters
1105
1141
 
1142
+
1106
1143
  Name | Type | Description | Notes
1107
1144
  ------------- | ------------- | ------------- | -------------
1108
- **org_apache_felix_https_nio** | **BOOLEAN**| | [optional]
1145
+ **org_apache_felix_https_nio** | **Boolean**| | [optional]
1109
1146
  **org_apache_felix_https_nio_type_hint** | **String**| | [optional]
1110
1147
  **org_apache_felix_https_keystore** | **String**| | [optional]
1111
1148
  **org_apache_felix_https_keystore_type_hint** | **String**| | [optional]
@@ -1121,7 +1158,7 @@ Name | Type | Description | Notes
1121
1158
  **org_apache_felix_https_truststore_password_type_hint** | **String**| | [optional]
1122
1159
  **org_apache_felix_https_clientcertificate** | **String**| | [optional]
1123
1160
  **org_apache_felix_https_clientcertificate_type_hint** | **String**| | [optional]
1124
- **org_apache_felix_https_enable** | **BOOLEAN**| | [optional]
1161
+ **org_apache_felix_https_enable** | **Boolean**| | [optional]
1125
1162
  **org_apache_felix_https_enable_type_hint** | **String**| | [optional]
1126
1163
  **org_osgi_service_http_port_secure** | **String**| | [optional]
1127
1164
  **org_osgi_service_http_port_secure_type_hint** | **String**| | [optional]
@@ -1136,17 +1173,18 @@ nil (empty response body)
1136
1173
 
1137
1174
  ### HTTP request headers
1138
1175
 
1139
- - **Content-Type**: Not defined
1140
- - **Accept**: Not defined
1176
+ - **Content-Type**: Not defined
1177
+ - **Accept**: Not defined
1141
1178
 
1142
1179
 
1180
+ ## post_config_apache_http_components_proxy_configuration
1143
1181
 
1144
- # **post_config_apache_http_components_proxy_configuration**
1145
1182
  > post_config_apache_http_components_proxy_configuration(opts)
1146
1183
 
1147
1184
 
1148
1185
 
1149
1186
  ### Example
1187
+
1150
1188
  ```ruby
1151
1189
  # load the gem
1152
1190
  require 'swagger_aem'
@@ -1165,7 +1203,7 @@ opts = {
1165
1203
  proxy_port_type_hint: 'proxy_port_type_hint_example', # String |
1166
1204
  proxy_exceptions: ['proxy_exceptions_example'], # Array<String> |
1167
1205
  proxy_exceptions_type_hint: 'proxy_exceptions_type_hint_example', # String |
1168
- proxy_enabled: true, # BOOLEAN |
1206
+ proxy_enabled: true, # Boolean |
1169
1207
  proxy_enabled_type_hint: 'proxy_enabled_type_hint_example', # String |
1170
1208
  proxy_user: 'proxy_user_example', # String |
1171
1209
  proxy_user_type_hint: 'proxy_user_type_hint_example', # String |
@@ -1182,6 +1220,7 @@ end
1182
1220
 
1183
1221
  ### Parameters
1184
1222
 
1223
+
1185
1224
  Name | Type | Description | Notes
1186
1225
  ------------- | ------------- | ------------- | -------------
1187
1226
  **proxy_host** | **String**| | [optional]
@@ -1190,7 +1229,7 @@ Name | Type | Description | Notes
1190
1229
  **proxy_port_type_hint** | **String**| | [optional]
1191
1230
  **proxy_exceptions** | [**Array&lt;String&gt;**](String.md)| | [optional]
1192
1231
  **proxy_exceptions_type_hint** | **String**| | [optional]
1193
- **proxy_enabled** | **BOOLEAN**| | [optional]
1232
+ **proxy_enabled** | **Boolean**| | [optional]
1194
1233
  **proxy_enabled_type_hint** | **String**| | [optional]
1195
1234
  **proxy_user** | **String**| | [optional]
1196
1235
  **proxy_user_type_hint** | **String**| | [optional]
@@ -1207,17 +1246,18 @@ nil (empty response body)
1207
1246
 
1208
1247
  ### HTTP request headers
1209
1248
 
1210
- - **Content-Type**: Not defined
1211
- - **Accept**: Not defined
1249
+ - **Content-Type**: Not defined
1250
+ - **Accept**: Not defined
1212
1251
 
1213
1252
 
1253
+ ## post_config_apache_sling_dav_ex_servlet
1214
1254
 
1215
- # **post_config_apache_sling_dav_ex_servlet**
1216
1255
  > post_config_apache_sling_dav_ex_servlet(opts)
1217
1256
 
1218
1257
 
1219
1258
 
1220
1259
  ### Example
1260
+
1221
1261
  ```ruby
1222
1262
  # load the gem
1223
1263
  require 'swagger_aem'
@@ -1232,7 +1272,7 @@ api_instance = SwaggerAemClient::SlingApi.new
1232
1272
  opts = {
1233
1273
  _alias: '_alias_example', # String |
1234
1274
  alias_type_hint: 'alias_type_hint_example', # String |
1235
- dav_create_absolute_uri: true, # BOOLEAN |
1275
+ dav_create_absolute_uri: true, # Boolean |
1236
1276
  dav_create_absolute_uri_type_hint: 'dav_create_absolute_uri_type_hint_example' # String |
1237
1277
  }
1238
1278
 
@@ -1245,11 +1285,12 @@ end
1245
1285
 
1246
1286
  ### Parameters
1247
1287
 
1288
+
1248
1289
  Name | Type | Description | Notes
1249
1290
  ------------- | ------------- | ------------- | -------------
1250
1291
  **_alias** | **String**| | [optional]
1251
1292
  **alias_type_hint** | **String**| | [optional]
1252
- **dav_create_absolute_uri** | **BOOLEAN**| | [optional]
1293
+ **dav_create_absolute_uri** | **Boolean**| | [optional]
1253
1294
  **dav_create_absolute_uri_type_hint** | **String**| | [optional]
1254
1295
 
1255
1296
  ### Return type
@@ -1262,17 +1303,18 @@ nil (empty response body)
1262
1303
 
1263
1304
  ### HTTP request headers
1264
1305
 
1265
- - **Content-Type**: Not defined
1266
- - **Accept**: Not defined
1306
+ - **Content-Type**: Not defined
1307
+ - **Accept**: Not defined
1267
1308
 
1268
1309
 
1310
+ ## post_config_apache_sling_get_servlet
1269
1311
 
1270
- # **post_config_apache_sling_get_servlet**
1271
1312
  > post_config_apache_sling_get_servlet(opts)
1272
1313
 
1273
1314
 
1274
1315
 
1275
1316
  ### Example
1317
+
1276
1318
  ```ruby
1277
1319
  # load the gem
1278
1320
  require 'swagger_aem'
@@ -1287,11 +1329,11 @@ api_instance = SwaggerAemClient::SlingApi.new
1287
1329
  opts = {
1288
1330
  json_maximumresults: 'json_maximumresults_example', # String |
1289
1331
  json_maximumresults_type_hint: 'json_maximumresults_type_hint_example', # String |
1290
- enable_html: true, # BOOLEAN |
1332
+ enable_html: true, # Boolean |
1291
1333
  enable_html_type_hint: 'enable_html_type_hint_example', # String |
1292
- enable_txt: true, # BOOLEAN |
1334
+ enable_txt: true, # Boolean |
1293
1335
  enable_txt_type_hint: 'enable_txt_type_hint_example', # String |
1294
- enable_xml: true, # BOOLEAN |
1336
+ enable_xml: true, # Boolean |
1295
1337
  enable_xml_type_hint: 'enable_xml_type_hint_example' # String |
1296
1338
  }
1297
1339
 
@@ -1304,15 +1346,16 @@ end
1304
1346
 
1305
1347
  ### Parameters
1306
1348
 
1349
+
1307
1350
  Name | Type | Description | Notes
1308
1351
  ------------- | ------------- | ------------- | -------------
1309
1352
  **json_maximumresults** | **String**| | [optional]
1310
1353
  **json_maximumresults_type_hint** | **String**| | [optional]
1311
- **enable_html** | **BOOLEAN**| | [optional]
1354
+ **enable_html** | **Boolean**| | [optional]
1312
1355
  **enable_html_type_hint** | **String**| | [optional]
1313
- **enable_txt** | **BOOLEAN**| | [optional]
1356
+ **enable_txt** | **Boolean**| | [optional]
1314
1357
  **enable_txt_type_hint** | **String**| | [optional]
1315
- **enable_xml** | **BOOLEAN**| | [optional]
1358
+ **enable_xml** | **Boolean**| | [optional]
1316
1359
  **enable_xml_type_hint** | **String**| | [optional]
1317
1360
 
1318
1361
  ### Return type
@@ -1325,17 +1368,18 @@ nil (empty response body)
1325
1368
 
1326
1369
  ### HTTP request headers
1327
1370
 
1328
- - **Content-Type**: Not defined
1329
- - **Accept**: Not defined
1371
+ - **Content-Type**: Not defined
1372
+ - **Accept**: Not defined
1330
1373
 
1331
1374
 
1375
+ ## post_config_apache_sling_referrer_filter
1332
1376
 
1333
- # **post_config_apache_sling_referrer_filter**
1334
1377
  > post_config_apache_sling_referrer_filter(opts)
1335
1378
 
1336
1379
 
1337
1380
 
1338
1381
  ### Example
1382
+
1339
1383
  ```ruby
1340
1384
  # load the gem
1341
1385
  require 'swagger_aem'
@@ -1348,7 +1392,7 @@ end
1348
1392
 
1349
1393
  api_instance = SwaggerAemClient::SlingApi.new
1350
1394
  opts = {
1351
- allow_empty: true, # BOOLEAN |
1395
+ allow_empty: true, # Boolean |
1352
1396
  allow_empty_type_hint: 'allow_empty_type_hint_example', # String |
1353
1397
  allow_hosts: 'allow_hosts_example', # String |
1354
1398
  allow_hosts_type_hint: 'allow_hosts_type_hint_example', # String |
@@ -1367,9 +1411,10 @@ end
1367
1411
 
1368
1412
  ### Parameters
1369
1413
 
1414
+
1370
1415
  Name | Type | Description | Notes
1371
1416
  ------------- | ------------- | ------------- | -------------
1372
- **allow_empty** | **BOOLEAN**| | [optional]
1417
+ **allow_empty** | **Boolean**| | [optional]
1373
1418
  **allow_empty_type_hint** | **String**| | [optional]
1374
1419
  **allow_hosts** | **String**| | [optional]
1375
1420
  **allow_hosts_type_hint** | **String**| | [optional]
@@ -1388,17 +1433,67 @@ nil (empty response body)
1388
1433
 
1389
1434
  ### HTTP request headers
1390
1435
 
1391
- - **Content-Type**: Not defined
1392
- - **Accept**: Not defined
1436
+ - **Content-Type**: Not defined
1437
+ - **Accept**: Not defined
1438
+
1393
1439
 
1440
+ ## post_config_property
1394
1441
 
1442
+ > post_config_property(config_node_name)
1443
+
1444
+
1445
+
1446
+ ### Example
1447
+
1448
+ ```ruby
1449
+ # load the gem
1450
+ require 'swagger_aem'
1451
+ # setup authorization
1452
+ SwaggerAemClient.configure do |config|
1453
+ # Configure HTTP basic authorization: aemAuth
1454
+ config.username = 'YOUR USERNAME'
1455
+ config.password = 'YOUR PASSWORD'
1456
+ end
1457
+
1458
+ api_instance = SwaggerAemClient::SlingApi.new
1459
+ config_node_name = 'config_node_name_example' # String |
1460
+
1461
+ begin
1462
+ api_instance.post_config_property(config_node_name)
1463
+ rescue SwaggerAemClient::ApiError => e
1464
+ puts "Exception when calling SlingApi->post_config_property: #{e}"
1465
+ end
1466
+ ```
1467
+
1468
+ ### Parameters
1469
+
1470
+
1471
+ Name | Type | Description | Notes
1472
+ ------------- | ------------- | ------------- | -------------
1473
+ **config_node_name** | **String**| |
1474
+
1475
+ ### Return type
1476
+
1477
+ nil (empty response body)
1478
+
1479
+ ### Authorization
1480
+
1481
+ [aemAuth](../README.md#aemAuth)
1482
+
1483
+ ### HTTP request headers
1484
+
1485
+ - **Content-Type**: Not defined
1486
+ - **Accept**: Not defined
1487
+
1488
+
1489
+ ## post_node
1395
1490
 
1396
- # **post_node**
1397
1491
  > post_node(path, name, opts)
1398
1492
 
1399
1493
 
1400
1494
 
1401
1495
  ### Example
1496
+
1402
1497
  ```ruby
1403
1498
  # load the gem
1404
1499
  require 'swagger_aem'
@@ -1427,6 +1522,7 @@ end
1427
1522
 
1428
1523
  ### Parameters
1429
1524
 
1525
+
1430
1526
  Name | Type | Description | Notes
1431
1527
  ------------- | ------------- | ------------- | -------------
1432
1528
  **path** | **String**| |
@@ -1445,17 +1541,18 @@ nil (empty response body)
1445
1541
 
1446
1542
  ### HTTP request headers
1447
1543
 
1448
- - **Content-Type**: multipart/form-data
1449
- - **Accept**: Not defined
1544
+ - **Content-Type**: multipart/form-data
1545
+ - **Accept**: Not defined
1450
1546
 
1451
1547
 
1548
+ ## post_node_rw
1452
1549
 
1453
- # **post_node_rw**
1454
1550
  > post_node_rw(path, name, opts)
1455
1551
 
1456
1552
 
1457
1553
 
1458
1554
  ### Example
1555
+
1459
1556
  ```ruby
1460
1557
  # load the gem
1461
1558
  require 'swagger_aem'
@@ -1482,6 +1579,7 @@ end
1482
1579
 
1483
1580
  ### Parameters
1484
1581
 
1582
+
1485
1583
  Name | Type | Description | Notes
1486
1584
  ------------- | ------------- | ------------- | -------------
1487
1585
  **path** | **String**| |
@@ -1498,17 +1596,18 @@ nil (empty response body)
1498
1596
 
1499
1597
  ### HTTP request headers
1500
1598
 
1501
- - **Content-Type**: Not defined
1502
- - **Accept**: Not defined
1599
+ - **Content-Type**: Not defined
1600
+ - **Accept**: Not defined
1503
1601
 
1504
1602
 
1603
+ ## post_path
1505
1604
 
1506
- # **post_path**
1507
1605
  > post_path(path, jcrprimary_type, name)
1508
1606
 
1509
1607
 
1510
1608
 
1511
1609
  ### Example
1610
+
1512
1611
  ```ruby
1513
1612
  # load the gem
1514
1613
  require 'swagger_aem'
@@ -1533,6 +1632,7 @@ end
1533
1632
 
1534
1633
  ### Parameters
1535
1634
 
1635
+
1536
1636
  Name | Type | Description | Notes
1537
1637
  ------------- | ------------- | ------------- | -------------
1538
1638
  **path** | **String**| |
@@ -1549,17 +1649,18 @@ nil (empty response body)
1549
1649
 
1550
1650
  ### HTTP request headers
1551
1651
 
1552
- - **Content-Type**: Not defined
1553
- - **Accept**: Not defined
1652
+ - **Content-Type**: Not defined
1653
+ - **Accept**: Not defined
1554
1654
 
1555
1655
 
1656
+ ## post_query
1556
1657
 
1557
- # **post_query**
1558
1658
  > String post_query(path, p_limit, _1_property, _1_property_value)
1559
1659
 
1560
1660
 
1561
1661
 
1562
1662
  ### Example
1663
+
1563
1664
  ```ruby
1564
1665
  # load the gem
1565
1666
  require 'swagger_aem'
@@ -1586,6 +1687,7 @@ end
1586
1687
 
1587
1688
  ### Parameters
1588
1689
 
1690
+
1589
1691
  Name | Type | Description | Notes
1590
1692
  ------------- | ------------- | ------------- | -------------
1591
1693
  **path** | **String**| |
@@ -1603,17 +1705,18 @@ Name | Type | Description | Notes
1603
1705
 
1604
1706
  ### HTTP request headers
1605
1707
 
1606
- - **Content-Type**: Not defined
1607
- - **Accept**: application/json
1708
+ - **Content-Type**: Not defined
1709
+ - **Accept**: application/json
1608
1710
 
1609
1711
 
1712
+ ## post_tree_activation
1610
1713
 
1611
- # **post_tree_activation**
1612
1714
  > post_tree_activation(ignoredeactivated, onlymodified, path)
1613
1715
 
1614
1716
 
1615
1717
 
1616
1718
  ### Example
1719
+
1617
1720
  ```ruby
1618
1721
  # load the gem
1619
1722
  require 'swagger_aem'
@@ -1625,8 +1728,8 @@ SwaggerAemClient.configure do |config|
1625
1728
  end
1626
1729
 
1627
1730
  api_instance = SwaggerAemClient::SlingApi.new
1628
- ignoredeactivated = true # BOOLEAN |
1629
- onlymodified = true # BOOLEAN |
1731
+ ignoredeactivated = true # Boolean |
1732
+ onlymodified = true # Boolean |
1630
1733
  path = 'path_example' # String |
1631
1734
 
1632
1735
  begin
@@ -1638,10 +1741,11 @@ end
1638
1741
 
1639
1742
  ### Parameters
1640
1743
 
1744
+
1641
1745
  Name | Type | Description | Notes
1642
1746
  ------------- | ------------- | ------------- | -------------
1643
- **ignoredeactivated** | **BOOLEAN**| |
1644
- **onlymodified** | **BOOLEAN**| |
1747
+ **ignoredeactivated** | **Boolean**| |
1748
+ **onlymodified** | **Boolean**| |
1645
1749
  **path** | **String**| |
1646
1750
 
1647
1751
  ### Return type
@@ -1654,17 +1758,18 @@ nil (empty response body)
1654
1758
 
1655
1759
  ### HTTP request headers
1656
1760
 
1657
- - **Content-Type**: Not defined
1658
- - **Accept**: Not defined
1761
+ - **Content-Type**: Not defined
1762
+ - **Accept**: Not defined
1659
1763
 
1660
1764
 
1765
+ ## post_truststore
1661
1766
 
1662
- # **post_truststore**
1663
1767
  > String post_truststore(opts)
1664
1768
 
1665
1769
 
1666
1770
 
1667
1771
  ### Example
1772
+
1668
1773
  ```ruby
1669
1774
  # load the gem
1670
1775
  require 'swagger_aem'
@@ -1695,6 +1800,7 @@ end
1695
1800
 
1696
1801
  ### Parameters
1697
1802
 
1803
+
1698
1804
  Name | Type | Description | Notes
1699
1805
  ------------- | ------------- | ------------- | -------------
1700
1806
  **operation** | **String**| | [optional]
@@ -1714,17 +1820,18 @@ Name | Type | Description | Notes
1714
1820
 
1715
1821
  ### HTTP request headers
1716
1822
 
1717
- - **Content-Type**: multipart/form-data
1718
- - **Accept**: text/plain
1823
+ - **Content-Type**: multipart/form-data
1824
+ - **Accept**: text/plain
1719
1825
 
1720
1826
 
1827
+ ## post_truststore_pkcs12
1721
1828
 
1722
- # **post_truststore_pkcs12**
1723
1829
  > String post_truststore_pkcs12(opts)
1724
1830
 
1725
1831
 
1726
1832
 
1727
1833
  ### Example
1834
+
1728
1835
  ```ruby
1729
1836
  # load the gem
1730
1837
  require 'swagger_aem'
@@ -1750,6 +1857,7 @@ end
1750
1857
 
1751
1858
  ### Parameters
1752
1859
 
1860
+
1753
1861
  Name | Type | Description | Notes
1754
1862
  ------------- | ------------- | ------------- | -------------
1755
1863
  **truststore_p12** | **File**| | [optional]
@@ -1764,8 +1872,6 @@ Name | Type | Description | Notes
1764
1872
 
1765
1873
  ### HTTP request headers
1766
1874
 
1767
- - **Content-Type**: multipart/form-data
1768
- - **Accept**: text/plain
1769
-
1770
-
1875
+ - **Content-Type**: multipart/form-data
1876
+ - **Accept**: text/plain
1771
1877