swagger_aem 2.5.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -1
  3. data/Gemfile.lock +47 -46
  4. data/README.md +20 -9
  5. data/Rakefile +2 -0
  6. data/docs/ConsoleApi.md +107 -58
  7. data/docs/CqApi.md +14 -13
  8. data/docs/CrxApi.md +60 -60
  9. data/docs/CustomApi.md +27 -24
  10. data/docs/GraniteApi.md +75 -0
  11. data/docs/InlineObject.md +17 -0
  12. data/docs/InlineObject1.md +17 -0
  13. data/docs/InlineObject2.md +17 -0
  14. data/docs/InlineObject3.md +17 -0
  15. data/docs/InlineObject4.md +21 -0
  16. data/docs/InlineObject5.md +19 -0
  17. data/docs/InstallStatus.md +9 -0
  18. data/docs/InstallStatusStatus.md +11 -1
  19. data/docs/KeystoreChainItems.md +13 -0
  20. data/docs/KeystoreInfo.md +11 -1
  21. data/docs/KeystoreItems.md +13 -0
  22. data/docs/SamlConfigurationInfo.md +15 -1
  23. data/docs/SamlConfigurationProperties.md +56 -24
  24. data/docs/SamlConfigurationPropertyItemsArray.md +16 -2
  25. data/docs/SamlConfigurationPropertyItemsBoolean.md +17 -3
  26. data/docs/SamlConfigurationPropertyItemsLong.md +17 -3
  27. data/docs/SamlConfigurationPropertyItemsString.md +17 -3
  28. data/docs/SlingApi.md +482 -445
  29. data/docs/TruststoreInfo.md +11 -1
  30. data/docs/TruststoreItems.md +15 -0
  31. data/git_push.sh +11 -8
  32. data/lib/swagger_aem.rb +10 -3
  33. data/lib/swagger_aem/api/console_api.rb +160 -91
  34. data/lib/swagger_aem/api/cq_api.rb +49 -41
  35. data/lib/swagger_aem/api/crx_api.rb +170 -135
  36. data/lib/swagger_aem/api/custom_api.rb +68 -56
  37. data/lib/swagger_aem/api/granite_api.rb +124 -0
  38. data/lib/swagger_aem/api/sling_api.rb +900 -720
  39. data/lib/swagger_aem/api_client.rb +53 -54
  40. data/lib/swagger_aem/api_error.rb +22 -3
  41. data/lib/swagger_aem/configuration.rb +49 -10
  42. data/lib/swagger_aem/models/inline_object.rb +206 -0
  43. data/lib/swagger_aem/models/inline_object1.rb +206 -0
  44. data/lib/swagger_aem/models/inline_object2.rb +206 -0
  45. data/lib/swagger_aem/models/inline_object3.rb +206 -0
  46. data/lib/swagger_aem/models/inline_object4.rb +224 -0
  47. data/lib/swagger_aem/models/inline_object5.rb +215 -0
  48. data/lib/swagger_aem/models/install_status.rb +43 -25
  49. data/lib/swagger_aem/models/install_status_status.rb +46 -28
  50. data/lib/swagger_aem/models/keystore_chain_items.rb +50 -32
  51. data/lib/swagger_aem/models/keystore_info.rb +45 -27
  52. data/lib/swagger_aem/models/keystore_items.rb +49 -31
  53. data/lib/swagger_aem/models/saml_configuration_info.rb +49 -31
  54. data/lib/swagger_aem/models/saml_configuration_properties.rb +114 -168
  55. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +50 -32
  56. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +56 -38
  57. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +56 -38
  58. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +56 -38
  59. data/lib/swagger_aem/models/truststore_info.rb +45 -27
  60. data/lib/swagger_aem/models/truststore_items.rb +54 -36
  61. data/lib/swagger_aem/version.rb +4 -4
  62. data/spec/api/console_api_spec.rb +17 -16
  63. data/spec/api/cq_api_spec.rb +6 -10
  64. data/spec/api/crx_api_spec.rb +11 -25
  65. data/spec/api/custom_api_spec.rb +7 -13
  66. data/spec/api/granite_api_spec.rb +52 -0
  67. data/spec/api/sling_api_spec.rb +32 -88
  68. data/spec/api_client_spec.rb +37 -37
  69. data/spec/configuration_spec.rb +11 -11
  70. data/spec/models/inline_object1_spec.rb +41 -0
  71. data/spec/models/inline_object2_spec.rb +41 -0
  72. data/spec/models/inline_object3_spec.rb +41 -0
  73. data/spec/models/inline_object4_spec.rb +53 -0
  74. data/spec/models/inline_object5_spec.rb +47 -0
  75. data/spec/models/inline_object_spec.rb +41 -0
  76. data/spec/models/install_status_spec.rb +5 -6
  77. data/spec/models/install_status_status_spec.rb +6 -7
  78. data/spec/models/keystore_chain_items_spec.rb +9 -10
  79. data/spec/models/keystore_info_spec.rb +6 -7
  80. data/spec/models/keystore_items_spec.rb +9 -10
  81. data/spec/models/saml_configuration_info_spec.rb +10 -11
  82. data/spec/models/saml_configuration_properties_spec.rb +28 -29
  83. data/spec/models/saml_configuration_property_items_array_spec.rb +10 -11
  84. data/spec/models/saml_configuration_property_items_boolean_spec.rb +11 -12
  85. data/spec/models/saml_configuration_property_items_long_spec.rb +11 -12
  86. data/spec/models/saml_configuration_property_items_string_spec.rb +11 -12
  87. data/spec/models/truststore_info_spec.rb +6 -7
  88. data/spec/models/truststore_items_spec.rb +11 -12
  89. data/spec/spec_helper.rb +3 -3
  90. data/swagger_aem.gemspec +8 -14
  91. metadata +36 -128
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e4c8f1bd91002eb8cf83998944efae7a9597f5c
4
- data.tar.gz: c984bf472439618d795dc1946bbe4e7e411613f2
3
+ metadata.gz: c517d3caabac4856c39562b8017fb551d04e66fc
4
+ data.tar.gz: 48202019cb203cea36bc52219a42f4c192208e64
5
5
  SHA512:
