swagger_aem 3.2.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 +38 -35
- data/README.md +11 -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/docs/GraniteApi.md +75 -0
- data/docs/InlineObject5.md +19 -0
- 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 +4 -4
- data/lib/swagger_aem/api/custom_api.rb +2 -2
- data/lib/swagger_aem/api/granite_api.rb +124 -0
- data/lib/swagger_aem/api/sling_api.rb +2 -2
- 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 +215 -0
- 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 +7 -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 +52 -0
- 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 +47 -0
- 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 +22 -2
@@ -0,0 +1,82 @@
|
|
1
|
+
=begin
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
|
+
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SwaggerAemClient::BundleData
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe SwaggerAemClient::BundleData do
|
21
|
+
let(:instance) { SwaggerAemClient::BundleData.new }
|
22
|
+
|
23
|
+
describe 'test an instance of BundleData' do
|
24
|
+
it 'should create an instance of BundleData' do
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::BundleData)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "id"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "name"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "fragment"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "state_raw"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "state"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "version"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "symbolic_name"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "category"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "props"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
|
+
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SwaggerAemClient::BundleInfo
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe SwaggerAemClient::BundleInfo do
|
21
|
+
let(:instance) { SwaggerAemClient::BundleInfo.new }
|
22
|
+
|
23
|
+
describe 'test an instance of BundleInfo' do
|
24
|
+
it 'should create an instance of BundleInfo' do
|
25
|
+
expect(instance).to be_instance_of(SwaggerAemClient::BundleInfo)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "status"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "s"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "data"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 3.
|
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: 4.3.1
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 3.
|
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: 4.3.1
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 3.
|
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: 4.3.1
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 3.
|
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: 4.3.1
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Adobe Experience Manager (AEM) API
|
3
|
+
|
4
|
+
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 3.5.0-pre.0
|
7
|
+
Contact: opensource@shinesolutions.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SwaggerAemClient::InlineObject5
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineObject5' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SwaggerAemClient::InlineObject5.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineObject5' do
|
31
|
+
it 'should create an instance of InlineObject5' do
|
32
|
+
expect(@instance).to be_instance_of(SwaggerAemClient::InlineObject5)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "privatekey_file"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "certificate_file"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -3,10 +3,10 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 3.
|
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: 4.3.1
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -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
|