swagger_aem 3.3.0 → 3.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile.lock +32 -30
  3. data/README.md +10 -6
  4. data/docs/BundleData.md +33 -0
  5. data/docs/BundleDataProp.md +19 -0
  6. data/docs/BundleInfo.md +21 -0
  7. data/docs/ConsoleApi.md +51 -0
  8. data/docs/SlingApi.md +5 -3
  9. data/lib/swagger_aem/api/console_api.rb +60 -2
  10. data/lib/swagger_aem/api/cq_api.rb +2 -2
  11. data/lib/swagger_aem/api/crx_api.rb +2 -2
  12. data/lib/swagger_aem/api/custom_api.rb +2 -2
  13. data/lib/swagger_aem/api/granite_api.rb +2 -2
  14. data/lib/swagger_aem/api/sling_api.rb +13 -6
  15. data/lib/swagger_aem/api_client.rb +2 -2
  16. data/lib/swagger_aem/api_error.rb +2 -2
  17. data/lib/swagger_aem/configuration.rb +2 -2
  18. data/lib/swagger_aem/models/bundle_data.rb +288 -0
  19. data/lib/swagger_aem/models/bundle_data_prop.rb +217 -0
  20. data/lib/swagger_aem/models/bundle_info.rb +229 -0
  21. data/lib/swagger_aem/models/inline_object.rb +2 -2
  22. data/lib/swagger_aem/models/inline_object1.rb +2 -2
  23. data/lib/swagger_aem/models/inline_object2.rb +2 -2
  24. data/lib/swagger_aem/models/inline_object3.rb +2 -2
  25. data/lib/swagger_aem/models/inline_object4.rb +2 -2
  26. data/lib/swagger_aem/models/inline_object5.rb +2 -2
  27. data/lib/swagger_aem/models/install_status.rb +2 -2
  28. data/lib/swagger_aem/models/install_status_status.rb +2 -2
  29. data/lib/swagger_aem/models/keystore_chain_items.rb +2 -2
  30. data/lib/swagger_aem/models/keystore_info.rb +2 -2
  31. data/lib/swagger_aem/models/keystore_items.rb +2 -2
  32. data/lib/swagger_aem/models/saml_configuration_info.rb +2 -2
  33. data/lib/swagger_aem/models/saml_configuration_properties.rb +2 -2
  34. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +2 -2
  35. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +2 -2
  36. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +2 -2
  37. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +2 -2
  38. data/lib/swagger_aem/models/truststore_info.rb +2 -2
  39. data/lib/swagger_aem/models/truststore_items.rb +2 -2
  40. data/lib/swagger_aem/version.rb +3 -3
  41. data/lib/swagger_aem.rb +5 -2
  42. data/spec/api/console_api_spec.rb +22 -12
  43. data/spec/api/cq_api_spec.rb +4 -4
  44. data/spec/api/crx_api_spec.rb +6 -6
  45. data/spec/api/custom_api_spec.rb +5 -5
  46. data/spec/api/granite_api_spec.rb +2 -2
  47. data/spec/api/sling_api_spec.rb +76 -66
  48. data/spec/api_client_spec.rb +3 -3
  49. data/spec/configuration_spec.rb +2 -2
  50. data/spec/models/bundle_data_prop_spec.rb +40 -0
  51. data/spec/models/bundle_data_spec.rb +82 -0
  52. data/spec/models/bundle_info_spec.rb +46 -0
  53. data/spec/models/inline_object1_spec.rb +2 -2
  54. data/spec/models/inline_object2_spec.rb +2 -2
  55. data/spec/models/inline_object3_spec.rb +2 -2
  56. data/spec/models/inline_object4_spec.rb +2 -2
  57. data/spec/models/inline_object5_spec.rb +2 -2
  58. data/spec/models/inline_object_spec.rb +2 -2
  59. data/spec/models/install_status_spec.rb +5 -12
  60. data/spec/models/install_status_status_spec.rb +5 -12
  61. data/spec/models/keystore_chain_items_spec.rb +5 -12
  62. data/spec/models/keystore_info_spec.rb +5 -12
  63. data/spec/models/keystore_items_spec.rb +5 -12
  64. data/spec/models/saml_configuration_info_spec.rb +5 -12
  65. data/spec/models/saml_configuration_properties_spec.rb +5 -12
  66. data/spec/models/saml_configuration_property_items_array_spec.rb +5 -12
  67. data/spec/models/saml_configuration_property_items_boolean_spec.rb +5 -12
  68. data/spec/models/saml_configuration_property_items_long_spec.rb +5 -12
  69. data/spec/models/saml_configuration_property_items_string_spec.rb +5 -12
  70. data/spec/models/truststore_info_spec.rb +5 -12
  71. data/spec/models/truststore_items_spec.rb +5 -12
  72. data/spec/spec_helper.rb +2 -2
  73. data/swagger_aem.gemspec +2 -2
  74. 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 spec version: 3.1.0-pre.0
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: 3.2.1-SNAPSHOT
9
+ OpenAPI Generator version: 5.2.1
10
10
 