6
- metadata.gz: 3d8b1a209a5a7643f72e573002d23bebe8a06930522f79088117b9a4bffac2d6c6577ebedef4aae90db8c20b19725ff9e03c2886a8c708531a5c7a7e4c5d5ad4
7
- data.tar.gz: ec08844a3eb6441a4e055f50f6530fa907b3cb9b1983f730cd06fe31ca921a7d94419224dc73c9b6bac79ccdf14a948e4404da61c7eaf89d0c01b527d9fe1d4c
6
+ metadata.gz: ecdc98f1b83d4ae30589521cac8a9be78d285ce9af8cd98d9392941498dda18a5fc5ae740b191a62e28cd125d47021c00f51afe518cae3d45848da605a43caaa
7
+ data.tar.gz: d76f137c4cb64ffa86fdd8575cbef2335aace976e4d49de7ff01443ea7cef7df70e712504a68c603e8376fd69417251a04d6d73a26e21a09c26d8b27059e1122
data/Gemfile CHANGED
@@ -3,5 +3,7 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  group :development, :test do
6
- gem 'rake', '~> 12.0.0'
6
+ gem 'rake', '~> 13.0.1'
7
+ gem 'pry-byebug'
8
+ gem 'rubocop', '~> 0.66.0'
7
9
  end
@@ -1,69 +1,70 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- swagger_aem (2.5.0)
4
+ swagger_aem (3.4.0)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- ZenTest (4.11.2)
12
- addressable (2.6.0)
13
- public_suffix (>= 2.0.2, < 4.0)
14
- autotest (4.4.6)
15
- ZenTest (>= 4.4.1)
16
- autotest-fsevent (0.2.14)
17
- sys-uname
18
- autotest-growl (0.2.16)
19
- autotest-rails-pure (4.1.2)
20
- crack (0.4.3)
21
- safe_yaml (~> 1.0.0)
22
- diff-lcs (1.3)
11
+ ast (2.4.1)
12
+ byebug (11.1.3)
13
+ coderay (1.1.3)
14
+ diff-lcs (1.4.4)
23
15
  ethon (0.12.0)
24
16
  ffi (>= 1.3.0)
