swagger_aem 3.4.0 → 3.6.2
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 +1 -1
- data/Gemfile.lock +33 -30
- data/README.md +9 -5
- data/docs/BundleData.md +33 -0
- data/docs/BundleDataProp.md +19 -0
- data/docs/BundleInfo.md +21 -0
- data/docs/ConsoleApi.md +51 -0
- data/lib/swagger_aem/api/console_api.rb +59 -1
- data/lib/swagger_aem/api/cq_api.rb +1 -1
- data/lib/swagger_aem/api/crx_api.rb +3 -3
- data/lib/swagger_aem/api/custom_api.rb +1 -1
- data/lib/swagger_aem/api/granite_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/bundle_data.rb +288 -0
- data/lib/swagger_aem/models/bundle_data_prop.rb +217 -0
- data/lib/swagger_aem/models/bundle_info.rb +229 -0
- data/lib/swagger_aem/models/inline_object.rb +1 -1
- data/lib/swagger_aem/models/inline_object1.rb +1 -1
- data/lib/swagger_aem/models/inline_object2.rb +1 -1
- data/lib/swagger_aem/models/inline_object3.rb +1 -1
- data/lib/swagger_aem/models/inline_object4.rb +1 -1
- data/lib/swagger_aem/models/inline_object5.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 +1 -1
- data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +1 -1
- data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +1 -1
- 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/lib/swagger_aem.rb +4 -1
- data/spec/api/console_api_spec.rb +22 -12
- data/spec/api/cq_api_spec.rb +4 -4
- data/spec/api/crx_api_spec.rb +6 -6
- data/spec/api/custom_api_spec.rb +5 -5
- data/spec/api/granite_api_spec.rb +2 -2
- data/spec/api/sling_api_spec.rb +76 -66
- data/spec/api_client_spec.rb +3 -3
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/bundle_data_prop_spec.rb +40 -0
- data/spec/models/bundle_data_spec.rb +82 -0
- data/spec/models/bundle_info_spec.rb +46 -0
- data/spec/models/inline_object1_spec.rb +2 -2
- data/spec/models/inline_object2_spec.rb +2 -2
- data/spec/models/inline_object3_spec.rb +2 -2
- data/spec/models/inline_object4_spec.rb +2 -2
- data/spec/models/inline_object5_spec.rb +2 -2
- data/spec/models/inline_object_spec.rb +2 -2
- data/spec/models/install_status_spec.rb +5 -12
- data/spec/models/install_status_status_spec.rb +5 -12
- data/spec/models/keystore_chain_items_spec.rb +5 -12
- data/spec/models/keystore_info_spec.rb +5 -12
- data/spec/models/keystore_items_spec.rb +5 -12
- data/spec/models/saml_configuration_info_spec.rb +5 -12
- data/spec/models/saml_configuration_properties_spec.rb +5 -12
- data/spec/models/saml_configuration_property_items_array_spec.rb +5 -12
- data/spec/models/saml_configuration_property_items_boolean_spec.rb +5 -12
- data/spec/models/saml_configuration_property_items_long_spec.rb +5 -12
- data/spec/models/saml_configuration_property_items_string_spec.rb +5 -12
- data/spec/models/truststore_info_spec.rb +5 -12
- data/spec/models/truststore_items_spec.rb +5 -12
- data/spec/spec_helper.rb +2 -2
- data/swagger_aem.gemspec +1 -1
- metadata +18 -6
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::KeystoreInfo
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::KeystoreInfo.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::KeystoreInfo do
|
21
|
+
let(:instance) { SwaggerAemClient::KeystoreInfo.new }
|
29
22
|
|
30
23
|
describe 'test an instance of KeystoreInfo' do
|
31
24
|
it 'should create an instance of KeystoreInfo' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::KeystoreInfo)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "aliases"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::KeystoreItems
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::KeystoreItems.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::KeystoreItems do
|
21
|
+
let(:instance) { SwaggerAemClient::KeystoreItems.new }
|
29
22
|
|
30
23
|
describe 'test an instance of KeystoreItems' do
|
31
24
|
it 'should create an instance of KeystoreItems' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::KeystoreItems)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "_alias"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::SamlConfigurationInfo
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::SamlConfigurationInfo.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::SamlConfigurationInfo do
|
21
|
+
let(:instance) { SwaggerAemClient::SamlConfigurationInfo.new }
|
29
22
|
|
30
23
|
describe 'test an instance of SamlConfigurationInfo' do
|
31
24
|
it 'should create an instance of SamlConfigurationInfo' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::SamlConfigurationInfo)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "pid"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::SamlConfigurationProperties
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::SamlConfigurationProperties.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::SamlConfigurationProperties do
|
21
|
+
let(:instance) { SwaggerAemClient::SamlConfigurationProperties.new }
|
29
22
|
|
30
23
|
describe 'test an instance of SamlConfigurationProperties' do
|
31
24
|
it 'should create an instance of SamlConfigurationProperties' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::SamlConfigurationProperties)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "path"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::SamlConfigurationPropertyItemsArray
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::SamlConfigurationPropertyItemsArray.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::SamlConfigurationPropertyItemsArray do
|
21
|
+
let(:instance) { SwaggerAemClient::SamlConfigurationPropertyItemsArray.new }
|
29
22
|
|
30
23
|
describe 'test an instance of SamlConfigurationPropertyItemsArray' do
|
31
24
|
it 'should create an instance of SamlConfigurationPropertyItemsArray' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::SamlConfigurationPropertyItemsArray)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "name"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::SamlConfigurationPropertyItemsBoolean
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::SamlConfigurationPropertyItemsBoolean.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::SamlConfigurationPropertyItemsBoolean do
|
21
|
+
let(:instance) { SwaggerAemClient::SamlConfigurationPropertyItemsBoolean.new }
|
29
22
|
|
30
23
|
describe 'test an instance of SamlConfigurationPropertyItemsBoolean' do
|
31
24
|
it 'should create an instance of SamlConfigurationPropertyItemsBoolean' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::SamlConfigurationPropertyItemsBoolean)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "name"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::SamlConfigurationPropertyItemsLong
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::SamlConfigurationPropertyItemsLong.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::SamlConfigurationPropertyItemsLong do
|
21
|
+
let(:instance) { SwaggerAemClient::SamlConfigurationPropertyItemsLong.new }
|
29
22
|
|
30
23
|
describe 'test an instance of SamlConfigurationPropertyItemsLong' do
|
31
24
|
it 'should create an instance of SamlConfigurationPropertyItemsLong' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::SamlConfigurationPropertyItemsLong)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "name"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::SamlConfigurationPropertyItemsString
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::SamlConfigurationPropertyItemsString.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::SamlConfigurationPropertyItemsString do
|
21
|
+
let(:instance) { SwaggerAemClient::SamlConfigurationPropertyItemsString.new }
|
29
22
|
|
30
23
|
describe 'test an instance of SamlConfigurationPropertyItemsString' do
|
31
24
|
it 'should create an instance of SamlConfigurationPropertyItemsString' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::SamlConfigurationPropertyItemsString)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "name"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::TruststoreInfo
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::TruststoreInfo.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::TruststoreInfo do
|
21
|
+
let(:instance) { SwaggerAemClient::TruststoreInfo.new }
|
29
22
|
|
30
23
|
describe 'test an instance of TruststoreInfo' do
|
31
24
|
it 'should create an instance of TruststoreInfo' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::TruststoreInfo)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "aliases"' do
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,19 +17,12 @@ require 'date'
|
|
17
17
|
# Unit tests for SwaggerAemClient::TruststoreItems
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe
|
21
|
-
|
22
|
-
# run before each test
|
23
|
-
@instance = SwaggerAemClient::TruststoreItems.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::TruststoreItems do
|
21
|
+
let(:instance) { SwaggerAemClient::TruststoreItems.new }
|
29
22
|
|
30
23
|
describe 'test an instance of TruststoreItems' do
|
31
24
|
it 'should create an instance of TruststoreItems' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::TruststoreItems)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "_alias"' do
|
data/spec/spec_helper.rb
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version:
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
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
|
-
The version of the OpenAPI document: 3.
|
8
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
9
9
|
Contact: opensource@shinesolutions.com
|
10
10
|
Generated by: https://openapi-generator.tech
|
11
11
|
OpenAPI Generator version: 4.3.1
|
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.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shine Solutions
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -82,6 +82,9 @@ files:
|
|
82
82
|
- Gemfile.lock
|
83
83
|
- README.md
|
84
84
|
- Rakefile
|
85
|
+
- docs/BundleData.md
|
86
|
+
- docs/BundleDataProp.md
|
87
|
+
- docs/BundleInfo.md
|
85
88
|
- docs/ConsoleApi.md
|
86
89
|
- docs/CqApi.md
|
87
90
|
- docs/CrxApi.md
|
@@ -118,6 +121,9 @@ files:
|
|
118
121
|
- lib/swagger_aem/api_client.rb
|
119
122
|
- lib/swagger_aem/api_error.rb
|
120
123
|
- lib/swagger_aem/configuration.rb
|
124
|
+
- lib/swagger_aem/models/bundle_data.rb
|
125
|
+
- lib/swagger_aem/models/bundle_data_prop.rb
|
126
|
+
- lib/swagger_aem/models/bundle_info.rb
|
121
127
|
- lib/swagger_aem/models/inline_object.rb
|
122
128
|
- lib/swagger_aem/models/inline_object1.rb
|
123
129
|
- lib/swagger_aem/models/inline_object2.rb
|
@@ -146,6 +152,9 @@ files:
|
|
146
152
|
- spec/api/sling_api_spec.rb
|
147
153
|
- spec/api_client_spec.rb
|
148
154
|
- spec/configuration_spec.rb
|
155
|
+
- spec/models/bundle_data_prop_spec.rb
|
156
|
+
- spec/models/bundle_data_spec.rb
|
157
|
+
- spec/models/bundle_info_spec.rb
|
149
158
|
- spec/models/inline_object1_spec.rb
|
150
159
|
- spec/models/inline_object2_spec.rb
|
151
160
|
- spec/models/inline_object3_spec.rb
|
@@ -171,7 +180,7 @@ homepage: https://github.com/shinesolutions/swagger-aem/tree/master/clients/ruby
|
|
171
180
|
licenses:
|
172
181
|
- Apache-2.0
|
173
182
|
metadata: {}
|
174
|
-
post_install_message:
|
183
|
+
post_install_message:
|
175
184
|
rdoc_options: []
|
176
185
|
require_paths:
|
177
186
|
- lib
|
@@ -186,9 +195,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
195
|
- !ruby/object:Gem::Version
|
187
196
|
version: '0'
|
188
197
|
requirements: []
|
189
|
-
rubyforge_project:
|
198
|
+
rubyforge_project:
|
190
199
|
rubygems_version: 2.6.14.4
|
191
|
-
signing_key:
|
200
|
+
signing_key:
|
192
201
|
specification_version: 4
|
193
202
|
summary: Adobe Experience Manager (AEM) API Ruby Gem
|
194
203
|
test_files:
|
@@ -201,6 +210,7 @@ test_files:
|
|
201
210
|
- spec/api_client_spec.rb
|
202
211
|
- spec/configuration_spec.rb
|
203
212
|
- spec/models/inline_object4_spec.rb
|
213
|
+
- spec/models/bundle_data_prop_spec.rb
|
204
214
|
- spec/models/install_status_status_spec.rb
|
205
215
|
- spec/models/inline_object5_spec.rb
|
206
216
|
- spec/models/saml_configuration_property_items_long_spec.rb
|
@@ -214,8 +224,10 @@ test_files:
|
|
214
224
|
- spec/models/keystore_items_spec.rb
|
215
225
|
- spec/models/inline_object2_spec.rb
|
216
226
|
- spec/models/keystore_info_spec.rb
|
227
|
+
- spec/models/bundle_info_spec.rb
|
217
228
|
- spec/models/truststore_info_spec.rb
|
218
229
|
- spec/models/saml_configuration_property_items_array_spec.rb
|
230
|
+
- spec/models/bundle_data_spec.rb
|
219
231
|
- spec/models/keystore_chain_items_spec.rb
|
220
232
|
- spec/models/saml_configuration_property_items_string_spec.rb
|
221
233
|
- spec/models/inline_object1_spec.rb
|