swagger_aem 2.5.0 → 3.4.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 (91) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -1
  3. data/Gemfile.lock +47 -46
  4. data/README.md +20 -9
  5. data/Rakefile +2 -0
  6. data/docs/ConsoleApi.md +107 -58
  7. data/docs/CqApi.md +14 -13
  8. data/docs/CrxApi.md +60 -60
  9. data/docs/CustomApi.md +27 -24
  10. data/docs/GraniteApi.md +75 -0
  11. data/docs/InlineObject.md +17 -0
  12. data/docs/InlineObject1.md +17 -0
  13. data/docs/InlineObject2.md +17 -0
  14. data/docs/InlineObject3.md +17 -0
  15. data/docs/InlineObject4.md +21 -0
  16. data/docs/InlineObject5.md +19 -0
  17. data/docs/InstallStatus.md +9 -0
  18. data/docs/InstallStatusStatus.md +11 -1
  19. data/docs/KeystoreChainItems.md +13 -0
  20. data/docs/KeystoreInfo.md +11 -1
  21. data/docs/KeystoreItems.md +13 -0
  22. data/docs/SamlConfigurationInfo.md +15 -1
  23. data/docs/SamlConfigurationProperties.md +56 -24
  24. data/docs/SamlConfigurationPropertyItemsArray.md +16 -2
  25. data/docs/SamlConfigurationPropertyItemsBoolean.md +17 -3
  26. data/docs/SamlConfigurationPropertyItemsLong.md +17 -3
  27. data/docs/SamlConfigurationPropertyItemsString.md +17 -3
  28. data/docs/SlingApi.md +482 -445
  29. data/docs/TruststoreInfo.md +11 -1
  30. data/docs/TruststoreItems.md +15 -0
  31. data/git_push.sh +11 -8
  32. data/lib/swagger_aem.rb +10 -3
  33. data/lib/swagger_aem/api/console_api.rb +160 -91
  34. data/lib/swagger_aem/api/cq_api.rb +49 -41
  35. data/lib/swagger_aem/api/crx_api.rb +170 -135
  36. data/lib/swagger_aem/api/custom_api.rb +68 -56
  37. data/lib/swagger_aem/api/granite_api.rb +124 -0
  38. data/lib/swagger_aem/api/sling_api.rb +900 -720
  39. data/lib/swagger_aem/api_client.rb +53 -54
  40. data/lib/swagger_aem/api_error.rb +22 -3
  41. data/lib/swagger_aem/configuration.rb +49 -10
  42. data/lib/swagger_aem/models/inline_object.rb +206 -0
  43. data/lib/swagger_aem/models/inline_object1.rb +206 -0
  44. data/lib/swagger_aem/models/inline_object2.rb +206 -0
  45. data/lib/swagger_aem/models/inline_object3.rb +206 -0
  46. data/lib/swagger_aem/models/inline_object4.rb +224 -0
  47. data/lib/swagger_aem/models/inline_object5.rb +215 -0
  48. data/lib/swagger_aem/models/install_status.rb +43 -25
  49. data/lib/swagger_aem/models/install_status_status.rb +46 -28
  50. data/lib/swagger_aem/models/keystore_chain_items.rb +50 -32
  51. data/lib/swagger_aem/models/keystore_info.rb +45 -27
  52. data/lib/swagger_aem/models/keystore_items.rb +49 -31
  53. data/lib/swagger_aem/models/saml_configuration_info.rb +49 -31
  54. data/lib/swagger_aem/models/saml_configuration_properties.rb +114 -168
  55. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +50 -32
  56. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +56 -38
  57. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +56 -38
  58. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +56 -38
  59. data/lib/swagger_aem/models/truststore_info.rb +45 -27
  60. data/lib/swagger_aem/models/truststore_items.rb +54 -36
  61. data/lib/swagger_aem/version.rb +4 -4
  62. data/spec/api/console_api_spec.rb +17 -16
  63. data/spec/api/cq_api_spec.rb +6 -10
  64. data/spec/api/crx_api_spec.rb +11 -25
  65. data/spec/api/custom_api_spec.rb +7 -13
  66. data/spec/api/granite_api_spec.rb +52 -0
  67. data/spec/api/sling_api_spec.rb +32 -88
  68. data/spec/api_client_spec.rb +37 -37
  69. data/spec/configuration_spec.rb +11 -11
  70. data/spec/models/inline_object1_spec.rb +41 -0
  71. data/spec/models/inline_object2_spec.rb +41 -0
  72. data/spec/models/inline_object3_spec.rb +41 -0
  73. data/spec/models/inline_object4_spec.rb +53 -0
  74. data/spec/models/inline_object5_spec.rb +47 -0
  75. data/spec/models/inline_object_spec.rb +41 -0
  76. data/spec/models/install_status_spec.rb +5 -6
  77. data/spec/models/install_status_status_spec.rb +6 -7
  78. data/spec/models/keystore_chain_items_spec.rb +9 -10
  79. data/spec/models/keystore_info_spec.rb +6 -7
  80. data/spec/models/keystore_items_spec.rb +9 -10
  81. data/spec/models/saml_configuration_info_spec.rb +10 -11
  82. data/spec/models/saml_configuration_properties_spec.rb +28 -29
  83. data/spec/models/saml_configuration_property_items_array_spec.rb +10 -11
  84. data/spec/models/saml_configuration_property_items_boolean_spec.rb +11 -12
  85. data/spec/models/saml_configuration_property_items_long_spec.rb +11 -12
  86. data/spec/models/saml_configuration_property_items_string_spec.rb +11 -12
  87. data/spec/models/truststore_info_spec.rb +6 -7
  88. data/spec/models/truststore_items_spec.rb +11 -12
  89. data/spec/spec_helper.rb +3 -3
  90. data/swagger_aem.gemspec +8 -14
  91. metadata +36 -128
@@ -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
- **values** | **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
- **values** | **Integer** | Property value | [optional]
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
- **values** | **String** | Property value | [optional]
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'
@@ -51,11 +55,8 @@ SwaggerAemClient.configure do |config|
51
55
  end
52
56
 
53
57
  api_instance = SwaggerAemClient::SlingApi.new
54
-
55
- runmode = "runmode_example" # String |
56
-
57
- name = "name_example" # String |
58
-
58
+ runmode = 'runmode_example' # String |
59
+ name = 'name_example' # String |
59
60
 
60
61
  begin
61
62
  api_instance.delete_agent(runmode, name)
@@ -66,6 +67,7 @@ end
66
67
 
67
68
  ### Parameters
68
69
 
70
+
69
71
  Name | Type | Description | Notes
70
72
  ------------- | ------------- | ------------- | -------------
71
73
  **runmode** | **String**| |
@@ -81,17 +83,18 @@ nil (empty response body)
81
83
 
82
84
  ### HTTP request headers
83
85
 
84
- - **Content-Type**: Not defined
85
- - **Accept**: text/plain
86
+ - **Content-Type**: Not defined
87
+ - **Accept**: Not defined
86
88
 
87
89
 
90
+ ## delete_node
88
91
 
89
- # **delete_node**
90
92
  > delete_node(path, name)
91
93
 
92
94
 
93
95
 
94
96
  ### Example
97
+
95
98
  ```ruby
96
99
  # load the gem
97
100
  require 'swagger_aem'
@@ -103,11 +106,8 @@ SwaggerAemClient.configure do |config|
103
106
  end
104
107
 
105
108
  api_instance = SwaggerAemClient::SlingApi.new
106
-
107
- path = "path_example" # String |
108
-
109
- name = "name_example" # String |
110
-
109
+ path = 'path_example' # String |
110
+ name = 'name_example' # String |
111
111
 
112
112
  begin
113
113
  api_instance.delete_node(path, name)
@@ -118,6 +118,7 @@ end
118
118
 
119
119
  ### Parameters
120
120
 
121
+
121
122
  Name | Type | Description | Notes
122
123
  ------------- | ------------- | ------------- | -------------
123
124
  **path** | **String**| |
@@ -133,17 +134,18 @@ nil (empty response body)
133
134
 
134
135
  ### HTTP request headers
135
136
 
136
- - **Content-Type**: Not defined
137
- - **Accept**: text/plain
137
+ - **Content-Type**: Not defined
138
+ - **Accept**: Not defined
138
139
 
139
140
 
141
+ ## get_agent
140
142
 
141
- # **get_agent**
142
143
  > get_agent(runmode, name)
143
144
 
144
145
 
145
146
 
146
147
  ### Example
148
+
147
149
  ```ruby
148
150
  # load the gem
149
151
  require 'swagger_aem'
@@ -155,11 +157,8 @@ SwaggerAemClient.configure do |config|
155
157
  end
156
158
 
157
159
  api_instance = SwaggerAemClient::SlingApi.new
158
-
159
- runmode = "runmode_example" # String |
160
-
161
- name = "name_example" # String |
162
-
160
+ runmode = 'runmode_example' # String |
161
+ name = 'name_example' # String |
163
162
 
164
163
  begin
165
164
  api_instance.get_agent(runmode, name)
@@ -170,6 +169,7 @@ end
170
169
 
171
170
  ### Parameters
172
171
 
172
+
173
173
  Name | Type | Description | Notes
174
174
  ------------- | ------------- | ------------- | -------------
175
175
  **runmode** | **String**| |
@@ -185,17 +185,18 @@ nil (empty response body)
185
185
 
186
186
  ### HTTP request headers
187
187
 
188
- - **Content-Type**: Not defined
189
- - **Accept**: text/plain
188
+ - **Content-Type**: Not defined
189
+ - **Accept**: Not defined
190
190
 
191
191
 
192
+ ## get_agents
192
193
 
193
- # **get_agents**
194
194
  > String get_agents(runmode)
195
195
 
196
196
 
197
197
 
198
198
  ### Example
