swagger_aem 3.0.0 → 3.1.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 +5 -5
- data/README.md +6 -5
- data/docs/ConsoleApi.md +45 -0
- data/docs/SamlConfigurationPropertyItemsBoolean.md +1 -1
- data/docs/SamlConfigurationPropertyItemsLong.md +1 -1
- data/docs/SamlConfigurationPropertyItemsString.md +1 -1
- data/lib/swagger_aem.rb +1 -1
- data/lib/swagger_aem/api/console_api.rb +43 -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 +1 -1
- data/lib/swagger_aem/api/sling_api.rb +1 -1
- 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 +1 -1
- data/lib/swagger_aem/models/keystore_info.rb +1 -1
- data/lib/swagger_aem/models/keystore_items.rb +1 -1
- data/lib/swagger_aem/models/saml_configuration_info.rb +1 -1
- data/lib/swagger_aem/models/saml_configuration_properties.rb +1 -1
- data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +1 -1
- data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +8 -8
- data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +8 -8
- data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +8 -8
- data/lib/swagger_aem/models/truststore_info.rb +1 -1
- data/lib/swagger_aem/models/truststore_items.rb +1 -1
- data/lib/swagger_aem/version.rb +2 -2
- data/spec/api/console_api_spec.rb +10 -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 -1
- data/spec/api/sling_api_spec.rb +1 -1
- 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 +1 -1
- data/spec/models/keystore_info_spec.rb +1 -1
- data/spec/models/keystore_items_spec.rb +1 -1
- data/spec/models/saml_configuration_info_spec.rb +1 -1
- data/spec/models/saml_configuration_properties_spec.rb +1 -1
- data/spec/models/saml_configuration_property_items_array_spec.rb +1 -1
- data/spec/models/saml_configuration_property_items_boolean_spec.rb +2 -2
- data/spec/models/saml_configuration_property_items_long_spec.rb +2 -2
- data/spec/models/saml_configuration_property_items_string_spec.rb +2 -2
- data/spec/models/truststore_info_spec.rb +1 -1
- data/spec/models/truststore_items_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/swagger_aem.gemspec +2 -2
- 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: 356295edd81bc8d4c769be69ca7ee8f9f065369c
|
|
4
|
+
data.tar.gz: 7e8a1e6749c515ebe10228084731605b983879dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7a3864f6ae27a17f32fe86f0776eeab63cf17d265cf938918eda8e6ceb16e3f0d541ce2269724a1710bf751580e27f82be3fb19cfa790d34b2550c24c45ad94
|
|
7
|
+
data.tar.gz: 114ca231ac562594a23bfc70556819a37f026ff8df289026a637fca3144519abcee9bf4a09439eb3086ec790b6dacaf9968fce2a5e77c51cf7bdfed750e227ab
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
swagger_aem (3.
|
|
4
|
+
swagger_aem (3.1.0)
|
|
5
5
|
json (~> 2.1, >= 2.1.0)
|
|
6
6
|
typhoeus (~> 1.0, >= 1.0.1)
|
|
7
7
|
|
|
@@ -22,10 +22,10 @@ GEM
|
|
|
22
22
|
diff-lcs (1.3)
|
|
23
23
|
ethon (0.12.0)
|
|
24
24
|
ffi (>= 1.3.0)
|
|
25
|
-
ffi (1.
|
|
26
|
-
hashdiff (0.
|
|
25
|
+
ffi (1.11.1)
|
|
26
|
+
hashdiff (0.4.0)
|
|
27
27
|
json (2.2.0)
|
|
28
|
-
public_suffix (3.0
|
|
28
|
+
public_suffix (3.1.0)
|
|
29
29
|
rake (12.0.0)
|
|
30
30
|
rspec (3.8.0)
|
|
31
31
|
rspec-core (~> 3.8.0)
|
|
@@ -66,4 +66,4 @@ DEPENDENCIES
|
|
|
66
66
|
webmock (~> 1.24, >= 1.24.3)
|
|
67
67
|
|
|
68
68
|
BUNDLED WITH
|
|
69
|
-
|
|
69
|
+
1.17.3
|
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 [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
|
-
- API version: 3.
|
|
10
|
-
- Package version: 3.
|
|
9
|
+
- API version: 3.1.0
|
|
10
|
+
- Package version: 3.1.0
|
|
11
11
|
- Build package: org.openapitools.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-3.
|
|
27
|
+
gem install ./swagger_aem-3.1.0.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-3.
|
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-3.1.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', '~> 3.
|
|
35
|
+
gem 'swagger_aem', '~> 3.1.0'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -80,6 +80,7 @@ All URIs are relative to *http://localhost*
|
|
|
80
80
|
Class | Method | HTTP request | Description
|
|
81
81
|
------------ | ------------- | ------------- | -------------
|
|
82
82
|
*SwaggerAemClient::ConsoleApi* | [**get_aem_product_info**](docs/ConsoleApi.md#get_aem_product_info) | **GET** /system/console/status-productinfo.json |
|
|
83
|
+
*SwaggerAemClient::ConsoleApi* | [**get_config_mgr**](docs/ConsoleApi.md#get_config_mgr) | **GET** /system/console/configMgr |
|
|
83
84
|
*SwaggerAemClient::ConsoleApi* | [**post_bundle**](docs/ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
|
|
84
85
|
*SwaggerAemClient::ConsoleApi* | [**post_jmx_repository**](docs/ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type=Repository/op/{action} |
|
|
85
86
|
*SwaggerAemClient::ConsoleApi* | [**post_saml_configuration**](docs/ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
|
data/docs/ConsoleApi.md
CHANGED
|
@@ -5,6 +5,7 @@ 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=Repository/op/{action} |
|
|
10
11
|
[**post_saml_configuration**](ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
|
|
@@ -54,6 +55,50 @@ This endpoint does not need any parameter.
|
|
|
54
55
|
|
|
55
56
|
|
|
56
57
|
|
|
58
|
+
# **get_config_mgr**
|
|
59
|
+
> String get_config_mgr
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### Example
|
|
64
|
+
```ruby
|
|
65
|
+
# load the gem
|
|
66
|
+
require 'swagger_aem'
|
|
67
|
+
# setup authorization
|
|
68
|
+
SwaggerAemClient.configure do |config|
|
|
69
|
+
# Configure HTTP basic authorization: aemAuth
|
|
70
|
+
config.username = 'YOUR USERNAME'
|
|
71
|
+
config.password = 'YOUR PASSWORD'
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
api_instance = SwaggerAemClient::ConsoleApi.new
|
|
75
|
+
|
|
76
|
+
begin
|
|
77
|
+
result = api_instance.get_config_mgr
|
|
78
|
+
p result
|
|
79
|
+
rescue SwaggerAemClient::ApiError => e
|
|
80
|
+
puts "Exception when calling ConsoleApi->get_config_mgr: #{e}"
|
|
81
|
+
end
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### Parameters
|
|
85
|
+
This endpoint does not need any parameter.
|
|
86
|
+
|
|
87
|
+
### Return type
|
|
88
|
+
|
|
89
|
+
**String**
|
|
90
|
+
|
|
91
|
+
### Authorization
|
|
92
|
+
|
|
93
|
+
[aemAuth](../README.md#aemAuth)
|
|
94
|
+
|
|
95
|
+
### HTTP request headers
|
|
96
|
+
|
|
97
|
+
- **Content-Type**: Not defined
|
|
98
|
+
- **Accept**: text/xml
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
57
102
|
# **post_bundle**
|
|
58
103
|
> post_bundle(name, action)
|
|
59
104
|
|
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**optional** | **BOOLEAN** | True if optional | [optional]
|
|
8
8
|
**is_set** | **BOOLEAN** | True if property is set | [optional]
|
|
9
9
|
**type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
|
|
10
|
-
**
|
|
10
|
+
**value** | **BOOLEAN** | Property value | [optional]
|
|
11
11
|
**description** | **String** | Property description | [optional]
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**optional** | **BOOLEAN** | True if optional | [optional]
|
|
8
8
|
**is_set** | **BOOLEAN** | True if property is set | [optional]
|
|
9
9
|
**type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
|
|
10
|
-
**
|
|
10
|
+
**value** | **Integer** | Property value | [optional]
|
|
11
11
|
**description** | **String** | Property description | [optional]
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**optional** | **BOOLEAN** | True if optional | [optional]
|
|
8
8
|
**is_set** | **BOOLEAN** | True if property is set | [optional]
|
|
9
9
|
**type** | **Integer** | Property type, 1=String, 3=long, 11=boolean, 12=Password | [optional]
|
|
10
|
-
**
|
|
10
|
+
**value** | **String** | Property value | [optional]
|
|
11
11
|
**description** | **String** | Property description | [optional]
|
|
12
12
|
|
|
13
13
|
|
data/lib/swagger_aem.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -61,6 +61,48 @@ module SwaggerAemClient
|
|
|
61
61
|
end
|
|
62
62
|
return data, status_code, headers
|
|
63
63
|
end
|
|
64
|
+
# @param [Hash] opts the optional parameters
|
|
65
|
+
# @return [String]
|
|
66
|
+
def get_config_mgr(opts = {})
|
|
67
|
+
data, _status_code, _headers = get_config_mgr_with_http_info(opts)
|
|
68
|
+
data
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# @param [Hash] opts the optional parameters
|
|
72
|
+
# @return [Array<(String, Fixnum, Hash)>] String data, response status code and response headers
|
|
73
|
+
def get_config_mgr_with_http_info(opts = {})
|
|
74
|
+
if @api_client.config.debugging
|
|
75
|
+
@api_client.config.logger.debug 'Calling API: ConsoleApi.get_config_mgr ...'
|
|
76
|
+
end
|
|
77
|
+
# resource path
|
|
78
|
+
local_var_path = '/system/console/configMgr'
|
|
79
|
+
|
|
80
|
+
# query parameters
|
|
81
|
+
query_params = {}
|
|
82
|
+
|
|
83
|
+
# header parameters
|
|
84
|
+
header_params = {}
|
|
85
|
+
# HTTP header 'Accept' (if needed)
|
|
86
|
+
header_params['Accept'] = @api_client.select_header_accept(['text/xml'])
|
|
87
|
+
|
|
88
|
+
# form parameters
|
|
89
|
+
form_params = {}
|
|
90
|
+
|
|
91
|
+
# http body (model)
|
|
92
|
+
post_body = nil
|
|
93
|
+
auth_names = ['aemAuth']
|
|
94
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
95
|
+
:header_params => header_params,
|
|
96
|
+
:query_params => query_params,
|
|
97
|
+
:form_params => form_params,
|
|
98
|
+
:body => post_body,
|
|
99
|
+
:auth_names => auth_names,
|
|
100
|
+
:return_type => 'String')
|
|
101
|
+
if @api_client.config.debugging
|
|
102
|
+
@api_client.config.logger.debug "API called: ConsoleApi#get_config_mgr\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
103
|
+
end
|
|
104
|
+
return data, status_code, headers
|
|
105
|
+
end
|
|
64
106
|
# @param name
|
|
65
107
|
# @param action
|
|
66
108
|
# @param [Hash] opts the optional parameters
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -27,7 +27,7 @@ module SwaggerAemClient
|
|
|
27
27
|
attr_accessor :type
|
|
28
28
|
|
|
29
29
|
# Property value
|
|
30
|
-
attr_accessor :
|
|
30
|
+
attr_accessor :value
|
|
31
31
|
|
|
32
32
|
# Property description
|
|
33
33
|
attr_accessor :description
|
|
@@ -39,7 +39,7 @@ module SwaggerAemClient
|
|
|
39
39
|
:'optional' => :'optional',
|
|
40
40
|
:'is_set' => :'is_set',
|
|
41
41
|
:'type' => :'type',
|
|
42
|
-
:'
|
|
42
|
+
:'value' => :'value',
|
|
43
43
|
:'description' => :'description'
|
|
44
44
|
}
|
|
45
45
|
end
|
|
@@ -51,7 +51,7 @@ module SwaggerAemClient
|
|
|
51
51
|
:'optional' => :'BOOLEAN',
|
|
52
52
|
:'is_set' => :'BOOLEAN',
|
|
53
53
|
:'type' => :'Integer',
|
|
54
|
-
:'
|
|
54
|
+
:'value' => :'BOOLEAN',
|
|
55
55
|
:'description' => :'String'
|
|
56
56
|
}
|
|
57
57
|
end
|
|
@@ -80,8 +80,8 @@ module SwaggerAemClient
|
|
|
80
80
|
self.type = attributes[:'type']
|
|
81
81
|
end
|
|
82
82
|
|
|
83
|
-
if attributes.has_key?(:'
|
|
84
|
-
self.
|
|
83
|
+
if attributes.has_key?(:'value')
|
|
84
|
+
self.value = attributes[:'value']
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
if attributes.has_key?(:'description')
|
|
@@ -111,7 +111,7 @@ module SwaggerAemClient
|
|
|
111
111
|
optional == o.optional &&
|
|
112
112
|
is_set == o.is_set &&
|
|
113
113
|
type == o.type &&
|
|
114
|
-
|
|
114
|
+
value == o.value &&
|
|
115
115
|
description == o.description
|
|
116
116
|
end
|
|
117
117
|
|
|
@@ -124,7 +124,7 @@ module SwaggerAemClient
|
|
|
124
124
|
# Calculates hash code according to all attributes.
|
|
125
125
|
# @return [Fixnum] Hash code
|
|
126
126
|
def hash
|
|
127
|
-
[name, optional, is_set, type,
|
|
127
|
+
[name, optional, is_set, type, value, description].hash
|
|
128
128
|
end
|
|
129
129
|
|
|
130
130
|
# Builds the object from hash
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -27,7 +27,7 @@ module SwaggerAemClient
|
|
|
27
27
|
attr_accessor :type
|
|
28
28
|
|
|
29
29
|
# Property value
|
|
30
|
-
attr_accessor :
|
|
30
|
+
attr_accessor :value
|
|
31
31
|
|
|
32
32
|
# Property description
|
|
33
33
|
attr_accessor :description
|
|
@@ -39,7 +39,7 @@ module SwaggerAemClient
|
|
|
39
39
|
:'optional' => :'optional',
|
|
40
40
|
:'is_set' => :'is_set',
|
|
41
41
|
:'type' => :'type',
|
|
42
|
-
:'
|
|
42
|
+
:'value' => :'value',
|
|
43
43
|
:'description' => :'description'
|
|
44
44
|
}
|
|
45
45
|
end
|
|
@@ -51,7 +51,7 @@ module SwaggerAemClient
|
|
|
51
51
|
:'optional' => :'BOOLEAN',
|
|
52
52
|
:'is_set' => :'BOOLEAN',
|
|
53
53
|
:'type' => :'Integer',
|
|
54
|
-
:'
|
|
54
|
+
:'value' => :'Integer',
|
|
55
55
|
:'description' => :'String'
|
|
56
56
|
}
|
|
57
57
|
end
|
|
@@ -80,8 +80,8 @@ module SwaggerAemClient
|
|
|
80
80
|
self.type = attributes[:'type']
|
|
81
81
|
end
|
|
82
82
|
|
|
83
|
-
if attributes.has_key?(:'
|
|
84
|
-
self.
|
|
83
|
+
if attributes.has_key?(:'value')
|
|
84
|
+
self.value = attributes[:'value']
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
if attributes.has_key?(:'description')
|
|
@@ -111,7 +111,7 @@ module SwaggerAemClient
|
|
|
111
111
|
optional == o.optional &&
|
|
112
112
|
is_set == o.is_set &&
|
|
113
113
|
type == o.type &&
|
|
114
|
-
|
|
114
|
+
value == o.value &&
|
|
115
115
|
description == o.description
|
|
116
116
|
end
|
|
117
117
|
|
|
@@ -124,7 +124,7 @@ module SwaggerAemClient
|
|
|
124
124
|
# Calculates hash code according to all attributes.
|
|
125
125
|
# @return [Fixnum] Hash code
|
|
126
126
|
def hash
|
|
127
|
-
[name, optional, is_set, type,
|
|
127
|
+
[name, optional, is_set, type, value, description].hash
|
|
128
128
|
end
|
|
129
129
|
|
|
130
130
|
# Builds the object from hash
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -27,7 +27,7 @@ module SwaggerAemClient
|
|
|
27
27
|
attr_accessor :type
|
|
28
28
|
|
|
29
29
|
# Property value
|
|
30
|
-
attr_accessor :
|
|
30
|
+
attr_accessor :value
|
|
31
31
|
|
|
32
32
|
# Property description
|
|
33
33
|
attr_accessor :description
|
|
@@ -39,7 +39,7 @@ module SwaggerAemClient
|
|
|
39
39
|
:'optional' => :'optional',
|
|
40
40
|
:'is_set' => :'is_set',
|
|
41
41
|
:'type' => :'type',
|
|
42
|
-
:'
|
|
42
|
+
:'value' => :'value',
|
|
43
43
|
:'description' => :'description'
|
|
44
44
|
}
|
|
45
45
|
end
|
|
@@ -51,7 +51,7 @@ module SwaggerAemClient
|
|
|
51
51
|
:'optional' => :'BOOLEAN',
|
|
52
52
|
:'is_set' => :'BOOLEAN',
|
|
53
53
|
:'type' => :'Integer',
|
|
54
|
-
:'
|
|
54
|
+
:'value' => :'String',
|
|
55
55
|
:'description' => :'String'
|
|
56
56
|
}
|
|
57
57
|
end
|
|
@@ -80,8 +80,8 @@ module SwaggerAemClient
|
|
|
80
80
|
self.type = attributes[:'type']
|
|
81
81
|
end
|
|
82
82
|
|
|
83
|
-
if attributes.has_key?(:'
|
|
84
|
-
self.
|
|
83
|
+
if attributes.has_key?(:'value')
|
|
84
|
+
self.value = attributes[:'value']
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
if attributes.has_key?(:'description')
|
|
@@ -111,7 +111,7 @@ module SwaggerAemClient
|
|
|
111
111
|
optional == o.optional &&
|
|
112
112
|
is_set == o.is_set &&
|
|
113
113
|
type == o.type &&
|
|
114
|
-
|
|
114
|
+
value == o.value &&
|
|
115
115
|
description == o.description
|
|
116
116
|
end
|
|
117
117
|
|
|
@@ -124,7 +124,7 @@ module SwaggerAemClient
|
|
|
124
124
|
# Calculates hash code according to all attributes.
|
|
125
125
|
# @return [Fixnum] Hash code
|
|
126
126
|
def hash
|
|
127
|
-
[name, optional, is_set, type,
|
|
127
|
+
[name, optional, is_set, type, value, description].hash
|
|
128
128
|
end
|
|
129
129
|
|
|
130
130
|
# Builds the object from hash
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/lib/swagger_aem/version.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 3.
|
|
6
|
+
OpenAPI spec version: 3.1.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -11,5 +11,5 @@ OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module SwaggerAemClient
|
|
14
|
-
VERSION = '3.
|
|
14
|
+
VERSION = '3.1.0'
|
|
15
15
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -41,6 +41,15 @@ describe 'ConsoleApi' do
|
|
|
41
41
|
end
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
# unit tests for get_config_mgr
|
|
45
|
+
# @param [Hash] opts the optional parameters
|
|
46
|
+
# @return [String]
|
|
47
|
+
describe 'get_config_mgr test' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
44
53
|
# unit tests for post_bundle
|
|
45
54
|
# @param name
|
|
46
55
|
# @param action
|
data/spec/api/cq_api_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/spec/api/crx_api_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/spec/api/custom_api_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/spec/api/sling_api_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/spec/api_client_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/spec/configuration_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -56,7 +56,7 @@ describe 'SamlConfigurationPropertyItemsBoolean' do
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
describe 'test attribute "
|
|
59
|
+
describe 'test attribute "value"' do
|
|
60
60
|
it 'should work' do
|
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
62
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -56,7 +56,7 @@ describe 'SamlConfigurationPropertyItemsLong' do
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
describe 'test attribute "
|
|
59
|
+
describe 'test attribute "value"' do
|
|
60
60
|
it 'should work' do
|
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
62
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -56,7 +56,7 @@ describe 'SamlConfigurationPropertyItemsString' do
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
describe 'test attribute "
|
|
59
|
+
describe 'test attribute "value"' do
|
|
60
60
|
it 'should work' do
|
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
62
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/spec/spec_helper.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version:
|
|
6
|
+
OpenAPI spec version: 3.1.0-pre.0
|
|
7
7
|
Contact: opensource@shinesolutions.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
data/swagger_aem.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
7
7
|
|
|
8
|
-
OpenAPI spec version: 3.
|
|
8
|
+
OpenAPI spec version: 3.1.0
|
|
9
9
|
Contact: opensource@shinesolutions.com
|
|
10
10
|
Generated by: https://openapi-generator.tech
|
|
11
11
|
OpenAPI Generator version: 3.2.1-SNAPSHOT
|
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
|
22
22
|
s.authors = ["Shine Solutions"]
|
|
23
23
|
s.email = ["opensource@shinesolutions.com"]
|
|
24
|
-
s.homepage = "https://github.com/shinesolutions/swagger-aem/tree/master/ruby"
|
|
24
|
+
s.homepage = "https://github.com/shinesolutions/swagger-aem/tree/master/clients/ruby"
|
|
25
25
|
s.summary = "Adobe Experience Manager (AEM) API Ruby Gem"
|
|
26
26
|
s.description = "Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API"
|
|
27
27
|
s.license = 'Apache-2.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swagger_aem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shine Solutions
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -266,7 +266,7 @@ files:
|
|
|
266
266
|
- spec/models/truststore_items_spec.rb
|
|
267
267
|
- spec/spec_helper.rb
|
|
268
268
|
- swagger_aem.gemspec
|
|
269
|
-
homepage: https://github.com/shinesolutions/swagger-aem/tree/master/ruby
|
|
269
|
+
homepage: https://github.com/shinesolutions/swagger-aem/tree/master/clients/ruby
|
|
270
270
|
licenses:
|
|
271
271
|
- Apache-2.0
|
|
272
272
|
metadata: {}
|