25
- ffi (1.10.0)
26
- hashdiff (0.3.8)
27
- json (2.1.0)
28
- public_suffix (3.0.3)
29
- rake (12.0.0)
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)
17
+ ffi (1.13.1)
18
+ jaro_winkler (1.5.4)
19
+ json (2.3.1)
20
+ method_source (1.0.0)
21
+ parallel (1.19.2)
22
+ parser (2.7.1.5)
23
+ ast (~> 2.4.1)
24
+ pry (0.13.1)
25
+ coderay (~> 1.1)
26
+ method_source (~> 1.0)
27
+ pry-byebug (3.9.0)
28
+ byebug (~> 11.0)
29
+ pry (~> 0.13.0)
30
+ psych (3.2.0)
31
+ rainbow (3.0.0)
32
+ rake (13.0.1)
33
+ rspec (3.9.0)
34
+ rspec-core (~> 3.9.0)
35
+ rspec-expectations (~> 3.9.0)
36
+ rspec-mocks (~> 3.9.0)
37
+ rspec-core (3.9.2)
38
+ rspec-support (~> 3.9.3)
39
+ rspec-expectations (3.9.2)
37
40
  diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-mocks (3.8.0)
41
+ rspec-support (~> 3.9.0)
42
+ rspec-mocks (3.9.1)
40
43
  diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.8.0)
42
- rspec-support (3.8.0)
43
- safe_yaml (1.0.4)
44
- sys-uname (1.0.4)
45
- ffi (>= 1.0.0)
46
- typhoeus (1.3.1)
44
+ rspec-support (~> 3.9.0)
45
+ rspec-support (3.9.3)
46
+ rubocop (0.66.0)
47
+ jaro_winkler (~> 1.5.1)
48
+ parallel (~> 1.10)
49
+ parser (>= 2.5, != 2.5.1.1)
50
+ psych (>= 3.1.0)
51
+ rainbow (>= 2.2.2, < 4.0)
52
+ ruby-progressbar (~> 1.7)
53
+ unicode-display_width (>= 1.4.0, < 1.6)
54
+ ruby-progressbar (1.10.1)
55
+ typhoeus (1.4.0)
47
56
  ethon (>= 0.9.0)
48
- vcr (3.0.3)
49
- webmock (1.24.6)
50
- addressable (>= 2.3.6)
51
- crack (>= 0.3.2)
52
- hashdiff
57
+ unicode-display_width (1.5.0)
53
58
 
54
59
  PLATFORMS
55
60
  ruby
56
61
 
57
62
  DEPENDENCIES
58
- autotest (~> 4.4, >= 4.4.6)
59
- autotest-fsevent (~> 0.2, >= 0.2.12)
60
- autotest-growl (~> 0.2, >= 0.2.16)
61
- autotest-rails-pure (~> 4.1, >= 4.1.2)
62
- rake (~> 12.0.0)
63
+ pry-byebug
64
+ rake (~> 13.0.1)
63
65
  rspec (~> 3.6, >= 3.6.0)
66
+ rubocop (~> 0.66.0)
64
67
  swagger_aem!
65
- vcr (~> 3.0, >= 3.0.1)
66
- webmock (~> 1.24, >= 1.24.3)
67
68
 
68
69
  BUNDLED WITH
