swagger_aem 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 360616946c5e3265484ae2ec2b03d5c67bd5fb14
|
4
|
+
data.tar.gz: f0b21b13860d45585b6bddd1d2941bd101a7a37f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3803a5b6b341cf6be7e0f3c0a0437ae64ed79012839fb47b05b1ea8494f8d1645d63d21a73b0a8a341055f3d6f127a87fee5328727e5420f4465a38ef269d4eb
|
7
|
+
data.tar.gz: 68eef48ef72178f94fbfaafa9eb6e2aba8177d7c2798188796f832cdd4a748e842f64cd581362449900be6c66ab355232781edc4395d2f8a71d37e6a3acdf681
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
swagger_aem (2.
|
4
|
+
swagger_aem (2.2.0)
|
5
5
|
json (~> 2.1, >= 2.1.0)
|
6
6
|
typhoeus (~> 1.0, >= 1.0.1)
|
7
7
|
|
@@ -13,7 +13,7 @@ GEM
|
|
13
13
|
public_suffix (>= 2.0.2, < 4.0)
|
14
14
|
autotest (4.4.6)
|
15
15
|
ZenTest (>= 4.4.1)
|
16
|
-
autotest-fsevent (0.2.
|
16
|
+
autotest-fsevent (0.2.14)
|
17
17
|
sys-uname
|
18
18
|
autotest-growl (0.2.16)
|
19
19
|
autotest-rails-pure (4.1.2)
|
@@ -25,25 +25,25 @@ GEM
|
|
25
25
|
ffi (1.9.25)
|
26
26
|
hashdiff (0.3.7)
|
27
27
|
json (2.1.0)
|
28
|
-
public_suffix (3.0.
|
28
|
+
public_suffix (3.0.3)
|
29
29
|
rake (12.0.0)
|
30
|
-
rspec (3.
|
31
|
-
rspec-core (~> 3.
|
32
|
-
rspec-expectations (~> 3.
|
33
|
-
rspec-mocks (~> 3.
|
34
|
-
rspec-core (3.
|
35
|
-
rspec-support (~> 3.
|
36
|
-
rspec-expectations (3.
|
30
|
+
rspec (3.8.0)
|
31
|
+
rspec-core (~> 3.8.0)
|
32
|
+
rspec-expectations (~> 3.8.0)
|
33
|
+
rspec-mocks (~> 3.8.0)
|
34
|
+
rspec-core (3.8.0)
|
35
|
+
rspec-support (~> 3.8.0)
|
36
|
+
rspec-expectations (3.8.2)
|
37
37
|
diff-lcs (>= 1.2.0, < 2.0)
|
38
|
-
rspec-support (~> 3.
|
39
|
-
rspec-mocks (3.
|
38
|
+
rspec-support (~> 3.8.0)
|
39
|
+
rspec-mocks (3.8.0)
|
40
40
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
-
rspec-support (~> 3.
|
42
|
-
rspec-support (3.
|
41
|
+
rspec-support (~> 3.8.0)
|
42
|
+
rspec-support (3.8.0)
|
43
43
|
safe_yaml (1.0.4)
|
44
|
-
sys-uname (1.0.
|
44
|
+
sys-uname (1.0.4)
|
45
45
|
ffi (>= 1.0.0)
|
46
|
-
typhoeus (1.3.
|
46
|
+
typhoeus (1.3.1)
|
47
47
|
ethon (>= 0.9.0)
|
48
48
|
vcr (3.0.3)
|
49
49
|
webmock (1.24.6)
|
@@ -66,4 +66,4 @@ DEPENDENCIES
|
|
66
66
|
webmock (~> 1.24, >= 1.24.3)
|
67
67
|
|
68
68
|
BUNDLED WITH
|
69
|
-
1.
|
69
|
+
1.17.1
|
data/README.md
CHANGED
@@ -6,8 +6,8 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
6
6
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
|
-
- API version: 2.
|
10
|
-
- Package version: 2.
|
9
|
+
- API version: 2.1.0
|
10
|
+
- Package version: 2.2.0
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build swagger_aem.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./swagger_aem-2.
|
27
|
+
gem install ./swagger_aem-2.2.0.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-2.
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-2.2.0.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'swagger_aem', '~> 2.
|
35
|
+
gem 'swagger_aem', '~> 2.2.0'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -85,6 +85,7 @@ Class | Method | HTTP request | Description
|
|
85
85
|
------------ | ------------- | ------------- | -------------
|
86
86
|
*SwaggerAemClient::ConsoleApi* | [**post_bundle**](docs/ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
|
87
87
|
*SwaggerAemClient::ConsoleApi* | [**post_jmx_repository**](docs/ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type=Repository/op/{action} |
|
88
|
+
*SwaggerAemClient::ConsoleApi* | [**post_saml_configuration**](docs/ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
|
88
89
|
*SwaggerAemClient::CqApi* | [**get_login_page**](docs/CqApi.md#get_login_page) | **GET** /libs/granite/core/content/login.html |
|
89
90
|
*SwaggerAemClient::CqApi* | [**post_cq_actions**](docs/CqApi.md#post_cq_actions) | **POST** /.cqactions.html |
|
90
91
|
*SwaggerAemClient::CrxApi* | [**get_crxde_status**](docs/CrxApi.md#get_crxde_status) | **GET** /crx/server/crx.default/jcr:root/.1.json |
|
@@ -100,12 +101,18 @@ Class | Method | HTTP request | Description
|
|
100
101
|
*SwaggerAemClient::SlingApi* | [**delete_node**](docs/SlingApi.md#delete_node) | **DELETE** /{path}/{name} |
|
101
102
|
*SwaggerAemClient::SlingApi* | [**get_agent**](docs/SlingApi.md#get_agent) | **GET** /etc/replication/agents.{runmode}/{name} |
|
102
103
|
*SwaggerAemClient::SlingApi* | [**get_agents**](docs/SlingApi.md#get_agents) | **GET** /etc/replication/agents.{runmode}.-1.json |
|
104
|
+
*SwaggerAemClient::SlingApi* | [**get_authorizable_keystore**](docs/SlingApi.md#get_authorizable_keystore) | **GET** /{intermediatePath}/{authorizableId}.ks.json |
|
105
|
+
*SwaggerAemClient::SlingApi* | [**get_keystore**](docs/SlingApi.md#get_keystore) | **GET** /{intermediatePath}/{authorizableId}/keystore/store.p12 |
|
103
106
|
*SwaggerAemClient::SlingApi* | [**get_node**](docs/SlingApi.md#get_node) | **GET** /{path}/{name} |
|
104
107
|
*SwaggerAemClient::SlingApi* | [**get_package**](docs/SlingApi.md#get_package) | **GET** /etc/packages/{group}/{name}-{version}.zip |
|
105
108
|
*SwaggerAemClient::SlingApi* | [**get_package_filter**](docs/SlingApi.md#get_package_filter) | **GET** /etc/packages/{group}/{name}-{version}.zip/jcr:content/vlt:definition/filter.tidy.2.json |
|
106
109
|
*SwaggerAemClient::SlingApi* | [**get_query**](docs/SlingApi.md#get_query) | **GET** /bin/querybuilder.json |
|
110
|
+
*SwaggerAemClient::SlingApi* | [**get_truststore**](docs/SlingApi.md#get_truststore) | **GET** /etc/truststore/truststore.p12 |
|
111
|
+
*SwaggerAemClient::SlingApi* | [**get_truststore_info**](docs/SlingApi.md#get_truststore_info) | **GET** /libs/granite/security/truststore.json |
|
107
112
|
*SwaggerAemClient::SlingApi* | [**post_agent**](docs/SlingApi.md#post_agent) | **POST** /etc/replication/agents.{runmode}/{name} |
|
113
|
+
*SwaggerAemClient::SlingApi* | [**post_authorizable_keystore**](docs/SlingApi.md#post_authorizable_keystore) | **POST** /{intermediatePath}/{authorizableId}.ks.html |
|
108
114
|
*SwaggerAemClient::SlingApi* | [**post_authorizables**](docs/SlingApi.md#post_authorizables) | **POST** /libs/granite/security/post/authorizables |
|
115
|
+
*SwaggerAemClient::SlingApi* | [**post_config_adobe_granite_saml_authentication_handler**](docs/SlingApi.md#post_config_adobe_granite_saml_authentication_handler) | **POST** /apps/system/config/com.adobe.granite.auth.saml.SamlAuthenticationHandler.config |
|
109
116
|
*SwaggerAemClient::SlingApi* | [**post_config_apache_felix_jetty_based_http_service**](docs/SlingApi.md#post_config_apache_felix_jetty_based_http_service) | **POST** /apps/system/config/org.apache.felix.http |
|
110
117
|
*SwaggerAemClient::SlingApi* | [**post_config_apache_sling_dav_ex_servlet**](docs/SlingApi.md#post_config_apache_sling_dav_ex_servlet) | **POST** /apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet |
|
111
118
|
*SwaggerAemClient::SlingApi* | [**post_config_apache_sling_get_servlet**](docs/SlingApi.md#post_config_apache_sling_get_servlet) | **POST** /apps/system/config/org.apache.sling.servlets.get.DefaultGetServlet |
|
@@ -115,12 +122,25 @@ Class | Method | HTTP request | Description
|
|
115
122
|
*SwaggerAemClient::SlingApi* | [**post_path**](docs/SlingApi.md#post_path) | **POST** /{path}/ |
|
116
123
|
*SwaggerAemClient::SlingApi* | [**post_query**](docs/SlingApi.md#post_query) | **POST** /bin/querybuilder.json |
|
117
124
|
*SwaggerAemClient::SlingApi* | [**post_tree_activation**](docs/SlingApi.md#post_tree_activation) | **POST** /etc/replication/treeactivation.html |
|
125
|
+
*SwaggerAemClient::SlingApi* | [**post_truststore**](docs/SlingApi.md#post_truststore) | **POST** /libs/granite/security/post/truststore |
|
126
|
+
*SwaggerAemClient::SlingApi* | [**post_truststore_pkcs12**](docs/SlingApi.md#post_truststore_pkcs12) | **POST** /etc/truststore |
|
118
127
|
|
119
128
|
|
120
129
|
## Documentation for Models
|
121
130
|
|
122
131
|
- [SwaggerAemClient::InstallStatus](docs/InstallStatus.md)
|
123
132
|
- [SwaggerAemClient::InstallStatusStatus](docs/InstallStatusStatus.md)
|
133
|
+
- [SwaggerAemClient::KeystoreChainItems](docs/KeystoreChainItems.md)
|
134
|
+
- [SwaggerAemClient::KeystoreInfo](docs/KeystoreInfo.md)
|
135
|
+
- [SwaggerAemClient::KeystoreItems](docs/KeystoreItems.md)
|
136
|
+
- [SwaggerAemClient::SamlConfigurationInfo](docs/SamlConfigurationInfo.md)
|
137
|
+
- [SwaggerAemClient::SamlConfigurationProperties](docs/SamlConfigurationProperties.md)
|
138
|
+
- [SwaggerAemClient::SamlConfigurationPropertyItemsArray](docs/SamlConfigurationPropertyItemsArray.md)
|
139
|
+
- [SwaggerAemClient::SamlConfigurationPropertyItemsBoolean](docs/SamlConfigurationPropertyItemsBoolean.md)
|
140
|
+
- [SwaggerAemClient::SamlConfigurationPropertyItemsLong](docs/SamlConfigurationPropertyItemsLong.md)
|
141
|
+
- [SwaggerAemClient::SamlConfigurationPropertyItemsString](docs/SamlConfigurationPropertyItemsString.md)
|
142
|
+
- [SwaggerAemClient::TruststoreInfo](docs/TruststoreInfo.md)
|
143
|
+
- [SwaggerAemClient::TruststoreItems](docs/TruststoreItems.md)
|
124
144
|
|
125
145
|
|
126
146
|
## Documentation for Authorization
|
data/docs/ConsoleApi.md
CHANGED
@@ -6,6 +6,7 @@ Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
7
7
|
[**post_bundle**](ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
|
8
8
|
[**post_jmx_repository**](ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type=Repository/op/{action} |
|
9
|
+
[**post_saml_configuration**](ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
|
9
10
|
|
10
11
|
|
11
12
|
# **post_bundle**
|
@@ -109,3 +110,112 @@ nil (empty response body)
|
|
109
110
|
|
110
111
|
|
111
112
|
|
113
|
+
# **post_saml_configuration**
|
114
|
+
> SamlConfigurationInfo post_saml_configuration(opts)
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
### Example
|
119
|
+
```ruby
|
120
|
+
# load the gem
|
121
|
+
require 'swagger_aem'
|
122
|
+
# setup authorization
|
123
|
+
SwaggerAemClient.configure do |config|
|
124
|
+
# Configure HTTP basic authorization: aemAuth
|
125
|
+
config.username = 'YOUR USERNAME'
|
126
|
+
config.password = 'YOUR PASSWORD'
|
127
|
+
end
|
128
|
+
|
129
|
+
api_instance = SwaggerAemClient::ConsoleApi.new
|
130
|
+
|
131
|
+
opts = {
|
132
|
+
post: true, # BOOLEAN |
|
133
|
+
apply: true, # BOOLEAN |
|
134
|
+
delete: true, # BOOLEAN |
|
135
|
+
action: "action_example", # String |
|
136
|
+
location: "location_example", # String |
|
137
|
+
path: ["path_example"], # Array<String> |
|
138
|
+
service_ranking: 56, # Integer |
|
139
|
+
idp_url: "idp_url_example", # String |
|
140
|
+
idp_cert_alias: "idp_cert_alias_example", # String |
|
141
|
+
idp_http_redirect: true, # BOOLEAN |
|
142
|
+
service_provider_entity_id: "service_provider_entity_id_example", # String |
|
143
|
+
assertion_consumer_service_url: "assertion_consumer_service_url_example", # String |
|
144
|
+
sp_private_key_alias: "sp_private_key_alias_example", # String |
|
145
|
+
key_store_password: "key_store_password_example", # String |
|
146
|
+
default_redirect_url: "default_redirect_url_example", # String |
|
147
|
+
user_id_attribute: "user_id_attribute_example", # String |
|
148
|
+
use_encryption: true, # BOOLEAN |
|
149
|
+
create_user: true, # BOOLEAN |
|
150
|
+
add_group_memberships: true, # BOOLEAN |
|
151
|
+
group_membership_attribute: "group_membership_attribute_example", # String |
|
152
|
+
default_groups: ["default_groups_example"], # Array<String> |
|
153
|
+
name_id_format: "name_id_format_example", # String |
|
154
|
+
synchronize_attributes: ["synchronize_attributes_example"], # Array<String> |
|
155
|
+
handle_logout: true, # BOOLEAN |
|
156
|
+
logout_url: "logout_url_example", # String |
|
157
|
+
clock_tolerance: 56, # Integer |
|
158
|
+
digest_method: "digest_method_example", # String |
|
159
|
+
signature_method: "signature_method_example", # String |
|
160
|
+
user_intermediate_path: "user_intermediate_path_example", # String |
|
161
|
+
propertylist: ["propertylist_example"] # Array<String> |
|
162
|
+
}
|
163
|
+
|
164
|
+
begin
|
165
|
+
result = api_instance.post_saml_configuration(opts)
|
166
|
+
p result
|
167
|
+
rescue SwaggerAemClient::ApiError => e
|
168
|
+
puts "Exception when calling ConsoleApi->post_saml_configuration: #{e}"
|
169
|
+
end
|
170
|
+
```
|
171
|
+
|
172
|
+
### Parameters
|
173
|
+
|
174
|
+
Name | Type | Description | Notes
|
175
|
+
------------- | ------------- | ------------- | -------------
|
176
|
+
**post** | **BOOLEAN**| | [optional]
|
177
|
+
**apply** | **BOOLEAN**| | [optional]
|
178
|
+
**delete** | **BOOLEAN**| | [optional]
|
179
|
+
**action** | **String**| | [optional]
|
180
|
+
**location** | **String**| | [optional]
|
181
|
+
**path** | [**Array<String>**](String.md)| | [optional]
|
182
|
+
**service_ranking** | **Integer**| | [optional]
|
183
|
+
**idp_url** | **String**| | [optional]
|
184
|
+
**idp_cert_alias** | **String**| | [optional]
|
185
|
+
**idp_http_redirect** | **BOOLEAN**| | [optional]
|
186
|
+
**service_provider_entity_id** | **String**| | [optional]
|
187
|
+
**assertion_consumer_service_url** | **String**| | [optional]
|
188
|
+
**sp_private_key_alias** | **String**| | [optional]
|
189
|
+
**key_store_password** | **String**| | [optional]
|
190
|
+
**default_redirect_url** | **String**| | [optional]
|
191
|
+
**user_id_attribute** | **String**| | [optional]
|
192
|
+
**use_encryption** | **BOOLEAN**| | [optional]
|
193
|
+
**create_user** | **BOOLEAN**| | [optional]
|
194
|
+
**add_group_memberships** | **BOOLEAN**| | [optional]
|
195
|
+
**group_membership_attribute** | **String**| | [optional]
|
196
|
+
**default_groups** | [**Array<String>**](String.md)| | [optional]
|
197
|
+
**name_id_format** | **String**| | [optional]
|
198
|
+
**synchronize_attributes** | [**Array<String>**](String.md)| | [optional]
|
199
|
+
**handle_logout** | **BOOLEAN**| | [optional]
|
200
|
+
**logout_url** | **String**| | [optional]
|
201
|
+
**clock_tolerance** | **Integer**| | [optional]
|
202
|
+
**digest_method** | **String**| | [optional]
|
203
|
+
**signature_method** | **String**| | [optional]
|
204
|
+
**user_intermediate_path** | **String**| | [optional]
|
205
|
+
**propertylist** | [**Array<String>**](String.md)| | [optional]
|
206
|
+
|
207
|
+
### Return type
|
208
|
+
|
209
|
+
[**SamlConfigurationInfo**](SamlConfigurationInfo.md)
|
210
|
+
|
211
|
+
### Authorization
|
212
|
+
|
213
|
+
[aemAuth](../README.md#aemAuth)
|
214
|
+
|
215
|
+
### HTTP request headers
|
216
|
+
|
217
|
+
- **Content-Type**: Not defined
|
218
|
+
- **Accept**: text/plain
|
219
|
+
|
220
|
+
|
221
|
+
|
data/docs/CustomApi.md
CHANGED
@@ -63,7 +63,7 @@ Name | Type | Description | Notes
|
|
63
63
|
|
64
64
|
|
65
65
|
# **post_config_aem_health_check_servlet**
|
66
|
-
> post_config_aem_health_check_servlet(
|
66
|
+
> post_config_aem_health_check_servlet(opts)
|
67
67
|
|
68
68
|
|
69
69
|
|
@@ -80,15 +80,13 @@ end
|
|
80
80
|
|
81
81
|
api_instance = SwaggerAemClient::CustomApi.new
|
82
82
|
|
83
|
-
runmode = "runmode_example" # String |
|
84
|
-
|
85
83
|
opts = {
|
86
84
|
bundles_ignored: ["bundles_ignored_example"], # Array<String> |
|
87
85
|
bundles_ignored_type_hint: "bundles_ignored_type_hint_example" # String |
|
88
86
|
}
|
89
87
|
|
90
88
|
begin
|
91
|
-
api_instance.post_config_aem_health_check_servlet(
|
89
|
+
api_instance.post_config_aem_health_check_servlet(opts)
|
92
90
|
rescue SwaggerAemClient::ApiError => e
|
93
91
|
puts "Exception when calling CustomApi->post_config_aem_health_check_servlet: #{e}"
|
94
92
|
end
|
@@ -98,7 +96,6 @@ end
|
|
98
96
|
|
99
97
|
Name | Type | Description | Notes
|
100
98
|
------------- | ------------- | ------------- | -------------
|
101
|
-
**runmode** | **String**| |
|
102
99
|
**bundles_ignored** | [**Array<String>**](String.md)| | [optional]
|
103
100
|
**bundles_ignored_type_hint** | **String**| | [optional]
|
104
101
|
|
@@ -118,7 +115,7 @@ nil (empty response body)
|
|
118
115
|
|
119
116
|
|
120
117
|
# **post_config_aem_password_reset**
|
121
|
-
> post_config_aem_password_reset(
|
118
|
+
> post_config_aem_password_reset(opts)
|
122
119
|
|
123
120
|
|
124
121
|
|
@@ -135,15 +132,13 @@ end
|
|
135
132
|
|
136
133
|
api_instance = SwaggerAemClient::CustomApi.new
|
137
134
|
|
138
|
-
runmode = "runmode_example" # String |
|
139
|
-
|
140
135
|
opts = {
|
141
136
|
pwdreset_authorizables: ["pwdreset_authorizables_example"], # Array<String> |
|
142
137
|
pwdreset_authorizables_type_hint: "pwdreset_authorizables_type_hint_example" # String |
|
143
138
|
}
|
144
139
|
|
145
140
|
begin
|
146
|
-
api_instance.post_config_aem_password_reset(
|
141
|
+
api_instance.post_config_aem_password_reset(opts)
|
147
142
|
rescue SwaggerAemClient::ApiError => e
|
148
143
|
puts "Exception when calling CustomApi->post_config_aem_password_reset: #{e}"
|
149
144
|
end
|
@@ -153,7 +148,6 @@ end
|
|
153
148
|
|
154
149
|
Name | Type | Description | Notes
|
155
150
|
------------- | ------------- | ------------- | -------------
|
156
|
-
**runmode** | **String**| |
|
157
151
|
**pwdreset_authorizables** | [**Array<String>**](String.md)| | [optional]
|
158
152
|
**pwdreset_authorizables_type_hint** | **String**| | [optional]
|
159
153
|
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# SwaggerAemClient::KeystoreChainItems
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**subject** | **String** | e.g. \"CN=localhost\" | [optional]
|
7
|
+
**issuer** | **String** | e.g. \"CN=Admin\" | [optional]
|
8
|
+
**not_before** | **String** | e.g. \"Sun Jul 01 12:00:00 AEST 2018\" | [optional]
|
9
|
+
**not_after** | **String** | e.g. \"Sun Jun 30 23:59:50 AEST 2019\" | [optional]
|
10
|
+
**serial_number** | **Integer** | 18165099476682912368 | [optional]
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SwaggerAemClient::KeystoreInfo
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**aliases** | [**Array<KeystoreItems>**](KeystoreItems.md) | | [optional]
|
7
|
+
**exists** | **BOOLEAN** | False if truststore don't exist | [optional]
|
8
|
+
|
9
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# SwaggerAemClient::KeystoreItems
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**_alias** | **String** | Keystore alias name | [optional]
|
7
|
+
**entry_type** | **String** | e.g. \"privateKey\" | [optional]
|
8
|
+
**algorithm** | **String** | e.g. \"RSA\" | [optional]
|
9
|
+
**format** | **String** | e.g. \"PKCS#8\" | [optional]
|
10
|
+
**chain** | [**Array<KeystoreChainItems>**](KeystoreChainItems.md) | | [optional]
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# SwaggerAemClient::SamlConfigurationInfo
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**pid** | **String** | Persistent Identity (PID) | [optional]
|
7
|
+
**title** | **String** | Title | [optional]
|
8
|
+
**description** | **String** | Title | [optional]
|
9
|
+
**bundle_location** | **String** | needed for configuration binding | [optional]
|
10
|
+
**service_location** | **String** | needed for configuraiton binding | [optional]
|
11
|
+
**properties** | **Object** | | [optional]
|
12
|
+
|
13
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# SwaggerAemClient::SamlConfigurationProperties
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**path** | [**Array<SamlConfigurationPropertyItemsArray>**](SamlConfigurationPropertyItemsArray.md) | Repository path for which this authentication handler should be used by Sling. If this is empty, the authentication handler will be disabled. | [optional]
|
7
|
+
**service_ranking** | [**Array<SamlConfigurationPropertyItemsLong>**](SamlConfigurationPropertyItemsLong.md) | OSGi Framework Service Ranking value to indicate the order in which to call this service. This is an int value where higher values designate higher precedence. Default value is 0. | [optional]
|
8
|
+
**idp_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | URL of the IDP where the SAML Authentication Request should be sent to. If this property is empty the authentication handler is disabled. (idpUrl) | [optional]
|
9
|
+
**idp_cert_alias** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The alias of the IdP's certificate in the global truststore. If this property is empty the authentication handler is disabled. | [optional]
|
10
|
+
**idp_http_redirect** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Use an HTTP Redirect to the IDP URL instead of sending an AuthnRequest-message to request credentials. Use this for IDP initiated authentication. | [optional]
|
11
|
+
**service_provider_entity_id** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | ID which uniquely identifies this service provider with the identity provider. If this property is empty the authentication handler is disabled. | [optional]
|
12
|
+
**assertion_consumer_service_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The (optional) AssertionConsumerServiceURL attribute of an Authn request specifies the location to which a <Response> message MUST be sent to the requester. | [optional]
|
13
|
+
**sp_private_key_alias** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The alias of the SP's private key in the key-store of the 'authentication-service' system user. If this property is empty the handler will not be able to sign or decrypt messages. | [optional]
|
14
|
+
**key_store_password** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The password of the key-store of the 'authentication-service' system user. | [optional]
|
15
|
+
**default_redirect_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The default location to redirect to after successful authentication. | [optional]
|
16
|
+
**user_id_attribute** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The name of the attribute containing the user ID used to authenticate and create the user in the CRX repository. Leave empty to use the Subject:NameId. | [optional]
|
17
|
+
**use_encryption** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not this authentication handler expects encrypted SAML assertions. If this is enabled the SP's private key must be provided in the key-store of the 'authentication-service' system user (see SP Private Key Alias above). | [optional]
|
18
|
+
**create_user** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not to autocreate nonexisting users in the repository. | [optional]
|
19
|
+
**add_group_memberships** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not a user should be automatically added to CRX groups after successful authentication. | [optional]
|
20
|
+
**group_membership_attribute** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The name of the attribute containing a list of CRX groups this user should be added to. | [optional]
|
21
|
+
**default_groups** | [**Array<SamlConfigurationPropertyItemsArray>**](SamlConfigurationPropertyItemsArray.md) | A list of default CRX groups users are added to after successful authentication. | [optional]
|
22
|
+
**name_id_format** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The value of the NameIDPolicy format parameter to send in the AuthnRequest message. | [optional]
|
23
|
+
**synchronize_attributes** | [**Array<SamlConfigurationPropertyItemsArray>**](SamlConfigurationPropertyItemsArray.md) | A list of attribute mappings (in the format \\attributename=path/relative/to/user/node\\) which should be stored in the repository on user-synchronization. | [optional]
|
24
|
+
**handle_logout** | [**Array<SamlConfigurationPropertyItemsBoolean>**](SamlConfigurationPropertyItemsBoolean.md) | Whether or not logout (dropCredentials) requests will be processed by this handler. | [optional]
|
25
|
+
**logout_url** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | URL of the IDP where the SAML Logout Request should be sent to. If this property is empty the authentication handler won't handle logouts. | [optional]
|
26
|
+
**clock_tolerance** | [**Array<SamlConfigurationPropertyItemsLong>**](SamlConfigurationPropertyItemsLong.md) | Time tolerance in seconds to compensate clock skew between IDP and SP when validating Assertions. | [optional]
|
27
|
+
**digest_method** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The digest algorithm to use when signing a SAML message. | [optional]
|
28
|
+
**signature_method** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | The signature algorithm to use when signing a SAML message. | [optional]
|
29
|
+
**user_intermediate_path** | [**Array<SamlConfigurationPropertyItemsString>**](SamlConfigurationPropertyItemsString.md) | User intermediate path to store created users. | [optional]
|
30
|
+
|
31
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# SwaggerAemClient::SamlConfigurationPropertyItemsArray
|
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** | **Array<String>** | Property value | [optional]
|
11
|
+
**description** | **String** | Property description | [optional]
|
12
|
+
|
13
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# SwaggerAemClient::SamlConfigurationPropertyItemsBoolean
|
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** | **BOOLEAN** | Property value | [optional]
|
11
|
+
**description** | **String** | Property description | [optional]
|
12
|
+
|
13
|
+
|