199
+
199
200
  ```ruby
200
201
  # load the gem
201
202
  require 'swagger_aem'
@@ -207,9 +208,7 @@ SwaggerAemClient.configure do |config|
207
208
  end
208
209
 
209
210
  api_instance = SwaggerAemClient::SlingApi.new
210
-
211
- runmode = "runmode_example" # String |
212
-
211
+ runmode = 'runmode_example' # String |
213
212
 
214
213
  begin
215
214
  result = api_instance.get_agents(runmode)
@@ -221,6 +220,7 @@ end
221
220
 
222
221
  ### Parameters
223
222
 
223
+
224
224
  Name | Type | Description | Notes
225
225
  ------------- | ------------- | ------------- | -------------
226
226
  **runmode** | **String**| |
@@ -235,17 +235,18 @@ Name | Type | Description | Notes
235
235
 
236
236
  ### HTTP request headers
237
237
 
238
- - **Content-Type**: Not defined
239
- - **Accept**: application/json
238
+ - **Content-Type**: Not defined
239
+ - **Accept**: application/json
240
240
 
241
241
 
242
+ ## get_authorizable_keystore
242
243
 
243
- # **get_authorizable_keystore**
244
244
  > KeystoreInfo get_authorizable_keystore(intermediate_path, authorizable_id)
245
245
 
246
246
 
247
247
 
248
248
  ### Example
249
+
249
250
  ```ruby
250
251
  # load the gem
251
252
  require 'swagger_aem'
@@ -257,11 +258,8 @@ SwaggerAemClient.configure do |config|
257
258
  end
258
259
 
259
260
  api_instance = SwaggerAemClient::SlingApi.new
260
-
261
- intermediate_path = "intermediate_path_example" # String |
262
-
263
- authorizable_id = "authorizable_id_example" # String |
264
-
261
+ intermediate_path = 'intermediate_path_example' # String |
262
+ authorizable_id = 'authorizable_id_example' # String |
265
263
 
266
264
  begin
267
265
  result = api_instance.get_authorizable_keystore(intermediate_path, authorizable_id)
@@ -273,6 +271,7 @@ end
273
271
 
274
272
  ### Parameters
275
273
 
274
+
276
275
  Name | Type | Description | Notes
277
276
  ------------- | ------------- | ------------- | -------------
278
277
  **intermediate_path** | **String**| |
@@ -288,17 +287,18 @@ Name | Type | Description | Notes
288
287
 
289
288
  ### HTTP request headers
290
289
 
291
- - **Content-Type**: Not defined
292
- - **Accept**: text/plain
290
+ - **Content-Type**: Not defined
291
+ - **Accept**: text/plain
293
292
 
294
293
 
294
+ ## get_keystore
295
295
 
296
- # **get_keystore**
297
296
  > File get_keystore(intermediate_path, authorizable_id)
298
297
 
299
298
 
300
299
 
301
300
  ### Example
301
+
302
302
  ```ruby
303
303
  # load the gem
304
304
  require 'swagger_aem'
@@ -310,11 +310,8 @@ SwaggerAemClient.configure do |config|
310
310
  end
311
311
 
312
312
  api_instance = SwaggerAemClient::SlingApi.new
313
-
314
- intermediate_path = "intermediate_path_example" # String |
315
-
316
- authorizable_id = "authorizable_id_example" # String |
317
-
313
+ intermediate_path = 'intermediate_path_example' # String |
314
+ authorizable_id = 'authorizable_id_example' # String |
318
315
 
319
316
  begin
320
317
  result = api_instance.get_keystore(intermediate_path, authorizable_id)
@@ -326,6 +323,7 @@ end
326
323
 
327
324
  ### Parameters
328
325
 
326
+
329
327
  Name | Type | Description | Notes
330
328
  ------------- | ------------- | ------------- | -------------
331
329
  **intermediate_path** | **String**| |
@@ -341,17 +339,18 @@ Name | Type | Description | Notes
341
339
 
342
340
  ### HTTP request headers
343
341
 
344
- - **Content-Type**: Not defined
345
- - **Accept**: application/octet-stream
342
+ - **Content-Type**: Not defined
343
+ - **Accept**: application/octet-stream
346
344
 
347
345
 
346
+ ## get_node
348
347
 
349
- # **get_node**
350
348
  > get_node(path, name)
351
349
 
352
350
 
353
351
 
354
352
  ### Example
353
+
355
354
  ```ruby
356
355
  # load the gem
357
356
  require 'swagger_aem'
@@ -363,11 +362,8 @@ SwaggerAemClient.configure do |config|
363
362
  end
364
363
 
365
364
  api_instance = SwaggerAemClient::SlingApi.new
366
-
367
- path = "path_example" # String |
368
-
369
- name = "name_example" # String |
370
-
365
+ path = 'path_example' # String |
366
+ name = 'name_example' # String |
371
367
 
372
368
  begin
373
369
  api_instance.get_node(path, name)
@@ -378,6 +374,7 @@ end
378
374
 
379
375
  ### Parameters
380
376
 
377
+
381
378
  Name | Type | Description | Notes
382
379
  ------------- | ------------- | ------------- | -------------
383
380
  **path** | **String**| |
@@ -393,17 +390,18 @@ nil (empty response body)
393
390
 
394
391
  ### HTTP request headers
395
392
 
396
- - **Content-Type**: Not defined
397
- - **Accept**: text/plain
393
+ - **Content-Type**: Not defined
394
+ - **Accept**: Not defined
398
395
 
399
396
 
397
+ ## get_package
400
398
 
401
- # **get_package**
402
399
  > File get_package(group, name, version)
403
400
 
404
401
 
405
402
 
406
403
  ### Example
404
+
407
405
  ```ruby
408
406
  # load the gem
409
407
  require 'swagger_aem'
@@ -415,13 +413,9 @@ SwaggerAemClient.configure do |config|
415
413
  end
416
414
 
417
415
  api_instance = SwaggerAemClient::SlingApi.new
418
-
419
- group = "group_example" # String |
420
-
421
- name = "name_example" # String |
422
-
423
- version = "version_example" # String |
424
-
416
+ group = 'group_example' # String |
417
+ name = 'name_example' # String |
418
+ version = 'version_example' # String |
425
419
 
426
420
  begin
427
421
  result = api_instance.get_package(group, name, version)
@@ -433,6 +427,7 @@ end
433
427
 
434
428
  ### Parameters
435
429
 
430
+
436
431
  Name | Type | Description | Notes
437
432
  ------------- | ------------- | ------------- | -------------
438
433
  **group** | **String**| |
@@ -449,17 +444,18 @@ Name | Type | Description | Notes
449
444
 
450
445
  ### HTTP request headers
451
446
 
452
- - **Content-Type**: Not defined
453
- - **Accept**: application/octet-stream
447
+ - **Content-Type**: Not defined
448
+ - **Accept**: application/octet-stream
454
449
 
455
450
 
451
+ ## get_package_filter
456
452
 
457
- # **get_package_filter**
458
453
  > String get_package_filter(group, name, version)
459
454
 
460
455
 
461
456
 
462
457
  ### Example
458
+
463
459
  ```ruby
464
460
  # load the gem
465
461
  require 'swagger_aem'
@@ -471,13 +467,9 @@ SwaggerAemClient.configure do |config|
471
467
  end
472
468
 
473
469
  api_instance = SwaggerAemClient::SlingApi.new
474
-
475
- group = "group_example" # String |
476
-
477
- name = "name_example" # String |
478
-
479
- version = "version_example" # String |
480
-
470
+ group = 'group_example' # String |
471
+ name = 'name_example' # String |
472
+ version = 'version_example' # String |
481
473
 
482
474
  begin
483
475
  result = api_instance.get_package_filter(group, name, version)
@@ -489,6 +481,7 @@ end
489
481
 
490
482
  ### Parameters
491
483
 
484
+
492
485
  Name | Type | Description | Notes
493
486
  ------------- | ------------- | ------------- | -------------
494
487
  **group** | **String**| |
@@ -505,17 +498,18 @@ Name | Type | Description | Notes
505
498
 
506
499
  ### HTTP request headers
507
500
 
508
- - **Content-Type**: Not defined
509
- - **Accept**: application/json
501
+ - **Content-Type**: Not defined
502
+ - **Accept**: application/json
510
503
 
511
504
 
505
+ ## get_query
512
506
 
513
- # **get_query**
514
507
  > String get_query(path, p_limit, _1_property, _1_property_value)
515
508
 
516
509
 
517
510
 
518
511
  ### Example
512
+
519
513
  ```ruby
520
514
  # load the gem
521
515
  require 'swagger_aem'
@@ -527,15 +521,10 @@ SwaggerAemClient.configure do |config|
527
521
  end
528
522
 
529
523
  api_instance = SwaggerAemClient::SlingApi.new
530
-
531
- path = "path_example" # String |
532
-
524
+ path = 'path_example' # String |
533
525
  p_limit = 3.4 # Float |
534
-
535
- _1_property = "_1_property_example" # String |
536
-
537
- _1_property_value = "_1_property_value_example" # String |
538
-
526
+ _1_property = '_1_property_example' # String |
527
+ _1_property_value = '_1_property_value_example' # String |
539
528
 
540
529
  begin
541
530
  result = api_instance.get_query(path, p_limit, _1_property, _1_property_value)
@@ -547,6 +536,7 @@ end
547
536
 
548
537
  ### Parameters
549
538
 
539
+
550
540
  Name | Type | Description | Notes
551
541
  ------------- | ------------- | ------------- | -------------
552
542
  **path** | **String**| |
@@ -564,17 +554,18 @@ Name | Type | Description | Notes
564
554
 
565
555
  ### HTTP request headers
566
556
 
567
- - **Content-Type**: Not defined
568
- - **Accept**: application/json
557
+ - **Content-Type**: Not defined
558
+ - **Accept**: application/json
569
559
 
570
560
 
561
+ ## get_truststore
571
562
 
572
- # **get_truststore**
573
563
  > File get_truststore
574
564
 
575
565
 
576
566
 
577
567
  ### Example
568
+
578
569
  ```ruby
579
570
  # load the gem
580
571
  require 'swagger_aem'
