swagger_aem 2.5.0 → 3.0.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 +6 -6
- data/README.md +7 -7
- data/Rakefile +2 -0
- data/docs/ConsoleApi.md +26 -32
- data/docs/CqApi.md +3 -6
- data/docs/CrxApi.md +19 -33
- data/docs/CustomApi.md +10 -13
- data/docs/SamlConfigurationInfo.md +1 -1
- data/docs/SamlConfigurationProperties.md +24 -24
- data/docs/SlingApi.md +211 -280
- data/git_push.sh +3 -3
- data/lib/swagger_aem.rb +3 -3
- data/lib/swagger_aem/api/console_api.rb +16 -40
- data/lib/swagger_aem/api/cq_api.rb +10 -22
- data/lib/swagger_aem/api/crx_api.rb +26 -61
- data/lib/swagger_aem/api/custom_api.rb +13 -32
- data/lib/swagger_aem/api/sling_api.rb +94 -264
- data/lib/swagger_aem/api_client.rb +14 -14
- data/lib/swagger_aem/api_error.rb +3 -3
- data/lib/swagger_aem/configuration.rb +5 -5
- data/lib/swagger_aem/models/install_status.rb +11 -16
- data/lib/swagger_aem/models/install_status_status.rb +11 -16
- data/lib/swagger_aem/models/keystore_chain_items.rb +11 -16
- data/lib/swagger_aem/models/keystore_info.rb +11 -16
- data/lib/swagger_aem/models/keystore_items.rb +11 -16
- data/lib/swagger_aem/models/saml_configuration_info.rb +12 -17
- data/lib/swagger_aem/models/saml_configuration_properties.rb +59 -136
- data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +11 -16
- data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +11 -16
- data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +11 -16
- data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +11 -16
- data/lib/swagger_aem/models/truststore_info.rb +11 -16
- data/lib/swagger_aem/models/truststore_items.rb +11 -16
- data/lib/swagger_aem/version.rb +4 -4
- data/spec/api/console_api_spec.rb +8 -16
- data/spec/api/cq_api_spec.rb +6 -10
- data/spec/api/crx_api_spec.rb +11 -25
- data/spec/api/custom_api_spec.rb +7 -13
- data/spec/api/sling_api_spec.rb +32 -88
- data/spec/api_client_spec.rb +37 -37
- data/spec/configuration_spec.rb +11 -11
- data/spec/models/install_status_spec.rb +5 -6
- data/spec/models/install_status_status_spec.rb +6 -7
- data/spec/models/keystore_chain_items_spec.rb +9 -10
- data/spec/models/keystore_info_spec.rb +6 -7
- data/spec/models/keystore_items_spec.rb +9 -10
- data/spec/models/saml_configuration_info_spec.rb +10 -11
- data/spec/models/saml_configuration_properties_spec.rb +28 -29
- data/spec/models/saml_configuration_property_items_array_spec.rb +10 -11
- data/spec/models/saml_configuration_property_items_boolean_spec.rb +10 -11
- data/spec/models/saml_configuration_property_items_long_spec.rb +10 -11
- data/spec/models/saml_configuration_property_items_string_spec.rb +10 -11
- data/spec/models/truststore_info_spec.rb +6 -7
- data/spec/models/truststore_items_spec.rb +11 -12
- data/spec/spec_helper.rb +3 -3
- data/swagger_aem.gemspec +6 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32be02d49109433648275e2327a450377777aebb
|
4
|
+
data.tar.gz: 6c68686486c3bb6dfe1510f297ec7bb0c1163698
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb73c0f90dd574da6895f0571c0f629e733ddf76de7a34ddbd2e63012f6336e9270b510e17544b96fe2b7a29d4a73e491adda9e3aacd3f1496e9f25c6cb5aac0
|
7
|
+
data.tar.gz: b76e99657afc7663d183a439e42304f2be870a5ec608d6d8690a51837056c964266c744f9fe5be2bc72f5b2319def8977c0264c439b72fd2635fe8833b91f588
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
swagger_aem (
|
4
|
+
swagger_aem (3.0.0)
|
5
5
|
json (~> 2.1, >= 2.1.0)
|
6
6
|
typhoeus (~> 1.0, >= 1.0.1)
|
7
7
|
|
@@ -23,8 +23,8 @@ GEM
|
|
23
23
|
ethon (0.12.0)
|
24
24
|
ffi (>= 1.3.0)
|
25
25
|
ffi (1.10.0)
|
26
|
-
hashdiff (0.3.
|
27
|
-
json (2.
|
26
|
+
hashdiff (0.3.9)
|
27
|
+
json (2.2.0)
|
28
28
|
public_suffix (3.0.3)
|
29
29
|
rake (12.0.0)
|
30
30
|
rspec (3.8.0)
|
@@ -33,14 +33,14 @@ GEM
|
|
33
33
|
rspec-mocks (~> 3.8.0)
|
34
34
|
rspec-core (3.8.0)
|
35
35
|
rspec-support (~> 3.8.0)
|
36
|
-
rspec-expectations (3.8.
|
36
|
+
rspec-expectations (3.8.3)
|
37
37
|
diff-lcs (>= 1.2.0, < 2.0)
|
38
38
|
rspec-support (~> 3.8.0)
|
39
39
|
rspec-mocks (3.8.0)
|
40
40
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
41
|
rspec-support (~> 3.8.0)
|
42
42
|
rspec-support (3.8.0)
|
43
|
-
safe_yaml (1.0.
|
43
|
+
safe_yaml (1.0.5)
|
44
44
|
sys-uname (1.0.4)
|
45
45
|
ffi (>= 1.0.0)
|
46
46
|
typhoeus (1.3.1)
|
@@ -66,4 +66,4 @@ DEPENDENCIES
|
|
66
66
|
webmock (~> 1.24, >= 1.24.3)
|
67
67
|
|
68
68
|
BUNDLED WITH
|
69
|
-
|
69
|
+
2.0.1
|
data/README.md
CHANGED
@@ -4,11 +4,11 @@ SwaggerAemClient - the Ruby gem for the Adobe Experience Manager (AEM) API
|
|
4
4
|
|
5
5
|
Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
6
6
|
|
7
|
-
This SDK is automatically generated by the [
|
7
|
+
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
|
-
- API version:
|
10
|
-
- Package version:
|
11
|
-
- Build package:
|
9
|
+
- API version: 3.0.0
|
10
|
+
- Package version: 3.0.0
|
11
|
+
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
|
13
13
|
|
14
14
|
## Installation
|
@@ -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-
|
27
|
+
gem install ./swagger_aem-3.0.0.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-3.0.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', '~>
|
35
|
+
gem 'swagger_aem', '~> 3.0.0'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
data/Rakefile
CHANGED
data/docs/ConsoleApi.md
CHANGED
@@ -71,11 +71,8 @@ SwaggerAemClient.configure do |config|
|
|
71
71
|
end
|
72
72
|
|
73
73
|
api_instance = SwaggerAemClient::ConsoleApi.new
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
action = "action_example" # String |
|
78
|
-
|
74
|
+
name = 'name_example' # String |
|
75
|
+
action = 'action_example' # String |
|
79
76
|
|
80
77
|
begin
|
81
78
|
api_instance.post_bundle(name, action)
|
@@ -102,7 +99,7 @@ nil (empty response body)
|
|
102
99
|
### HTTP request headers
|
103
100
|
|
104
101
|
- **Content-Type**: Not defined
|
105
|
-
- **Accept**:
|
102
|
+
- **Accept**: Not defined
|
106
103
|
|
107
104
|
|
108
105
|
|
@@ -123,9 +120,7 @@ SwaggerAemClient.configure do |config|
|
|
123
120
|
end
|
124
121
|
|
125
122
|
api_instance = SwaggerAemClient::ConsoleApi.new
|
126
|
-
|
127
|
-
action = "action_example" # String |
|
128
|
-
|
123
|
+
action = 'action_example' # String |
|
129
124
|
|
130
125
|
begin
|
131
126
|
api_instance.post_jmx_repository(action)
|
@@ -151,7 +146,7 @@ nil (empty response body)
|
|
151
146
|
### HTTP request headers
|
152
147
|
|
153
148
|
- **Content-Type**: Not defined
|
154
|
-
- **Accept**:
|
149
|
+
- **Accept**: Not defined
|
155
150
|
|
156
151
|
|
157
152
|
|
@@ -172,38 +167,37 @@ SwaggerAemClient.configure do |config|
|
|
172
167
|
end
|
173
168
|
|
174
169
|
api_instance = SwaggerAemClient::ConsoleApi.new
|
175
|
-
|
176
|
-
opts = {
|
170
|
+
opts = {
|
177
171
|
post: true, # BOOLEAN |
|
178
172
|
apply: true, # BOOLEAN |
|
179
173
|
delete: true, # BOOLEAN |
|
180
|
-
action:
|
181
|
-
location:
|
182
|
-
path: [
|
174
|
+
action: 'action_example', # String |
|
175
|
+
location: 'location_example', # String |
|
176
|
+
path: ['path_example'], # Array<String> |
|
183
177
|
service_ranking: 56, # Integer |
|
184
|
-
idp_url:
|
185
|
-
idp_cert_alias:
|
178
|
+
idp_url: 'idp_url_example', # String |
|
179
|
+
idp_cert_alias: 'idp_cert_alias_example', # String |
|
186
180
|
idp_http_redirect: true, # BOOLEAN |
|
187
|
-
service_provider_entity_id:
|
188
|
-
assertion_consumer_service_url:
|
189
|
-
sp_private_key_alias:
|
190
|
-
key_store_password:
|
191
|
-
default_redirect_url:
|
192
|
-
user_id_attribute:
|
181
|
+
service_provider_entity_id: 'service_provider_entity_id_example', # String |
|
182
|
+
assertion_consumer_service_url: 'assertion_consumer_service_url_example', # String |
|
183
|
+
sp_private_key_alias: 'sp_private_key_alias_example', # String |
|
184
|
+
key_store_password: 'key_store_password_example', # String |
|
185
|
+
default_redirect_url: 'default_redirect_url_example', # String |
|
186
|
+
user_id_attribute: 'user_id_attribute_example', # String |
|
193
187
|
use_encryption: true, # BOOLEAN |
|
194
188
|
create_user: true, # BOOLEAN |
|
195
189
|
add_group_memberships: true, # BOOLEAN |
|
196
|
-
group_membership_attribute:
|
197
|
-
default_groups: [
|
198
|
-
name_id_format:
|
199
|
-
synchronize_attributes: [
|
190
|
+
group_membership_attribute: 'group_membership_attribute_example', # String |
|
191
|
+
default_groups: ['default_groups_example'], # Array<String> |
|
192
|
+
name_id_format: 'name_id_format_example', # String |
|
193
|
+
synchronize_attributes: ['synchronize_attributes_example'], # Array<String> |
|
200
194
|
handle_logout: true, # BOOLEAN |
|
201
|
-
logout_url:
|
195
|
+
logout_url: 'logout_url_example', # String |
|
202
196
|
clock_tolerance: 56, # Integer |
|
203
|
-
digest_method:
|
204
|
-
signature_method:
|
205
|
-
user_intermediate_path:
|
206
|
-
propertylist: [
|
197
|
+
digest_method: 'digest_method_example', # String |
|
198
|
+
signature_method: 'signature_method_example', # String |
|
199
|
+
user_intermediate_path: 'user_intermediate_path_example', # String |
|
200
|
+
propertylist: ['propertylist_example'] # Array<String> |
|
207
201
|
}
|
208
202
|
|
209
203
|
begin
|
data/docs/CqApi.md
CHANGED
@@ -63,11 +63,8 @@ SwaggerAemClient.configure do |config|
|
|
63
63
|
end
|
64
64
|
|
65
65
|
api_instance = SwaggerAemClient::CqApi.new
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
changelog = "changelog_example" # String |
|
70
|
-
|
66
|
+
authorizable_id = 'authorizable_id_example' # String |
|
67
|
+
changelog = 'changelog_example' # String |
|
71
68
|
|
72
69
|
begin
|
73
70
|
api_instance.post_cq_actions(authorizable_id, changelog)
|
@@ -94,7 +91,7 @@ nil (empty response body)
|
|
94
91
|
### HTTP request headers
|
95
92
|
|
96
93
|
- **Content-Type**: Not defined
|
97
|
-
- **Accept**:
|
94
|
+
- **Accept**: Not defined
|
98
95
|
|
99
96
|
|
100
97
|
|
data/docs/CrxApi.md
CHANGED
@@ -161,9 +161,7 @@ SwaggerAemClient.configure do |config|
|
|
161
161
|
end
|
162
162
|
|
163
163
|
api_instance = SwaggerAemClient::CrxApi.new
|
164
|
-
|
165
|
-
cmd = "cmd_example" # String |
|
166
|
-
|
164
|
+
cmd = 'cmd_example' # String |
|
167
165
|
|
168
166
|
begin
|
169
167
|
result = api_instance.post_package_service(cmd)
|
@@ -211,19 +209,16 @@ SwaggerAemClient.configure do |config|
|
|
211
209
|
end
|
212
210
|
|
213
211
|
api_instance = SwaggerAemClient::CrxApi.new
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
package_name: "package_name_example", # String |
|
222
|
-
package_version: "package_version_example", # String |
|
223
|
-
_charset_: "_charset__example", # String |
|
212
|
+
path = 'path_example' # String |
|
213
|
+
cmd = 'cmd_example' # String |
|
214
|
+
opts = {
|
215
|
+
group_name: 'group_name_example', # String |
|
216
|
+
package_name: 'package_name_example', # String |
|
217
|
+
package_version: 'package_version_example', # String |
|
218
|
+
_charset_: '_charset__example', # String |
|
224
219
|
force: true, # BOOLEAN |
|
225
220
|
recursive: true, # BOOLEAN |
|
226
|
-
package: File.new(
|
221
|
+
package: File.new('/path/to/file') # File |
|
227
222
|
}
|
228
223
|
|
229
224
|
begin
|
@@ -280,18 +275,13 @@ SwaggerAemClient.configure do |config|
|
|
280
275
|
end
|
281
276
|
|
282
277
|
api_instance = SwaggerAemClient::CrxApi.new
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
path = "path_example" # String |
|
291
|
-
|
292
|
-
opts = {
|
293
|
-
filter: "filter_example", # String |
|
294
|
-
_charset_: "_charset__example" # String |
|
278
|
+
group_name = 'group_name_example' # String |
|
279
|
+
package_name = 'package_name_example' # String |
|
280
|
+
version = 'version_example' # String |
|
281
|
+
path = 'path_example' # String |
|
282
|
+
opts = {
|
283
|
+
filter: 'filter_example', # String |
|
284
|
+
_charset_: '_charset__example' # String |
|
295
285
|
}
|
296
286
|
|
297
287
|
begin
|
@@ -345,13 +335,9 @@ SwaggerAemClient.configure do |config|
|
|
345
335
|
end
|
346
336
|
|
347
337
|
api_instance = SwaggerAemClient::CrxApi.new
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
plain = "plain_example" # String |
|
352
|
-
|
353
|
-
verify = "verify_example" # String |
|
354
|
-
|
338
|
+
old = 'old_example' # String |
|
339
|
+
plain = 'plain_example' # String |
|
340
|
+
verify = 'verify_example' # String |
|
355
341
|
|
356
342
|
begin
|
357
343
|
result = api_instance.post_set_password(old, plain, verify)
|
data/docs/CustomApi.md
CHANGED
@@ -26,9 +26,8 @@ SwaggerAemClient.configure do |config|
|
|
26
26
|
end
|
27
27
|
|
28
28
|
api_instance = SwaggerAemClient::CustomApi.new
|
29
|
-
|
30
|
-
|
31
|
-
tags: "tags_example", # String |
|
29
|
+
opts = {
|
30
|
+
tags: 'tags_example', # String |
|
32
31
|
combine_tags_or: true # BOOLEAN |
|
33
32
|
}
|
34
33
|
|
@@ -79,10 +78,9 @@ SwaggerAemClient.configure do |config|
|
|
79
78
|
end
|
80
79
|
|
81
80
|
api_instance = SwaggerAemClient::CustomApi.new
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
bundles_ignored_type_hint: "bundles_ignored_type_hint_example" # String |
|
81
|
+
opts = {
|
82
|
+
bundles_ignored: ['bundles_ignored_example'], # Array<String> |
|
83
|
+
bundles_ignored_type_hint: 'bundles_ignored_type_hint_example' # String |
|
86
84
|
}
|
87
85
|
|
88
86
|
begin
|
@@ -110,7 +108,7 @@ nil (empty response body)
|
|
110
108
|
### HTTP request headers
|
111
109
|
|
112
110
|
- **Content-Type**: Not defined
|
113
|
-
- **Accept**:
|
111
|
+
- **Accept**: Not defined
|
114
112
|
|
115
113
|
|
116
114
|
|
@@ -131,10 +129,9 @@ SwaggerAemClient.configure do |config|
|
|
131
129
|
end
|
132
130
|
|
133
131
|
api_instance = SwaggerAemClient::CustomApi.new
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
pwdreset_authorizables_type_hint: "pwdreset_authorizables_type_hint_example" # String |
|
132
|
+
opts = {
|
133
|
+
pwdreset_authorizables: ['pwdreset_authorizables_example'], # Array<String> |
|
134
|
+
pwdreset_authorizables_type_hint: 'pwdreset_authorizables_type_hint_example' # String |
|
138
135
|
}
|
139
136
|
|
140
137
|
begin
|
@@ -162,7 +159,7 @@ nil (empty response body)
|
|
162
159
|
### HTTP request headers
|
163
160
|
|
164
161
|
- **Content-Type**: Not defined
|
165
|
-
- **Accept**:
|
162
|
+
- **Accept**: Not defined
|
166
163
|
|
167
164
|
|
168
165
|
|
@@ -8,6 +8,6 @@ Name | Type | Description | Notes
|
|
8
8
|
**description** | **String** | Title | [optional]
|
9
9
|
**bundle_location** | **String** | needed for configuration binding | [optional]
|
10
10
|
**service_location** | **String** | needed for configuraiton binding | [optional]
|
11
|
-
**properties** | **
|
11
|
+
**properties** | [**SamlConfigurationProperties**](SamlConfigurationProperties.md) | | [optional]
|
12
12
|
|
13
13
|
|
@@ -3,29 +3,29 @@
|
|
3
3
|
## Properties
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
|
-
**path** | [**
|
7
|
-
**service_ranking** | [**
|
8
|
-
**idp_url** | [**
|
9
|
-
**idp_cert_alias** | [**
|
10
|
-
**idp_http_redirect** | [**
|
11
|
-
**service_provider_entity_id** | [**
|
12
|
-
**assertion_consumer_service_url** | [**
|
13
|
-
**sp_private_key_alias** | [**
|
14
|
-
**key_store_password** | [**
|
15
|
-
**default_redirect_url** | [**
|
16
|
-
**user_id_attribute** | [**
|
17
|
-
**use_encryption** | [**
|
18
|
-
**create_user** | [**
|
19
|
-
**add_group_memberships** | [**
|
20
|
-
**group_membership_attribute** | [**
|
21
|
-
**default_groups** | [**
|
22
|
-
**name_id_format** | [**
|
23
|
-
**synchronize_attributes** | [**
|
24
|
-
**handle_logout** | [**
|
25
|
-
**logout_url** | [**
|
26
|
-
**clock_tolerance** | [**
|
27
|
-
**digest_method** | [**
|
28
|
-
**signature_method** | [**
|
29
|
-
**user_intermediate_path** | [**
|
6
|
+
**path** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
|
7
|
+
**service_ranking** | [**SamlConfigurationPropertyItemsLong**](SamlConfigurationPropertyItemsLong.md) | | [optional]
|
8
|
+
**idp_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
9
|
+
**idp_cert_alias** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
10
|
+
**idp_http_redirect** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
|
11
|
+
**service_provider_entity_id** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
12
|
+
**assertion_consumer_service_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
13
|
+
**sp_private_key_alias** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
14
|
+
**key_store_password** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
15
|
+
**default_redirect_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
16
|
+
**user_id_attribute** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
17
|
+
**use_encryption** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
|
18
|
+
**create_user** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
|
19
|
+
**add_group_memberships** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
|
20
|
+
**group_membership_attribute** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
21
|
+
**default_groups** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
|
22
|
+
**name_id_format** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
23
|
+
**synchronize_attributes** | [**SamlConfigurationPropertyItemsArray**](SamlConfigurationPropertyItemsArray.md) | | [optional]
|
24
|
+
**handle_logout** | [**SamlConfigurationPropertyItemsBoolean**](SamlConfigurationPropertyItemsBoolean.md) | | [optional]
|
25
|
+
**logout_url** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
26
|
+
**clock_tolerance** | [**SamlConfigurationPropertyItemsLong**](SamlConfigurationPropertyItemsLong.md) | | [optional]
|
27
|
+
**digest_method** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
28
|
+
**signature_method** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
29
|
+
**user_intermediate_path** | [**SamlConfigurationPropertyItemsString**](SamlConfigurationPropertyItemsString.md) | | [optional]
|
30
30
|
|
31
31
|
|
data/docs/SlingApi.md
CHANGED
@@ -51,11 +51,8 @@ SwaggerAemClient.configure do |config|
|
|
51
51
|
end
|
52
52
|
|
53
53
|
api_instance = SwaggerAemClient::SlingApi.new
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
name = "name_example" # String |
|
58
|
-
|
54
|
+
runmode = 'runmode_example' # String |
|
55
|
+
name = 'name_example' # String |
|
59
56
|
|
60
57
|
begin
|
61
58
|
api_instance.delete_agent(runmode, name)
|
@@ -82,7 +79,7 @@ nil (empty response body)
|
|
82
79
|
### HTTP request headers
|
83
80
|
|
84
81
|
- **Content-Type**: Not defined
|
85
|
-
- **Accept**:
|
82
|
+
- **Accept**: Not defined
|
86
83
|
|
87
84
|
|
88
85
|
|
@@ -103,11 +100,8 @@ SwaggerAemClient.configure do |config|
|
|
103
100
|
end
|
104
101
|
|
105
102
|
api_instance = SwaggerAemClient::SlingApi.new
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
name = "name_example" # String |
|
110
|
-
|
103
|
+
path = 'path_example' # String |
|
104
|
+
name = 'name_example' # String |
|
111
105
|
|
112
106
|
begin
|
113
107
|
api_instance.delete_node(path, name)
|
@@ -134,7 +128,7 @@ nil (empty response body)
|
|
134
128
|
### HTTP request headers
|
135
129
|
|
136
130
|
- **Content-Type**: Not defined
|
137
|
-
- **Accept**:
|
131
|
+
- **Accept**: Not defined
|
138
132
|
|
139
133
|
|
140
134
|
|
@@ -155,11 +149,8 @@ SwaggerAemClient.configure do |config|
|
|
155
149
|
end
|
156
150
|
|
157
151
|
api_instance = SwaggerAemClient::SlingApi.new
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
name = "name_example" # String |
|
162
|
-
|
152
|
+
runmode = 'runmode_example' # String |
|
153
|
+
name = 'name_example' # String |
|
163
154
|
|
164
155
|
begin
|
165
156
|
api_instance.get_agent(runmode, name)
|
@@ -186,7 +177,7 @@ nil (empty response body)
|
|
186
177
|
### HTTP request headers
|
187
178
|
|
188
179
|
- **Content-Type**: Not defined
|
189
|
-
- **Accept**:
|
180
|
+
- **Accept**: Not defined
|
190
181
|
|
191
182
|
|
192
183
|
|
@@ -207,9 +198,7 @@ SwaggerAemClient.configure do |config|
|
|
207
198
|
end
|
208
199
|
|
209
200
|
api_instance = SwaggerAemClient::SlingApi.new
|
210
|
-
|
211
|
-
runmode = "runmode_example" # String |
|
212
|
-
|
201
|
+
runmode = 'runmode_example' # String |
|
213
202
|
|
214
203
|
begin
|
215
204
|
result = api_instance.get_agents(runmode)
|
@@ -257,11 +246,8 @@ SwaggerAemClient.configure do |config|
|
|
257
246
|
end
|
258
247
|
|
259
248
|
api_instance = SwaggerAemClient::SlingApi.new
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
authorizable_id = "authorizable_id_example" # String |
|
264
|
-
|
249
|
+
intermediate_path = 'intermediate_path_example' # String |
|
250
|
+
authorizable_id = 'authorizable_id_example' # String |
|
265
251
|
|
266
252
|
begin
|
267
253
|
result = api_instance.get_authorizable_keystore(intermediate_path, authorizable_id)
|
@@ -310,11 +296,8 @@ SwaggerAemClient.configure do |config|
|
|
310
296
|
end
|
311
297
|
|
312
298
|
api_instance = SwaggerAemClient::SlingApi.new
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
authorizable_id = "authorizable_id_example" # String |
|
317
|
-
|
299
|
+
intermediate_path = 'intermediate_path_example' # String |
|
300
|
+
authorizable_id = 'authorizable_id_example' # String |
|
318
301
|
|
319
302
|
begin
|
320
303
|
result = api_instance.get_keystore(intermediate_path, authorizable_id)
|
@@ -363,11 +346,8 @@ SwaggerAemClient.configure do |config|
|
|
363
346
|
end
|
364
347
|
|
365
348
|
api_instance = SwaggerAemClient::SlingApi.new
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
name = "name_example" # String |
|
370
|
-
|
349
|
+
path = 'path_example' # String |
|
350
|
+
name = 'name_example' # String |
|
371
351
|
|
372
352
|
begin
|
373
353
|
api_instance.get_node(path, name)
|
@@ -394,7 +374,7 @@ nil (empty response body)
|
|
394
374
|
### HTTP request headers
|
395
375
|
|
396
376
|
- **Content-Type**: Not defined
|
397
|
-
- **Accept**:
|
377
|
+
- **Accept**: Not defined
|
398
378
|
|
399
379
|
|
400
380
|
|
@@ -415,13 +395,9 @@ SwaggerAemClient.configure do |config|
|
|
415
395
|
end
|
416
396
|
|
417
397
|
api_instance = SwaggerAemClient::SlingApi.new
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
name = "name_example" # String |
|
422
|
-
|
423
|
-
version = "version_example" # String |
|
424
|
-
|
398
|
+
group = 'group_example' # String |
|
399
|
+
name = 'name_example' # String |
|
400
|
+
version = 'version_example' # String |
|
425
401
|
|
426
402
|
begin
|
427
403
|
result = api_instance.get_package(group, name, version)
|
@@ -471,13 +447,9 @@ SwaggerAemClient.configure do |config|
|
|
471
447
|
end
|
472
448
|
|
473
449
|
api_instance = SwaggerAemClient::SlingApi.new
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
name = "name_example" # String |
|
478
|
-
|
479
|
-
version = "version_example" # String |
|
480
|
-
|
450
|
+
group = 'group_example' # String |
|
451
|
+
name = 'name_example' # String |
|
452
|
+
version = 'version_example' # String |
|
481
453
|
|
482
454
|
begin
|
483
455
|
result = api_instance.get_package_filter(group, name, version)
|
@@ -527,15 +499,10 @@ SwaggerAemClient.configure do |config|
|
|
527
499
|
end
|
528
500
|
|
529
501
|
api_instance = SwaggerAemClient::SlingApi.new
|
530
|
-
|
531
|
-
path = "path_example" # String |
|
532
|
-
|
502
|
+
path = 'path_example' # String |
|
533
503
|
p_limit = 3.4 # Float |
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
_1_property_value = "_1_property_value_example" # String |
|
538
|
-
|
504
|
+
_1_property = '_1_property_example' # String |
|
505
|
+
_1_property_value = '_1_property_value_example' # String |
|
539
506
|
|
540
507
|
begin
|
541
508
|
result = api_instance.get_query(path, p_limit, _1_property, _1_property_value)
|
@@ -674,62 +641,59 @@ SwaggerAemClient.configure do |config|
|
|
674
641
|
end
|
675
642
|
|
676
643
|
api_instance = SwaggerAemClient::SlingApi.new
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
name = "name_example" # String |
|
681
|
-
|
682
|
-
opts = {
|
644
|
+
runmode = 'runmode_example' # String |
|
645
|
+
name = 'name_example' # String |
|
646
|
+
opts = {
|
683
647
|
jcrcontentcqdistribute: true, # BOOLEAN |
|
684
|
-
jcrcontentcqdistribute_type_hint:
|
685
|
-
jcrcontentcqname:
|
686
|
-
jcrcontentcqtemplate:
|
648
|
+
jcrcontentcqdistribute_type_hint: 'jcrcontentcqdistribute_type_hint_example', # String |
|
649
|
+
jcrcontentcqname: 'jcrcontentcqname_example', # String |
|
650
|
+
jcrcontentcqtemplate: 'jcrcontentcqtemplate_example', # String |
|
687
651
|
jcrcontentenabled: true, # BOOLEAN |
|
688
|
-
jcrcontentjcrdescription:
|
689
|
-
jcrcontentjcrlast_modified:
|
690
|
-
jcrcontentjcrlast_modified_by:
|
691
|
-
jcrcontentjcrmixin_types:
|
692
|
-
jcrcontentjcrtitle:
|
693
|
-
jcrcontentlog_level:
|
652
|
+
jcrcontentjcrdescription: 'jcrcontentjcrdescription_example', # String |
|
653
|
+
jcrcontentjcrlast_modified: 'jcrcontentjcrlast_modified_example', # String |
|
654
|
+
jcrcontentjcrlast_modified_by: 'jcrcontentjcrlast_modified_by_example', # String |
|
655
|
+
jcrcontentjcrmixin_types: 'jcrcontentjcrmixin_types_example', # String |
|
656
|
+
jcrcontentjcrtitle: 'jcrcontentjcrtitle_example', # String |
|
657
|
+
jcrcontentlog_level: 'jcrcontentlog_level_example', # String |
|
694
658
|
jcrcontentno_status_update: true, # BOOLEAN |
|
695
659
|
jcrcontentno_versioning: true, # BOOLEAN |
|
696
660
|
jcrcontentprotocol_connect_timeout: 3.4, # Float |
|
697
661
|
jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
|
698
|
-
jcrcontentprotocol_http_expired:
|
699
|
-
jcrcontentprotocol_http_headers: [
|
700
|
-
jcrcontentprotocol_http_headers_type_hint:
|
701
|
-
jcrcontentprotocol_http_method:
|
662
|
+
jcrcontentprotocol_http_expired: 'jcrcontentprotocol_http_expired_example', # String |
|
663
|
+
jcrcontentprotocol_http_headers: ['jcrcontentprotocol_http_headers_example'], # Array<String> |
|
664
|
+
jcrcontentprotocol_http_headers_type_hint: 'jcrcontentprotocol_http_headers_type_hint_example', # String |
|
665
|
+
jcrcontentprotocol_http_method: 'jcrcontentprotocol_http_method_example', # String |
|
702
666
|
jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
|
703
|
-
jcrcontentprotocol_interface:
|
667
|
+
jcrcontentprotocol_interface: 'jcrcontentprotocol_interface_example', # String |
|
704
668
|
jcrcontentprotocol_socket_timeout: 3.4, # Float |
|
705
|
-
jcrcontentprotocol_version:
|
706
|
-
jcrcontentproxy_ntlm_domain:
|
707
|
-
jcrcontentproxy_ntlm_host:
|
708
|
-
jcrcontentproxy_host:
|
709
|
-
jcrcontentproxy_password:
|
669
|
+
jcrcontentprotocol_version: 'jcrcontentprotocol_version_example', # String |
|
670
|
+
jcrcontentproxy_ntlm_domain: 'jcrcontentproxy_ntlm_domain_example', # String |
|
671
|
+
jcrcontentproxy_ntlm_host: 'jcrcontentproxy_ntlm_host_example', # String |
|
672
|
+
jcrcontentproxy_host: 'jcrcontentproxy_host_example', # String |
|
673
|
+
jcrcontentproxy_password: 'jcrcontentproxy_password_example', # String |
|
710
674
|
jcrcontentproxy_port: 3.4, # Float |
|
711
|
-
jcrcontentproxy_user:
|
675
|
+
jcrcontentproxy_user: 'jcrcontentproxy_user_example', # String |
|
712
676
|
jcrcontentqueue_batch_max_size: 3.4, # Float |
|
713
|
-
jcrcontentqueue_batch_mode:
|
677
|
+
jcrcontentqueue_batch_mode: 'jcrcontentqueue_batch_mode_example', # String |
|
714
678
|
jcrcontentqueue_batch_wait_time: 3.4, # Float |
|
715
|
-
jcrcontentretry_delay:
|
679
|
+
jcrcontentretry_delay: 'jcrcontentretry_delay_example', # String |
|
716
680
|
jcrcontentreverse_replication: true, # BOOLEAN |
|
717
|
-
jcrcontentserialization_type:
|
718
|
-
jcrcontentslingresource_type:
|
719
|
-
jcrcontentssl:
|
720
|
-
jcrcontenttransport_ntlm_domain:
|
721
|
-
jcrcontenttransport_ntlm_host:
|
722
|
-
jcrcontenttransport_password:
|
723
|
-
jcrcontenttransport_uri:
|
724
|
-
jcrcontenttransport_user:
|
681
|
+
jcrcontentserialization_type: 'jcrcontentserialization_type_example', # String |
|
682
|
+
jcrcontentslingresource_type: 'jcrcontentslingresource_type_example', # String |
|
683
|
+
jcrcontentssl: 'jcrcontentssl_example', # String |
|
684
|
+
jcrcontenttransport_ntlm_domain: 'jcrcontenttransport_ntlm_domain_example', # String |
|
685
|
+
jcrcontenttransport_ntlm_host: 'jcrcontenttransport_ntlm_host_example', # String |
|
686
|
+
jcrcontenttransport_password: 'jcrcontenttransport_password_example', # String |
|
687
|
+
jcrcontenttransport_uri: 'jcrcontenttransport_uri_example', # String |
|
688
|
+
jcrcontenttransport_user: 'jcrcontenttransport_user_example', # String |
|
725
689
|
jcrcontenttrigger_distribute: true, # BOOLEAN |
|
726
690
|
jcrcontenttrigger_modified: true, # BOOLEAN |
|
727
691
|
jcrcontenttrigger_on_off_time: true, # BOOLEAN |
|
728
692
|
jcrcontenttrigger_receive: true, # BOOLEAN |
|
729
693
|
jcrcontenttrigger_specific: true, # BOOLEAN |
|
730
|
-
jcrcontentuser_id:
|
731
|
-
jcrprimary_type:
|
732
|
-
operation:
|
694
|
+
jcrcontentuser_id: 'jcrcontentuser_id_example', # String |
|
695
|
+
jcrprimary_type: 'jcrprimary_type_example', # String |
|
696
|
+
operation: 'operation_example' # String |
|
733
697
|
}
|
734
698
|
|
735
699
|
begin
|
@@ -807,7 +771,7 @@ nil (empty response body)
|
|
807
771
|
### HTTP request headers
|
808
772
|
|
809
773
|
- **Content-Type**: Not defined
|
810
|
-
- **Accept**:
|
774
|
+
- **Accept**: Not defined
|
811
775
|
|
812
776
|
|
813
777
|
|
@@ -828,24 +792,21 @@ SwaggerAemClient.configure do |config|
|
|
828
792
|
end
|
829
793
|
|
830
794
|
api_instance = SwaggerAemClient::SlingApi.new
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
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 |
|
795
|
+
intermediate_path = 'intermediate_path_example' # String |
|
796
|
+
authorizable_id = 'authorizable_id_example' # String |
|
797
|
+
opts = {
|
798
|
+
operation: 'operation_example', # String |
|
799
|
+
current_password: 'current_password_example', # String |
|
800
|
+
new_password: 'new_password_example', # String |
|
801
|
+
re_password: 're_password_example', # String |
|
802
|
+
key_password: 'key_password_example', # String |
|
803
|
+
key_store_pass: 'key_store_pass_example', # String |
|
804
|
+
_alias: '_alias_example', # String |
|
805
|
+
new_alias: 'new_alias_example', # String |
|
806
|
+
remove_alias: 'remove_alias_example', # String |
|
807
|
+
cert_chain: File.new('/path/to/file'), # File |
|
808
|
+
pk: File.new('/path/to/file'), # File |
|
809
|
+
key_store: File.new('/path/to/file') # File |
|
849
810
|
}
|
850
811
|
|
851
812
|
begin
|
@@ -907,16 +868,13 @@ SwaggerAemClient.configure do |config|
|
|
907
868
|
end
|
908
869
|
|
909
870
|
api_instance = SwaggerAemClient::SlingApi.new
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
create_group: "create_group_example", # String |
|
918
|
-
reppassword: "reppassword_example", # String |
|
919
|
-
profilegiven_name: "profilegiven_name_example" # String |
|
871
|
+
authorizable_id = 'authorizable_id_example' # String |
|
872
|
+
intermediate_path = 'intermediate_path_example' # String |
|
873
|
+
opts = {
|
874
|
+
create_user: 'create_user_example', # String |
|
875
|
+
create_group: 'create_group_example', # String |
|
876
|
+
reppassword: 'reppassword_example', # String |
|
877
|
+
profilegiven_name: 'profilegiven_name_example' # String |
|
920
878
|
}
|
921
879
|
|
922
880
|
begin
|
@@ -970,56 +928,55 @@ SwaggerAemClient.configure do |config|
|
|
970
928
|
end
|
971
929
|
|
972
930
|
api_instance = SwaggerAemClient::SlingApi.new
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
key_store_password_type_hint: "key_store_password_type_hint_example", # String |
|
931
|
+
opts = {
|
932
|
+
key_store_password: 'key_store_password_example', # String |
|
933
|
+
key_store_password_type_hint: 'key_store_password_type_hint_example', # String |
|
977
934
|
service_ranking: 56, # Integer |
|
978
|
-
service_ranking_type_hint:
|
935
|
+
service_ranking_type_hint: 'service_ranking_type_hint_example', # String |
|
979
936
|
idp_http_redirect: true, # BOOLEAN |
|
980
|
-
idp_http_redirect_type_hint:
|
937
|
+
idp_http_redirect_type_hint: 'idp_http_redirect_type_hint_example', # String |
|
981
938
|
create_user: true, # BOOLEAN |
|
982
|
-
create_user_type_hint:
|
983
|
-
default_redirect_url:
|
984
|
-
default_redirect_url_type_hint:
|
985
|
-
user_id_attribute:
|
986
|
-
user_id_attribute_type_hint:
|
987
|
-
default_groups: [
|
988
|
-
default_groups_type_hint:
|
989
|
-
idp_cert_alias:
|
990
|
-
idp_cert_alias_type_hint:
|
939
|
+
create_user_type_hint: 'create_user_type_hint_example', # String |
|
940
|
+
default_redirect_url: 'default_redirect_url_example', # String |
|
941
|
+
default_redirect_url_type_hint: 'default_redirect_url_type_hint_example', # String |
|
942
|
+
user_id_attribute: 'user_id_attribute_example', # String |
|
943
|
+
user_id_attribute_type_hint: 'user_id_attribute_type_hint_example', # String |
|
944
|
+
default_groups: ['default_groups_example'], # Array<String> |
|
945
|
+
default_groups_type_hint: 'default_groups_type_hint_example', # String |
|
946
|
+
idp_cert_alias: 'idp_cert_alias_example', # String |
|
947
|
+
idp_cert_alias_type_hint: 'idp_cert_alias_type_hint_example', # String |
|
991
948
|
add_group_memberships: true, # BOOLEAN |
|
992
|
-
add_group_memberships_type_hint:
|
993
|
-
path: [
|
994
|
-
path_type_hint:
|
995
|
-
synchronize_attributes: [
|
996
|
-
synchronize_attributes_type_hint:
|
949
|
+
add_group_memberships_type_hint: 'add_group_memberships_type_hint_example', # String |
|
950
|
+
path: ['path_example'], # Array<String> |
|
951
|
+
path_type_hint: 'path_type_hint_example', # String |
|
952
|
+
synchronize_attributes: ['synchronize_attributes_example'], # Array<String> |
|
953
|
+
synchronize_attributes_type_hint: 'synchronize_attributes_type_hint_example', # String |
|
997
954
|
clock_tolerance: 56, # Integer |
|
998
|
-
clock_tolerance_type_hint:
|
999
|
-
group_membership_attribute:
|
1000
|
-
group_membership_attribute_type_hint:
|
1001
|
-
idp_url:
|
1002
|
-
idp_url_type_hint:
|
1003
|
-
logout_url:
|
1004
|
-
logout_url_type_hint:
|
1005
|
-
service_provider_entity_id:
|
1006
|
-
service_provider_entity_id_type_hint:
|
1007
|
-
assertion_consumer_service_url:
|
1008
|
-
assertion_consumer_service_url_type_hint:
|
955
|
+
clock_tolerance_type_hint: 'clock_tolerance_type_hint_example', # String |
|
956
|
+
group_membership_attribute: 'group_membership_attribute_example', # String |
|
957
|
+
group_membership_attribute_type_hint: 'group_membership_attribute_type_hint_example', # String |
|
958
|
+
idp_url: 'idp_url_example', # String |
|
959
|
+
idp_url_type_hint: 'idp_url_type_hint_example', # String |
|
960
|
+
logout_url: 'logout_url_example', # String |
|
961
|
+
logout_url_type_hint: 'logout_url_type_hint_example', # String |
|
962
|
+
service_provider_entity_id: 'service_provider_entity_id_example', # String |
|
963
|
+
service_provider_entity_id_type_hint: 'service_provider_entity_id_type_hint_example', # String |
|
964
|
+
assertion_consumer_service_url: 'assertion_consumer_service_url_example', # String |
|
965
|
+
assertion_consumer_service_url_type_hint: 'assertion_consumer_service_url_type_hint_example', # String |
|
1009
966
|
handle_logout: true, # BOOLEAN |
|
1010
|
-
handle_logout_type_hint:
|
1011
|
-
sp_private_key_alias:
|
1012
|
-
sp_private_key_alias_type_hint:
|
967
|
+
handle_logout_type_hint: 'handle_logout_type_hint_example', # String |
|
968
|
+
sp_private_key_alias: 'sp_private_key_alias_example', # String |
|
969
|
+
sp_private_key_alias_type_hint: 'sp_private_key_alias_type_hint_example', # String |
|
1013
970
|
use_encryption: true, # BOOLEAN |
|
1014
|
-
use_encryption_type_hint:
|
1015
|
-
name_id_format:
|
1016
|
-
name_id_format_type_hint:
|
1017
|
-
digest_method:
|
1018
|
-
digest_method_type_hint:
|
1019
|
-
signature_method:
|
1020
|
-
signature_method_type_hint:
|
1021
|
-
user_intermediate_path:
|
1022
|
-
user_intermediate_path_type_hint:
|
971
|
+
use_encryption_type_hint: 'use_encryption_type_hint_example', # String |
|
972
|
+
name_id_format: 'name_id_format_example', # String |
|
973
|
+
name_id_format_type_hint: 'name_id_format_type_hint_example', # String |
|
974
|
+
digest_method: 'digest_method_example', # String |
|
975
|
+
digest_method_type_hint: 'digest_method_type_hint_example', # String |
|
976
|
+
signature_method: 'signature_method_example', # String |
|
977
|
+
signature_method_type_hint: 'signature_method_type_hint_example', # String |
|
978
|
+
user_intermediate_path: 'user_intermediate_path_example', # String |
|
979
|
+
user_intermediate_path_type_hint: 'user_intermediate_path_type_hint_example' # String |
|
1023
980
|
}
|
1024
981
|
|
1025
982
|
begin
|
@@ -1093,7 +1050,7 @@ nil (empty response body)
|
|
1093
1050
|
### HTTP request headers
|
1094
1051
|
|
1095
1052
|
- **Content-Type**: Not defined
|
1096
|
-
- **Accept**:
|
1053
|
+
- **Accept**: Not defined
|
1097
1054
|
|
1098
1055
|
|
1099
1056
|
|
@@ -1114,28 +1071,27 @@ SwaggerAemClient.configure do |config|
|
|
1114
1071
|
end
|
1115
1072
|
|
1116
1073
|
api_instance = SwaggerAemClient::SlingApi.new
|
1117
|
-
|
1118
|
-
opts = {
|
1074
|
+
opts = {
|
1119
1075
|
org_apache_felix_https_nio: true, # BOOLEAN |
|
1120
|
-
org_apache_felix_https_nio_type_hint:
|
1121
|
-
org_apache_felix_https_keystore:
|
1122
|
-
org_apache_felix_https_keystore_type_hint:
|
1123
|
-
org_apache_felix_https_keystore_password:
|
1124
|
-
org_apache_felix_https_keystore_password_type_hint:
|
1125
|
-
org_apache_felix_https_keystore_key:
|
1126
|
-
org_apache_felix_https_keystore_key_type_hint:
|
1127
|
-
org_apache_felix_https_keystore_key_password:
|
1128
|
-
org_apache_felix_https_keystore_key_password_type_hint:
|
1129
|
-
org_apache_felix_https_truststore:
|
1130
|
-
org_apache_felix_https_truststore_type_hint:
|
1131
|
-
org_apache_felix_https_truststore_password:
|
1132
|
-
org_apache_felix_https_truststore_password_type_hint:
|
1133
|
-
org_apache_felix_https_clientcertificate:
|
1134
|
-
org_apache_felix_https_clientcertificate_type_hint:
|
1076
|
+
org_apache_felix_https_nio_type_hint: 'org_apache_felix_https_nio_type_hint_example', # String |
|
1077
|
+
org_apache_felix_https_keystore: 'org_apache_felix_https_keystore_example', # String |
|
1078
|
+
org_apache_felix_https_keystore_type_hint: 'org_apache_felix_https_keystore_type_hint_example', # String |
|
1079
|
+
org_apache_felix_https_keystore_password: 'org_apache_felix_https_keystore_password_example', # String |
|
1080
|
+
org_apache_felix_https_keystore_password_type_hint: 'org_apache_felix_https_keystore_password_type_hint_example', # String |
|
1081
|
+
org_apache_felix_https_keystore_key: 'org_apache_felix_https_keystore_key_example', # String |
|
1082
|
+
org_apache_felix_https_keystore_key_type_hint: 'org_apache_felix_https_keystore_key_type_hint_example', # String |
|
1083
|
+
org_apache_felix_https_keystore_key_password: 'org_apache_felix_https_keystore_key_password_example', # String |
|
1084
|
+
org_apache_felix_https_keystore_key_password_type_hint: 'org_apache_felix_https_keystore_key_password_type_hint_example', # String |
|
1085
|
+
org_apache_felix_https_truststore: 'org_apache_felix_https_truststore_example', # String |
|
1086
|
+
org_apache_felix_https_truststore_type_hint: 'org_apache_felix_https_truststore_type_hint_example', # String |
|
1087
|
+
org_apache_felix_https_truststore_password: 'org_apache_felix_https_truststore_password_example', # String |
|
1088
|
+
org_apache_felix_https_truststore_password_type_hint: 'org_apache_felix_https_truststore_password_type_hint_example', # String |
|
1089
|
+
org_apache_felix_https_clientcertificate: 'org_apache_felix_https_clientcertificate_example', # String |
|
1090
|
+
org_apache_felix_https_clientcertificate_type_hint: 'org_apache_felix_https_clientcertificate_type_hint_example', # String |
|
1135
1091
|
org_apache_felix_https_enable: true, # BOOLEAN |
|
1136
|
-
org_apache_felix_https_enable_type_hint:
|
1137
|
-
org_osgi_service_http_port_secure:
|
1138
|
-
org_osgi_service_http_port_secure_type_hint:
|
1092
|
+
org_apache_felix_https_enable_type_hint: 'org_apache_felix_https_enable_type_hint_example', # String |
|
1093
|
+
org_osgi_service_http_port_secure: 'org_osgi_service_http_port_secure_example', # String |
|
1094
|
+
org_osgi_service_http_port_secure_type_hint: 'org_osgi_service_http_port_secure_type_hint_example' # String |
|
1139
1095
|
}
|
1140
1096
|
|
1141
1097
|
begin
|
@@ -1181,7 +1137,7 @@ nil (empty response body)
|
|
1181
1137
|
### HTTP request headers
|
1182
1138
|
|
1183
1139
|
- **Content-Type**: Not defined
|
1184
|
-
- **Accept**:
|
1140
|
+
- **Accept**: Not defined
|
1185
1141
|
|
1186
1142
|
|
1187
1143
|
|
@@ -1202,20 +1158,19 @@ SwaggerAemClient.configure do |config|
|
|
1202
1158
|
end
|
1203
1159
|
|
1204
1160
|
api_instance = SwaggerAemClient::SlingApi.new
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
proxy_host_type_hint: "proxy_host_type_hint_example", # String |
|
1161
|
+
opts = {
|
1162
|
+
proxy_host: 'proxy_host_example', # String |
|
1163
|
+
proxy_host_type_hint: 'proxy_host_type_hint_example', # String |
|
1209
1164
|
proxy_port: 56, # Integer |
|
1210
|
-
proxy_port_type_hint:
|
1211
|
-
proxy_exceptions: [
|
1212
|
-
proxy_exceptions_type_hint:
|
1165
|
+
proxy_port_type_hint: 'proxy_port_type_hint_example', # String |
|
1166
|
+
proxy_exceptions: ['proxy_exceptions_example'], # Array<String> |
|
1167
|
+
proxy_exceptions_type_hint: 'proxy_exceptions_type_hint_example', # String |
|
1213
1168
|
proxy_enabled: true, # BOOLEAN |
|
1214
|
-
proxy_enabled_type_hint:
|
1215
|
-
proxy_user:
|
1216
|
-
proxy_user_type_hint:
|
1217
|
-
proxy_password:
|
1218
|
-
proxy_password_type_hint:
|
1169
|
+
proxy_enabled_type_hint: 'proxy_enabled_type_hint_example', # String |
|
1170
|
+
proxy_user: 'proxy_user_example', # String |
|
1171
|
+
proxy_user_type_hint: 'proxy_user_type_hint_example', # String |
|
1172
|
+
proxy_password: 'proxy_password_example', # String |
|
1173
|
+
proxy_password_type_hint: 'proxy_password_type_hint_example' # String |
|
1219
1174
|
}
|
1220
1175
|
|
1221
1176
|
begin
|
@@ -1253,7 +1208,7 @@ nil (empty response body)
|
|
1253
1208
|
### HTTP request headers
|
1254
1209
|
|
1255
1210
|
- **Content-Type**: Not defined
|
1256
|
-
- **Accept**:
|
1211
|
+
- **Accept**: Not defined
|
1257
1212
|
|
1258
1213
|
|
1259
1214
|
|
@@ -1274,12 +1229,11 @@ SwaggerAemClient.configure do |config|
|
|
1274
1229
|
end
|
1275
1230
|
|
1276
1231
|
api_instance = SwaggerAemClient::SlingApi.new
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
alias_type_hint: "alias_type_hint_example", # String |
|
1232
|
+
opts = {
|
1233
|
+
_alias: '_alias_example', # String |
|
1234
|
+
alias_type_hint: 'alias_type_hint_example', # String |
|
1281
1235
|
dav_create_absolute_uri: true, # BOOLEAN |
|
1282
|
-
dav_create_absolute_uri_type_hint:
|
1236
|
+
dav_create_absolute_uri_type_hint: 'dav_create_absolute_uri_type_hint_example' # String |
|
1283
1237
|
}
|
1284
1238
|
|
1285
1239
|
begin
|
@@ -1309,7 +1263,7 @@ nil (empty response body)
|
|
1309
1263
|
### HTTP request headers
|
1310
1264
|
|
1311
1265
|
- **Content-Type**: Not defined
|
1312
|
-
- **Accept**:
|
1266
|
+
- **Accept**: Not defined
|
1313
1267
|
|
1314
1268
|
|
1315
1269
|
|
@@ -1330,16 +1284,15 @@ SwaggerAemClient.configure do |config|
|
|
1330
1284
|
end
|
1331
1285
|
|
1332
1286
|
api_instance = SwaggerAemClient::SlingApi.new
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
json_maximumresults_type_hint: "json_maximumresults_type_hint_example", # String |
|
1287
|
+
opts = {
|
1288
|
+
json_maximumresults: 'json_maximumresults_example', # String |
|
1289
|
+
json_maximumresults_type_hint: 'json_maximumresults_type_hint_example', # String |
|
1337
1290
|
enable_html: true, # BOOLEAN |
|
1338
|
-
enable_html_type_hint:
|
1291
|
+
enable_html_type_hint: 'enable_html_type_hint_example', # String |
|
1339
1292
|
enable_txt: true, # BOOLEAN |
|
1340
|
-
enable_txt_type_hint:
|
1293
|
+
enable_txt_type_hint: 'enable_txt_type_hint_example', # String |
|
1341
1294
|
enable_xml: true, # BOOLEAN |
|
1342
|
-
enable_xml_type_hint:
|
1295
|
+
enable_xml_type_hint: 'enable_xml_type_hint_example' # String |
|
1343
1296
|
}
|
1344
1297
|
|
1345
1298
|
begin
|
@@ -1373,7 +1326,7 @@ nil (empty response body)
|
|
1373
1326
|
### HTTP request headers
|
1374
1327
|
|
1375
1328
|
- **Content-Type**: Not defined
|
1376
|
-
- **Accept**:
|
1329
|
+
- **Accept**: Not defined
|
1377
1330
|
|
1378
1331
|
|
1379
1332
|
|
@@ -1394,16 +1347,15 @@ SwaggerAemClient.configure do |config|
|
|
1394
1347
|
end
|
1395
1348
|
|
1396
1349
|
api_instance = SwaggerAemClient::SlingApi.new
|
1397
|
-
|
1398
|
-
opts = {
|
1350
|
+
opts = {
|
1399
1351
|
allow_empty: true, # BOOLEAN |
|
1400
|
-
allow_empty_type_hint:
|
1401
|
-
allow_hosts:
|
1402
|
-
allow_hosts_type_hint:
|
1403
|
-
allow_hosts_regexp:
|
1404
|
-
allow_hosts_regexp_type_hint:
|
1405
|
-
filter_methods:
|
1406
|
-
filter_methods_type_hint:
|
1352
|
+
allow_empty_type_hint: 'allow_empty_type_hint_example', # String |
|
1353
|
+
allow_hosts: 'allow_hosts_example', # String |
|
1354
|
+
allow_hosts_type_hint: 'allow_hosts_type_hint_example', # String |
|
1355
|
+
allow_hosts_regexp: 'allow_hosts_regexp_example', # String |
|
1356
|
+
allow_hosts_regexp_type_hint: 'allow_hosts_regexp_type_hint_example', # String |
|
1357
|
+
filter_methods: 'filter_methods_example', # String |
|
1358
|
+
filter_methods_type_hint: 'filter_methods_type_hint_example' # String |
|
1407
1359
|
}
|
1408
1360
|
|
1409
1361
|
begin
|
@@ -1437,7 +1389,7 @@ nil (empty response body)
|
|
1437
1389
|
### HTTP request headers
|
1438
1390
|
|
1439
1391
|
- **Content-Type**: Not defined
|
1440
|
-
- **Accept**:
|
1392
|
+
- **Accept**: Not defined
|
1441
1393
|
|
1442
1394
|
|
1443
1395
|
|
@@ -1458,15 +1410,12 @@ SwaggerAemClient.configure do |config|
|
|
1458
1410
|
end
|
1459
1411
|
|
1460
1412
|
api_instance = SwaggerAemClient::SlingApi.new
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
operation: "operation_example", # String |
|
1468
|
-
delete_authorizable: "delete_authorizable_example", # String |
|
1469
|
-
file: File.new("/path/to/file.txt") # File |
|
1413
|
+
path = 'path_example' # String |
|
1414
|
+
name = 'name_example' # String |
|
1415
|
+
opts = {
|
1416
|
+
operation: 'operation_example', # String |
|
1417
|
+
delete_authorizable: 'delete_authorizable_example', # String |
|
1418
|
+
file: File.new('/path/to/file') # File |
|
1470
1419
|
}
|
1471
1420
|
|
1472
1421
|
begin
|
@@ -1497,7 +1446,7 @@ nil (empty response body)
|
|
1497
1446
|
### HTTP request headers
|
1498
1447
|
|
1499
1448
|
- **Content-Type**: multipart/form-data
|
1500
|
-
- **Accept**:
|
1449
|
+
- **Accept**: Not defined
|
1501
1450
|
|
1502
1451
|
|
1503
1452
|
|
@@ -1518,13 +1467,10 @@ SwaggerAemClient.configure do |config|
|
|
1518
1467
|
end
|
1519
1468
|
|
1520
1469
|
api_instance = SwaggerAemClient::SlingApi.new
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
opts = {
|
1527
|
-
add_members: "add_members_example" # String |
|
1470
|
+
path = 'path_example' # String |
|
1471
|
+
name = 'name_example' # String |
|
1472
|
+
opts = {
|
1473
|
+
add_members: 'add_members_example' # String |
|
1528
1474
|
}
|
1529
1475
|
|
1530
1476
|
begin
|
@@ -1553,7 +1499,7 @@ nil (empty response body)
|
|
1553
1499
|
### HTTP request headers
|
1554
1500
|
|
1555
1501
|
- **Content-Type**: Not defined
|
1556
|
-
- **Accept**:
|
1502
|
+
- **Accept**: Not defined
|
1557
1503
|
|
1558
1504
|
|
1559
1505
|
|
@@ -1574,13 +1520,9 @@ SwaggerAemClient.configure do |config|
|
|
1574
1520
|
end
|
1575
1521
|
|
1576
1522
|
api_instance = SwaggerAemClient::SlingApi.new
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
jcrprimary_type = "jcrprimary_type_example" # String |
|
1581
|
-
|
1582
|
-
name = "name_example" # String |
|
1583
|
-
|
1523
|
+
path = 'path_example' # String |
|
1524
|
+
jcrprimary_type = 'jcrprimary_type_example' # String |
|
1525
|
+
name = 'name_example' # String |
|
1584
1526
|
|
1585
1527
|
begin
|
1586
1528
|
api_instance.post_path(path, jcrprimary_type, name)
|
@@ -1608,7 +1550,7 @@ nil (empty response body)
|
|
1608
1550
|
### HTTP request headers
|
1609
1551
|
|
1610
1552
|
- **Content-Type**: Not defined
|
1611
|
-
- **Accept**:
|
1553
|
+
- **Accept**: Not defined
|
1612
1554
|
|
1613
1555
|
|
1614
1556
|
|
@@ -1629,15 +1571,10 @@ SwaggerAemClient.configure do |config|
|
|
1629
1571
|
end
|
1630
1572
|
|
1631
1573
|
api_instance = SwaggerAemClient::SlingApi.new
|
1632
|
-
|
1633
|
-
path = "path_example" # String |
|
1634
|
-
|
1574
|
+
path = 'path_example' # String |
|
1635
1575
|
p_limit = 3.4 # Float |
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
_1_property_value = "_1_property_value_example" # String |
|
1640
|
-
|
1576
|
+
_1_property = '_1_property_example' # String |
|
1577
|
+
_1_property_value = '_1_property_value_example' # String |
|
1641
1578
|
|
1642
1579
|
begin
|
1643
1580
|
result = api_instance.post_query(path, p_limit, _1_property, _1_property_value)
|
@@ -1688,13 +1625,9 @@ SwaggerAemClient.configure do |config|
|
|
1688
1625
|
end
|
1689
1626
|
|
1690
1627
|
api_instance = SwaggerAemClient::SlingApi.new
|
1691
|
-
|
1692
1628
|
ignoredeactivated = true # BOOLEAN |
|
1693
|
-
|
1694
1629
|
onlymodified = true # BOOLEAN |
|
1695
|
-
|
1696
|
-
path = "path_example" # String |
|
1697
|
-
|
1630
|
+
path = 'path_example' # String |
|
1698
1631
|
|
1699
1632
|
begin
|
1700
1633
|
api_instance.post_tree_activation(ignoredeactivated, onlymodified, path)
|
@@ -1722,7 +1655,7 @@ nil (empty response body)
|
|
1722
1655
|
### HTTP request headers
|
1723
1656
|
|
1724
1657
|
- **Content-Type**: Not defined
|
1725
|
-
- **Accept**:
|
1658
|
+
- **Accept**: Not defined
|
1726
1659
|
|
1727
1660
|
|
1728
1661
|
|
@@ -1743,14 +1676,13 @@ SwaggerAemClient.configure do |config|
|
|
1743
1676
|
end
|
1744
1677
|
|
1745
1678
|
api_instance = SwaggerAemClient::SlingApi.new
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
certificate: File.new("/path/to/file.txt") # File |
|
1679
|
+
opts = {
|
1680
|
+
operation: 'operation_example', # String |
|
1681
|
+
new_password: 'new_password_example', # String |
|
1682
|
+
re_password: 're_password_example', # String |
|
1683
|
+
key_store_type: 'key_store_type_example', # String |
|
1684
|
+
remove_alias: 'remove_alias_example', # String |
|
1685
|
+
certificate: File.new('/path/to/file') # File |
|
1754
1686
|
}
|
1755
1687
|
|
1756
1688
|
begin
|
@@ -1804,9 +1736,8 @@ SwaggerAemClient.configure do |config|
|
|
1804
1736
|
end
|
1805
1737
|
|
1806
1738
|
api_instance = SwaggerAemClient::SlingApi.new
|
1807
|
-
|
1808
|
-
|
1809
|
-
truststore_p12: File.new("/path/to/file.txt") # File |
|
1739
|
+
opts = {
|
1740
|
+
truststore_p12: File.new('/path/to/file') # File |
|
1810
1741
|
}
|
1811
1742
|
|
1812
1743
|
begin
|