swagger_aem 2.5.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -1
  3. data/Gemfile.lock +47 -46
  4. data/README.md +20 -9
  5. data/Rakefile +2 -0
  6. data/docs/ConsoleApi.md +107 -58
  7. data/docs/CqApi.md +14 -13
  8. data/docs/CrxApi.md +60 -60
  9. data/docs/CustomApi.md +27 -24
  10. data/docs/GraniteApi.md +75 -0
  11. data/docs/InlineObject.md +17 -0
  12. data/docs/InlineObject1.md +17 -0
  13. data/docs/InlineObject2.md +17 -0
  14. data/docs/InlineObject3.md +17 -0
  15. data/docs/InlineObject4.md +21 -0
  16. data/docs/InlineObject5.md +19 -0
  17. data/docs/InstallStatus.md +9 -0
  18. data/docs/InstallStatusStatus.md +11 -1
  19. data/docs/KeystoreChainItems.md +13 -0
  20. data/docs/KeystoreInfo.md +11 -1
  21. data/docs/KeystoreItems.md +13 -0
  22. data/docs/SamlConfigurationInfo.md +15 -1
  23. data/docs/SamlConfigurationProperties.md +56 -24
  24. data/docs/SamlConfigurationPropertyItemsArray.md +16 -2
  25. data/docs/SamlConfigurationPropertyItemsBoolean.md +17 -3
  26. data/docs/SamlConfigurationPropertyItemsLong.md +17 -3
  27. data/docs/SamlConfigurationPropertyItemsString.md +17 -3
  28. data/docs/SlingApi.md +482 -445
  29. data/docs/TruststoreInfo.md +11 -1
  30. data/docs/TruststoreItems.md +15 -0
  31. data/git_push.sh +11 -8
  32. data/lib/swagger_aem.rb +10 -3
  33. data/lib/swagger_aem/api/console_api.rb +160 -91
  34. data/lib/swagger_aem/api/cq_api.rb +49 -41
  35. data/lib/swagger_aem/api/crx_api.rb +170 -135
  36. data/lib/swagger_aem/api/custom_api.rb +68 -56
  37. data/lib/swagger_aem/api/granite_api.rb +124 -0
  38. data/lib/swagger_aem/api/sling_api.rb +900 -720
  39. data/lib/swagger_aem/api_client.rb +53 -54
  40. data/lib/swagger_aem/api_error.rb +22 -3
  41. data/lib/swagger_aem/configuration.rb +49 -10
  42. data/lib/swagger_aem/models/inline_object.rb +206 -0
  43. data/lib/swagger_aem/models/inline_object1.rb +206 -0
  44. data/lib/swagger_aem/models/inline_object2.rb +206 -0
  45. data/lib/swagger_aem/models/inline_object3.rb +206 -0
  46. data/lib/swagger_aem/models/inline_object4.rb +224 -0
  47. data/lib/swagger_aem/models/inline_object5.rb +215 -0
  48. data/lib/swagger_aem/models/install_status.rb +43 -25
  49. data/lib/swagger_aem/models/install_status_status.rb +46 -28
  50. data/lib/swagger_aem/models/keystore_chain_items.rb +50 -32
  51. data/lib/swagger_aem/models/keystore_info.rb +45 -27
  52. data/lib/swagger_aem/models/keystore_items.rb +49 -31
  53. data/lib/swagger_aem/models/saml_configuration_info.rb +49 -31
  54. data/lib/swagger_aem/models/saml_configuration_properties.rb +114 -168
  55. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +50 -32
  56. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +56 -38
  57. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +56 -38
  58. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +56 -38
  59. data/lib/swagger_aem/models/truststore_info.rb +45 -27
  60. data/lib/swagger_aem/models/truststore_items.rb +54 -36
  61. data/lib/swagger_aem/version.rb +4 -4
  62. data/spec/api/console_api_spec.rb +17 -16
  63. data/spec/api/cq_api_spec.rb +6 -10
  64. data/spec/api/crx_api_spec.rb +11 -25
  65. data/spec/api/custom_api_spec.rb +7 -13
  66. data/spec/api/granite_api_spec.rb +52 -0
  67. data/spec/api/sling_api_spec.rb +32 -88
  68. data/spec/api_client_spec.rb +37 -37
  69. data/spec/configuration_spec.rb +11 -11
  70. data/spec/models/inline_object1_spec.rb +41 -0
  71. data/spec/models/inline_object2_spec.rb +41 -0
  72. data/spec/models/inline_object3_spec.rb +41 -0
  73. data/spec/models/inline_object4_spec.rb +53 -0
  74. data/spec/models/inline_object5_spec.rb +47 -0
  75. data/spec/models/inline_object_spec.rb +41 -0
  76. data/spec/models/install_status_spec.rb +5 -6
  77. data/spec/models/install_status_status_spec.rb +6 -7
  78. data/spec/models/keystore_chain_items_spec.rb +9 -10
  79. data/spec/models/keystore_info_spec.rb +6 -7
  80. data/spec/models/keystore_items_spec.rb +9 -10
  81. data/spec/models/saml_configuration_info_spec.rb +10 -11
  82. data/spec/models/saml_configuration_properties_spec.rb +28 -29
  83. data/spec/models/saml_configuration_property_items_array_spec.rb +10 -11
  84. data/spec/models/saml_configuration_property_items_boolean_spec.rb +11 -12
  85. data/spec/models/saml_configuration_property_items_long_spec.rb +11 -12
  86. data/spec/models/saml_configuration_property_items_string_spec.rb +11 -12
  87. data/spec/models/truststore_info_spec.rb +6 -7
  88. data/spec/models/truststore_items_spec.rb +11 -12
  89. data/spec/spec_helper.rb +3 -3
  90. data/swagger_aem.gemspec +8 -14
  91. metadata +36 -128