11
11
  =end
12
12
 
@@ -19,7 +19,7 @@ require 'json'
19
19
  describe 'CrxApi' do
20
20
  before do
21
21
  # run before each test
22
- @instance = SwaggerAemClient::CrxApi.new
22
+ @api_instance = SwaggerAemClient::CrxApi.new
23
23
  end
24
24
 
25
25
  after do
@@ -28,7 +28,7 @@ describe 'CrxApi' do
28
28
 
29
29
  describe 'test an instance of CrxApi' do
30
30
  it 'should create an instance of CrxApi' do
31
- expect(@instance).to be_instance_of(SwaggerAemClient::CrxApi)
31
+ expect(@api_instance).to be_instance_of(SwaggerAemClient::CrxApi)
32
32
  end
33
33
  end
34
34
 
@@ -77,8 +77,8 @@ describe 'CrxApi' do
77
77
  # @option opts [String] :package_name
78
78
  # @option opts [String] :package_version
79
79
  # @option opts [String] :_charset_
80
- # @option opts [BOOLEAN] :force
81
- # @option opts [BOOLEAN] :recursive
80
+ # @option opts [Boolean] :force
81
+ # @option opts [Boolean] :recursive
82
82
  # @option opts [File] :package
83
83
  # @return [String]
84
84
  describe 'post_package_service_json test' 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 spec version: 3.1.0-pre.0
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: 3.2.1-SNAPSHOT
9
+ OpenAPI Generator version: 5.2.1
10
10
 
11
11
  =end
12
12
 
@@ -19,7 +19,7 @@ require 'json'
19
19
  describe 'CustomApi' do
20
20
  before do
21
21
  # run before each test
22
- @instance = SwaggerAemClient::CustomApi.new
22
+ @api_instance = SwaggerAemClient::CustomApi.new
23
23
  end
24
24
 
25
25
  after do
@@ -28,14 +28,14 @@ describe 'CustomApi' do
28
28
 
29
29
  describe 'test an instance of CustomApi' do
30
30
  it 'should create an instance of CustomApi' do
31
- expect(@instance).to be_instance_of(SwaggerAemClient::CustomApi)
31
+ expect(@api_instance).to be_instance_of(SwaggerAemClient::CustomApi)
32
32
  end
33
33
  end
34
34
 
35
35
  # unit tests for get_aem_health_check
36
36
  # @param [Hash] opts the optional parameters
37
37
  # @option opts [String] :tags
38
- # @option opts [BOOLEAN] :combine_tags_or
38
+ # @option opts [Boolean] :combine_tags_or
39
39
  # @return [String]
40
40
  describe 'get_aem_health_check test' do
41
41
  it 'should work' do
@@ -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.3.0
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-SNAPSHOT
9
+ OpenAPI Generator version: 5.2.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 spec version: 3.1.0-pre.0
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: 3.2.1-SNAPSHOT
9
+ OpenAPI Generator version: 5.2.1
10
10
 
11
11
  =end
12
12
 
@@ -19,7 +19,7 @@ require 'json'
19
19
  describe 'SlingApi' do
20
20
  before do