@@ -596,6 +587,7 @@ end
596
587
  ```
597
588
 
598
589
  ### Parameters
590
+
599
591
  This endpoint does not need any parameter.
600
592
 
601
593
  ### Return type
@@ -608,17 +600,18 @@ This endpoint does not need any parameter.
608
600
 
609
601
  ### HTTP request headers
610
602
 
611
- - **Content-Type**: Not defined
612
- - **Accept**: application/octet-stream
603
+ - **Content-Type**: Not defined
604
+ - **Accept**: application/octet-stream
613
605
 
614
606
 
607
+ ## get_truststore_info
615
608
 
616
- # **get_truststore_info**
617
609
  > TruststoreInfo get_truststore_info
618
610
 
619
611
 
620
612
 
621
613
  ### Example
614
+
622
615
  ```ruby
623
616
  # load the gem
624
617
  require 'swagger_aem'
@@ -640,6 +633,7 @@ end
640
633
  ```
641
634
 
642
635
  ### Parameters
636
+
643
637
  This endpoint does not need any parameter.
644
638
 
645
639
  ### Return type
@@ -652,17 +646,18 @@ This endpoint does not need any parameter.
652
646
 
653
647
  ### HTTP request headers
654
648
 
655
- - **Content-Type**: Not defined
656
- - **Accept**: application/json
649
+ - **Content-Type**: Not defined
650
+ - **Accept**: application/json
657
651
 
658
652
 
653
+ ## post_agent
659
654
 
660
- # **post_agent**
661
655
  > post_agent(runmode, name, opts)
662
656
 
663
657
 
664
658
 
665
659
  ### Example
660
+
666
661
  ```ruby
667
662
  # load the gem
668
663
  require 'swagger_aem'
@@ -674,62 +669,59 @@ SwaggerAemClient.configure do |config|
674
669
  end
675
670
 
676
671
  api_instance = SwaggerAemClient::SlingApi.new
677
-
678
- runmode = "runmode_example" # String |
679
-
680
- name = "name_example" # String |
681
-
682
- opts = {
683
- jcrcontentcqdistribute: true, # BOOLEAN |
684
- jcrcontentcqdistribute_type_hint: "jcrcontentcqdistribute_type_hint_example", # String |
685
- jcrcontentcqname: "jcrcontentcqname_example", # String |
686
- jcrcontentcqtemplate: "jcrcontentcqtemplate_example", # String |
687
- jcrcontentenabled: true, # BOOLEAN |
688
- jcrcontentjcrdescription: "jcrcontentjcrdescription_example", # String |
689
- jcrcontentjcrlast_modified: "jcrcontentjcrlast_modified_example", # String |
690
- jcrcontentjcrlast_modified_by: "jcrcontentjcrlast_modified_by_example", # String |
691
- jcrcontentjcrmixin_types: "jcrcontentjcrmixin_types_example", # String |
692
- jcrcontentjcrtitle: "jcrcontentjcrtitle_example", # String |
693
- jcrcontentlog_level: "jcrcontentlog_level_example", # String |
694
- jcrcontentno_status_update: true, # BOOLEAN |
695
- jcrcontentno_versioning: true, # BOOLEAN |
696
- jcrcontentprotocol_connect_timeout: 3.4, # Float |
697
- jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
698
- jcrcontentprotocol_http_expired: "jcrcontentprotocol_http_expired_example", # String |
699
- jcrcontentprotocol_http_headers: ["jcrcontentprotocol_http_headers_example"], # Array<String> |
700
- jcrcontentprotocol_http_headers_type_hint: "jcrcontentprotocol_http_headers_type_hint_example", # String |
701
- jcrcontentprotocol_http_method: "jcrcontentprotocol_http_method_example", # String |
702
- jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
703
- jcrcontentprotocol_interface: "jcrcontentprotocol_interface_example", # String |
704
- jcrcontentprotocol_socket_timeout: 3.4, # Float |
705
- jcrcontentprotocol_version: "jcrcontentprotocol_version_example", # String |
706
- jcrcontentproxy_ntlm_domain: "jcrcontentproxy_ntlm_domain_example", # String |
707
- jcrcontentproxy_ntlm_host: "jcrcontentproxy_ntlm_host_example", # String |
708
- jcrcontentproxy_host: "jcrcontentproxy_host_example", # String |
709
- jcrcontentproxy_password: "jcrcontentproxy_password_example", # String |
710
- jcrcontentproxy_port: 3.4, # Float |
711
- jcrcontentproxy_user: "jcrcontentproxy_user_example", # String |
712
- jcrcontentqueue_batch_max_size: 3.4, # Float |
713
- jcrcontentqueue_batch_mode: "jcrcontentqueue_batch_mode_example", # String |
714
- jcrcontentqueue_batch_wait_time: 3.4, # Float |
715
- jcrcontentretry_delay: "jcrcontentretry_delay_example", # String |
716
- jcrcontentreverse_replication: true, # BOOLEAN |
717
- jcrcontentserialization_type: "jcrcontentserialization_type_example", # String |
718
- jcrcontentslingresource_type: "jcrcontentslingresource_type_example", # String |
719
- jcrcontentssl: "jcrcontentssl_example", # String |
720
- jcrcontenttransport_ntlm_domain: "jcrcontenttransport_ntlm_domain_example", # String |
721
- jcrcontenttransport_ntlm_host: "jcrcontenttransport_ntlm_host_example", # String |
722
- jcrcontenttransport_password: "jcrcontenttransport_password_example", # String |
723
- jcrcontenttransport_uri: "jcrcontenttransport_uri_example", # String |
724
- jcrcontenttransport_user: "jcrcontenttransport_user_example", # String |
725
- jcrcontenttrigger_distribute: true, # BOOLEAN |
726
- jcrcontenttrigger_modified: true, # BOOLEAN |
727
- jcrcontenttrigger_on_off_time: true, # BOOLEAN |
728
- jcrcontenttrigger_receive: true, # BOOLEAN |
729
- jcrcontenttrigger_specific: true, # BOOLEAN |
730
- jcrcontentuser_id: "jcrcontentuser_id_example", # String |
731
- jcrprimary_type: "jcrprimary_type_example", # String |
732
- operation: "operation_example" # String |
672
+ runmode = 'runmode_example' # String |
673
+ name = 'name_example' # String |
674
+ opts = {
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 |
723
+ jcrprimary_type: 'jcrprimary_type_example', # String |
724
+ operation: 'operation_example' # String |
733
725
  }
734
726
 
735
727
  begin
@@ -741,58 +733,59 @@ end
741
733
 
742
734
  ### Parameters
743
735
 
736
+
744
737
  Name | Type | Description | Notes
745
738
  ------------- | ------------- | ------------- | -------------
746
739
  **runmode** | **String**| |
747
740
  **name** | **String**| |
748
- **jcrcontentcqdistribute** | **BOOLEAN**| | [optional]
749
- **jcrcontentcqdistribute_type_hint** | **String**| | [optional]
750
- **jcrcontentcqname** | **String**| | [optional]
751
- **jcrcontentcqtemplate** | **String**| | [optional]
752
- **jcrcontentenabled** | **BOOLEAN**| | [optional]
753
- **jcrcontentjcrdescription** | **String**| | [optional]
754
- **jcrcontentjcrlast_modified** | **String**| | [optional]
755
- **jcrcontentjcrlast_modified_by** | **String**| | [optional]
756
- **jcrcontentjcrmixin_types** | **String**| | [optional]
757
- **jcrcontentjcrtitle** | **String**| | [optional]
758
- **jcrcontentlog_level** | **String**| | [optional]
759
- **jcrcontentno_status_update** | **BOOLEAN**| | [optional]
760
- **jcrcontentno_versioning** | **BOOLEAN**| | [optional]
761
- **jcrcontentprotocol_connect_timeout** | **Float**| | [optional]
762
- **jcrcontentprotocol_http_connection_closed** | **BOOLEAN**| | [optional]
763
- **jcrcontentprotocol_http_expired** | **String**| | [optional]
764
- **jcrcontentprotocol_http_headers** | [**Array&lt;String&gt;**](String.md)| | [optional]
765
- **jcrcontentprotocol_http_headers_type_hint** | **String**| | [optional]
766
- **jcrcontentprotocol_http_method** | **String**| | [optional]
767
- **jcrcontentprotocol_https_relaxed** | **BOOLEAN**| | [optional]
768
- **jcrcontentprotocol_interface** | **String**| | [optional]
769
- **jcrcontentprotocol_socket_timeout** | **Float**| | [optional]
770
- **jcrcontentprotocol_version** | **String**| | [optional]
771
- **jcrcontentproxy_ntlm_domain** | **String**| | [optional]
772
- **jcrcontentproxy_ntlm_host** | **String**| | [optional]
773
- **jcrcontentproxy_host** | **String**| | [optional]
774
- **jcrcontentproxy_password** | **String**| | [optional]
775
- **jcrcontentproxy_port** | **Float**| | [optional]
776
- **jcrcontentproxy_user** | **String**| | [optional]
777
- **jcrcontentqueue_batch_max_size** | **Float**| | [optional]
778
- **jcrcontentqueue_batch_mode** | **String**| | [optional]
779
- **jcrcontentqueue_batch_wait_time** | **Float**| | [optional]
780
- **jcrcontentretry_delay** | **String**| | [optional]
781
- **jcrcontentreverse_replication** | **BOOLEAN**| | [optional]
782
- **jcrcontentserialization_type** | **String**| | [optional]
783
- **jcrcontentslingresource_type** | **String**| | [optional]
784
- **jcrcontentssl** | **String**| | [optional]
785
- **jcrcontenttransport_ntlm_domain** | **String**| | [optional]
786
- **jcrcontenttransport_ntlm_host** | **String**| | [optional]
787
- **jcrcontenttransport_password** | **String**| | [optional]
788
- **jcrcontenttransport_uri** | **String**| | [optional]
789
- **jcrcontenttransport_user** | **String**| | [optional]
790
- **jcrcontenttrigger_distribute** | **BOOLEAN**| | [optional]
791
- **jcrcontenttrigger_modified** | **BOOLEAN**| | [optional]
792
- **jcrcontenttrigger_on_off_time** | **BOOLEAN**| | [optional]
793
- **jcrcontenttrigger_receive** | **BOOLEAN**| | [optional]
794
- **jcrcontenttrigger_specific** | **BOOLEAN**| | [optional]
795
- **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]
796
789
  **jcrprimary_type** | **String**| | [optional]