@@ -3,13 +3,13 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.4.0
6
+ The version of the OpenAPI document: 3.4.0
7
7
  Contact: opensource@shinesolutions.com
8
- Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.0-SNAPSHOT
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
13
13
  module SwaggerAemClient
14
- VERSION = "2.5.0"
14
+ VERSION = '3.4.0'
15
15
  end
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.4.0
6
+ OpenAPI spec version: 3.1.0-pre.0
7
7
  Contact: opensource@shinesolutions.com
8
- Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.0-SNAPSHOT
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.2.1-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,7 +14,7 @@ require 'spec_helper'
14
14
  require 'json'
15
15
 
16
16
  # Unit tests for SwaggerAemClient::ConsoleApi
17
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
19
  describe 'ConsoleApi' do
20
20
  before do
@@ -33,44 +33,45 @@ describe 'ConsoleApi' do
33
33
  end
34
34
 
35
35
  # unit tests for get_aem_product_info
36
- #
37
- #
38
36
  # @param [Hash] opts the optional parameters
39
37
  # @return [Array<String>]
40
38
  describe 'get_aem_product_info test' do
41
- it "should work" do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
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
42
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
50
  end
44
51
  end
45
52
 
46
53
  # unit tests for post_bundle
47
- #
48
- #
49
54
  # @param name
50
55
  # @param action
51
56
  # @param [Hash] opts the optional parameters
52
57
  # @return [nil]
53
58
  describe 'post_bundle test' do
54
- it "should work" do
59
+ it 'should work' do
55
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
61
  end
57
62
  end
58
63
 
59
64
  # unit tests for post_jmx_repository
60
- #
61
- #
62
65
  # @param action
63
66
  # @param [Hash] opts the optional parameters
64
67
  # @return [nil]
65
68
  describe 'post_jmx_repository test' do
66
- it "should work" do
69
+ it 'should work' do
67
70
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
71
  end
69
72
  end
70
73
 
71
74
  # unit tests for post_saml_configuration
72
- #
73
- #
74
75
  # @param [Hash] opts the optional parameters
75
76
  # @option opts [BOOLEAN] :post
76
77
  # @option opts [BOOLEAN] :apply
@@ -104,7 +105,7 @@ describe 'ConsoleApi' do
104
105
  # @option opts [Array<String>] :propertylist
105
106
  # @return [SamlConfigurationInfo]
106
107
  describe 'post_saml_configuration test' do
107
- it "should work" do
108
+ it 'should work' do
108
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
109
110
  end