21
21
  # run before each test
22
- @instance = SwaggerAemClient::SlingApi.new
22
+ @api_instance = SwaggerAemClient::SlingApi.new
23
23
  end
24
24
 
25
25
  after do
@@ -28,7 +28,7 @@ describe 'SlingApi' do
28
28
 
29
29
  describe 'test an instance of SlingApi' do
30
30
  it 'should create an instance of SlingApi' do
31
- expect(@instance).to be_instance_of(SwaggerAemClient::SlingApi)
31
+ expect(@api_instance).to be_instance_of(SwaggerAemClient::SlingApi)
32
32
  end
33
33
  end
34
34
 
@@ -167,54 +167,54 @@ describe 'SlingApi' do
167
167
  # @param runmode
168
168
  # @param name
169
169
  # @param [Hash] opts the optional parameters
170
- # @option opts [BOOLEAN] :jcrcontentcqdistribute
171
- # @option opts [String] :jcrcontentcqdistribute_type_hint
172
- # @option opts [String] :jcrcontentcqname
173
- # @option opts [String] :jcrcontentcqtemplate
174
- # @option opts [BOOLEAN] :jcrcontentenabled
175
- # @option opts [String] :jcrcontentjcrdescription
176
- # @option opts [String] :jcrcontentjcrlast_modified
177
- # @option opts [String] :jcrcontentjcrlast_modified_by
178
- # @option opts [String] :jcrcontentjcrmixin_types
179
- # @option opts [String] :jcrcontentjcrtitle
180
- # @option opts [String] :jcrcontentlog_level
181
- # @option opts [BOOLEAN] :jcrcontentno_status_update
182
- # @option opts [BOOLEAN] :jcrcontentno_versioning
183
- # @option opts [Float] :jcrcontentprotocol_connect_timeout
184
- # @option opts [BOOLEAN] :jcrcontentprotocol_http_connection_closed
185
- # @option opts [String] :jcrcontentprotocol_http_expired
186
- # @option opts [Array<String>] :jcrcontentprotocol_http_headers
187
- # @option opts [String] :jcrcontentprotocol_http_headers_type_hint
188
- # @option opts [String] :jcrcontentprotocol_http_method
189
- # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
190
- # @option opts [String] :jcrcontentprotocol_interface
191
- # @option opts [Float] :jcrcontentprotocol_socket_timeout
192
- # @option opts [String] :jcrcontentprotocol_version
193
- # @option opts [String] :jcrcontentproxy_ntlm_domain
194
- # @option opts [String] :jcrcontentproxy_ntlm_host
195
- # @option opts [String] :jcrcontentproxy_host
196
- # @option opts [String] :jcrcontentproxy_password
197
- # @option opts [Float] :jcrcontentproxy_port
198
- # @option opts [String] :jcrcontentproxy_user
199
- # @option opts [Float] :jcrcontentqueue_batch_max_size
200
- # @option opts [String] :jcrcontentqueue_batch_mode
201
- # @option opts [Float] :jcrcontentqueue_batch_wait_time
202
- # @option opts [String] :jcrcontentretry_delay
203
- # @option opts [BOOLEAN] :jcrcontentreverse_replication
204
- # @option opts [String] :jcrcontentserialization_type
205
- # @option opts [String] :jcrcontentslingresource_type
206
- # @option opts [String] :jcrcontentssl
207
- # @option opts [String] :jcrcontenttransport_ntlm_domain
208
- # @option opts [String] :jcrcontenttransport_ntlm_host
209
- # @option opts [String] :jcrcontenttransport_password
210
- # @option opts [String] :jcrcontenttransport_uri
211
- # @option opts [String] :jcrcontenttransport_user
212
- # @option opts [BOOLEAN] :jcrcontenttrigger_distribute
213
- # @option opts [BOOLEAN] :jcrcontenttrigger_modified
214
- # @option opts [BOOLEAN] :jcrcontenttrigger_on_off_time
215
- # @option opts [BOOLEAN] :jcrcontenttrigger_receive
216
- # @option opts [BOOLEAN] :jcrcontenttrigger_specific
217
- # @option opts [String] :jcrcontentuser_id
170
+ # @option opts [Boolean] :jcrcontent_cqdistribute
171
+ # @option opts [String] :jcrcontent_cqdistribute_type_hint
172
+ # @option opts [String] :jcrcontent_cqname
173
+ # @option opts [String] :jcrcontent_cqtemplate
174
+ # @option opts [Boolean] :jcrcontent_enabled
175
+ # @option opts [String] :jcrcontent_jcrdescription
176
+ # @option opts [String] :jcrcontent_jcrlast_modified
177
+ # @option opts [String] :jcrcontent_jcrlast_modified_by
178
+ # @option opts [String] :jcrcontent_jcrmixin_types
179
+ # @option opts [String] :jcrcontent_jcrtitle
180
+ # @option opts [String] :jcrcontent_log_level
181
+ # @option opts [Boolean] :jcrcontent_no_status_update
182
+ # @option opts [Boolean] :jcrcontent_no_versioning
183
+ # @option opts [Float] :jcrcontent_protocol_connect_timeout
184
+ # @option opts [Boolean] :jcrcontent_protocol_http_connection_closed
185
+ # @option opts [String] :jcrcontent_protocol_http_expired
186
+ # @option opts [Array<String>] :jcrcontent_protocol_http_headers
187
+ # @option opts [String] :jcrcontent_protocol_http_headers_type_hint
188
+ # @option opts [String] :jcrcontent_protocol_http_method
189
+ # @option opts [Boolean] :jcrcontent_protocol_https_relaxed
190
+ # @option opts [String] :jcrcontent_protocol_interface
191
+ # @option opts [Float] :jcrcontent_protocol_socket_timeout
192
+ # @option opts [String] :jcrcontent_protocol_version
193
+ # @option opts [String] :jcrcontent_proxy_ntlm_domain
194
+ # @option opts [String] :jcrcontent_proxy_ntlm_host
195
+ # @option opts [String] :jcrcontent_proxy_host
196
+ # @option opts [String] :jcrcontent_proxy_password
197
+ # @option opts [Float] :jcrcontent_proxy_port
198
+ # @option opts [String] :jcrcontent_proxy_user
199
+ # @option opts [Float] :jcrcontent_queue_batch_max_size
200
+ # @option opts [String] :jcrcontent_queue_batch_mode
201
+ # @option opts [Float] :jcrcontent_queue_batch_wait_time
202
+ # @option opts [String] :jcrcontent_retry_delay
203
+ # @option opts [Boolean] :jcrcontent_reverse_replication
204
+ # @option opts [String] :jcrcontent_serialization_type
205
+ # @option opts [String] :jcrcontent_slingresource_type
206
+ # @option opts [String] :jcrcontent_ssl
207
+ # @option opts [String] :jcrcontent_transport_ntlm_domain
208
+ # @option opts [String] :jcrcontent_transport_ntlm_host
209
+ # @option opts [String] :jcrcontent_transport_password
210
+ # @option opts [String] :jcrcontent_transport_uri
211
+ # @option opts [String] :jcrcontent_transport_user
212
+ # @option opts [Boolean] :jcrcontent_trigger_distribute
213
+ # @option opts [Boolean] :jcrcontent_trigger_modified
214
+ # @option opts [Boolean] :jcrcontent_trigger_on_off_time
215
+ # @option opts [Boolean] :jcrcontent_trigger_receive
216
+ # @option opts [Boolean] :jcrcontent_trigger_specific
217
+ # @option opts [String] :jcrcontent_user_id
218
218
  # @option opts [String] :jcrprimary_type