69
- 1.15.4
70
+ 1.17.3
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 [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
7
+ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
- - API version: 2.4.0
10
- - Package version: 2.5.0
11
- - Build package: io.swagger.codegen.languages.RubyClientCodegen
9
+ - API version: 3.4.0
10
+ - Package version: 3.4.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,16 @@ gem build swagger_aem.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./swagger_aem-2.5.0.gem
27
+ gem install ./swagger_aem-3.4.0.gem
28
28
  ```
29
- (for development, run `gem install --dev ./swagger_aem-2.5.0.gem` to install the development dependencies)
29
+
30
+ (for development, run `gem install --dev ./swagger_aem-3.4.0.gem` to install the development dependencies)
30
31
 
31
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
33
 
33
34
  Finally add this to the Gemfile:
34
35
 
35
- gem 'swagger_aem', '~> 2.5.0'
36
+ gem 'swagger_aem', '~> 3.4.0'
36
37
 
37
38
  ### Install from Git
38
39
 
@@ -51,6 +52,7 @@ ruby -Ilib script.rb
51
52
  ## Getting Started
52
53
 
53
54
  Please follow the [installation](#installation) procedure and then run the following code:
55
+
54
56
  ```ruby
55
57
  # Load the gem
56
58
  require 'swagger_aem'
@@ -58,8 +60,8 @@ require 'swagger_aem'
58
60
  # Setup authorization
59
61
  SwaggerAemClient.configure do |config|
60
62
  # Configure HTTP basic authorization: aemAuth
61
- config.username = 'YOUR USERNAME'
62
- config.password = 'YOUR PASSWORD'
63
+ config.username = 'YOUR_USERNAME'
64
+ config.password = 'YOUR_PASSWORD'
63
65
  end
64
66
 
65
67
  api_instance = SwaggerAemClient::ConsoleApi.new
@@ -80,6 +82,7 @@ All URIs are relative to *http://localhost*
80
82
  Class | Method | HTTP request | Description
81
83
  ------------ | ------------- | ------------- | -------------
82
84
  *SwaggerAemClient::ConsoleApi* | [**get_aem_product_info**](docs/ConsoleApi.md#get_aem_product_info) | **GET** /system/console/status-productinfo.json |
85
+ *SwaggerAemClient::ConsoleApi* | [**get_config_mgr**](docs/ConsoleApi.md#get_config_mgr) | **GET** /system/console/configMgr |
83
86
  *SwaggerAemClient::ConsoleApi* | [**post_bundle**](docs/ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
84
87
  *SwaggerAemClient::ConsoleApi* | [**post_jmx_repository**](docs/ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type&#x3D;Repository/op/{action} |
85
88
  *SwaggerAemClient::ConsoleApi* | [**post_saml_configuration**](docs/ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
@@ -95,6 +98,7 @@ Class | Method | HTTP request | Description
95
98
  *SwaggerAemClient::CustomApi* | [**get_aem_health_check**](docs/CustomApi.md#get_aem_health_check) | **GET** /system/health |
96
99
  *SwaggerAemClient::CustomApi* | [**post_config_aem_health_check_servlet**](docs/CustomApi.md#post_config_aem_health_check_servlet) | **POST** /apps/system/config/com.shinesolutions.healthcheck.hc.impl.ActiveBundleHealthCheck |
97
100
  *SwaggerAemClient::CustomApi* | [**post_config_aem_password_reset**](docs/CustomApi.md#post_config_aem_password_reset) | **POST** /apps/system/config/com.shinesolutions.aem.passwordreset.Activator |
101
+ *SwaggerAemClient::GraniteApi* | [**ssl_setup**](docs/GraniteApi.md#ssl_setup) | **POST** /libs/granite/security/post/sslSetup.html |
98
102
  *SwaggerAemClient::SlingApi* | [**delete_agent**](docs/SlingApi.md#delete_agent) | **DELETE** /etc/replication/agents.{runmode}/{name} |
99
103
  *SwaggerAemClient::SlingApi* | [**delete_node**](docs/SlingApi.md#delete_node) | **DELETE** /{path}/{name} |
100
104
  *SwaggerAemClient::SlingApi* | [**get_agent**](docs/SlingApi.md#get_agent) | **GET** /etc/replication/agents.{runmode}/{name} |
@@ -116,6 +120,7 @@ Class | Method | HTTP request | Description
116
120
  *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 |
117
121
  *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 |
118
122
  *SwaggerAemClient::SlingApi* | [**post_config_apache_sling_referrer_filter**](docs/SlingApi.md#post_config_apache_sling_referrer_filter) | **POST** /apps/system/config/org.apache.sling.security.impl.ReferrerFilter |
123
+ *SwaggerAemClient::SlingApi* | [**post_config_property**](docs/SlingApi.md#post_config_property) | **POST** /apps/system/config/{configNodeName} |
119
124
  *SwaggerAemClient::SlingApi* | [**post_node**](docs/SlingApi.md#post_node) | **POST** /{path}/{name} |
120
125
  *SwaggerAemClient::SlingApi* | [**post_node_rw**](docs/SlingApi.md#post_node_rw) | **POST** /{path}/{name}.rw.html |
121
126
  *SwaggerAemClient::SlingApi* | [**post_path**](docs/SlingApi.md#post_path) | **POST** /{path}/ |
@@ -127,6 +132,12 @@ Class | Method | HTTP request | Description
127
132
 
128
133
  ## Documentation for Models
129
134
 
135
+ - [SwaggerAemClient::InlineObject](docs/InlineObject.md)
136
+ - [SwaggerAemClient::InlineObject1](docs/InlineObject1.md)
137
+ - [SwaggerAemClient::InlineObject2](docs/InlineObject2.md)
138
+ - [SwaggerAemClient::InlineObject3](docs/InlineObject3.md)
139
+ - [SwaggerAemClient::InlineObject4](docs/InlineObject4.md)
140
+ - [SwaggerAemClient::InlineObject5](docs/InlineObject5.md)
130
141
  - [SwaggerAemClient::InstallStatus](docs/InstallStatus.md)
131
142
  - [SwaggerAemClient::InstallStatusStatus](docs/InstallStatusStatus.md)
132
143
  - [SwaggerAemClient::KeystoreChainItems](docs/KeystoreChainItems.md)
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ require "bundler/gem_tasks"
2
+
1
3
  begin
2
4
  require 'rspec/core/rake_task'
3
5
 
@@ -5,17 +5,21 @@ All URIs are relative to *http://localhost*
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
7
  [**get_aem_product_info**](ConsoleApi.md#get_aem_product_info) | **GET** /system/console/status-productinfo.json |
8
+ [**get_config_mgr**](ConsoleApi.md#get_config_mgr) | **GET** /system/console/configMgr |
8
9
  [**post_bundle**](ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
9
10
  [**post_jmx_repository**](ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type&#x3D;Repository/op/{action} |
10
11
  [**post_saml_configuration**](ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
11
12
 
12
13
 
13
- # **get_aem_product_info**
14
+
15
+ ## get_aem_product_info
16
+
14
17
  > Array&lt;String&gt; get_aem_product_info
15
18
 
16
19
 
17
20
 
18
21
  ### Example
22
+
19
23
  ```ruby
20
24
  # load the gem
21
25
  require 'swagger_aem'
@@ -37,6 +41,7 @@ end
37
41
  ```
38
42
 
39
43
  ### Parameters
44
+
40
45
  This endpoint does not need any parameter.
41
46
 
42
47
  ### Return type
@@ -49,17 +54,18 @@ This endpoint does not need any parameter.
49
54
 
50
55
  ### HTTP request headers
51
56
 
52
- - **Content-Type**: Not defined
53
- - **Accept**: application/json
57
+ - **Content-Type**: Not defined
58
+ - **Accept**: application/json
54
59
 
55
60
 
61
+ ## get_config_mgr
56
62
 
57
- # **post_bundle**
58
- > post_bundle(name, action)
63
+ > String get_config_mgr
59
64
 
60
65
 
61
66
 
62
67
  ### Example
68
+
63
69
  ```ruby
64
70
  # load the gem
65
71
  require 'swagger_aem'
@@ -72,10 +78,53 @@ end
72
78
 
73
79
  api_instance = SwaggerAemClient::ConsoleApi.new
74
80
 
75
- name = "name_example" # String |
81
+ begin
82
+ result = api_instance.get_config_mgr
83
+ p result
84
+ rescue SwaggerAemClient::ApiError => e
85
+ puts "Exception when calling ConsoleApi->get_config_mgr: #{e}"
86
+ end
87
+ ```
88
+
89
+ ### Parameters
76
90
 
77
- action = "action_example" # String |
91
+ This endpoint does not need any parameter.
78
92
 
93
+ ### Return type
94
+
95
+ **String**
96
+
97
+ ### Authorization
98
+
99
+ [aemAuth](../README.md#aemAuth)
100
+
101
+ ### HTTP request headers
102
+
103
+ - **Content-Type**: Not defined
104
+ - **Accept**: text/xml
105
+
106
+
107
+ ## post_bundle
108
+
109
+ > post_bundle(name, action)
110
+
111
+
112
+
113
+ ### Example
114
+
115
+ ```ruby
116
+ # load the gem
117
+ require 'swagger_aem'
118
+ # setup authorization
119
+ SwaggerAemClient.configure do |config|
120
+ # Configure HTTP basic authorization: aemAuth
121
+ config.username = 'YOUR USERNAME'
122
+ config.password = 'YOUR PASSWORD'
123
+ end
124
+
125
+ api_instance = SwaggerAemClient::ConsoleApi.new
126
+ name = 'name_example' # String |
127
+ action = 'action_example' # String |
79
128
 
80
129
  begin
81
130
  api_instance.post_bundle(name, action)
@@ -86,6 +135,7 @@ end
86
135
 
87
136
  ### Parameters
88
137
 
138
+
89
139
  Name | Type | Description | Notes
90
140
  ------------- | ------------- | ------------- | -------------
91
141
  **name** | **String**| |
@@ -101,17 +151,18 @@ nil (empty response body)
101
151
 
102
152
  ### HTTP request headers
103
153
 
104
- - **Content-Type**: Not defined
105
- - **Accept**: text/plain
154
+ - **Content-Type**: Not defined
155
+ - **Accept**: Not defined
106
156
 
107
157
 
158
+ ## post_jmx_repository
108
159
 
109
- # **post_jmx_repository**
110
160
  > post_jmx_repository(action)
111
161
 
112
162
 
113
163
 
114
164
  ### Example
165
+
115
166
  ```ruby
116
167
  # load the gem
117
168
  require 'swagger_aem'
@@ -123,9 +174,7 @@ SwaggerAemClient.configure do |config|
123
174
  end
124
175
 
125
176
  api_instance = SwaggerAemClient::ConsoleApi.new
126
-
127
- action = "action_example" # String |
128
-
177
+ action = 'action_example' # String |
129
178
 
130
179
  begin
131
180
  api_instance.post_jmx_repository(action)
@@ -136,6 +185,7 @@ end
136
185
 
137
186
  ### Parameters
138
187
 
188
+
139
189
  Name | Type | Description | Notes
140
190
  ------------- | ------------- | ------------- | -------------
141
191
  **action** | **String**| |
@@ -150,17 +200,18 @@ nil (empty response body)
150
200
 
151
201
  ### HTTP request headers
152
202
 
153
- - **Content-Type**: Not defined
154
- - **Accept**: text/plain
203
+ - **Content-Type**: Not defined
204
+ - **Accept**: Not defined
155
205
 
156
206
 
207
+ ## post_saml_configuration
157
208
 
158
- # **post_saml_configuration**
159
209
  > SamlConfigurationInfo post_saml_configuration(opts)
160
210
 
161
211
 
162
212
 
163
213
  ### Example
214
+
164
215
  ```ruby
165
216
  # load the gem
166
217
  require 'swagger_aem'
@@ -172,38 +223,37 @@ SwaggerAemClient.configure do |config|
172
223
  end
173
224
 
174
225
  api_instance = SwaggerAemClient::ConsoleApi.new
175
-
176
- opts = {
177
- post: true, # BOOLEAN |
178
- apply: true, # BOOLEAN |
179
- delete: true, # BOOLEAN |
180
- action: "action_example", # String |
181
- location: "location_example", # String |
182
- path: ["path_example"], # Array<String> |
226
+ opts = {
227
+ post: true, # Boolean |
228
+ apply: true, # Boolean |
229
+ delete: true, # Boolean |
230
+ action: 'action_example', # String |
231
+ location: 'location_example', # String |
232
+ path: ['path_example'], # Array<String> |
183
233
  service_ranking: 56, # Integer |
184
- idp_url: "idp_url_example", # String |
185
- idp_cert_alias: "idp_cert_alias_example", # String |
186
- idp_http_redirect: true, # BOOLEAN |
187
- service_provider_entity_id: "service_provider_entity_id_example", # String |
188
- assertion_consumer_service_url: "assertion_consumer_service_url_example", # String |
189
- sp_private_key_alias: "sp_private_key_alias_example", # String |
190
- key_store_password: "key_store_password_example", # String |
191
- default_redirect_url: "default_redirect_url_example", # String |
192
- user_id_attribute: "user_id_attribute_example", # String |
193
- use_encryption: true, # BOOLEAN |
194
- create_user: true, # BOOLEAN |
195
- add_group_memberships: true, # BOOLEAN |
196
- group_membership_attribute: "group_membership_attribute_example", # String |
197
- default_groups: ["default_groups_example"], # Array<String> |
198
- name_id_format: "name_id_format_example", # String |
199
- synchronize_attributes: ["synchronize_attributes_example"], # Array<String> |
200
- handle_logout: true, # BOOLEAN |
201
- logout_url: "logout_url_example", # String |
234
+ idp_url: 'idp_url_example', # String |
235
+ idp_cert_alias: 'idp_cert_alias_example', # String |
236
+ idp_http_redirect: true, # Boolean |
237
+ service_provider_entity_id: 'service_provider_entity_id_example', # String |
238
+ assertion_consumer_service_url: 'assertion_consumer_service_url_example', # String |
239
+ sp_private_key_alias: 'sp_private_key_alias_example', # String |
240
+ key_store_password: 'key_store_password_example', # String |
241
+ default_redirect_url: 'default_redirect_url_example', # String |
242
+ user_id_attribute: 'user_id_attribute_example', # String |
243
+ use_encryption: true, # Boolean |
244
+ create_user: true, # Boolean |
245
+ add_group_memberships: true, # Boolean |
246
+ group_membership_attribute: 'group_membership_attribute_example', # String |
247
+ default_groups: ['default_groups_example'], # Array<String> |
248
+ name_id_format: 'name_id_format_example', # String |
249
+ synchronize_attributes: ['synchronize_attributes_example'], # Array<String> |
250
+ handle_logout: true, # Boolean |
251
+ logout_url: 'logout_url_example', # String |
202
252
  clock_tolerance: 56, # Integer |
203
- digest_method: "digest_method_example", # String |
204
- signature_method: "signature_method_example", # String |
205
- user_intermediate_path: "user_intermediate_path_example", # String |
206
- propertylist: ["propertylist_example"] # Array<String> |
253
+ digest_method: 'digest_method_example', # String |
254
+ signature_method: 'signature_method_example', # String |
255
+ user_intermediate_path: 'user_intermediate_path_example', # String |
256
+ propertylist: ['propertylist_example'] # Array<String> |
207
257
  }
208
258
 
209
259
  begin
@@ -216,32 +266,33 @@ end
216
266
 
217
267
  ### Parameters
218
268
 
269
+
219
270
  Name | Type | Description | Notes
220
271
  ------------- | ------------- | ------------- | -------------
221
- **post** | **BOOLEAN**| | [optional]
222
- **apply** | **BOOLEAN**| | [optional]
223
- **delete** | **BOOLEAN**| | [optional]
272
+ **post** | **Boolean**| | [optional]
273
+ **apply** | **Boolean**| | [optional]
274
+ **delete** | **Boolean**| | [optional]
224
275
  **action** | **String**| | [optional]
225
276
  **location** | **String**| | [optional]
226
277
  **path** | [**Array&lt;String&gt;**](String.md)| | [optional]
227
278
  **service_ranking** | **Integer**| | [optional]
228
279
  **idp_url** | **String**| | [optional]
229
280
  **idp_cert_alias** | **String**| | [optional]
230
- **idp_http_redirect** | **BOOLEAN**| | [optional]
281
+ **idp_http_redirect** | **Boolean**| | [optional]
231
282
  **service_provider_entity_id** | **String**| | [optional]
232
283
  **assertion_consumer_service_url** | **String**| | [optional]
233
284
  **sp_private_key_alias** | **String**| | [optional]
234
285
  **key_store_password** | **String**| | [optional]
235
286
  **default_redirect_url** | **String**| | [optional]
236
287
  **user_id_attribute** | **String**| | [optional]
237
- **use_encryption** | **BOOLEAN**| | [optional]
238
- **create_user** | **BOOLEAN**| | [optional]
239
- **add_group_memberships** | **BOOLEAN**| | [optional]
288
+ **use_encryption** | **Boolean**| | [optional]
289
+ **create_user** | **Boolean**| | [optional]
290
+ **add_group_memberships** | **Boolean**| | [optional]
240
291
  **group_membership_attribute** | **String**| | [optional]
241
292
  **default_groups** | [**Array&lt;String&gt;**](String.md)| | [optional]
242
293
  **name_id_format** | **String**| | [optional]
243
294
  **synchronize_attributes** | [**Array&lt;String&gt;**](String.md)| | [optional]
244
- **handle_logout** | **BOOLEAN**| | [optional]
295
+ **handle_logout** | **Boolean**| | [optional]
245
296
  **logout_url** | **String**| | [optional]
246
297
  **clock_tolerance** | **Integer**| | [optional]
247
298
  **digest_method** | **String**| | [optional]
@@ -259,8 +310,6 @@ Name | Type | Description | Notes
259
310
 
260
311
  ### HTTP request headers
261
312
 
262
- - **Content-Type**: Not defined
263
- - **Accept**: text/plain
264
-
265
-
313
+ - **Content-Type**: Not defined
314
+ - **Accept**: text/plain
266
315