swagger_aem 3.3.0 → 3.7.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 +5 -5
- data/Gemfile.lock +32 -30
- data/README.md +10 -6
- 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/docs/SlingApi.md +5 -3
- data/lib/swagger_aem/api/console_api.rb +60 -2
- data/lib/swagger_aem/api/cq_api.rb +2 -2
- data/lib/swagger_aem/api/crx_api.rb +2 -2
- data/lib/swagger_aem/api/custom_api.rb +2 -2
- data/lib/swagger_aem/api/granite_api.rb +2 -2
- data/lib/swagger_aem/api/sling_api.rb +13 -6
- data/lib/swagger_aem/api_client.rb +2 -2
- data/lib/swagger_aem/api_error.rb +2 -2
- data/lib/swagger_aem/configuration.rb +2 -2
- 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 +2 -2
- data/lib/swagger_aem/models/inline_object1.rb +2 -2
- data/lib/swagger_aem/models/inline_object2.rb +2 -2
- data/lib/swagger_aem/models/inline_object3.rb +2 -2
- data/lib/swagger_aem/models/inline_object4.rb +2 -2
- data/lib/swagger_aem/models/inline_object5.rb +2 -2
- data/lib/swagger_aem/models/install_status.rb +2 -2
- data/lib/swagger_aem/models/install_status_status.rb +2 -2
- data/lib/swagger_aem/models/keystore_chain_items.rb +2 -2
- data/lib/swagger_aem/models/keystore_info.rb +2 -2
- data/lib/swagger_aem/models/keystore_items.rb +2 -2
- data/lib/swagger_aem/models/saml_configuration_info.rb +2 -2
- data/lib/swagger_aem/models/saml_configuration_properties.rb +2 -2
- data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +2 -2
- data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +2 -2
- data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +2 -2
- data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +2 -2
- data/lib/swagger_aem/models/truststore_info.rb +2 -2
- data/lib/swagger_aem/models/truststore_items.rb +2 -2
- data/lib/swagger_aem/version.rb +3 -3
- data/lib/swagger_aem.rb +5 -2
- 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 +2 -2
- metadata +18 -7
@@ -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::InstallStatus
|
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::InstallStatus.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::InstallStatus do
|
21
|
+
let(:instance) { SwaggerAemClient::InstallStatus.new }
|
29
22
|
|
30
23
|
describe 'test an instance of InstallStatus' do
|
31
24
|
it 'should create an instance of InstallStatus' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::InstallStatus)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "status"' 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::InstallStatusStatus
|
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::InstallStatusStatus.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::InstallStatusStatus do
|
21
|
+
let(:instance) { SwaggerAemClient::InstallStatusStatus.new }
|
29
22
|
|
30
23
|
describe 'test an instance of InstallStatusStatus' do
|
31
24
|
it 'should create an instance of InstallStatusStatus' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::InstallStatusStatus)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "finished"' 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::KeystoreChainItems
|
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::KeystoreChainItems.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
20
|
+
describe SwaggerAemClient::KeystoreChainItems do
|
21
|
+
let(:instance) { SwaggerAemClient::KeystoreChainItems.new }
|
29
22
|
|
30
23
|
describe 'test an instance of KeystoreChainItems' do
|
31
24
|
it 'should create an instance of KeystoreChainItems' do
|
32
|
-
expect(
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::KeystoreChainItems)
|
33
26
|
end
|
34
27
|
end
|
35
28
|
describe 'test attribute "subject"' 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::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,10 +5,10 @@
|
|
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.2-pre.0
|
9
9
|
Contact: opensource@shinesolutions.com
|
10
10
|
Generated by: https://openapi-generator.tech
|
11
|
-
OpenAPI Generator version: 4.3.1
|
11
|
+
OpenAPI Generator version: 4.3.1
|
12
12
|
|
13
13
|
=end
|
14
14
|
|
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.7.0
|
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: 2022-09-05 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,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
195
|
- !ruby/object:Gem::Version
|
187
196
|
version: '0'
|
188
197
|
requirements: []
|
189
|
-
|
190
|
-
|
191
|
-
signing_key:
|
198
|
+
rubygems_version: 3.1.6
|
199
|
+
signing_key:
|
192
200
|
specification_version: 4
|
193
201
|
summary: Adobe Experience Manager (AEM) API Ruby Gem
|
194
202
|
test_files:
|
@@ -201,6 +209,7 @@ test_files:
|
|
201
209
|
- spec/api_client_spec.rb
|
202
210
|
- spec/configuration_spec.rb
|
203
211
|
- spec/models/inline_object4_spec.rb
|
212
|
+
- spec/models/bundle_data_prop_spec.rb
|
204
213
|
- spec/models/install_status_status_spec.rb
|
205
214
|
- spec/models/inline_object5_spec.rb
|
206
215
|
- spec/models/saml_configuration_property_items_long_spec.rb
|
@@ -214,8 +223,10 @@ test_files:
|
|
214
223
|
- spec/models/keystore_items_spec.rb
|
215
224
|
- spec/models/inline_object2_spec.rb
|
216
225
|
- spec/models/keystore_info_spec.rb
|
226
|
+
- spec/models/bundle_info_spec.rb
|
217
227
|
- spec/models/truststore_info_spec.rb
|
218
228
|
- spec/models/saml_configuration_property_items_array_spec.rb
|
229
|
+
- spec/models/bundle_data_spec.rb
|
219
230
|
- spec/models/keystore_chain_items_spec.rb
|
220
231
|
- spec/models/saml_configuration_property_items_string_spec.rb
|
221
232
|
- spec/models/inline_object1_spec.rb
|