219
219
  # @option opts [String] :operation
220
220
  # @return [nil]
@@ -254,7 +254,7 @@ describe 'SlingApi' do
254
254
  # @option opts [String] :create_user
255
255
  # @option opts [String] :create_group
256
256
  # @option opts [String] :reppassword
257
- # @option opts [String] :profilegiven_name
257
+ # @option opts [String] :profile_given_name
258
258
  # @return [String]
259
259
  describe 'post_authorizables test' do
260
260
  it 'should work' do
@@ -268,9 +268,9 @@ describe 'SlingApi' do
268
268
  # @option opts [String] :key_store_password_type_hint
269
269
  # @option opts [Integer] :service_ranking
270
270
  # @option opts [String] :service_ranking_type_hint
271
- # @option opts [BOOLEAN] :idp_http_redirect
271
+ # @option opts [Boolean] :idp_http_redirect
272
272
  # @option opts [String] :idp_http_redirect_type_hint
273
- # @option opts [BOOLEAN] :create_user
273
+ # @option opts [Boolean] :create_user
274
274
  # @option opts [String] :create_user_type_hint
275
275
  # @option opts [String] :default_redirect_url
276
276
  # @option opts [String] :default_redirect_url_type_hint
@@ -280,7 +280,7 @@ describe 'SlingApi' do
280
280
  # @option opts [String] :default_groups_type_hint
