swagger_aem 3.1.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -13,12 +13,15 @@ Method | HTTP request | Description
13
13
  [**post_set_password**](CrxApi.md#post_set_password) | **POST** /crx/explorer/ui/setpassword.jsp |
14
14
 
15
15
 
16
- # **get_crxde_status**
16
+
17
+ ## get_crxde_status
18
+
17
19
  > String get_crxde_status
18
20
 
19
21
 
20
22
 
21
23
  ### Example
24
+
22
25
  ```ruby
23
26
  # load the gem
24
27
  require 'swagger_aem'
@@ -40,6 +43,7 @@ end
40
43
  ```
41
44
 
42
45
  ### Parameters
46
+
43
47
  This endpoint does not need any parameter.
44
48
 
45
49
  ### Return type
@@ -52,17 +56,18 @@ This endpoint does not need any parameter.
52
56
 
53
57
  ### HTTP request headers
54
58
 
55
- - **Content-Type**: Not defined
56
- - **Accept**: plain/text
59
+ - **Content-Type**: Not defined
60
+ - **Accept**: plain/text
57
61
 
58
62
 
63
+ ## get_install_status
59
64
 
60
- # **get_install_status**
61
65
  > InstallStatus get_install_status
62
66
 
63
67
 
64
68
 
65
69
  ### Example
70
+
66
71
  ```ruby
67
72
  # load the gem
68
73
  require 'swagger_aem'
@@ -84,6 +89,7 @@ end
84
89
  ```
85
90
 
86
91
  ### Parameters
92
+
87
93
  This endpoint does not need any parameter.
88
94
 
89
95
  ### Return type
@@ -96,17 +102,18 @@ This endpoint does not need any parameter.
96
102
 
97
103
  ### HTTP request headers
98
104
 
99
- - **Content-Type**: Not defined
100
- - **Accept**: application/json
105
+ - **Content-Type**: Not defined
106
+ - **Accept**: application/json
101
107
 
102
108
 
109
+ ## get_package_manager_servlet
103
110
 
104
- # **get_package_manager_servlet**
105
111
  > get_package_manager_servlet
106
112
 
107
113
 
108
114
 
109
115
  ### Example
116
+
110
117
  ```ruby
111
118
  # load the gem
112
119
  require 'swagger_aem'
@@ -127,6 +134,7 @@ end
127
134
  ```
128
135
 
129
136
  ### Parameters
137
+
130
138
  This endpoint does not need any parameter.
131
139
 
132
140
  ### Return type
@@ -139,17 +147,18 @@ nil (empty response body)
139
147
 
140
148
  ### HTTP request headers
141
149
 
142
- - **Content-Type**: Not defined
143
- - **Accept**: text/html
150
+ - **Content-Type**: Not defined
151
+ - **Accept**: text/html
144
152
 
145
153
 
154
+ ## post_package_service
146
155
 
147
- # **post_package_service**
148
156
  > String post_package_service(cmd)
149
157
 
150
158
 
151
159
 
152
160
  ### Example
161
+
153
162
  ```ruby
154
163
  # load the gem
155
164
  require 'swagger_aem'
@@ -173,6 +182,7 @@ end
173
182
 
174
183
  ### Parameters
175
184
 
185
+
176
186
  Name | Type | Description | Notes
177
187
  ------------- | ------------- | ------------- | -------------
178
188
  **cmd** | **String**| |
@@ -187,17 +197,18 @@ Name | Type | Description | Notes
187
197
 
188
198
  ### HTTP request headers
189
199
 
190
- - **Content-Type**: Not defined
191
- - **Accept**: text/xml
200
+ - **Content-Type**: Not defined
201
+ - **Accept**: text/xml
192
202
 
193
203
 
204
+ ## post_package_service_json
194
205
 
195
- # **post_package_service_json**
196
206
  > String post_package_service_json(path, cmd, opts)
197
207
 
198
208
 
199
209
 
200
210
  ### Example
211
+
201
212
  ```ruby
202
213
  # load the gem
203
214
  require 'swagger_aem'
@@ -216,8 +227,8 @@ opts = {
216
227
  package_name: 'package_name_example', # String |
217
228
  package_version: 'package_version_example', # String |
218
229
  _charset_: '_charset__example', # String |
219
- force: true, # BOOLEAN |
220
- recursive: true, # BOOLEAN |
230
+ force: true, # Boolean |
231
+ recursive: true, # Boolean |
221
232
  package: File.new('/path/to/file') # File |
222
233
  }
223
234
 
@@ -231,6 +242,7 @@ end
231
242
 
232
243
  ### Parameters
233
244
 
245
+
234
246
  Name | Type | Description | Notes
235
247
  ------------- | ------------- | ------------- | -------------
236
248
  **path** | **String**| |
@@ -239,8 +251,8 @@ Name | Type | Description | Notes
239
251
  **package_name** | **String**| | [optional]
240
252
  **package_version** | **String**| | [optional]
241
253
  **_charset_** | **String**| | [optional]
242
- **force** | **BOOLEAN**| | [optional]
243
- **recursive** | **BOOLEAN**| | [optional]
254
+ **force** | **Boolean**| | [optional]
255
+ **recursive** | **Boolean**| | [optional]
244
256
  **package** | **File**| | [optional]
245
257
 
246
258
  ### Return type
@@ -253,17 +265,18 @@ Name | Type | Description | Notes
253
265
 
254
266
  ### HTTP request headers
255
267
 
256
- - **Content-Type**: multipart/form-data
257
- - **Accept**: application/json
268
+ - **Content-Type**: multipart/form-data
269
+ - **Accept**: application/json
258
270
 
259
271
 
272
+ ## post_package_update
260
273
 
261
- # **post_package_update**
262
274
  > String post_package_update(group_name, package_name, version, path, opts)
263
275
 
264
276
 
265
277
 
266
278
  ### Example
279
+
267
280
  ```ruby
268
281
  # load the gem
269
282
  require 'swagger_aem'
@@ -294,6 +307,7 @@ end
294
307
 
295
308
  ### Parameters
296
309
 
310
+
297
311
  Name | Type | Description | Notes
298
312
  ------------- | ------------- | ------------- | -------------
299
313
  **group_name** | **String**| |
@@ -313,17 +327,18 @@ Name | Type | Description | Notes
313
327
 
314
328
  ### HTTP request headers
315
329
 
316
- - **Content-Type**: Not defined
317
- - **Accept**: application/json
330
+ - **Content-Type**: Not defined
331
+ - **Accept**: application/json
318
332
 
319
333
 
334
+ ## post_set_password
320
335
 
321
- # **post_set_password**
322
336
  > String post_set_password(old, plain, verify)
323
337
 
324
338
 
325
339
 
326
340
  ### Example
341
+
327
342
  ```ruby
328
343
  # load the gem
329
344
  require 'swagger_aem'
@@ -349,6 +364,7 @@ end
349
364
 
350
365
  ### Parameters
351
366
 
367
+
352
368
  Name | Type | Description | Notes
353
369
  ------------- | ------------- | ------------- | -------------
354
370
  **old** | **String**| |
@@ -365,8 +381,6 @@ Name | Type | Description | Notes
365
381
 
366
382
  ### HTTP request headers
367
383
 
368
- - **Content-Type**: Not defined
369
- - **Accept**: text/plain
370
-
371
-
384
+ - **Content-Type**: Not defined
385
+ - **Accept**: text/plain
372
386
 
@@ -9,12 +9,15 @@ Method | HTTP request | Description
9
9
  [**post_config_aem_password_reset**](CustomApi.md#post_config_aem_password_reset) | **POST** /apps/system/config/com.shinesolutions.aem.passwordreset.Activator |
10
10
 
11
11
 
12
- # **get_aem_health_check**
12
+
13
+ ## get_aem_health_check
14
+
13
15
  > String get_aem_health_check(opts)
14
16
 
15
17
 
16
18
 
17
19
  ### Example
20
+
18
21
  ```ruby
19
22
  # load the gem
20
23
  require 'swagger_aem'
@@ -28,7 +31,7 @@ end
28
31
  api_instance = SwaggerAemClient::CustomApi.new
29
32
  opts = {
30
33
  tags: 'tags_example', # String |
31
- combine_tags_or: true # BOOLEAN |
34
+ combine_tags_or: true # Boolean |
32
35
  }
33
36
 
34
37
  begin
@@ -41,10 +44,11 @@ end
41
44
 
42
45
  ### Parameters
43
46
 
47
+
44
48
  Name | Type | Description | Notes
45
49
  ------------- | ------------- | ------------- | -------------
46
50
  **tags** | **String**| | [optional]
47
- **combine_tags_or** | **BOOLEAN**| | [optional]
51
+ **combine_tags_or** | **Boolean**| | [optional]
48
52
 
49
53
  ### Return type
50
54
 
@@ -56,17 +60,18 @@ Name | Type | Description | Notes
56
60
 
57
61
  ### HTTP request headers
58
62
 
59
- - **Content-Type**: Not defined
60
- - **Accept**: application/json
63
+ - **Content-Type**: Not defined
64
+ - **Accept**: application/json
61
65
 
62
66
 
67
+ ## post_config_aem_health_check_servlet
63
68
 
64
- # **post_config_aem_health_check_servlet**
65
69
  > post_config_aem_health_check_servlet(opts)
66
70
 
67
71
 
68
72
 
69
73
  ### Example
74
+
70
75
  ```ruby
71
76
  # load the gem
72
77
  require 'swagger_aem'
@@ -92,6 +97,7 @@ end
92
97
 
93
98
  ### Parameters
94
99
 
100
+
95
101
  Name | Type | Description | Notes
96
102
  ------------- | ------------- | ------------- | -------------
97
103
  **bundles_ignored** | [**Array<String>**](String.md)| | [optional]
@@ -107,17 +113,18 @@ nil (empty response body)
107
113
 
108
114
  ### HTTP request headers
109
115
 
110
- - **Content-Type**: Not defined
111
- - **Accept**: Not defined
116
+ - **Content-Type**: Not defined
117
+ - **Accept**: Not defined
112
118
 
113
119
 
120
+ ## post_config_aem_password_reset
114
121
 
115
- # **post_config_aem_password_reset**
116
122
  > post_config_aem_password_reset(opts)
117
123
 
118
124
 
119
125
 
120
126
  ### Example
127
+
121
128
  ```ruby
122
129
  # load the gem
123
130
  require 'swagger_aem'
@@ -143,6 +150,7 @@ end
143
150
 
144
151
  ### Parameters
145
152
 
153
+
146
154
  Name | Type | Description | Notes
147
155
  ------------- | ------------- | ------------- | -------------
148
156
  **pwdreset_authorizables** | [**Array<String>**](String.md)| | [optional]
@@ -158,8 +166,6 @@ nil (empty response body)
158
166
 
159
167
  ### HTTP request headers
160
168
 
161
- - **Content-Type**: Not defined
162
- - **Accept**: Not defined
163
-
164
-
169
+ - **Content-Type**: Not defined
170
+ - **Accept**: Not defined
165
171
 
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **file** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject.new(file: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject1
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **package** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject1.new(package: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject2
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **certificate** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject2.new(certificate: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # SwaggerAemClient::InlineObject3
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **truststore_p12** | **File** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InlineObject3.new(truststore_p12: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,21 @@
1
+ # SwaggerAemClient::InlineObject4
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **cert_chain** | **File** | | [optional]
8
+ **pk** | **File** | | [optional]
9
+ **key_store** | **File** | | [optional]
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'SwaggerAemClient'
15
+
16
+ instance = SwaggerAemClient::InlineObject4.new(cert_chain: null,
17
+ pk: null,
18
+ key_store: null)
19
+ ```
20
+
21
+
@@ -1,8 +1,17 @@
1
1
  # SwaggerAemClient::InstallStatus
2
2
 
3
3
  ## Properties
4
+
4
5
  Name | Type | Description | Notes
5
6
  ------------ | ------------- | ------------- | -------------
6
7
  **status** | [**InstallStatusStatus**](InstallStatusStatus.md) | | [optional]
7
8
 
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'SwaggerAemClient'
13
+
14
+ instance = SwaggerAemClient::InstallStatus.new(status: null)
15
+ ```
16
+
8
17