797
790
  **operation** | **String**| | [optional]
798
791
 
@@ -806,17 +799,18 @@ nil (empty response body)
806
799
 
807
800
  ### HTTP request headers
808
801
 
809
- - **Content-Type**: Not defined
810
- - **Accept**: text/plain
802
+ - **Content-Type**: Not defined
803
+ - **Accept**: Not defined
811
804
 
812
805
 
806
+ ## post_authorizable_keystore
813
807
 
814
- # **post_authorizable_keystore**
815
808
  > KeystoreInfo post_authorizable_keystore(intermediate_path, authorizable_id, opts)
816
809
 
817
810
 
818
811
 
819
812
  ### Example
813
+
820
814
  ```ruby
821
815
  # load the gem
822
816
  require 'swagger_aem'
@@ -828,24 +822,21 @@ SwaggerAemClient.configure do |config|
828
822
  end
829
823
 
830
824
  api_instance = SwaggerAemClient::SlingApi.new
831
-
832
- intermediate_path = "intermediate_path_example" # String |
833
-
834
- authorizable_id = "authorizable_id_example" # String |
835
-
836
- opts = {
837
- operation: "operation_example", # String |
838
- current_password: "current_password_example", # String |
839
- new_password: "new_password_example", # String |
840
- re_password: "re_password_example", # String |
841
- key_password: "key_password_example", # String |
842
- key_store_pass: "key_store_pass_example", # String |
843
- _alias: "_alias_example", # String |
844
- new_alias: "new_alias_example", # String |
845
- remove_alias: "remove_alias_example", # String |
846
- cert_chain: File.new("/path/to/file.txt"), # File |
847
- pk: File.new("/path/to/file.txt"), # File |
848
- key_store: File.new("/path/to/file.txt") # File |
825
+ intermediate_path = 'intermediate_path_example' # String |
826
+ authorizable_id = 'authorizable_id_example' # String |
827
+ opts = {
828
+ operation: 'operation_example', # String |
829
+ current_password: 'current_password_example', # String |
830
+ new_password: 'new_password_example', # String |
831
+ re_password: 're_password_example', # String |
832
+ key_password: 'key_password_example', # String |
833
+ key_store_pass: 'key_store_pass_example', # String |
834
+ _alias: '_alias_example', # String |
835
+ new_alias: 'new_alias_example', # String |
836
+ remove_alias: 'remove_alias_example', # String |
837
+ cert_chain: File.new('/path/to/file'), # File |
838
+ pk: File.new('/path/to/file'), # File |
839
+ key_store: File.new('/path/to/file') # File |
849
840
  }
850
841
 
851
842
  begin
@@ -858,6 +849,7 @@ end
858
849
 
859
850
  ### Parameters
860
851
 
852
+
861
853
  Name | Type | Description | Notes
862
854
  ------------- | ------------- | ------------- | -------------
863
855
  **intermediate_path** | **String**| |
@@ -885,17 +877,18 @@ Name | Type | Description | Notes
885
877
 
886
878
  ### HTTP request headers
887
879
 
888
- - **Content-Type**: multipart/form-data
889
- - **Accept**: text/plain
880
+ - **Content-Type**: multipart/form-data
881
+ - **Accept**: text/plain
890
882
 
891
883
 
884
+ ## post_authorizables
892
885
 
893
- # **post_authorizables**
894
886
  > String post_authorizables(authorizable_id, intermediate_path, opts)
895
887
 
896
888
 
897
889
 
898
890
  ### Example
891
+
899
892
  ```ruby
900
893
  # load the gem
901
894
  require 'swagger_aem'
@@ -907,16 +900,13 @@ SwaggerAemClient.configure do |config|
907
900
  end
908
901
 
909
902
  api_instance = SwaggerAemClient::SlingApi.new