281
281
  # @option opts [String] :idp_cert_alias
282
282
  # @option opts [String] :idp_cert_alias_type_hint
283
- # @option opts [BOOLEAN] :add_group_memberships
283
+ # @option opts [Boolean] :add_group_memberships
284
284
  # @option opts [String] :add_group_memberships_type_hint
285
285
  # @option opts [Array<String>] :path
286
286
  # @option opts [String] :path_type_hint
@@ -298,11 +298,11 @@ describe 'SlingApi' do
298
298
  # @option opts [String] :service_provider_entity_id_type_hint
299
299
  # @option opts [String] :assertion_consumer_service_url
300
300
  # @option opts [String] :assertion_consumer_service_url_type_hint
301
- # @option opts [BOOLEAN] :handle_logout
301
+ # @option opts [Boolean] :handle_logout
302
302
  # @option opts [String] :handle_logout_type_hint
303
303
  # @option opts [String] :sp_private_key_alias
304
304
  # @option opts [String] :sp_private_key_alias_type_hint
305
- # @option opts [BOOLEAN] :use_encryption
305
+ # @option opts [Boolean] :use_encryption
306
306
  # @option opts [String] :use_encryption_type_hint
307
307
  # @option opts [String] :name_id_format
308
308
  # @option opts [String] :name_id_format_type_hint
@@ -321,7 +321,7 @@ describe 'SlingApi' do
321
321
 
322
322
  # unit tests for post_config_apache_felix_jetty_based_http_service
323
323
  # @param [Hash] opts the optional parameters
324
- # @option opts [BOOLEAN] :org_apache_felix_https_nio
324
+ # @option opts [Boolean] :org_apache_felix_https_nio
325
325
  # @option opts [String] :org_apache_felix_https_nio_type_hint
326
326
  # @option opts [String] :org_apache_felix_https_keystore
327
327
  # @option opts [String] :org_apache_felix_https_keystore_type_hint
@@ -337,7 +337,7 @@ describe 'SlingApi' do
337
337
  # @option opts [String] :org_apache_felix_https_truststore_password_type_hint
338
338
  # @option opts [String] :org_apache_felix_https_clientcertificate
339
339
  # @option opts [String] :org_apache_felix_https_clientcertificate_type_hint
340
- # @option opts [BOOLEAN] :org_apache_felix_https_enable
340
+ # @option opts [Boolean] :org_apache_felix_https_enable
341
341
  # @option opts [String] :org_apache_felix_https_enable_type_hint
342
342
  # @option opts [String] :org_osgi_service_http_port_secure
343
343
  # @option opts [String] :org_osgi_service_http_port_secure_type_hint
@@ -356,7 +356,7 @@ describe 'SlingApi' do
356
356
  # @option opts [String] :proxy_port_type_hint
357
357
  # @option opts [Array<String>] :proxy_exceptions
358
358
  # @option opts [String] :proxy_exceptions_type_hint
359
- # @option opts [BOOLEAN] :proxy_enabled
359
+ # @option opts [Boolean] :proxy_enabled
360
360
  # @option opts [String] :proxy_enabled_type_hint
361
361
  # @option opts [String] :proxy_user
362
362
  # @option opts [String] :proxy_user_type_hint
