swagger_aem 2.1.0 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +17 -17
- data/README.md +25 -5
- data/docs/ConsoleApi.md +110 -0
- data/docs/CustomApi.md +4 -10
- data/docs/KeystoreChainItems.md +12 -0
- data/docs/KeystoreInfo.md +9 -0
- data/docs/KeystoreItems.md +12 -0
- data/docs/SamlConfigurationInfo.md +13 -0
- data/docs/SamlConfigurationProperties.md +31 -0
- data/docs/SamlConfigurationPropertyItemsArray.md +13 -0
- data/docs/SamlConfigurationPropertyItemsBoolean.md +13 -0
- data/docs/SamlConfigurationPropertyItemsLong.md +13 -0
- data/docs/SamlConfigurationPropertyItemsString.md +13 -0
- data/docs/SlingApi.md +550 -21
- data/docs/TruststoreInfo.md +9 -0
- data/docs/TruststoreItems.md +14 -0
- data/lib/swagger_aem.rb +12 -1
- data/lib/swagger_aem/api/console_api.rb +138 -1
- data/lib/swagger_aem/api/cq_api.rb +1 -1
- data/lib/swagger_aem/api/crx_api.rb +1 -1
- data/lib/swagger_aem/api/custom_api.rb +9 -21
- data/lib/swagger_aem/api/sling_api.rb +641 -41
- data/lib/swagger_aem/api_client.rb +1 -1
- data/lib/swagger_aem/api_error.rb +1 -1
- data/lib/swagger_aem/configuration.rb +1 -1
- data/lib/swagger_aem/models/install_status.rb +1 -1
- data/lib/swagger_aem/models/install_status_status.rb +1 -1
- data/lib/swagger_aem/models/keystore_chain_items.rb +229 -0
- data/lib/swagger_aem/models/keystore_info.rb +200 -0
- data/lib/swagger_aem/models/keystore_items.rb +230 -0
- data/lib/swagger_aem/models/saml_configuration_info.rb +238 -0
- data/lib/swagger_aem/models/saml_configuration_properties.rb +467 -0
- data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +241 -0
- data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +239 -0
- data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +239 -0
- data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +239 -0
- data/lib/swagger_aem/models/truststore_info.rb +200 -0
- data/lib/swagger_aem/models/truststore_items.rb +248 -0
- data/lib/swagger_aem/version.rb +2 -2
- data/spec/api/console_api_spec.rb +42 -1
- data/spec/api/cq_api_spec.rb +1 -1
- data/spec/api/crx_api_spec.rb +1 -1
- data/spec/api/custom_api_spec.rb +1 -3
- data/spec/api/sling_api_spec.rb +164 -5
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/install_status_spec.rb +1 -1
- data/spec/models/install_status_status_spec.rb +1 -1
- data/spec/models/keystore_chain_items_spec.rb +66 -0
- data/spec/models/keystore_info_spec.rb +48 -0
- data/spec/models/keystore_items_spec.rb +66 -0
- data/spec/models/saml_configuration_info_spec.rb +72 -0
- data/spec/models/saml_configuration_properties_spec.rb +180 -0
- data/spec/models/saml_configuration_property_items_array_spec.rb +72 -0
- data/spec/models/saml_configuration_property_items_boolean_spec.rb +72 -0
- data/spec/models/saml_configuration_property_items_long_spec.rb +72 -0
- data/spec/models/saml_configuration_property_items_string_spec.rb +72 -0
- data/spec/models/truststore_info_spec.rb +48 -0
- data/spec/models/truststore_items_spec.rb +78 -0
- data/spec/spec_helper.rb +1 -1
- data/swagger_aem.gemspec +2 -2
- metadata +47 -3
@@ -0,0 +1,13 @@
|
|
1
|
+
# SwaggerAemClient::SamlConfigurationPropertyItemsLong
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**name** | **String** | property name | [optional]
|
7
|
+
**optional** | **BOOLEAN** | True if optional | [optional]
|
8
|
+
**is_set** | **BOOLEAN** | True if property is set | [optional]
|
9
|
+
**type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
|
10
|
+
**values** | **Integer** | Property value | [optional]
|
11
|
+
**description** | **String** | Property description | [optional]
|
12
|
+
|
13
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# SwaggerAemClient::SamlConfigurationPropertyItemsString
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**name** | **String** | property name | [optional]
|
7
|
+
**optional** | **BOOLEAN** | True if optional | [optional]
|
8
|
+
**is_set** | **BOOLEAN** | True if property is set | [optional]
|
9
|
+
**type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
|
10
|
+
**values** | **String** | Property value | [optional]
|
11
|
+
**description** | **String** | Property description | [optional]
|
12
|
+
|
13
|
+
|
data/docs/SlingApi.md
CHANGED
@@ -8,12 +8,18 @@ Method | HTTP request | Description
|
|
8
8
|
[**delete_node**](SlingApi.md#delete_node) | **DELETE** /{path}/{name} |
|
9
9
|
[**get_agent**](SlingApi.md#get_agent) | **GET** /etc/replication/agents.{runmode}/{name} |
|
10
10
|
[**get_agents**](SlingApi.md#get_agents) | **GET** /etc/replication/agents.{runmode}.-1.json |
|
11
|
+
[**get_authorizable_keystore**](SlingApi.md#get_authorizable_keystore) | **GET** /{intermediatePath}/{authorizableId}.ks.json |
|
12
|
+
[**get_keystore**](SlingApi.md#get_keystore) | **GET** /{intermediatePath}/{authorizableId}/keystore/store.p12 |
|
11
13
|
[**get_node**](SlingApi.md#get_node) | **GET** /{path}/{name} |
|
12
14
|
[**get_package**](SlingApi.md#get_package) | **GET** /etc/packages/{group}/{name}-{version}.zip |
|
13
15
|
[**get_package_filter**](SlingApi.md#get_package_filter) | **GET** /etc/packages/{group}/{name}-{version}.zip/jcr:content/vlt:definition/filter.tidy.2.json |
|
14
16
|
[**get_query**](SlingApi.md#get_query) | **GET** /bin/querybuilder.json |
|
17
|
+
[**get_truststore**](SlingApi.md#get_truststore) | **GET** /etc/truststore/truststore.p12 |
|
18
|
+
[**get_truststore_info**](SlingApi.md#get_truststore_info) | **GET** /libs/granite/security/truststore.json |
|
15
19
|
[**post_agent**](SlingApi.md#post_agent) | **POST** /etc/replication/agents.{runmode}/{name} |
|
20
|
+
[**post_authorizable_keystore**](SlingApi.md#post_authorizable_keystore) | **POST** /{intermediatePath}/{authorizableId}.ks.html |
|
16
21
|
[**post_authorizables**](SlingApi.md#post_authorizables) | **POST** /libs/granite/security/post/authorizables |
|
22
|
+
[**post_config_adobe_granite_saml_authentication_handler**](SlingApi.md#post_config_adobe_granite_saml_authentication_handler) | **POST** /apps/system/config/com.adobe.granite.auth.saml.SamlAuthenticationHandler.config |
|
17
23
|
[**post_config_apache_felix_jetty_based_http_service**](SlingApi.md#post_config_apache_felix_jetty_based_http_service) | **POST** /apps/system/config/org.apache.felix.http |
|
18
24
|
[**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 |
|
19
25
|
[**post_config_apache_sling_get_servlet**](SlingApi.md#post_config_apache_sling_get_servlet) | **POST** /apps/system/config/org.apache.sling.servlets.get.DefaultGetServlet |
|
@@ -23,6 +29,8 @@ Method | HTTP request | Description
|
|
23
29
|
[**post_path**](SlingApi.md#post_path) | **POST** /{path}/ |
|
24
30
|
[**post_query**](SlingApi.md#post_query) | **POST** /bin/querybuilder.json |
|
25
31
|
[**post_tree_activation**](SlingApi.md#post_tree_activation) | **POST** /etc/replication/treeactivation.html |
|
32
|
+
[**post_truststore**](SlingApi.md#post_truststore) | **POST** /libs/granite/security/post/truststore |
|
33
|
+
[**post_truststore_pkcs12**](SlingApi.md#post_truststore_pkcs12) | **POST** /etc/truststore |
|
26
34
|
|
27
35
|
|
28
36
|
# **delete_agent**
|
@@ -231,6 +239,112 @@ Name | Type | Description | Notes
|
|
231
239
|
|
232
240
|
|
233
241
|
|
242
|
+
# **get_authorizable_keystore**
|
243
|
+
> KeystoreInfo get_authorizable_keystore(intermediate_path, authorizable_id)
|
244
|
+
|
245
|
+
|
246
|
+
|
247
|
+
### Example
|
248
|
+
```ruby
|
249
|
+
# load the gem
|
250
|
+
require 'swagger_aem'
|
251
|
+
# setup authorization
|
252
|
+
SwaggerAemClient.configure do |config|
|
253
|
+
# Configure HTTP basic authorization: aemAuth
|
254
|
+
config.username = 'YOUR USERNAME'
|
255
|
+
config.password = 'YOUR PASSWORD'
|
256
|
+
end
|
257
|
+
|
258
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
259
|
+
|
260
|
+
intermediate_path = "intermediate_path_example" # String |
|
261
|
+
|
262
|
+
authorizable_id = "authorizable_id_example" # String |
|
263
|
+
|
264
|
+
|
265
|
+
begin
|
266
|
+
result = api_instance.get_authorizable_keystore(intermediate_path, authorizable_id)
|
267
|
+
p result
|
268
|
+
rescue SwaggerAemClient::ApiError => e
|
269
|
+
puts "Exception when calling SlingApi->get_authorizable_keystore: #{e}"
|
270
|
+
end
|
271
|
+
```
|
272
|
+
|
273
|
+
### Parameters
|
274
|
+
|
275
|
+
Name | Type | Description | Notes
|
276
|
+
------------- | ------------- | ------------- | -------------
|
277
|
+
**intermediate_path** | **String**| |
|
278
|
+
**authorizable_id** | **String**| |
|
279
|
+
|
280
|
+
### Return type
|
281
|
+
|
282
|
+
[**KeystoreInfo**](KeystoreInfo.md)
|
283
|
+
|
284
|
+
### Authorization
|
285
|
+
|
286
|
+
[aemAuth](../README.md#aemAuth)
|
287
|
+
|
288
|
+
### HTTP request headers
|
289
|
+
|
290
|
+
- **Content-Type**: Not defined
|
291
|
+
- **Accept**: text/plain
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
# **get_keystore**
|
296
|
+
> File get_keystore(intermediate_path, authorizable_id)
|
297
|
+
|
298
|
+
|
299
|
+
|
300
|
+
### Example
|
301
|
+
```ruby
|
302
|
+
# load the gem
|
303
|
+
require 'swagger_aem'
|
304
|
+
# setup authorization
|
305
|
+
SwaggerAemClient.configure do |config|
|
306
|
+
# Configure HTTP basic authorization: aemAuth
|
307
|
+
config.username = 'YOUR USERNAME'
|
308
|
+
config.password = 'YOUR PASSWORD'
|
309
|
+
end
|
310
|
+
|
311
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
312
|
+
|
313
|
+
intermediate_path = "intermediate_path_example" # String |
|
314
|
+
|
315
|
+
authorizable_id = "authorizable_id_example" # String |
|
316
|
+
|
317
|
+
|
318
|
+
begin
|
319
|
+
result = api_instance.get_keystore(intermediate_path, authorizable_id)
|
320
|
+
p result
|
321
|
+
rescue SwaggerAemClient::ApiError => e
|
322
|
+
puts "Exception when calling SlingApi->get_keystore: #{e}"
|
323
|
+
end
|
324
|
+
```
|
325
|
+
|
326
|
+
### Parameters
|
327
|
+
|
328
|
+
Name | Type | Description | Notes
|
329
|
+
------------- | ------------- | ------------- | -------------
|
330
|
+
**intermediate_path** | **String**| |
|
331
|
+
**authorizable_id** | **String**| |
|
332
|
+
|
333
|
+
### Return type
|
334
|
+
|
335
|
+
**File**
|
336
|
+
|
337
|
+
### Authorization
|
338
|
+
|
339
|
+
[aemAuth](../README.md#aemAuth)
|
340
|
+
|
341
|
+
### HTTP request headers
|
342
|
+
|
343
|
+
- **Content-Type**: Not defined
|
344
|
+
- **Accept**: application/octet-stream
|
345
|
+
|
346
|
+
|
347
|
+
|
234
348
|
# **get_node**
|
235
349
|
> get_node(path, name)
|
236
350
|
|
@@ -454,6 +568,94 @@ Name | Type | Description | Notes
|
|
454
568
|
|
455
569
|
|
456
570
|
|
571
|
+
# **get_truststore**
|
572
|
+
> File get_truststore
|
573
|
+
|
574
|
+
|
575
|
+
|
576
|
+
### Example
|
577
|
+
```ruby
|
578
|
+
# load the gem
|
579
|
+
require 'swagger_aem'
|
580
|
+
# setup authorization
|
581
|
+
SwaggerAemClient.configure do |config|
|
582
|
+
# Configure HTTP basic authorization: aemAuth
|
583
|
+
config.username = 'YOUR USERNAME'
|
584
|
+
config.password = 'YOUR PASSWORD'
|
585
|
+
end
|
586
|
+
|
587
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
588
|
+
|
589
|
+
begin
|
590
|
+
result = api_instance.get_truststore
|
591
|
+
p result
|
592
|
+
rescue SwaggerAemClient::ApiError => e
|
593
|
+
puts "Exception when calling SlingApi->get_truststore: #{e}"
|
594
|
+
end
|
595
|
+
```
|
596
|
+
|
597
|
+
### Parameters
|
598
|
+
This endpoint does not need any parameter.
|
599
|
+
|
600
|
+
### Return type
|
601
|
+
|
602
|
+
**File**
|
603
|
+
|
604
|
+
### Authorization
|
605
|
+
|
606
|
+
[aemAuth](../README.md#aemAuth)
|
607
|
+
|
608
|
+
### HTTP request headers
|
609
|
+
|
610
|
+
- **Content-Type**: Not defined
|
611
|
+
- **Accept**: application/octet-stream
|
612
|
+
|
613
|
+
|
614
|
+
|
615
|
+
# **get_truststore_info**
|
616
|
+
> TruststoreInfo get_truststore_info
|
617
|
+
|
618
|
+
|
619
|
+
|
620
|
+
### Example
|
621
|
+
```ruby
|
622
|
+
# load the gem
|
623
|
+
require 'swagger_aem'
|
624
|
+
# setup authorization
|
625
|
+
SwaggerAemClient.configure do |config|
|
626
|
+
# Configure HTTP basic authorization: aemAuth
|
627
|
+
config.username = 'YOUR USERNAME'
|
628
|
+
config.password = 'YOUR PASSWORD'
|
629
|
+
end
|
630
|
+
|
631
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
632
|
+
|
633
|
+
begin
|
634
|
+
result = api_instance.get_truststore_info
|
635
|
+
p result
|
636
|
+
rescue SwaggerAemClient::ApiError => e
|
637
|
+
puts "Exception when calling SlingApi->get_truststore_info: #{e}"
|
638
|
+
end
|
639
|
+
```
|
640
|
+
|
641
|
+
### Parameters
|
642
|
+
This endpoint does not need any parameter.
|
643
|
+
|
644
|
+
### Return type
|
645
|
+
|
646
|
+
[**TruststoreInfo**](TruststoreInfo.md)
|
647
|
+
|
648
|
+
### Authorization
|
649
|
+
|
650
|
+
[aemAuth](../README.md#aemAuth)
|
651
|
+
|
652
|
+
### HTTP request headers
|
653
|
+
|
654
|
+
- **Content-Type**: Not defined
|
655
|
+
- **Accept**: application/json
|
656
|
+
|
657
|
+
|
658
|
+
|
457
659
|
# **post_agent**
|
458
660
|
> post_agent(runmode, name, opts)
|
459
661
|
|
@@ -608,6 +810,85 @@ nil (empty response body)
|
|
608
810
|
|
609
811
|
|
610
812
|
|
813
|
+
# **post_authorizable_keystore**
|
814
|
+
> KeystoreInfo post_authorizable_keystore(intermediate_path, authorizable_id, opts)
|
815
|
+
|
816
|
+
|
817
|
+
|
818
|
+
### Example
|
819
|
+
```ruby
|
820
|
+
# load the gem
|
821
|
+
require 'swagger_aem'
|
822
|
+
# setup authorization
|
823
|
+
SwaggerAemClient.configure do |config|
|
824
|
+
# Configure HTTP basic authorization: aemAuth
|
825
|
+
config.username = 'YOUR USERNAME'
|
826
|
+
config.password = 'YOUR PASSWORD'
|
827
|
+
end
|
828
|
+
|
829
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
830
|
+
|
831
|
+
intermediate_path = "intermediate_path_example" # String |
|
832
|
+
|
833
|
+
authorizable_id = "authorizable_id_example" # String |
|
834
|
+
|
835
|
+
opts = {
|
836
|
+
operation: "operation_example", # String |
|
837
|
+
current_password: "current_password_example", # String |
|
838
|
+
new_password: "new_password_example", # String |
|
839
|
+
re_password: "re_password_example", # String |
|
840
|
+
key_password: "key_password_example", # String |
|
841
|
+
key_store_pass: "key_store_pass_example", # String |
|
842
|
+
_alias: "_alias_example", # String |
|
843
|
+
new_alias: "new_alias_example", # String |
|
844
|
+
remove_alias: "remove_alias_example", # String |
|
845
|
+
cert_chain: File.new("/path/to/file.txt"), # File |
|
846
|
+
pk: File.new("/path/to/file.txt"), # File |
|
847
|
+
key_store: File.new("/path/to/file.txt") # File |
|
848
|
+
}
|
849
|
+
|
850
|
+
begin
|
851
|
+
result = api_instance.post_authorizable_keystore(intermediate_path, authorizable_id, opts)
|
852
|
+
p result
|
853
|
+
rescue SwaggerAemClient::ApiError => e
|
854
|
+
puts "Exception when calling SlingApi->post_authorizable_keystore: #{e}"
|
855
|
+
end
|
856
|
+
```
|
857
|
+
|
858
|
+
### Parameters
|
859
|
+
|
860
|
+
Name | Type | Description | Notes
|
861
|
+
------------- | ------------- | ------------- | -------------
|
862
|
+
**intermediate_path** | **String**| |
|
863
|
+
**authorizable_id** | **String**| |
|
864
|
+
**operation** | **String**| | [optional]
|
865
|
+
**current_password** | **String**| | [optional]
|
866
|
+
**new_password** | **String**| | [optional]
|
867
|
+
**re_password** | **String**| | [optional]
|
868
|
+
**key_password** | **String**| | [optional]
|
869
|
+
**key_store_pass** | **String**| | [optional]
|
870
|
+
**_alias** | **String**| | [optional]
|
871
|
+
**new_alias** | **String**| | [optional]
|
872
|
+
**remove_alias** | **String**| | [optional]
|
873
|
+
**cert_chain** | **File**| | [optional]
|
874
|
+
**pk** | **File**| | [optional]
|
875
|
+
**key_store** | **File**| | [optional]
|
876
|
+
|
877
|
+
### Return type
|
878
|
+
|
879
|
+
[**KeystoreInfo**](KeystoreInfo.md)
|
880
|
+
|
881
|
+
### Authorization
|
882
|
+
|
883
|
+
[aemAuth](../README.md#aemAuth)
|
884
|
+
|
885
|
+
### HTTP request headers
|
886
|
+
|
887
|
+
- **Content-Type**: multipart/form-data
|
888
|
+
- **Accept**: text/plain
|
889
|
+
|
890
|
+
|
891
|
+
|
611
892
|
# **post_authorizables**
|
612
893
|
> String post_authorizables(authorizable_id, intermediate_path, opts)
|
613
894
|
|
@@ -671,8 +952,8 @@ Name | Type | Description | Notes
|
|
671
952
|
|
672
953
|
|
673
954
|
|
674
|
-
# **
|
675
|
-
>
|
955
|
+
# **post_config_adobe_granite_saml_authentication_handler**
|
956
|
+
> post_config_adobe_granite_saml_authentication_handler(opts)
|
676
957
|
|
677
958
|
|
678
959
|
|
@@ -689,7 +970,149 @@ end
|
|
689
970
|
|
690
971
|
api_instance = SwaggerAemClient::SlingApi.new
|
691
972
|
|
692
|
-
|
973
|
+
opts = {
|
974
|
+
key_store_password: "key_store_password_example", # String |
|
975
|
+
key_store_password_type_hint: "key_store_password_type_hint_example", # String |
|
976
|
+
service_ranking: 56, # Integer |
|
977
|
+
service_ranking_type_hint: "service_ranking_type_hint_example", # String |
|
978
|
+
idp_http_redirect: true, # BOOLEAN |
|
979
|
+
idp_http_redirect_type_hint: "idp_http_redirect_type_hint_example", # String |
|
980
|
+
create_user: true, # BOOLEAN |
|
981
|
+
create_user_type_hint: "create_user_type_hint_example", # String |
|
982
|
+
default_redirect_url: "default_redirect_url_example", # String |
|
983
|
+
default_redirect_url_type_hint: "default_redirect_url_type_hint_example", # String |
|
984
|
+
user_id_attribute: "user_id_attribute_example", # String |
|
985
|
+
user_id_attribute_type_hint: "user_id_attribute_type_hint_example", # String |
|
986
|
+
default_groups: ["default_groups_example"], # Array<String> |
|
987
|
+
default_groups_type_hint: "default_groups_type_hint_example", # String |
|
988
|
+
idp_cert_alias: "idp_cert_alias_example", # String |
|
989
|
+
idp_cert_alias_type_hint: "idp_cert_alias_type_hint_example", # String |
|
990
|
+
add_group_memberships: true, # BOOLEAN |
|
991
|
+
add_group_memberships_type_hint: "add_group_memberships_type_hint_example", # String |
|
992
|
+
path: ["path_example"], # Array<String> |
|
993
|
+
path_type_hint: "path_type_hint_example", # String |
|
994
|
+
synchronize_attributes: ["synchronize_attributes_example"], # Array<String> |
|
995
|
+
synchronize_attributes_type_hint: "synchronize_attributes_type_hint_example", # String |
|
996
|
+
clock_tolerance: 56, # Integer |
|
997
|
+
clock_tolerance_type_hint: "clock_tolerance_type_hint_example", # String |
|
998
|
+
group_membership_attribute: "group_membership_attribute_example", # String |
|
999
|
+
group_membership_attribute_type_hint: "group_membership_attribute_type_hint_example", # String |
|
1000
|
+
idp_url: "idp_url_example", # String |
|
1001
|
+
idp_url_type_hint: "idp_url_type_hint_example", # String |
|
1002
|
+
logout_url: "logout_url_example", # String |
|
1003
|
+
logout_url_type_hint: "logout_url_type_hint_example", # String |
|
1004
|
+
service_provider_entity_id: "service_provider_entity_id_example", # String |
|
1005
|
+
service_provider_entity_id_type_hint: "service_provider_entity_id_type_hint_example", # String |
|
1006
|
+
assertion_consumer_service_url: "assertion_consumer_service_url_example", # String |
|
1007
|
+
assertion_consumer_service_url_type_hint: "assertion_consumer_service_url_type_hint_example", # String |
|
1008
|
+
handle_logout: true, # BOOLEAN |
|
1009
|
+
handle_logout_type_hint: "handle_logout_type_hint_example", # String |
|
1010
|
+
sp_private_key_alias: "sp_private_key_alias_example", # String |
|
1011
|
+
sp_private_key_alias_type_hint: "sp_private_key_alias_type_hint_example", # String |
|
1012
|
+
use_encryption: true, # BOOLEAN |
|
1013
|
+
use_encryption_type_hint: "use_encryption_type_hint_example", # String |
|
1014
|
+
name_id_format: "name_id_format_example", # String |
|
1015
|
+
name_id_format_type_hint: "name_id_format_type_hint_example", # String |
|
1016
|
+
digest_method: "digest_method_example", # String |
|
1017
|
+
digest_method_type_hint: "digest_method_type_hint_example", # String |
|
1018
|
+
signature_method: "signature_method_example", # String |
|
1019
|
+
signature_method_type_hint: "signature_method_type_hint_example", # String |
|
1020
|
+
user_intermediate_path: "user_intermediate_path_example", # String |
|
1021
|
+
user_intermediate_path_type_hint: "user_intermediate_path_type_hint_example" # String |
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
begin
|
1025
|
+
api_instance.post_config_adobe_granite_saml_authentication_handler(opts)
|
1026
|
+
rescue SwaggerAemClient::ApiError => e
|
1027
|
+
puts "Exception when calling SlingApi->post_config_adobe_granite_saml_authentication_handler: #{e}"
|
1028
|
+
end
|
1029
|
+
```
|
1030
|
+
|
1031
|
+
### Parameters
|
1032
|
+
|
1033
|
+
Name | Type | Description | Notes
|
1034
|
+
------------- | ------------- | ------------- | -------------
|
1035
|
+
**key_store_password** | **String**| | [optional]
|
1036
|
+
**key_store_password_type_hint** | **String**| | [optional]
|
1037
|
+
**service_ranking** | **Integer**| | [optional]
|
1038
|
+
**service_ranking_type_hint** | **String**| | [optional]
|
1039
|
+
**idp_http_redirect** | **BOOLEAN**| | [optional]
|
1040
|
+
**idp_http_redirect_type_hint** | **String**| | [optional]
|
1041
|
+
**create_user** | **BOOLEAN**| | [optional]
|
1042
|
+
**create_user_type_hint** | **String**| | [optional]
|
1043
|
+
**default_redirect_url** | **String**| | [optional]
|
1044
|
+
**default_redirect_url_type_hint** | **String**| | [optional]
|
1045
|
+
**user_id_attribute** | **String**| | [optional]
|
1046
|
+
**user_id_attribute_type_hint** | **String**| | [optional]
|
1047
|
+
**default_groups** | [**Array<String>**](String.md)| | [optional]
|
1048
|
+
**default_groups_type_hint** | **String**| | [optional]
|
1049
|
+
**idp_cert_alias** | **String**| | [optional]
|
1050
|
+
**idp_cert_alias_type_hint** | **String**| | [optional]
|
1051
|
+
**add_group_memberships** | **BOOLEAN**| | [optional]
|
1052
|
+
**add_group_memberships_type_hint** | **String**| | [optional]
|
1053
|
+
**path** | [**Array<String>**](String.md)| | [optional]
|
1054
|
+
**path_type_hint** | **String**| | [optional]
|
1055
|
+
**synchronize_attributes** | [**Array<String>**](String.md)| | [optional]
|
1056
|
+
**synchronize_attributes_type_hint** | **String**| | [optional]
|
1057
|
+
**clock_tolerance** | **Integer**| | [optional]
|
1058
|
+
**clock_tolerance_type_hint** | **String**| | [optional]
|
1059
|
+
**group_membership_attribute** | **String**| | [optional]
|
1060
|
+
**group_membership_attribute_type_hint** | **String**| | [optional]
|
1061
|
+
**idp_url** | **String**| | [optional]
|
1062
|
+
**idp_url_type_hint** | **String**| | [optional]
|
1063
|
+
**logout_url** | **String**| | [optional]
|
1064
|
+
**logout_url_type_hint** | **String**| | [optional]
|
1065
|
+
**service_provider_entity_id** | **String**| | [optional]
|
1066
|
+
**service_provider_entity_id_type_hint** | **String**| | [optional]
|
1067
|
+
**assertion_consumer_service_url** | **String**| | [optional]
|
1068
|
+
**assertion_consumer_service_url_type_hint** | **String**| | [optional]
|
1069
|
+
**handle_logout** | **BOOLEAN**| | [optional]
|
1070
|
+
**handle_logout_type_hint** | **String**| | [optional]
|
1071
|
+
**sp_private_key_alias** | **String**| | [optional]
|
1072
|
+
**sp_private_key_alias_type_hint** | **String**| | [optional]
|
1073
|
+
**use_encryption** | **BOOLEAN**| | [optional]
|
1074
|
+
**use_encryption_type_hint** | **String**| | [optional]
|
1075
|
+
**name_id_format** | **String**| | [optional]
|
1076
|
+
**name_id_format_type_hint** | **String**| | [optional]
|
1077
|
+
**digest_method** | **String**| | [optional]
|
1078
|
+
**digest_method_type_hint** | **String**| | [optional]
|
1079
|
+
**signature_method** | **String**| | [optional]
|
1080
|
+
**signature_method_type_hint** | **String**| | [optional]
|
1081
|
+
**user_intermediate_path** | **String**| | [optional]
|
1082
|
+
**user_intermediate_path_type_hint** | **String**| | [optional]
|
1083
|
+
|
1084
|
+
### Return type
|
1085
|
+
|
1086
|
+
nil (empty response body)
|
1087
|
+
|
1088
|
+
### Authorization
|
1089
|
+
|
1090
|
+
[aemAuth](../README.md#aemAuth)
|
1091
|
+
|
1092
|
+
### HTTP request headers
|
1093
|
+
|
1094
|
+
- **Content-Type**: Not defined
|
1095
|
+
- **Accept**: text/plain
|
1096
|
+
|
1097
|
+
|
1098
|
+
|
1099
|
+
# **post_config_apache_felix_jetty_based_http_service**
|
1100
|
+
> post_config_apache_felix_jetty_based_http_service(opts)
|
1101
|
+
|
1102
|
+
|
1103
|
+
|
1104
|
+
### Example
|
1105
|
+
```ruby
|
1106
|
+
# load the gem
|
1107
|
+
require 'swagger_aem'
|
1108
|
+
# setup authorization
|
1109
|
+
SwaggerAemClient.configure do |config|
|
1110
|
+
# Configure HTTP basic authorization: aemAuth
|
1111
|
+
config.username = 'YOUR USERNAME'
|
1112
|
+
config.password = 'YOUR PASSWORD'
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
693
1116
|
|
694
1117
|
opts = {
|
695
1118
|
org_apache_felix_https_nio: true, # BOOLEAN |
|
@@ -715,7 +1138,7 @@ opts = {
|
|
715
1138
|
}
|
716
1139
|
|
717
1140
|
begin
|
718
|
-
api_instance.post_config_apache_felix_jetty_based_http_service(
|
1141
|
+
api_instance.post_config_apache_felix_jetty_based_http_service(opts)
|
719
1142
|
rescue SwaggerAemClient::ApiError => e
|
720
1143
|
puts "Exception when calling SlingApi->post_config_apache_felix_jetty_based_http_service: #{e}"
|
721
1144
|
end
|
@@ -725,7 +1148,6 @@ end
|
|
725
1148
|
|
726
1149
|
Name | Type | Description | Notes
|
727
1150
|
------------- | ------------- | ------------- | -------------
|
728
|
-
**runmode** | **String**| |
|
729
1151
|
**org_apache_felix_https_nio** | **BOOLEAN**| | [optional]
|
730
1152
|
**org_apache_felix_https_nio_type_hint** | **String**| | [optional]
|
731
1153
|
**org_apache_felix_https_keystore** | **String**| | [optional]
|
@@ -763,7 +1185,7 @@ nil (empty response body)
|
|
763
1185
|
|
764
1186
|
|
765
1187
|
# **post_config_apache_sling_dav_ex_servlet**
|
766
|
-
> post_config_apache_sling_dav_ex_servlet(
|
1188
|
+
> post_config_apache_sling_dav_ex_servlet(opts)
|
767
1189
|
|
768
1190
|
|
769
1191
|
|
@@ -780,8 +1202,6 @@ end
|
|
780
1202
|
|
781
1203
|
api_instance = SwaggerAemClient::SlingApi.new
|
782
1204
|
|
783
|
-
runmode = "runmode_example" # String |
|
784
|
-
|
785
1205
|
opts = {
|
786
1206
|
_alias: "_alias_example", # String |
|
787
1207
|
alias_type_hint: "alias_type_hint_example", # String |
|
@@ -790,7 +1210,7 @@ opts = {
|
|
790
1210
|
}
|
791
1211
|
|
792
1212
|
begin
|
793
|
-
api_instance.post_config_apache_sling_dav_ex_servlet(
|
1213
|
+
api_instance.post_config_apache_sling_dav_ex_servlet(opts)
|
794
1214
|
rescue SwaggerAemClient::ApiError => e
|
795
1215
|
puts "Exception when calling SlingApi->post_config_apache_sling_dav_ex_servlet: #{e}"
|
796
1216
|
end
|
@@ -800,7 +1220,6 @@ end
|
|
800
1220
|
|
801
1221
|
Name | Type | Description | Notes
|
802
1222
|
------------- | ------------- | ------------- | -------------
|
803
|
-
**runmode** | **String**| |
|
804
1223
|
**_alias** | **String**| | [optional]
|
805
1224
|
**alias_type_hint** | **String**| | [optional]
|
806
1225
|
**dav_create_absolute_uri** | **BOOLEAN**| | [optional]
|
@@ -822,7 +1241,7 @@ nil (empty response body)
|
|
822
1241
|
|
823
1242
|
|
824
1243
|
# **post_config_apache_sling_get_servlet**
|
825
|
-
> post_config_apache_sling_get_servlet(
|
1244
|
+
> post_config_apache_sling_get_servlet(opts)
|
826
1245
|
|
827
1246
|
|
828
1247
|
|
@@ -839,8 +1258,6 @@ end
|
|
839
1258
|
|
840
1259
|
api_instance = SwaggerAemClient::SlingApi.new
|
841
1260
|
|
842
|
-
runmode = "runmode_example" # String |
|
843
|
-
|
844
1261
|
opts = {
|
845
1262
|
json_maximumresults: "json_maximumresults_example", # String |
|
846
1263
|
json_maximumresults_type_hint: "json_maximumresults_type_hint_example", # String |
|
@@ -853,7 +1270,7 @@ opts = {
|
|
853
1270
|
}
|
854
1271
|
|
855
1272
|
begin
|
856
|
-
api_instance.post_config_apache_sling_get_servlet(
|
1273
|
+
api_instance.post_config_apache_sling_get_servlet(opts)
|
857
1274
|
rescue SwaggerAemClient::ApiError => e
|
858
1275
|
puts "Exception when calling SlingApi->post_config_apache_sling_get_servlet: #{e}"
|
859
1276
|
end
|
@@ -863,7 +1280,6 @@ end
|
|
863
1280
|
|
864
1281
|
Name | Type | Description | Notes
|
865
1282
|
------------- | ------------- | ------------- | -------------
|
866
|
-
**runmode** | **String**| |
|
867
1283
|
**json_maximumresults** | **String**| | [optional]
|
868
1284
|
**json_maximumresults_type_hint** | **String**| | [optional]
|
869
1285
|
**enable_html** | **BOOLEAN**| | [optional]
|
@@ -889,7 +1305,7 @@ nil (empty response body)
|
|
889
1305
|
|
890
1306
|
|
891
1307
|
# **post_config_apache_sling_referrer_filter**
|
892
|
-
> post_config_apache_sling_referrer_filter(
|
1308
|
+
> post_config_apache_sling_referrer_filter(opts)
|
893
1309
|
|
894
1310
|
|
895
1311
|
|
@@ -906,19 +1322,19 @@ end
|
|
906
1322
|
|
907
1323
|
api_instance = SwaggerAemClient::SlingApi.new
|
908
1324
|
|
909
|
-
runmode = "runmode_example" # String |
|
910
|
-
|
911
1325
|
opts = {
|
912
1326
|
allow_empty: true, # BOOLEAN |
|
913
1327
|
allow_empty_type_hint: "allow_empty_type_hint_example", # String |
|
914
1328
|
allow_hosts: "allow_hosts_example", # String |
|
915
1329
|
allow_hosts_type_hint: "allow_hosts_type_hint_example", # String |
|
916
1330
|
allow_hosts_regexp: "allow_hosts_regexp_example", # String |
|
917
|
-
allow_hosts_regexp_type_hint: "allow_hosts_regexp_type_hint_example" # String |
|
1331
|
+
allow_hosts_regexp_type_hint: "allow_hosts_regexp_type_hint_example", # String |
|
1332
|
+
filter_methods: "filter_methods_example", # String |
|
1333
|
+
filter_methods_type_hint: "filter_methods_type_hint_example" # String |
|
918
1334
|
}
|
919
1335
|
|
920
1336
|
begin
|
921
|
-
api_instance.post_config_apache_sling_referrer_filter(
|
1337
|
+
api_instance.post_config_apache_sling_referrer_filter(opts)
|
922
1338
|
rescue SwaggerAemClient::ApiError => e
|
923
1339
|
puts "Exception when calling SlingApi->post_config_apache_sling_referrer_filter: #{e}"
|
924
1340
|
end
|
@@ -928,13 +1344,14 @@ end
|
|
928
1344
|
|
929
1345
|
Name | Type | Description | Notes
|
930
1346
|
------------- | ------------- | ------------- | -------------
|
931
|
-
**runmode** | **String**| |
|
932
1347
|
**allow_empty** | **BOOLEAN**| | [optional]
|
933
1348
|
**allow_empty_type_hint** | **String**| | [optional]
|
934
1349
|
**allow_hosts** | **String**| | [optional]
|
935
1350
|
**allow_hosts_type_hint** | **String**| | [optional]
|
936
1351
|
**allow_hosts_regexp** | **String**| | [optional]
|
937
1352
|
**allow_hosts_regexp_type_hint** | **String**| | [optional]
|
1353
|
+
**filter_methods** | **String**| | [optional]
|
1354
|
+
**filter_methods_type_hint** | **String**| | [optional]
|
938
1355
|
|
939
1356
|
### Return type
|
940
1357
|
|
@@ -1236,3 +1653,115 @@ nil (empty response body)
|
|
1236
1653
|
|
1237
1654
|
|
1238
1655
|
|
1656
|
+
# **post_truststore**
|
1657
|
+
> String post_truststore(opts)
|
1658
|
+
|
1659
|
+
|
1660
|
+
|
1661
|
+
### Example
|
1662
|
+
```ruby
|
1663
|
+
# load the gem
|
1664
|
+
require 'swagger_aem'
|
1665
|
+
# setup authorization
|
1666
|
+
SwaggerAemClient.configure do |config|
|
1667
|
+
# Configure HTTP basic authorization: aemAuth
|
1668
|
+
config.username = 'YOUR USERNAME'
|
1669
|
+
config.password = 'YOUR PASSWORD'
|
1670
|
+
end
|
1671
|
+
|
1672
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
1673
|
+
|
1674
|
+
opts = {
|
1675
|
+
operation: "operation_example", # String |
|
1676
|
+
new_password: "new_password_example", # String |
|
1677
|
+
re_password: "re_password_example", # String |
|
1678
|
+
key_store_type: "key_store_type_example", # String |
|
1679
|
+
remove_alias: "remove_alias_example", # String |
|
1680
|
+
certificate: File.new("/path/to/file.txt") # File |
|
1681
|
+
}
|
1682
|
+
|
1683
|
+
begin
|
1684
|
+
result = api_instance.post_truststore(opts)
|
1685
|
+
p result
|
1686
|
+
rescue SwaggerAemClient::ApiError => e
|
1687
|
+
puts "Exception when calling SlingApi->post_truststore: #{e}"
|
1688
|
+
end
|
1689
|
+
```
|
1690
|
+
|
1691
|
+
### Parameters
|
1692
|
+
|
1693
|
+
Name | Type | Description | Notes
|
1694
|
+
------------- | ------------- | ------------- | -------------
|
1695
|
+
**operation** | **String**| | [optional]
|
1696
|
+
**new_password** | **String**| | [optional]
|
1697
|
+
**re_password** | **String**| | [optional]
|
1698
|
+
**key_store_type** | **String**| | [optional]
|
1699
|
+
**remove_alias** | **String**| | [optional]
|
1700
|
+
**certificate** | **File**| | [optional]
|
1701
|
+
|
1702
|
+
### Return type
|
1703
|
+
|
1704
|
+
**String**
|
1705
|
+
|
1706
|
+
### Authorization
|
1707
|
+
|
1708
|
+
[aemAuth](../README.md#aemAuth)
|
1709
|
+
|
1710
|
+
### HTTP request headers
|
1711
|
+
|
1712
|
+
- **Content-Type**: multipart/form-data
|
1713
|
+
- **Accept**: text/plain
|
1714
|
+
|
1715
|
+
|
1716
|
+
|
1717
|
+
# **post_truststore_pkcs12**
|
1718
|
+
> String post_truststore_pkcs12(opts)
|
1719
|
+
|
1720
|
+
|
1721
|
+
|
1722
|
+
### Example
|
1723
|
+
```ruby
|
1724
|
+
# load the gem
|
1725
|
+
require 'swagger_aem'
|
1726
|
+
# setup authorization
|
1727
|
+
SwaggerAemClient.configure do |config|
|
1728
|
+
# Configure HTTP basic authorization: aemAuth
|
1729
|
+
config.username = 'YOUR USERNAME'
|
1730
|
+
config.password = 'YOUR PASSWORD'
|
1731
|
+
end
|
1732
|
+
|
1733
|
+
api_instance = SwaggerAemClient::SlingApi.new
|
1734
|
+
|
1735
|
+
opts = {
|
1736
|
+
truststore_p12: File.new("/path/to/file.txt") # File |
|
1737
|
+
}
|
1738
|
+
|
1739
|
+
begin
|
1740
|
+
result = api_instance.post_truststore_pkcs12(opts)
|
1741
|
+
p result
|
1742
|
+
rescue SwaggerAemClient::ApiError => e
|
1743
|
+
puts "Exception when calling SlingApi->post_truststore_pkcs12: #{e}"
|
1744
|
+
end
|
1745
|
+
```
|
1746
|
+
|
1747
|
+
### Parameters
|
1748
|
+
|
1749
|
+
Name | Type | Description | Notes
|
1750
|
+
------------- | ------------- | ------------- | -------------
|
1751
|
+
**truststore_p12** | **File**| | [optional]
|
1752
|
+
|
1753
|
+
### Return type
|
1754
|
+
|
1755
|
+
**String**
|
1756
|
+
|
1757
|
+
### Authorization
|
1758
|
+
|
1759
|
+
[aemAuth](../README.md#aemAuth)
|
1760
|
+
|
1761
|
+
### HTTP request headers
|
1762
|
+
|
1763
|
+
- **Content-Type**: multipart/form-data
|
1764
|
+
- **Accept**: text/plain
|
1765
|
+
|
1766
|
+
|
1767
|
+
|