110
111
  end
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.4.0
6
+ OpenAPI spec version: 3.1.0-pre.0
7
7
  Contact: opensource@shinesolutions.com
8
- Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.0-SNAPSHOT
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.2.1-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,7 +14,7 @@ require 'spec_helper'
14
14
  require 'json'
15
15
 
16
16
  # Unit tests for SwaggerAemClient::CqApi
17
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
19
  describe 'CqApi' do
20
20
  before do
@@ -33,25 +33,21 @@ describe 'CqApi' do
33
33
  end
34
34
 
35
35
  # unit tests for get_login_page
36
- #
37
- #
38
36
  # @param [Hash] opts the optional parameters
39
37
  # @return [String]
40
38
  describe 'get_login_page test' do
41
- it "should work" do
39
+ it 'should work' do
42
40
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
41
  end
44
42
  end
45
43
 
46
44
  # unit tests for post_cq_actions
47
- #
48
- #
49
45
  # @param authorizable_id
50
46
  # @param changelog
51
47
  # @param [Hash] opts the optional parameters
52
48
  # @return [nil]
53
49
  describe 'post_cq_actions test' do
54
- it "should work" do
50
+ it 'should work' do
55
51
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
52
  end
57
53
  end
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.4.0
6
+ OpenAPI spec version: 3.1.0-pre.0
7
7
  Contact: opensource@shinesolutions.com
8
- Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.0-SNAPSHOT
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.2.1-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,7 +14,7 @@ require 'spec_helper'
14
14
  require 'json'
15
15
 
16
16
  # Unit tests for SwaggerAemClient::CrxApi
17
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
19
  describe 'CrxApi' do
20
20
  before do
@@ -33,53 +33,43 @@ describe 'CrxApi' do
33
33
  end
34
34
 
35
35
  # unit tests for get_crxde_status
36
- #
37
- #
38
36
  # @param [Hash] opts the optional parameters
39
37
  # @return [String]
40
38
  describe 'get_crxde_status test' do
41
- it "should work" do
39
+ it 'should work' do
42
40
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
41
  end
44
42
  end
45
43
 
46
44
  # unit tests for get_install_status
47
- #
48
- #
49
45
  # @param [Hash] opts the optional parameters
50
46
  # @return [InstallStatus]
51
47
  describe 'get_install_status test' do
52
- it "should work" do
48
+ it 'should work' do
53
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
50
  end
55
51
  end
56
52
 
57
53
  # unit tests for get_package_manager_servlet
58
- #
59
- #
60
54
  # @param [Hash] opts the optional parameters
61
55
  # @return [nil]
62
56
  describe 'get_package_manager_servlet test' do
63
- it "should work" do
57
+ it 'should work' do
64
58
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
65
59
  end
66
60
  end
67
61
 
68
62
  # unit tests for post_package_service
69
- #
70
- #
71
63
  # @param cmd
72
64
  # @param [Hash] opts the optional parameters
73
65
  # @return [String]
74
66
  describe 'post_package_service test' do
75
- it "should work" do
67
+ it 'should work' do
76
68
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
77
69
  end
78
70
  end
79
71
 
80
72
  # unit tests for post_package_service_json
81
- #
82
- #
83
73
  # @param path
84
74
  # @param cmd
85
75
  # @param [Hash] opts the optional parameters
@@ -92,14 +82,12 @@ describe 'CrxApi' do
92
82
  # @option opts [File] :package
93
83
  # @return [String]
94
84
  describe 'post_package_service_json test' do
95
- it "should work" do
85
+ it 'should work' do
96
86
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
87
  end
98
88
  end
99
89
 
100
90
  # unit tests for post_package_update
101
- #
102
- #
103
91
  # @param group_name
104
92
  # @param package_name
105
93
  # @param version
@@ -109,21 +97,19 @@ describe 'CrxApi' do
109
97
  # @option opts [String] :_charset_
110
98
  # @return [String]
111
99
  describe 'post_package_update test' do
112
- it "should work" do
100
+ it 'should work' do
113
101
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
114
102
  end
115
103
  end
116
104
 
117
105
  # unit tests for post_set_password
118
- #
119
- #
120
106
  # @param old
121
107
  # @param plain
122
108
  # @param verify