@@ -373,7 +373,7 @@ describe 'SlingApi' do
373
373
  # @param [Hash] opts the optional parameters
374
374
  # @option opts [String] :_alias
375
375
  # @option opts [String] :alias_type_hint
376
- # @option opts [BOOLEAN] :dav_create_absolute_uri
376
+ # @option opts [Boolean] :dav_create_absolute_uri
377
377
  # @option opts [String] :dav_create_absolute_uri_type_hint
378
378
  # @return [nil]
379
379
  describe 'post_config_apache_sling_dav_ex_servlet test' do
@@ -386,11 +386,11 @@ describe 'SlingApi' do
386
386
  # @param [Hash] opts the optional parameters
387
387
  # @option opts [String] :json_maximumresults
388
388
  # @option opts [String] :json_maximumresults_type_hint
389
- # @option opts [BOOLEAN] :enable_html
389
+ # @option opts [Boolean] :enable_html
390
390
  # @option opts [String] :enable_html_type_hint
391
- # @option opts [BOOLEAN] :enable_txt
391
+ # @option opts [Boolean] :enable_txt
392
392
  # @option opts [String] :enable_txt_type_hint
393
- # @option opts [BOOLEAN] :enable_xml
393
+ # @option opts [Boolean] :enable_xml
394
394
  # @option opts [String] :enable_xml_type_hint
395
395
  # @return [nil]
396
396
  describe 'post_config_apache_sling_get_servlet test' do
@@ -401,7 +401,7 @@ describe 'SlingApi' do
401
401
 
402
402
  # unit tests for post_config_apache_sling_referrer_filter
403
403
  # @param [Hash] opts the optional parameters
404
- # @option opts [BOOLEAN] :allow_empty
404
+ # @option opts [Boolean] :allow_empty
405
405
  # @option opts [String] :allow_empty_type_hint
406
406
  # @option opts [String] :allow_hosts
407
407
  # @option opts [String] :allow_hosts_type_hint
@@ -416,6 +416,16 @@ describe 'SlingApi' do
416
416
  end
417
417
  end
418
418
 
419
+ # unit tests for post_config_property
420
+ # @param config_node_name
421
+ # @param [Hash] opts the optional parameters
422
+ # @return [nil]
423
+ describe 'post_config_property test' do
424
+ it 'should work' do
425
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
426
+ end
427
+ end
428
+
419
429
  # unit tests for post_node
420
430
  # @param path
421
431
  # @param name
@@ -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: 3.1.0-pre.0
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: 3.2.1-SNAPSHOT
9
+ OpenAPI Generator version: 5.2.1
10
10
 
11
11
  =end
12
12
 
@@ -156,7 +156,7 @@ describe SwaggerAemClient::ApiClient do
156
156
  end
157
157
 
158
158
  it 'fails for invalid collection format' do
159
- expect(proc { api_client.build_collection_param(param, :INVALID) }).to raise_error(RuntimeError, 'unknown collection format: :INVALID')
159
+ expect { api_client.build_collection_param(param, :INVALID) }.to raise_error(RuntimeError, 'unknown collection format: :INVALID')
160
160
  end
161
161
  end
162
162
 
@@ -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: 3.1.0-pre.0
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: 3.2.1-SNAPSHOT
9
+ OpenAPI Generator version: 5.2.1
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,40 @@
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::BundleDataProp
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe SwaggerAemClient::BundleDataProp do
21
+ let(:instance) { SwaggerAemClient::BundleDataProp.new }
22
+
23
+ describe 'test an instance of BundleDataProp' do
24
+ it 'should create an instance of BundleDataProp' do
25
+ expect(instance).to be_instance_of(SwaggerAemClient::BundleDataProp)
26
+ end
27
+ end
28
+ describe 'test attribute "key"' 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 "value"' 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
+ end
@@ -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.2.0
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-SNAPSHOT
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.2.0
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-SNAPSHOT
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.2.0
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-SNAPSHOT
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.2.0
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-SNAPSHOT
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.3.0
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-SNAPSHOT
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.2.0
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-SNAPSHOT
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12