910
-
911
- authorizable_id = "authorizable_id_example" # String |
912
-
913
- intermediate_path = "intermediate_path_example" # String |
914
-
915
- opts = {
916
- create_user: "create_user_example", # String |
917
- create_group: "create_group_example", # String |
918
- reppassword: "reppassword_example", # String |
919
- profilegiven_name: "profilegiven_name_example" # String |
903
+ authorizable_id = 'authorizable_id_example' # String |
904
+ intermediate_path = 'intermediate_path_example' # String |
905
+ opts = {
906
+ create_user: 'create_user_example', # String |
907
+ create_group: 'create_group_example', # String |
908
+ reppassword: 'reppassword_example', # String |
909
+ profile_given_name: 'profile_given_name_example' # String |
920
910
  }
921
911
 
922
912
  begin
@@ -929,6 +919,7 @@ end
929
919
 
930
920
  ### Parameters
931
921
 
922
+
932
923
  Name | Type | Description | Notes
933
924
  ------------- | ------------- | ------------- | -------------
934
925
  **authorizable_id** | **String**| |
@@ -936,7 +927,7 @@ Name | Type | Description | Notes
936
927
  **create_user** | **String**| | [optional]
937
928
  **create_group** | **String**| | [optional]
938
929
  **reppassword** | **String**| | [optional]
939
- **profilegiven_name** | **String**| | [optional]
930
+ **profile_given_name** | **String**| | [optional]
940
931
 
941
932
  ### Return type
942
933
 
@@ -948,17 +939,18 @@ Name | Type | Description | Notes
948
939
 
949
940
  ### HTTP request headers
950
941
 
951
- - **Content-Type**: Not defined
952
- - **Accept**: text/html
942
+ - **Content-Type**: Not defined
943
+ - **Accept**: text/html
953
944
 
954
945
 
946
+ ## post_config_adobe_granite_saml_authentication_handler
955
947
 
956
- # **post_config_adobe_granite_saml_authentication_handler**
957
948
  > post_config_adobe_granite_saml_authentication_handler(opts)
958
949
 
959
950
 
960
951
 
961
952
  ### Example
953
+
962
954
  ```ruby
963
955
  # load the gem
964
956
  require 'swagger_aem'
@@ -970,56 +962,55 @@ SwaggerAemClient.configure do |config|
970
962
  end
971
963
 
972
964
  api_instance = SwaggerAemClient::SlingApi.new
973
-
974
- opts = {
975
- key_store_password: "key_store_password_example", # String |
976
- key_store_password_type_hint: "key_store_password_type_hint_example", # String |
965
+ opts = {
966
+ key_store_password: 'key_store_password_example', # String |
967
+ key_store_password_type_hint: 'key_store_password_type_hint_example', # String |
977
968
  service_ranking: 56, # Integer |
978
- service_ranking_type_hint: "service_ranking_type_hint_example", # String |
979
- idp_http_redirect: true, # BOOLEAN |
980
- idp_http_redirect_type_hint: "idp_http_redirect_type_hint_example", # String |
981
- create_user: true, # BOOLEAN |
982
- create_user_type_hint: "create_user_type_hint_example", # String |
983
- default_redirect_url: "default_redirect_url_example", # String |
984
- default_redirect_url_type_hint: "default_redirect_url_type_hint_example", # String |
985
- user_id_attribute: "user_id_attribute_example", # String |
986
- user_id_attribute_type_hint: "user_id_attribute_type_hint_example", # String |
987
- default_groups: ["default_groups_example"], # Array<String> |
988
- default_groups_type_hint: "default_groups_type_hint_example", # String |
989
- idp_cert_alias: "idp_cert_alias_example", # String |
990
- idp_cert_alias_type_hint: "idp_cert_alias_type_hint_example", # String |
991
- add_group_memberships: true, # BOOLEAN |
992
- add_group_memberships_type_hint: "add_group_memberships_type_hint_example", # String |
993
- path: ["path_example"], # Array<String> |
994
- path_type_hint: "path_type_hint_example", # String |
995
- synchronize_attributes: ["synchronize_attributes_example"], # Array<String> |
996
- synchronize_attributes_type_hint: "synchronize_attributes_type_hint_example", # String |
969
+ service_ranking_type_hint: 'service_ranking_type_hint_example', # String |
970
+ idp_http_redirect: true, # Boolean |
971
+ idp_http_redirect_type_hint: 'idp_http_redirect_type_hint_example', # String |
972
+ create_user: true, # Boolean |
973
+ create_user_type_hint: 'create_user_type_hint_example', # String |
974
+ default_redirect_url: 'default_redirect_url_example', # String |
975
+ default_redirect_url_type_hint: 'default_redirect_url_type_hint_example', # String |
976
+ user_id_attribute: 'user_id_attribute_example', # String |
977
+ user_id_attribute_type_hint: 'user_id_attribute_type_hint_example', # String |
978
+ default_groups: ['default_groups_example'], # Array<String> |
979
+ default_groups_type_hint: 'default_groups_type_hint_example', # String |
980
+ idp_cert_alias: 'idp_cert_alias_example', # String |
981
+ idp_cert_alias_type_hint: 'idp_cert_alias_type_hint_example', # String |
982
+ add_group_memberships: true, # Boolean |
983
+ add_group_memberships_type_hint: 'add_group_memberships_type_hint_example', # String |
984
+ path: ['path_example'], # Array<String> |
985
+ path_type_hint: 'path_type_hint_example', # String |
986
+ synchronize_attributes: ['synchronize_attributes_example'], # Array<String> |
987
+ synchronize_attributes_type_hint: 'synchronize_attributes_type_hint_example', # String |
997
988
  clock_tolerance: 56, # Integer |
998
- clock_tolerance_type_hint: "clock_tolerance_type_hint_example", # String |
999
- group_membership_attribute: "group_membership_attribute_example", # String |
1000
- group_membership_attribute_type_hint: "group_membership_attribute_type_hint_example", # String |
1001
- idp_url: "idp_url_example", # String |
1002
- idp_url_type_hint: "idp_url_type_hint_example", # String |
1003
- logout_url: "logout_url_example", # String |
1004
- logout_url_type_hint: "logout_url_type_hint_example", # String |
1005
- service_provider_entity_id: "service_provider_entity_id_example", # String |
1006
- service_provider_entity_id_type_hint: "service_provider_entity_id_type_hint_example", # String |
1007
- assertion_consumer_service_url: "assertion_consumer_service_url_example", # String |
1008
- assertion_consumer_service_url_type_hint: "assertion_consumer_service_url_type_hint_example", # String |
1009
- handle_logout: true, # BOOLEAN |
1010
- handle_logout_type_hint: "handle_logout_type_hint_example", # String |
1011
- sp_private_key_alias: "sp_private_key_alias_example", # String |
1012
- sp_private_key_alias_type_hint: "sp_private_key_alias_type_hint_example", # String |
1013
- use_encryption: true, # BOOLEAN |
1014
- use_encryption_type_hint: "use_encryption_type_hint_example", # String |
1015
- name_id_format: "name_id_format_example", # String |
1016
- name_id_format_type_hint: "name_id_format_type_hint_example", # String |
1017
- digest_method: "digest_method_example", # String |
1018
- digest_method_type_hint: "digest_method_type_hint_example", # String |
1019
- signature_method: "signature_method_example", # String |
1020
- signature_method_type_hint: "signature_method_type_hint_example", # String |
1021
- user_intermediate_path: "user_intermediate_path_example", # String |
1022
- user_intermediate_path_type_hint: "user_intermediate_path_type_hint_example" # String |
989
+ clock_tolerance_type_hint: 'clock_tolerance_type_hint_example', # String |
990
+ group_membership_attribute: 'group_membership_attribute_example', # String |
991
+ group_membership_attribute_type_hint: 'group_membership_attribute_type_hint_example', # String |
992
+ idp_url: 'idp_url_example', # String |
993
+ idp_url_type_hint: 'idp_url_type_hint_example', # String |
994
+ logout_url: 'logout_url_example', # String |
995
+ logout_url_type_hint: 'logout_url_type_hint_example', # String |
996
+ service_provider_entity_id: 'service_provider_entity_id_example', # String |
997
+ service_provider_entity_id_type_hint: 'service_provider_entity_id_type_hint_example', # String |
998
+ assertion_consumer_service_url: 'assertion_consumer_service_url_example', # String |
999
+ assertion_consumer_service_url_type_hint: 'assertion_consumer_service_url_type_hint_example', # String |
1000
+ handle_logout: true, # Boolean |
1001
+ handle_logout_type_hint: 'handle_logout_type_hint_example', # String |
1002
+ sp_private_key_alias: 'sp_private_key_alias_example', # String |
1003
+ sp_private_key_alias_type_hint: 'sp_private_key_alias_type_hint_example', # String |
1004
+ use_encryption: true, # Boolean |
1005
+ use_encryption_type_hint: 'use_encryption_type_hint_example', # String |
1006
+ name_id_format: 'name_id_format_example', # String |
1007
+ name_id_format_type_hint: 'name_id_format_type_hint_example', # String |
1008
+ digest_method: 'digest_method_example', # String |
1009
+ digest_method_type_hint: 'digest_method_type_hint_example', # String |
1010
+ signature_method: 'signature_method_example', # String |
1011
+ signature_method_type_hint: 'signature_method_type_hint_example', # String |
1012
+ user_intermediate_path: 'user_intermediate_path_example', # String |
1013
+ user_intermediate_path_type_hint: 'user_intermediate_path_type_hint_example' # String |
1023
1014
  }
1024
1015
 
1025
1016
  begin
@@ -1031,15 +1022,16 @@ end
1031
1022
 
1032
1023
  ### Parameters
1033
1024
 
1025
+
1034
1026
  Name | Type | Description | Notes
1035
1027
  ------------- | ------------- | ------------- | -------------
1036
1028
  **key_store_password** | **String**| | [optional]
1037
1029
  **key_store_password_type_hint** | **String**| | [optional]
1038
1030
  **service_ranking** | **Integer**| | [optional]
1039
1031
  **service_ranking_type_hint** | **String**| | [optional]
1040
- **idp_http_redirect** | **BOOLEAN**| | [optional]
1032
+ **idp_http_redirect** | **Boolean**| | [optional]
1041
1033
  **idp_http_redirect_type_hint** | **String**| | [optional]
1042
- **create_user** | **BOOLEAN**| | [optional]
1034
+ **create_user** | **Boolean**| | [optional]
1043
1035
  **create_user_type_hint** | **String**| | [optional]
1044
1036
  **default_redirect_url** | **String**| | [optional]
1045
1037
  **default_redirect_url_type_hint** | **String**| | [optional]
@@ -1049,7 +1041,7 @@ Name | Type | Description | Notes
1049
1041
  **default_groups_type_hint** | **String**| | [optional]
1050
1042
  **idp_cert_alias** | **String**| | [optional]
1051
1043
  **idp_cert_alias_type_hint** | **String**| | [optional]
1052
- **add_group_memberships** | **BOOLEAN**| | [optional]
1044
+ **add_group_memberships** | **Boolean**| | [optional]
1053
1045
  **add_group_memberships_type_hint** | **String**| | [optional]
1054
1046
  **path** | [**Array&lt;String&gt;**](String.md)| | [optional]
1055
1047
  **path_type_hint** | **String**| | [optional]
@@ -1067,11 +1059,11 @@ Name | Type | Description | Notes
1067
1059
  **service_provider_entity_id_type_hint** | **String**| | [optional]
1068
1060
  **assertion_consumer_service_url** | **String**| | [optional]
1069
1061
  **assertion_consumer_service_url_type_hint** | **String**| | [optional]
1070
- **handle_logout** | **BOOLEAN**| | [optional]
1062
+ **handle_logout** | **Boolean**| | [optional]
1071
1063
  **handle_logout_type_hint** | **String**| | [optional]
1072
1064
  **sp_private_key_alias** | **String**| | [optional]
1073
1065
  **sp_private_key_alias_type_hint** | **String**| | [optional]
1074
- **use_encryption** | **BOOLEAN**| | [optional]
1066
+ **use_encryption** | **Boolean**| | [optional]
1075
1067
  **use_encryption_type_hint** | **String**| | [optional]
1076
1068
  **name_id_format** | **String**| | [optional]
1077
1069
  **name_id_format_type_hint** | **String**| | [optional]
@@ -1092,17 +1084,18 @@ nil (empty response body)
1092
1084
 
1093
1085
  ### HTTP request headers
1094
1086
 
1095
- - **Content-Type**: Not defined
1096
- - **Accept**: text/plain
1087
+ - **Content-Type**: Not defined
1088
+ - **Accept**: Not defined
1097
1089
 
1098
1090
 
1091
+ ## post_config_apache_felix_jetty_based_http_service
1099
1092
 
1100
- # **post_config_apache_felix_jetty_based_http_service**
1101
1093
  > post_config_apache_felix_jetty_based_http_service(opts)
1102
1094
 
1103
1095
 
1104
1096
 
1105
1097
  ### Example
1098
+
1106
1099
  ```ruby
1107
1100
  # load the gem
1108
1101
  require 'swagger_aem'
@@ -1114,28 +1107,27 @@ SwaggerAemClient.configure do |config|
1114
1107
  end
1115
1108
 
1116
1109
  api_instance = SwaggerAemClient::SlingApi.new
1117
-
1118
- opts = {
1119
- org_apache_felix_https_nio: true, # BOOLEAN |
1120
- org_apache_felix_https_nio_type_hint: "org_apache_felix_https_nio_type_hint_example", # String |
1121
- org_apache_felix_https_keystore: "org_apache_felix_https_keystore_example", # String |
1122
- org_apache_felix_https_keystore_type_hint: "org_apache_felix_https_keystore_type_hint_example", # String |
1123
- org_apache_felix_https_keystore_password: "org_apache_felix_https_keystore_password_example", # String |
1124
- org_apache_felix_https_keystore_password_type_hint: "org_apache_felix_https_keystore_password_type_hint_example", # String |
1125
- org_apache_felix_https_keystore_key: "org_apache_felix_https_keystore_key_example", # String |
1126
- org_apache_felix_https_keystore_key_type_hint: "org_apache_felix_https_keystore_key_type_hint_example", # String |
1127
- org_apache_felix_https_keystore_key_password: "org_apache_felix_https_keystore_key_password_example", # String |
1128
- org_apache_felix_https_keystore_key_password_type_hint: "org_apache_felix_https_keystore_key_password_type_hint_example", # String |
1129
- org_apache_felix_https_truststore: "org_apache_felix_https_truststore_example", # String |
1130
- org_apache_felix_https_truststore_type_hint: "org_apache_felix_https_truststore_type_hint_example", # String |
1131
- org_apache_felix_https_truststore_password: "org_apache_felix_https_truststore_password_example", # String |
1132
- org_apache_felix_https_truststore_password_type_hint: "org_apache_felix_https_truststore_password_type_hint_example", # String |
1133
- org_apache_felix_https_clientcertificate: "org_apache_felix_https_clientcertificate_example", # String |
1134
- org_apache_felix_https_clientcertificate_type_hint: "org_apache_felix_https_clientcertificate_type_hint_example", # String |
1135
- org_apache_felix_https_enable: true, # BOOLEAN |
1136
- org_apache_felix_https_enable_type_hint: "org_apache_felix_https_enable_type_hint_example", # String |
1137
- org_osgi_service_http_port_secure: "org_osgi_service_http_port_secure_example", # String |
1138
- org_osgi_service_http_port_secure_type_hint: "org_osgi_service_http_port_secure_type_hint_example" # String |
1110
+ opts = {
1111
+ org_apache_felix_https_nio: true, # Boolean |
1112
+ org_apache_felix_https_nio_type_hint: 'org_apache_felix_https_nio_type_hint_example', # String |
1113
+ org_apache_felix_https_keystore: 'org_apache_felix_https_keystore_example', # String |
1114
+ org_apache_felix_https_keystore_type_hint: 'org_apache_felix_https_keystore_type_hint_example', # String |
1115
+ org_apache_felix_https_keystore_password: 'org_apache_felix_https_keystore_password_example', # String |
1116
+ org_apache_felix_https_keystore_password_type_hint: 'org_apache_felix_https_keystore_password_type_hint_example', # String |
1117
+ org_apache_felix_https_keystore_key: 'org_apache_felix_https_keystore_key_example', # String |
1118
+ org_apache_felix_https_keystore_key_type_hint: 'org_apache_felix_https_keystore_key_type_hint_example', # String |
1119
+ org_apache_felix_https_keystore_key_password: 'org_apache_felix_https_keystore_key_password_example', # String |
1120
+ org_apache_felix_https_keystore_key_password_type_hint: 'org_apache_felix_https_keystore_key_password_type_hint_example', # String |
1121
+ org_apache_felix_https_truststore: 'org_apache_felix_https_truststore_example', # String |
1122
+ org_apache_felix_https_truststore_type_hint: 'org_apache_felix_https_truststore_type_hint_example', # String |
1123
+ org_apache_felix_https_truststore_password: 'org_apache_felix_https_truststore_password_example', # String |
1124
+ org_apache_felix_https_truststore_password_type_hint: 'org_apache_felix_https_truststore_password_type_hint_example', # String |
1125
+ org_apache_felix_https_clientcertificate: 'org_apache_felix_https_clientcertificate_example', # String |
1126
+ org_apache_felix_https_clientcertificate_type_hint: 'org_apache_felix_https_clientcertificate_type_hint_example', # String |
1127
+ org_apache_felix_https_enable: true, # Boolean |
1128
+ org_apache_felix_https_enable_type_hint: 'org_apache_felix_https_enable_type_hint_example', # String |
1129
+ org_osgi_service_http_port_secure: 'org_osgi_service_http_port_secure_example', # String |
1130
+ org_osgi_service_http_port_secure_type_hint: 'org_osgi_service_http_port_secure_type_hint_example' # String |
1139
1131
  }
1140
1132
 
1141
1133
  begin
@@ -1147,9 +1139,10 @@ end
1147
1139
 
1148
1140
  ### Parameters
1149
1141
 
1142
+
1150
1143
  Name | Type | Description | Notes
1151
1144
  ------------- | ------------- | ------------- | -------------
1152
- **org_apache_felix_https_nio** | **BOOLEAN**| | [optional]
1145
+ **org_apache_felix_https_nio** | **Boolean**| | [optional]
1153
1146
  **org_apache_felix_https_nio_type_hint** | **String**| | [optional]
1154
1147
  **org_apache_felix_https_keystore** | **String**| | [optional]
1155
1148
  **org_apache_felix_https_keystore_type_hint** | **String**| | [optional]
@@ -1165,7 +1158,7 @@ Name | Type | Description | Notes
1165
1158
  **org_apache_felix_https_truststore_password_type_hint** | **String**| | [optional]
1166
1159
  **org_apache_felix_https_clientcertificate** | **String**| | [optional]
1167
1160
  **org_apache_felix_https_clientcertificate_type_hint** | **String**| | [optional]
1168
- **org_apache_felix_https_enable** | **BOOLEAN**| | [optional]
1161
+ **org_apache_felix_https_enable** | **Boolean**| | [optional]
1169
1162
  **org_apache_felix_https_enable_type_hint** | **String**| | [optional]
1170
1163
  **org_osgi_service_http_port_secure** | **String**| | [optional]
1171
1164
  **org_osgi_service_http_port_secure_type_hint** | **String**| | [optional]
@@ -1180,17 +1173,18 @@ nil (empty response body)
1180
1173
 
1181
1174
  ### HTTP request headers
1182
1175
 
1183
- - **Content-Type**: Not defined
1184
- - **Accept**: text/plain
1176
+ - **Content-Type**: Not defined
1177
+ - **Accept**: Not defined
1185
1178
 
1186
1179
 
1180
+ ## post_config_apache_http_components_proxy_configuration
1187
1181
 
1188
- # **post_config_apache_http_components_proxy_configuration**
1189
1182
  > post_config_apache_http_components_proxy_configuration(opts)
1190
1183
 
1191
1184
 
1192
1185
 
1193
1186
  ### Example
1187
+
1194
1188
  ```ruby
1195
1189
  # load the gem
1196
1190
  require 'swagger_aem'
@@ -1202,20 +1196,19 @@ SwaggerAemClient.configure do |config|
1202
1196
  end
1203
1197
 
1204
1198
  api_instance = SwaggerAemClient::SlingApi.new
1205
-
1206
- opts = {
1207
- proxy_host: "proxy_host_example", # String |
1208
- proxy_host_type_hint: "proxy_host_type_hint_example", # String |
1199
+ opts = {
1200
+ proxy_host: 'proxy_host_example', # String |
1201
+ proxy_host_type_hint: 'proxy_host_type_hint_example', # String |
1209
1202
  proxy_port: 56, # Integer |
1210
- proxy_port_type_hint: "proxy_port_type_hint_example", # String |
1211
- proxy_exceptions: ["proxy_exceptions_example"], # Array<String> |
1212
- proxy_exceptions_type_hint: "proxy_exceptions_type_hint_example", # String |
1213
- proxy_enabled: true, # BOOLEAN |
1214
- proxy_enabled_type_hint: "proxy_enabled_type_hint_example", # String |
1215
- proxy_user: "proxy_user_example", # String |
1216
- proxy_user_type_hint: "proxy_user_type_hint_example", # String |
1217
- proxy_password: "proxy_password_example", # String |
1218
- proxy_password_type_hint: "proxy_password_type_hint_example" # String |
1203
+ proxy_port_type_hint: 'proxy_port_type_hint_example', # String |
1204
+ proxy_exceptions: ['proxy_exceptions_example'], # Array<String> |
1205
+ proxy_exceptions_type_hint: 'proxy_exceptions_type_hint_example', # String |
1206
+ proxy_enabled: true, # Boolean |
1207
+ proxy_enabled_type_hint: 'proxy_enabled_type_hint_example', # String |
1208
+ proxy_user: 'proxy_user_example', # String |
1209
+ proxy_user_type_hint: 'proxy_user_type_hint_example', # String |
1210
+ proxy_password: 'proxy_password_example', # String |
1211
+ proxy_password_type_hint: 'proxy_password_type_hint_example' # String |
1219
1212
  }
1220
1213
 
1221
1214
  begin
@@ -1227,6 +1220,7 @@ end
1227
1220
 
1228
1221
  ### Parameters
1229
1222
 
1223
+
1230
1224
  Name | Type | Description | Notes
1231
1225
  ------------- | ------------- | ------------- | -------------
1232
1226
  **proxy_host** | **String**| | [optional]
@@ -1235,7 +1229,7 @@ Name | Type | Description | Notes
1235
1229
  **proxy_port_type_hint** | **String**| | [optional]
1236
1230
  **proxy_exceptions** | [**Array&lt;String&gt;**](String.md)| | [optional]
1237
1231
  **proxy_exceptions_type_hint** | **String**| | [optional]
1238
- **proxy_enabled** | **BOOLEAN**| | [optional]
1232
+ **proxy_enabled** | **Boolean**| | [optional]
1239
1233
  **proxy_enabled_type_hint** | **String**| | [optional]
1240
1234
  **proxy_user** | **String**| | [optional]
1241
1235
  **proxy_user_type_hint** | **String**| | [optional]
@@ -1252,17 +1246,18 @@ nil (empty response body)
1252
1246
 
1253
1247
  ### HTTP request headers
1254
1248
 
1255
- - **Content-Type**: Not defined
1256
- - **Accept**: text/plain
1249
+ - **Content-Type**: Not defined
1250
+ - **Accept**: Not defined
1257
1251
 
1258
1252
 
1253
+ ## post_config_apache_sling_dav_ex_servlet
1259
1254
 
1260
- # **post_config_apache_sling_dav_ex_servlet**
1261
1255
  > post_config_apache_sling_dav_ex_servlet(opts)
1262
1256
 
1263
1257
 
1264
1258
 
1265
1259
  ### Example
1260
+
1266
1261
  ```ruby
1267
1262
  # load the gem
1268
1263
  require 'swagger_aem'
@@ -1274,12 +1269,11 @@ SwaggerAemClient.configure do |config|
1274
1269
  end
1275
1270
 
1276
1271
  api_instance = SwaggerAemClient::SlingApi.new
1277
-
1278
- opts = {
1279
- _alias: "_alias_example", # String |
1280
- alias_type_hint: "alias_type_hint_example", # String |
1281
- dav_create_absolute_uri: true, # BOOLEAN |
1282
- dav_create_absolute_uri_type_hint: "dav_create_absolute_uri_type_hint_example" # String |
1272
+ opts = {
1273
+ _alias: '_alias_example', # String |
1274
+ alias_type_hint: 'alias_type_hint_example', # String |
1275
+ dav_create_absolute_uri: true, # Boolean |
1276
+ dav_create_absolute_uri_type_hint: 'dav_create_absolute_uri_type_hint_example' # String |
1283
1277
  }
1284
1278
 
1285
1279
  begin
@@ -1291,11 +1285,12 @@ end
1291
1285
 
1292
1286
  ### Parameters
1293
1287
 
1288
+
1294
1289
  Name | Type | Description | Notes
1295
1290
  ------------- | ------------- | ------------- | -------------
1296
1291
  **_alias** | **String**| | [optional]
1297
1292
  **alias_type_hint** | **String**| | [optional]
1298
- **dav_create_absolute_uri** | **BOOLEAN**| | [optional]
1293
+ **dav_create_absolute_uri** | **Boolean**| | [optional]
1299
1294
  **dav_create_absolute_uri_type_hint** | **String**| | [optional]
1300
1295
 
1301
1296
  ### Return type
@@ -1308,17 +1303,18 @@ nil (empty response body)
1308
1303
 
1309
1304
  ### HTTP request headers
1310
1305
 
1311
- - **Content-Type**: Not defined
1312
- - **Accept**: text/plain
1306
+ - **Content-Type**: Not defined
1307
+ - **Accept**: Not defined
1313
1308
 
1314
1309
 
1310
+ ## post_config_apache_sling_get_servlet
1315
1311
 
1316
- # **post_config_apache_sling_get_servlet**
1317
1312
  > post_config_apache_sling_get_servlet(opts)
1318
1313
 
1319
1314
 
1320
1315
 
1321
1316
  ### Example
1317
+
1322
1318
  ```ruby
1323
1319
  # load the gem
1324
1320
  require 'swagger_aem'
@@ -1330,16 +1326,15 @@ SwaggerAemClient.configure do |config|
1330
1326
  end
1331
1327
 
1332
1328
  api_instance = SwaggerAemClient::SlingApi.new
1333
-
1334
- opts = {
1335
- json_maximumresults: "json_maximumresults_example", # String |
1336
- json_maximumresults_type_hint: "json_maximumresults_type_hint_example", # String |
1337
- enable_html: true, # BOOLEAN |
1338
- enable_html_type_hint: "enable_html_type_hint_example", # String |
1339
- enable_txt: true, # BOOLEAN |
1340
- enable_txt_type_hint: "enable_txt_type_hint_example", # String |
1341
- enable_xml: true, # BOOLEAN |
1342
- enable_xml_type_hint: "enable_xml_type_hint_example" # String |
1329
+ opts = {
1330
+ json_maximumresults: 'json_maximumresults_example', # String |
1331
+ json_maximumresults_type_hint: 'json_maximumresults_type_hint_example', # String |
1332
+ enable_html: true, # Boolean |
1333
+ enable_html_type_hint: 'enable_html_type_hint_example', # String |
1334
+ enable_txt: true, # Boolean |
1335
+ enable_txt_type_hint: 'enable_txt_type_hint_example', # String |
1336
+ enable_xml: true, # Boolean |
1337
+ enable_xml_type_hint: 'enable_xml_type_hint_example' # String |
1343
1338
  }
1344
1339
 
1345
1340
  begin
@@ -1351,15 +1346,16 @@ end
1351
1346
 
1352
1347
  ### Parameters
1353
1348
 
1349
+
1354
1350
  Name | Type | Description | Notes
1355
1351
  ------------- | ------------- | ------------- | -------------
1356
1352
  **json_maximumresults** | **String**| | [optional]
1357
1353
  **json_maximumresults_type_hint** | **String**| | [optional]
1358
- **enable_html** | **BOOLEAN**| | [optional]
1354
+ **enable_html** | **Boolean**| | [optional]
1359
1355
  **enable_html_type_hint** | **String**| | [optional]
1360
- **enable_txt** | **BOOLEAN**| | [optional]
1356
+ **enable_txt** | **Boolean**| | [optional]
1361
1357
  **enable_txt_type_hint** | **String**| | [optional]
1362
- **enable_xml** | **BOOLEAN**| | [optional]
1358
+ **enable_xml** | **Boolean**| | [optional]
1363
1359
  **enable_xml_type_hint** | **String**| | [optional]
1364
1360
 
1365
1361
  ### Return type
@@ -1372,17 +1368,18 @@ nil (empty response body)
1372
1368
 
1373
1369
  ### HTTP request headers
1374
1370
 
1375
- - **Content-Type**: Not defined
1376
- - **Accept**: text/plain
1371
+ - **Content-Type**: Not defined
1372
+ - **Accept**: Not defined
1377
1373
 
1378
1374
 
1375
+ ## post_config_apache_sling_referrer_filter
1379
1376
 
1380
- # **post_config_apache_sling_referrer_filter**
1381
1377
  > post_config_apache_sling_referrer_filter(opts)
1382
1378
 
1383
1379
 
1384
1380
 
1385
1381
  ### Example
1382
+
1386
1383
  ```ruby
1387
1384
  # load the gem
1388
1385
  require 'swagger_aem'
@@ -1394,16 +1391,15 @@ SwaggerAemClient.configure do |config|
1394
1391
  end
1395
1392
 
1396
1393
  api_instance = SwaggerAemClient::SlingApi.new
1397
-
1398
- opts = {
1399
- allow_empty: true, # BOOLEAN |
1400
- allow_empty_type_hint: "allow_empty_type_hint_example", # String |
1401
- allow_hosts: "allow_hosts_example", # String |
1402
- allow_hosts_type_hint: "allow_hosts_type_hint_example", # String |
1403
- allow_hosts_regexp: "allow_hosts_regexp_example", # String |
1404
- allow_hosts_regexp_type_hint: "allow_hosts_regexp_type_hint_example", # String |
1405
- filter_methods: "filter_methods_example", # String |
1406
- filter_methods_type_hint: "filter_methods_type_hint_example" # String |
1394
+ opts = {
1395
+ allow_empty: true, # Boolean |
1396
+ allow_empty_type_hint: 'allow_empty_type_hint_example', # String |
1397
+ allow_hosts: 'allow_hosts_example', # String |
1398
+ allow_hosts_type_hint: 'allow_hosts_type_hint_example', # String |
1399
+ allow_hosts_regexp: 'allow_hosts_regexp_example', # String |
1400
+ allow_hosts_regexp_type_hint: 'allow_hosts_regexp_type_hint_example', # String |
1401
+ filter_methods: 'filter_methods_example', # String |
1402
+ filter_methods_type_hint: 'filter_methods_type_hint_example' # String |
1407
1403
  }
1408
1404
 
1409
1405
  begin
@@ -1415,9 +1411,10 @@ end
1415
1411
 
1416
1412
  ### Parameters
1417
1413
 
1414
+
1418
1415
  Name | Type | Description | Notes
1419
1416
  ------------- | ------------- | ------------- | -------------
1420
- **allow_empty** | **BOOLEAN**| | [optional]
1417
+ **allow_empty** | **Boolean**| | [optional]
1421
1418
  **allow_empty_type_hint** | **String**| | [optional]
1422
1419
  **allow_hosts** | **String**| | [optional]
1423
1420
  **allow_hosts_type_hint** | **String**| | [optional]
@@ -1436,17 +1433,18 @@ nil (empty response body)
1436
1433
 
1437
1434
  ### HTTP request headers
1438
1435
 
1439
- - **Content-Type**: Not defined
1440
- - **Accept**: text/plain
1436
+ - **Content-Type**: Not defined
1437
+ - **Accept**: Not defined
1441
1438
 
1442
1439
 
1440
+ ## post_config_property
1443
1441
 
1444
- # **post_node**
1445
- > post_node(path, name, opts)
1442
+ > post_config_property(config_node_name)
1446
1443
 
1447
1444
 
1448
1445
 
1449
1446
  ### Example
1447
+
1450
1448
  ```ruby
1451
1449
  # load the gem
1452
1450
  require 'swagger_aem'
@@ -1458,15 +1456,61 @@ SwaggerAemClient.configure do |config|
1458
1456
  end
1459
1457
 
1460
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
1461
1469
 
1462
- path = "path_example" # String |
1463
1470
 
1464
- name = "name_example" # String |
1471
+ Name | Type | Description | Notes
1472
+ ------------- | ------------- | ------------- | -------------
1473
+ **config_node_name** | **String**| |
1465
1474
 
1466
- opts = {
1467
- operation: "operation_example", # String |
1468
- delete_authorizable: "delete_authorizable_example", # String |
1469
- file: File.new("/path/to/file.txt") # File |
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
1490
+
1491
+ > post_node(path, name, opts)
1492
+
1493
+
1494
+
1495
+ ### Example
1496
+
1497
+ ```ruby
1498
+ # load the gem
1499
+ require 'swagger_aem'
1500
+ # setup authorization
1501
+ SwaggerAemClient.configure do |config|
1502
+ # Configure HTTP basic authorization: aemAuth
1503
+ config.username = 'YOUR USERNAME'
1504
+ config.password = 'YOUR PASSWORD'
1505
+ end
1506
+
1507
+ api_instance = SwaggerAemClient::SlingApi.new
1508
+ path = 'path_example' # String |
1509
+ name = 'name_example' # String |
1510
+ opts = {
1511
+ operation: 'operation_example', # String |
1512
+ delete_authorizable: 'delete_authorizable_example', # String |
1513
+ file: File.new('/path/to/file') # File |
1470
1514
  }
1471
1515
 
1472
1516
  begin
@@ -1478,6 +1522,7 @@ end
1478
1522
 
1479
1523
  ### Parameters
1480
1524
 
1525
+
1481
1526
  Name | Type | Description | Notes
1482
1527
  ------------- | ------------- | ------------- | -------------
1483
1528
  **path** | **String**| |
@@ -1496,17 +1541,18 @@ nil (empty response body)
1496
1541
 
1497
1542
  ### HTTP request headers
1498
1543
 
1499
- - **Content-Type**: multipart/form-data
1500
- - **Accept**: text/plain
1544
+ - **Content-Type**: multipart/form-data
1545
+ - **Accept**: Not defined
1501
1546
 
1502
1547
 
1548
+ ## post_node_rw
1503
1549
 
1504
- # **post_node_rw**
1505
1550
  > post_node_rw(path, name, opts)
1506
1551
 
1507
1552
 
1508
1553
 
1509
1554
  ### Example
1555
+
1510
1556
  ```ruby
1511
1557
  # load the gem
1512
1558
  require 'swagger_aem'
@@ -1518,13 +1564,10 @@ SwaggerAemClient.configure do |config|
1518
1564
  end
1519
1565
 
1520
1566
  api_instance = SwaggerAemClient::SlingApi.new
1521
-
1522
- path = "path_example" # String |
1523
-
1524
- name = "name_example" # String |
1525
-
1526
- opts = {
1527
- add_members: "add_members_example" # String |
1567
+ path = 'path_example' # String |
1568
+ name = 'name_example' # String |
1569
+ opts = {
1570
+ add_members: 'add_members_example' # String |
1528
1571
  }
1529
1572
 
1530
1573
  begin
@@ -1536,6 +1579,7 @@ end
1536
1579
 
1537
1580
  ### Parameters
1538
1581
 
1582
+
1539
1583
  Name | Type | Description | Notes
1540
1584
  ------------- | ------------- | ------------- | -------------
1541
1585
  **path** | **String**| |
@@ -1552,17 +1596,18 @@ nil (empty response body)
1552
1596
 
1553
1597
  ### HTTP request headers
1554
1598
 
1555
- - **Content-Type**: Not defined
1556
- - **Accept**: text/plain
1599
+ - **Content-Type**: Not defined
1600
+ - **Accept**: Not defined
1557
1601
 
1558
1602
 
1603
+ ## post_path
1559
1604
 
1560
- # **post_path**
1561
1605
  > post_path(path, jcrprimary_type, name)
1562
1606
 
1563
1607
 
1564
1608
 
1565
1609
  ### Example
1610
+
1566
1611
  ```ruby
1567
1612
  # load the gem
1568
1613
  require 'swagger_aem'
@@ -1574,13 +1619,9 @@ SwaggerAemClient.configure do |config|
1574
1619
  end
1575
1620
 
1576
1621
  api_instance = SwaggerAemClient::SlingApi.new
1577
-
1578
- path = "path_example" # String |
1579
-
1580
- jcrprimary_type = "jcrprimary_type_example" # String |
1581
-
1582
- name = "name_example" # String |
1583
-
1622
+ path = 'path_example' # String |
1623
+ jcrprimary_type = 'jcrprimary_type_example' # String |
1624
+ name = 'name_example' # String |
1584
1625
 
1585
1626
  begin
1586
1627
  api_instance.post_path(path, jcrprimary_type, name)
@@ -1591,6 +1632,7 @@ end
1591
1632
 
1592
1633
  ### Parameters
1593
1634
 
1635
+
1594
1636
  Name | Type | Description | Notes
1595
1637
  ------------- | ------------- | ------------- | -------------
1596
1638
  **path** | **String**| |
@@ -1607,17 +1649,18 @@ nil (empty response body)
1607
1649
 
1608
1650
  ### HTTP request headers
1609
1651
 
1610
- - **Content-Type**: Not defined
1611
- - **Accept**: text/plain
1652
+ - **Content-Type**: Not defined
1653
+ - **Accept**: Not defined
1612
1654
 
1613
1655
 
1656
+ ## post_query
1614
1657
 
1615
- # **post_query**
1616
1658
  > String post_query(path, p_limit, _1_property, _1_property_value)
1617
1659
 
1618
1660
 
1619
1661
 
1620
1662
  ### Example
1663
+
1621
1664
  ```ruby
1622
1665
  # load the gem
1623
1666
  require 'swagger_aem'
@@ -1629,15 +1672,10 @@ SwaggerAemClient.configure do |config|
1629
1672
  end
1630
1673
 
1631
1674
  api_instance = SwaggerAemClient::SlingApi.new
1632
-
1633
- path = "path_example" # String |
1634
-
1675
+ path = 'path_example' # String |
1635
1676
  p_limit = 3.4 # Float |
1636
-
1637
- _1_property = "_1_property_example" # String |
1638
-
1639
- _1_property_value = "_1_property_value_example" # String |
1640
-
1677
+ _1_property = '_1_property_example' # String |
1678
+ _1_property_value = '_1_property_value_example' # String |
1641
1679
 
1642
1680
  begin
1643
1681
  result = api_instance.post_query(path, p_limit, _1_property, _1_property_value)
@@ -1649,6 +1687,7 @@ end
1649
1687
 
1650
1688
  ### Parameters
1651
1689
 
1690
+
1652
1691
  Name | Type | Description | Notes
1653
1692
  ------------- | ------------- | ------------- | -------------
1654
1693
  **path** | **String**| |
@@ -1666,17 +1705,18 @@ Name | Type | Description | Notes
1666
1705
 
1667
1706
  ### HTTP request headers
1668
1707
 
1669
- - **Content-Type**: Not defined
1670
- - **Accept**: application/json
1708
+ - **Content-Type**: Not defined
1709
+ - **Accept**: application/json
1671
1710
 
1672
1711
 
1712
+ ## post_tree_activation
1673
1713
 
1674
- # **post_tree_activation**
1675
1714
  > post_tree_activation(ignoredeactivated, onlymodified, path)
1676
1715
 
1677
1716
 
1678
1717
 
1679
1718
  ### Example
1719
+
1680
1720
  ```ruby
1681
1721
  # load the gem
1682
1722
  require 'swagger_aem'
@@ -1688,13 +1728,9 @@ SwaggerAemClient.configure do |config|
1688
1728
  end
1689
1729
 
1690
1730
  api_instance = SwaggerAemClient::SlingApi.new
1691
-
1692
- ignoredeactivated = true # BOOLEAN |
1693
-
1694
- onlymodified = true # BOOLEAN |
1695
-
1696
- path = "path_example" # String |
1697
-
1731
+ ignoredeactivated = true # Boolean |
1732
+ onlymodified = true # Boolean |
1733
+ path = 'path_example' # String |
1698
1734
 
1699
1735
  begin
1700
1736
  api_instance.post_tree_activation(ignoredeactivated, onlymodified, path)
@@ -1705,10 +1741,11 @@ end
1705
1741
 
1706
1742
  ### Parameters
1707
1743
 
1744
+
1708
1745
  Name | Type | Description | Notes
1709
1746
  ------------- | ------------- | ------------- | -------------
1710
- **ignoredeactivated** | **BOOLEAN**| |
1711
- **onlymodified** | **BOOLEAN**| |
1747
+ **ignoredeactivated** | **Boolean**| |
1748
+ **onlymodified** | **Boolean**| |
1712
1749
  **path** | **String**| |
1713
1750
 
1714
1751
  ### Return type
@@ -1721,17 +1758,18 @@ nil (empty response body)
1721
1758
 
1722
1759
  ### HTTP request headers
1723
1760
 
1724
- - **Content-Type**: Not defined
1725
- - **Accept**: text/plain
1761
+ - **Content-Type**: Not defined
1762
+ - **Accept**: Not defined
1726
1763
 
1727
1764
 
1765
+ ## post_truststore
1728
1766
 
1729
- # **post_truststore**
1730
1767
  > String post_truststore(opts)
1731
1768
 
1732
1769
 
1733
1770
 
1734
1771
  ### Example
1772
+
1735
1773
  ```ruby
1736
1774
  # load the gem
1737
1775
  require 'swagger_aem'
@@ -1743,14 +1781,13 @@ SwaggerAemClient.configure do |config|
1743
1781
  end
1744
1782
 
1745
1783
  api_instance = SwaggerAemClient::SlingApi.new
1746
-
1747
- opts = {
1748
- operation: "operation_example", # String |
1749
- new_password: "new_password_example", # String |
1750
- re_password: "re_password_example", # String |
1751
- key_store_type: "key_store_type_example", # String |
1752
- remove_alias: "remove_alias_example", # String |
1753
- certificate: File.new("/path/to/file.txt") # File |
1784
+ opts = {
1785
+ operation: 'operation_example', # String |
1786
+ new_password: 'new_password_example', # String |
1787
+ re_password: 're_password_example', # String |
1788
+ key_store_type: 'key_store_type_example', # String |
1789
+ remove_alias: 'remove_alias_example', # String |
1790
+ certificate: File.new('/path/to/file') # File |
1754
1791
  }
1755
1792
 
1756
1793
  begin
@@ -1763,6 +1800,7 @@ end
1763
1800
 
1764
1801
  ### Parameters
1765
1802
 
1803
+
1766
1804
  Name | Type | Description | Notes
1767
1805
  ------------- | ------------- | ------------- | -------------
1768
1806
  **operation** | **String**| | [optional]
@@ -1782,17 +1820,18 @@ Name | Type | Description | Notes
1782
1820
 
1783
1821
  ### HTTP request headers
1784
1822
 
1785
- - **Content-Type**: multipart/form-data
1786
- - **Accept**: text/plain
1823
+ - **Content-Type**: multipart/form-data
1824
+ - **Accept**: text/plain
1787
1825
 
1788
1826
 
1827
+ ## post_truststore_pkcs12
1789
1828
 
1790
- # **post_truststore_pkcs12**
1791
1829
  > String post_truststore_pkcs12(opts)
1792
1830
 
1793
1831
 
1794
1832
 
1795
1833
  ### Example
1834
+
1796
1835
  ```ruby
1797
1836
  # load the gem
1798
1837
  require 'swagger_aem'
@@ -1804,9 +1843,8 @@ SwaggerAemClient.configure do |config|
1804
1843
  end
1805
1844
 
1806
1845
  api_instance = SwaggerAemClient::SlingApi.new
1807
-
1808
- opts = {
1809
- truststore_p12: File.new("/path/to/file.txt") # File |
1846
+ opts = {
1847
+ truststore_p12: File.new('/path/to/file') # File |
1810
1848
  }
1811
1849
 
1812
1850
  begin
@@ -1819,6 +1857,7 @@ end
1819
1857
 
1820
1858
  ### Parameters
1821
1859
 
1860
+
1822
1861
  Name | Type | Description | Notes
1823
1862
  ------------- | ------------- | ------------- | -------------
1824
1863
  **truststore_p12** | **File**| | [optional]
@@ -1833,8 +1872,6 @@ Name | Type | Description | Notes
1833
1872
 
1834
1873
  ### HTTP request headers
1835
1874
 
1836
- - **Content-Type**: multipart/form-data
1837
- - **Accept**: text/plain
1838
-
1839
-
1875
+ - **Content-Type**: multipart/form-data
1876
+ - **Accept**: text/plain
1840
1877