123
109
  # @param [Hash] opts the optional parameters
124
110
  # @return [String]
125
111
  describe 'post_set_password test' do
126
- it "should work" do
112
+ it 'should work' do
127
113
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
114
  end
129
115
  end
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.4.0
6
+ OpenAPI spec version: 3.1.0-pre.0
7
7
  Contact: opensource@shinesolutions.com
8
- Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.0-SNAPSHOT
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.2.1-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,7 +14,7 @@ require 'spec_helper'
14
14
  require 'json'
15
15
 
16
16
  # Unit tests for SwaggerAemClient::CustomApi
17
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
19
  describe 'CustomApi' do
20
20
  before do
@@ -33,40 +33,34 @@ describe 'CustomApi' do
33
33
  end
34
34
 
35
35
  # unit tests for get_aem_health_check
36
- #
37
- #
38
36
  # @param [Hash] opts the optional parameters
39
37
  # @option opts [String] :tags
40
38
  # @option opts [BOOLEAN] :combine_tags_or
41
39
  # @return [String]
42
40
  describe 'get_aem_health_check test' do
43
- it "should work" do
41
+ it 'should work' do
44
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
43
  end
46
44
  end
47
45
 
48
46
  # unit tests for post_config_aem_health_check_servlet
49
- #
50
- #
51
47
  # @param [Hash] opts the optional parameters
52
48
  # @option opts [Array<String>] :bundles_ignored
53
49
  # @option opts [String] :bundles_ignored_type_hint
54
50
  # @return [nil]
55
51
  describe 'post_config_aem_health_check_servlet test' do
56
- it "should work" do
52
+ it 'should work' do
57
53
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
58
54
  end
59
55
  end
60
56
 
61
57
  # unit tests for post_config_aem_password_reset
62
- #
63
- #
64
58
  # @param [Hash] opts the optional parameters
65
59
  # @option opts [Array<String>] :pwdreset_authorizables
66
60
  # @option opts [String] :pwdreset_authorizables_type_hint
67
61
  # @return [nil]
68
62
  describe 'post_config_aem_password_reset test' do
69
- it "should work" do
63
+ it 'should work' do
70
64
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
71
65
  end
72
66
  end
@@ -0,0 +1,52 @@
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.3.0
7
+ Contact: opensource@shinesolutions.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for SwaggerAemClient::GraniteApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'GraniteApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = SwaggerAemClient::GraniteApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of GraniteApi' do
30
+ it 'should create an instance of GraniteApi' do
31
+ expect(@api_instance).to be_instance_of(SwaggerAemClient::GraniteApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for ssl_setup
36
+ # @param keystore_password
37
+ # @param keystore_password_confirm
38
+ # @param truststore_password
39
+ # @param truststore_password_confirm
40
+ # @param https_hostname
41
+ # @param https_port
42
+ # @param [Hash] opts the optional parameters
43
+ # @option opts [File] :privatekey_file
44
+ # @option opts [File] :certificate_file
45
+ # @return [String]
46
+ describe 'ssl_setup test' 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
+ end
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
5
 
6
- OpenAPI spec version: 2.4.0
6
+ OpenAPI spec version: 3.1.0-pre.0
7
7
  Contact: opensource@shinesolutions.com
8
- Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.0-SNAPSHOT
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 3.2.1-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,7 +14,7 @@ require 'spec_helper'
14
14
  require 'json'
15
15
 
16
16
  # Unit tests for SwaggerAemClient::SlingApi
17
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
19
  describe 'SlingApi' do
20
20
  before do
@@ -33,126 +33,106 @@ describe 'SlingApi' do
33
33
  end
34
34
 
35
35
  # unit tests for delete_agent
36
- #
37
- #
38
36
  # @param runmode
39
37
  # @param name
40
38
  # @param [Hash] opts the optional parameters
41
39
  # @return [nil]
42
40
  describe 'delete_agent test' do
43
- it "should work" do
41
+ it 'should work' do
44
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
43
  end
46
44
  end
47
45
 
48
46
  # unit tests for delete_node
49
- #
50
- #
51
47
  # @param path
52
48
  # @param name
53
49
  # @param [Hash] opts the optional parameters
54
50
  # @return [nil]
55
51
  describe 'delete_node test' do
56
- it "should work" do
52
+ it 'should work' do
57
53
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
58
54
  end
59
55
  end
60
56
 
61
57
  # unit tests for get_agent
62
- #
63
- #
64
58
  # @param runmode
65
59
  # @param name
66
60
  # @param [Hash] opts the optional parameters
67
61
  # @return [nil]
68
62
  describe 'get_agent test' do
69
- it "should work" do
63
+ it 'should work' do
70
64
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
71
65
  end
72
66
  end
73
67
 
74
68
  # unit tests for get_agents
75
- #
76
- #
77
69
  # @param runmode
78
70
  # @param [Hash] opts the optional parameters
79
71
  # @return [String]
80
72
  describe 'get_agents test' do
81
- it "should work" do
73
+ it 'should work' do
82
74
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
83
75
  end
84
76
  end
85
77
 
86
78
  # unit tests for get_authorizable_keystore
87
- #
88
- #
89
79
  # @param intermediate_path
90
80
  # @param authorizable_id
91
81
  # @param [Hash] opts the optional parameters
92
82
  # @return [KeystoreInfo]
93
83
  describe 'get_authorizable_keystore test' do
94
- it "should work" do
84
+ it 'should work' do
95
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
86
  end
97
87
  end
98
88
 
99
89
  # unit tests for get_keystore
100
- #
101
- #
102
90
  # @param intermediate_path
103
91
  # @param authorizable_id
104
92
  # @param [Hash] opts the optional parameters
105
93
  # @return [File]
106
94
  describe 'get_keystore test' do
107
- it "should work" do
95
+ it 'should work' do
108
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
109
97
  end
110
98
  end
111
99
 
112
100
  # unit tests for get_node
113
- #
114
- #
115
101
  # @param path
116
102
  # @param name
117
103
  # @param [Hash] opts the optional parameters
118
104
  # @return [nil]
119
105
  describe 'get_node test' do
120
- it "should work" do
106
+ it 'should work' do
121
107
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
108
  end
123
109
  end
124
110
 
125
111
  # unit tests for get_package
126
- #
127
- #
128
112
  # @param group
129
113
  # @param name
130
114
  # @param version
131
115
  # @param [Hash] opts the optional parameters
132
116
  # @return [File]
133
117
  describe 'get_package test' do
134
- it "should work" do
118
+ it 'should work' do
135
119
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
136
120
  end
137
121
  end
138
122
 
139
123
  # unit tests for get_package_filter
140
- #
141
- #
142
124
  # @param group
143
125
  # @param name
144
126
  # @param version
145
127
  # @param [Hash] opts the optional parameters
146
128
  # @return [String]
147
129
  describe 'get_package_filter test' do
148
- it "should work" do
130
+ it 'should work' do
149
131
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
150
132
  end
151
133
  end
152
134
 
153
135
  # unit tests for get_query
154
- #
155
- #
156
136
  # @param path
157
137
  # @param p_limit
158
138
  # @param _1_property
@@ -160,36 +140,30 @@ describe 'SlingApi' do
160
140
  # @param [Hash] opts the optional parameters
161
141
  # @return [String]
162
142
  describe 'get_query test' do
163
- it "should work" do
143
+ it 'should work' do
164
144
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
165
145
  end
166
146
  end
167
147
 
168
148
  # unit tests for get_truststore
169
- #
170
- #
171
149
  # @param [Hash] opts the optional parameters
172
150
  # @return [File]
173
151
  describe 'get_truststore test' do
174
- it "should work" do
152
+ it 'should work' do
175
153
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
176
154
  end
177
155
  end
178
156
 
179
157
  # unit tests for get_truststore_info
180
- #
181
- #
182
158
  # @param [Hash] opts the optional parameters
183
159
  # @return [TruststoreInfo]
184
160
  describe 'get_truststore_info test' do
185
- it "should work" do
161
+ it 'should work' do
186
162
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
187
163
  end
188
164
  end
189
165
 
190
166
  # unit tests for post_agent
191
- #
192
- #
193
167
  # @param runmode
194
168
  # @param name
195
169
  # @param [Hash] opts the optional parameters
@@ -245,14 +219,12 @@ describe 'SlingApi' do
245
219
  # @option opts [String] :operation
246
220
  # @return [nil]
247
221
  describe 'post_agent test' do
248
- it "should work" do
222
+ it 'should work' do
249
223
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
250
224
  end
251
225
  end
252
226
 
253
227
  # unit tests for post_authorizable_keystore
254
- #
255
- #
256
228
  # @param intermediate_path
257
229
  # @param authorizable_id
258
230
  # @param [Hash] opts the optional parameters
@@ -270,14 +242,12 @@ describe 'SlingApi' do
270
242
  # @option opts [File] :key_store
271
243
  # @return [KeystoreInfo]
272
244
  describe 'post_authorizable_keystore test' do
273
- it "should work" do
245
+ it 'should work' do
274
246
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
275
247
  end
276
248
  end
277
249
 
278
250
  # unit tests for post_authorizables
279
- #
280
- #
281
251
  # @param authorizable_id
282
252
  # @param intermediate_path
283
253
  # @param [Hash] opts the optional parameters
@@ -287,14 +257,12 @@ describe 'SlingApi' do
287
257
  # @option opts [String] :profilegiven_name
288
258
  # @return [String]
289
259
  describe 'post_authorizables test' do
290
- it "should work" do
260
+ it 'should work' do
291
261
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
292
262
  end
293
263
  end
294
264
 
295
265
  # unit tests for post_config_adobe_granite_saml_authentication_handler
296
- #
297
- #
298
266
  # @param [Hash] opts the optional parameters
299
267
  # @option opts [String] :key_store_password
300
268
  # @option opts [String] :key_store_password_type_hint
@@ -346,14 +314,12 @@ describe 'SlingApi' do
346
314
  # @option opts [String] :user_intermediate_path_type_hint
347
315
  # @return [nil]
348
316
  describe 'post_config_adobe_granite_saml_authentication_handler test' do
349
- it "should work" do
317
+ it 'should work' do
350
318
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
351
319
  end
352
320
  end
353
321
 
354
322
  # unit tests for post_config_apache_felix_jetty_based_http_service
355
- #
356
- #
357
323
  # @param [Hash] opts the optional parameters
358
324
  # @option opts [BOOLEAN] :org_apache_felix_https_nio
359
325
  # @option opts [String] :org_apache_felix_https_nio_type_hint
@@ -377,14 +343,12 @@ describe 'SlingApi' do
377
343
  # @option opts [String] :org_osgi_service_http_port_secure_type_hint
378
344
  # @return [nil]
379
345
  describe 'post_config_apache_felix_jetty_based_http_service test' do
380
- it "should work" do
346
+ it 'should work' do
381
347
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
382
348
  end
383
349
  end
384
350
 
385
351
  # unit tests for post_config_apache_http_components_proxy_configuration
386
- #
387
- #
388
352
  # @param [Hash] opts the optional parameters
389
353
  # @option opts [String] :proxy_host
390
354
  # @option opts [String] :proxy_host_type_hint
@@ -400,14 +364,12 @@ describe 'SlingApi' do
400
364
  # @option opts [String] :proxy_password_type_hint
401
365
  # @return [nil]
402
366
  describe 'post_config_apache_http_components_proxy_configuration test' do
403
- it "should work" do
367
+ it 'should work' do
404
368
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
405
369
  end
406
370
  end
407
371
 
408
372
  # unit tests for post_config_apache_sling_dav_ex_servlet
409
- #
410
- #
411
373
  # @param [Hash] opts the optional parameters
412
374
  # @option opts [String] :_alias
413
375
  # @option opts [String] :alias_type_hint
@@ -415,14 +377,12 @@ describe 'SlingApi' do
415
377
  # @option opts [String] :dav_create_absolute_uri_type_hint
416
378
  # @return [nil]
417
379
  describe 'post_config_apache_sling_dav_ex_servlet test' do
418
- it "should work" do
380
+ it 'should work' do
419
381
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
420
382
  end
421
383
  end
422
384
 
423
385
  # unit tests for post_config_apache_sling_get_servlet
424
- #
425
- #
426
386
  # @param [Hash] opts the optional parameters
427
387
  # @option opts [String] :json_maximumresults
428
388
  # @option opts [String] :json_maximumresults_type_hint
@@ -434,14 +394,12 @@ describe 'SlingApi' do
434
394
  # @option opts [String] :enable_xml_type_hint
435
395
  # @return [nil]
436
396
  describe 'post_config_apache_sling_get_servlet test' do
437
- it "should work" do
397
+ it 'should work' do
438
398
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
439
399
  end
440
400
  end
441
401
 
442
402
  # unit tests for post_config_apache_sling_referrer_filter
443
- #
444
- #
445
403
  # @param [Hash] opts the optional parameters
446
404
  # @option opts [BOOLEAN] :allow_empty
447
405
  # @option opts [String] :allow_empty_type_hint
@@ -453,14 +411,12 @@ describe 'SlingApi' do
453
411
  # @option opts [String] :filter_methods_type_hint
454
412
  # @return [nil]
455
413
  describe 'post_config_apache_sling_referrer_filter test' do
456
- it "should work" do
414
+ it 'should work' do
457
415
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
458
416
  end
459
417
  end
460
418
 
461
419
  # unit tests for post_node
462
- #
463
- #
464
420
  # @param path
465
421
  # @param name
466
422
  # @param [Hash] opts the optional parameters
@@ -469,42 +425,36 @@ describe 'SlingApi' do
469
425
  # @option opts [File] :file
470
426
  # @return [nil]
471
427
  describe 'post_node test' do
472
- it "should work" do
428
+ it 'should work' do
473
429
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
474
430
  end
475
431
  end
476
432
 
477
433
  # unit tests for post_node_rw
478
- #
479
- #
480
434
  # @param path
481
435
  # @param name
482
436
  # @param [Hash] opts the optional parameters
483
437
  # @option opts [String] :add_members
484
438
  # @return [nil]
485
439
  describe 'post_node_rw test' do
486
- it "should work" do
440
+ it 'should work' do
487
441
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
488
442
  end
489
443
  end
490
444
 
491
445
  # unit tests for post_path
492
- #
493
- #
494
446
  # @param path
495
447
  # @param jcrprimary_type
496
448
  # @param name
497
449
  # @param [Hash] opts the optional parameters
498
450
  # @return [nil]
499
451
  describe 'post_path test' do
500
- it "should work" do
452
+ it 'should work' do
501
453
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
502
454
  end
503
455
  end
504
456
 
505
457
  # unit tests for post_query
506
- #
507
- #
508
458
  # @param path
509
459
  # @param p_limit
510
460
  # @param _1_property
@@ -512,28 +462,24 @@ describe 'SlingApi' do
512
462
  # @param [Hash] opts the optional parameters
513
463
  # @return [String]
514
464
  describe 'post_query test' do
515
- it "should work" do
465
+ it 'should work' do
516
466
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
517
467
  end
518
468
  end
519
469
 
520
470
  # unit tests for post_tree_activation
521
- #
522
- #
523
471
  # @param ignoredeactivated
524
472
  # @param onlymodified
525
473
  # @param path
526
474
  # @param [Hash] opts the optional parameters
527
475
  # @return [nil]
528
476
  describe 'post_tree_activation test' do
529
- it "should work" do
477
+ it 'should work' do
530
478
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
531
479
  end
532
480
  end
533
481
 
534
482
  # unit tests for post_truststore
535
- #
536
- #
537
483
  # @param [Hash] opts the optional parameters
538
484
  # @option opts [String] :operation
539
485
  # @option opts [String] :new_password
@@ -543,19 +489,17 @@ describe 'SlingApi' do
543
489
  # @option opts [File] :certificate
544
490
  # @return [String]
545
491
  describe 'post_truststore test' do
546
- it "should work" do
492
+ it 'should work' do
547
493
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
548
494
  end
549
495
  end
550
496
 
551
497
  # unit tests for post_truststore_pkcs12
552
- #
553
- #
554
498
  # @param [Hash] opts the optional parameters
555
499
  # @option opts [File] :truststore_p12
556
500
  # @return [String]
557
501
  describe 'post_truststore_pkcs12 test' do
558
- it "should work" do
502
+ it 'should work' do
559
503
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
560
504
  end
561
505
  end