swagger_aem 2.2.0 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +9 -12
  4. data/docs/ConsoleApi.md +45 -0
  5. data/docs/SlingApi.md +7 -7
  6. data/git_push.sh +1 -1
  7. data/lib/swagger_aem.rb +2 -2
  8. data/lib/swagger_aem/api/console_api.rb +49 -2
  9. data/lib/swagger_aem/api/cq_api.rb +2 -2
  10. data/lib/swagger_aem/api/crx_api.rb +2 -2
  11. data/lib/swagger_aem/api/custom_api.rb +2 -2
  12. data/lib/swagger_aem/api/sling_api.rb +2 -2
  13. data/lib/swagger_aem/api_client.rb +2 -2
  14. data/lib/swagger_aem/api_error.rb +2 -2
  15. data/lib/swagger_aem/configuration.rb +2 -2
  16. data/lib/swagger_aem/models/install_status.rb +3 -3
  17. data/lib/swagger_aem/models/install_status_status.rb +3 -3
  18. data/lib/swagger_aem/models/keystore_chain_items.rb +3 -3
  19. data/lib/swagger_aem/models/keystore_info.rb +3 -3
  20. data/lib/swagger_aem/models/keystore_items.rb +3 -3
  21. data/lib/swagger_aem/models/saml_configuration_info.rb +3 -3
  22. data/lib/swagger_aem/models/saml_configuration_properties.rb +3 -3
  23. data/lib/swagger_aem/models/saml_configuration_property_items_array.rb +3 -3
  24. data/lib/swagger_aem/models/saml_configuration_property_items_boolean.rb +3 -3
  25. data/lib/swagger_aem/models/saml_configuration_property_items_long.rb +3 -3
  26. data/lib/swagger_aem/models/saml_configuration_property_items_string.rb +3 -3
  27. data/lib/swagger_aem/models/truststore_info.rb +3 -3
  28. data/lib/swagger_aem/models/truststore_items.rb +3 -3
  29. data/lib/swagger_aem/version.rb +3 -3
  30. data/spec/api/console_api_spec.rb +13 -2
  31. data/spec/api/cq_api_spec.rb +2 -2
  32. data/spec/api/crx_api_spec.rb +2 -2
  33. data/spec/api/custom_api_spec.rb +2 -2
  34. data/spec/api/sling_api_spec.rb +2 -2
  35. data/spec/api_client_spec.rb +2 -2
  36. data/spec/configuration_spec.rb +2 -2
  37. data/spec/models/install_status_spec.rb +2 -2
  38. data/spec/models/install_status_status_spec.rb +2 -2
  39. data/spec/models/keystore_chain_items_spec.rb +2 -2
  40. data/spec/models/keystore_info_spec.rb +2 -2
  41. data/spec/models/keystore_items_spec.rb +2 -2
  42. data/spec/models/saml_configuration_info_spec.rb +2 -2
  43. data/spec/models/saml_configuration_properties_spec.rb +2 -2
  44. data/spec/models/saml_configuration_property_items_array_spec.rb +2 -2
  45. data/spec/models/saml_configuration_property_items_boolean_spec.rb +2 -2
  46. data/spec/models/saml_configuration_property_items_long_spec.rb +2 -2
  47. data/spec/models/saml_configuration_property_items_string_spec.rb +2 -2
  48. data/spec/models/truststore_info_spec.rb +2 -2
  49. data/spec/models/truststore_items_spec.rb +2 -2
  50. data/spec/spec_helper.rb +2 -2
  51. data/swagger_aem.gemspec +2 -2
  52. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 360616946c5e3265484ae2ec2b03d5c67bd5fb14
4
- data.tar.gz: f0b21b13860d45585b6bddd1d2941bd101a7a37f
3
+ metadata.gz: 3ad188794dcfff907b25e2edac9aaf66af6afc2a
4
+ data.tar.gz: 504e6dfd419237fd7e51bba20769b144a8e151e1
5
5
  SHA512:
6
- metadata.gz: 3803a5b6b341cf6be7e0f3c0a0437ae64ed79012839fb47b05b1ea8494f8d1645d63d21a73b0a8a341055f3d6f127a87fee5328727e5420f4465a38ef269d4eb
7
- data.tar.gz: 68eef48ef72178f94fbfaafa9eb6e2aba8177d7c2798188796f832cdd4a748e842f64cd581362449900be6c66ab355232781edc4395d2f8a71d37e6a3acdf681
6
+ metadata.gz: f2a6336ab235ea3258944edad9475ef7d50a3132402ae0e4b128a5495b7ff44ef21f37b93843662aaf92bec9fa63ce4c9f0ebbbf7848026c0757d8496ef8c991
7
+ data.tar.gz: 4b55d2b75663b1795a06112446abdafbb4ff7bffb0f48c359709a0cace7bec39aa5a682c60388f546c5c5555d232a34bb0c06edd401f626a3035be5e418b8d0d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- swagger_aem (2.2.0)
4
+ swagger_aem (2.3.0)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
@@ -66,4 +66,4 @@ DEPENDENCIES
66
66
  webmock (~> 1.24, >= 1.24.3)
67
67
 
68
68
  BUNDLED WITH
69
- 1.17.1
69
+ 1.15.4
data/README.md CHANGED
@@ -6,8 +6,8 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
6
6
 
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
- - API version: 2.1.0
10
- - Package version: 2.2.0
9
+ - API version: 2.2.0
10
+ - Package version: 2.3.0
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
13
13
 
@@ -24,15 +24,15 @@ gem build swagger_aem.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./swagger_aem-2.2.0.gem
27
+ gem install ./swagger_aem-2.3.0.gem
28
28
  ```
29
- (for development, run `gem install --dev ./swagger_aem-2.2.0.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./swagger_aem-2.3.0.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'swagger_aem', '~> 2.2.0'
35
+ gem 'swagger_aem', '~> 2.3.0'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -64,15 +64,11 @@ end
64
64
 
65
65
  api_instance = SwaggerAemClient::ConsoleApi.new
66
66
 
67
- name = "name_example" # String |
68
-
69
- action = "action_example" # String |
70
-
71
-
72
67
  begin
73
- api_instance.post_bundle(name, action)
68
+ result = api_instance.get_aem_product_info
69
+ p result
74
70
  rescue SwaggerAemClient::ApiError => e
75
- puts "Exception when calling ConsoleApi->post_bundle: #{e}"
71
+ puts "Exception when calling ConsoleApi->get_aem_product_info: #{e}"
76
72
  end
77
73
 
78
74
  ```
@@ -83,6 +79,7 @@ All URIs are relative to *http://localhost*
83
79
 
84
80
  Class | Method | HTTP request | Description
85
81
  ------------ | ------------- | ------------- | -------------
82
+ *SwaggerAemClient::ConsoleApi* | [**get_aem_product_info**](docs/ConsoleApi.md#get_aem_product_info) | **GET** /system/console/status-productinfo.json |
86
83
  *SwaggerAemClient::ConsoleApi* | [**post_bundle**](docs/ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
87
84
  *SwaggerAemClient::ConsoleApi* | [**post_jmx_repository**](docs/ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type=Repository/op/{action} |
88
85
  *SwaggerAemClient::ConsoleApi* | [**post_saml_configuration**](docs/ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
@@ -4,11 +4,56 @@ All URIs are relative to *http://localhost*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
+ [**get_aem_product_info**](ConsoleApi.md#get_aem_product_info) | **GET** /system/console/status-productinfo.json |
7
8
  [**post_bundle**](ConsoleApi.md#post_bundle) | **POST** /system/console/bundles/{name} |
8
9
  [**post_jmx_repository**](ConsoleApi.md#post_jmx_repository) | **POST** /system/console/jmx/com.adobe.granite:type=Repository/op/{action} |
9
10
  [**post_saml_configuration**](ConsoleApi.md#post_saml_configuration) | **POST** /system/console/configMgr/com.adobe.granite.auth.saml.SamlAuthenticationHandler |
10
11
 
11
12
 
13
+ # **get_aem_product_info**
14
+ > Array<String> get_aem_product_info
15
+
16
+
17
+
18
+ ### Example
19
+ ```ruby
20
+ # load the gem
21
+ require 'swagger_aem'
22
+ # setup authorization
23
+ SwaggerAemClient.configure do |config|
24
+ # Configure HTTP basic authorization: aemAuth
25
+ config.username = 'YOUR USERNAME'
26
+ config.password = 'YOUR PASSWORD'
27
+ end
28
+
29
+ api_instance = SwaggerAemClient::ConsoleApi.new
30
+
31
+ begin
32
+ result = api_instance.get_aem_product_info
33
+ p result
34
+ rescue SwaggerAemClient::ApiError => e
35
+ puts "Exception when calling ConsoleApi->get_aem_product_info: #{e}"
36
+ end
37
+ ```
38
+
39
+ ### Parameters
40
+ This endpoint does not need any parameter.
41
+
42
+ ### Return type
43
+
44
+ **Array<String>**
45
+
46
+ ### Authorization
47
+
48
+ [aemAuth](../README.md#aemAuth)
49
+
50
+ ### HTTP request headers
51
+
52
+ - **Content-Type**: Not defined
53
+ - **Accept**: application/json
54
+
55
+
56
+
12
57
  # **post_bundle**
13
58
  > post_bundle(name, action)
14
59
 
@@ -529,7 +529,7 @@ api_instance = SwaggerAemClient::SlingApi.new
529
529
 
530
530
  path = "path_example" # String |
531
531
 
532
- p_limit = 8.14 # Float |
532
+ p_limit = 3.4 # Float |
533
533
 
534
534
  _1_property = "_1_property_example" # String |
535
535
 
@@ -692,7 +692,7 @@ opts = {
692
692
  jcrcontentlog_level: "jcrcontentlog_level_example", # String |
693
693
  jcrcontentno_status_update: true, # BOOLEAN |
694
694
  jcrcontentno_versioning: true, # BOOLEAN |
695
- jcrcontentprotocol_connect_timeout: 8.14, # Float |
695
+ jcrcontentprotocol_connect_timeout: 3.4, # Float |
696
696
  jcrcontentprotocol_http_connection_closed: true, # BOOLEAN |
697
697
  jcrcontentprotocol_http_expired: "jcrcontentprotocol_http_expired_example", # String |
698
698
  jcrcontentprotocol_http_headers: ["jcrcontentprotocol_http_headers_example"], # Array<String> |
@@ -700,17 +700,17 @@ opts = {
700
700
  jcrcontentprotocol_http_method: "jcrcontentprotocol_http_method_example", # String |
701
701
  jcrcontentprotocol_https_relaxed: true, # BOOLEAN |
702
702
  jcrcontentprotocol_interface: "jcrcontentprotocol_interface_example", # String |
703
- jcrcontentprotocol_socket_timeout: 8.14, # Float |
703
+ jcrcontentprotocol_socket_timeout: 3.4, # Float |
704
704
  jcrcontentprotocol_version: "jcrcontentprotocol_version_example", # String |
705
705
  jcrcontentproxy_ntlm_domain: "jcrcontentproxy_ntlm_domain_example", # String |
706
706
  jcrcontentproxy_ntlm_host: "jcrcontentproxy_ntlm_host_example", # String |
707
707
  jcrcontentproxy_host: "jcrcontentproxy_host_example", # String |
708
708
  jcrcontentproxy_password: "jcrcontentproxy_password_example", # String |
709
- jcrcontentproxy_port: 8.14, # Float |
709
+ jcrcontentproxy_port: 3.4, # Float |
710
710
  jcrcontentproxy_user: "jcrcontentproxy_user_example", # String |
711
- jcrcontentqueue_batch_max_size: 8.14, # Float |
711
+ jcrcontentqueue_batch_max_size: 3.4, # Float |
712
712
  jcrcontentqueue_batch_mode: "jcrcontentqueue_batch_mode_example", # String |
713
- jcrcontentqueue_batch_wait_time: 8.14, # Float |
713
+ jcrcontentqueue_batch_wait_time: 3.4, # Float |
714
714
  jcrcontentretry_delay: "jcrcontentretry_delay_example", # String |
715
715
  jcrcontentreverse_replication: true, # BOOLEAN |
716
716
  jcrcontentserialization_type: "jcrcontentserialization_type_example", # String |
@@ -1559,7 +1559,7 @@ api_instance = SwaggerAemClient::SlingApi.new
1559
1559
 
1560
1560
  path = "path_example" # String |
1561
1561
 
1562
- p_limit = 8.14 # Float |
1562
+ p_limit = 3.4 # Float |
1563
1563
 
1564
1564
  _1_property = "_1_property_example" # String |
1565
1565
 
@@ -39,7 +39,7 @@ git_remote=`git remote`
39
39
  if [ "$git_remote" = "" ]; then # git remote not defined
40
40
 
41
41
  if [ "$GIT_TOKEN" = "" ]; then
42
- echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
42
+ echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git crediential in your environment."
43
43
  git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
44
44
  else
45
45
  git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -20,6 +20,53 @@ module SwaggerAemClient
20
20
  @api_client = api_client
21
21
  end
22
22
 
23
+ #
24
+ #
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [Array<String>]
27
+ def get_aem_product_info(opts = {})
28
+ data, _status_code, _headers = get_aem_product_info_with_http_info(opts)
29
+ return data
30
+ end
31
+
32
+ #
33
+ #
34
+ # @param [Hash] opts the optional parameters
35
+ # @return [Array<(Array<String>, Fixnum, Hash)>] Array<String> data, response status code and response headers
36
+ def get_aem_product_info_with_http_info(opts = {})
37
+ if @api_client.config.debugging
38
+ @api_client.config.logger.debug "Calling API: ConsoleApi.get_aem_product_info ..."
39
+ end
40
+ # resource path
41
+ local_var_path = "/system/console/status-productinfo.json"
42
+
43
+ # query parameters
44
+ query_params = {}
45
+
46
+ # header parameters
47
+ header_params = {}
48
+ # HTTP header 'Accept' (if needed)
49
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
50
+
51
+ # form parameters
52
+ form_params = {}
53
+
54
+ # http body (model)
55
+ post_body = nil
56
+ auth_names = ['aemAuth']
57
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
58
+ :header_params => header_params,
59
+ :query_params => query_params,
60
+ :form_params => form_params,
61
+ :body => post_body,
62
+ :auth_names => auth_names,
63
+ :return_type => 'Array<String>')
64
+ if @api_client.config.debugging
65
+ @api_client.config.logger.debug "API called: ConsoleApi#get_aem_product_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
66
+ end
67
+ return data, status_code, headers
68
+ end
69
+
23
70
  #
24
71
  #
25
72
  # @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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -47,7 +47,7 @@ module SwaggerAemClient
47
47
  end
48
48
 
49
49
  # Show invalid properties with the reasons. Usually used together with valid?
50
- # @return Array for valid properties with the reasons
50
+ # @return Array for valid properies with the reasons
51
51
  def list_invalid_properties
52
52
  invalid_properties = Array.new
53
53
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -55,7 +55,7 @@ module SwaggerAemClient
55
55
  end
56
56
 
57
57
  # Show invalid properties with the reasons. Usually used together with valid?
58
- # @return Array for valid properties with the reasons
58
+ # @return Array for valid properies with the reasons
59
59
  def list_invalid_properties
60
60
  invalid_properties = Array.new
61
61
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -84,7 +84,7 @@ module SwaggerAemClient
84
84
  end
85
85
 
86
86
  # Show invalid properties with the reasons. Usually used together with valid?
87
- # @return Array for valid properties with the reasons
87
+ # @return Array for valid properies with the reasons
88
88
  def list_invalid_properties
89
89
  invalid_properties = Array.new
90
90
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -58,7 +58,7 @@ module SwaggerAemClient
58
58
  end
59
59
 
60
60
  # Show invalid properties with the reasons. Usually used together with valid?
61
- # @return Array for valid properties with the reasons
61
+ # @return Array for valid properies with the reasons
62
62
  def list_invalid_properties
63
63
  invalid_properties = Array.new
64
64
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -85,7 +85,7 @@ module SwaggerAemClient
85
85
  end
86
86
 
87
87
  # Show invalid properties with the reasons. Usually used together with valid?
88
- # @return Array for valid properties with the reasons
88
+ # @return Array for valid properies with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
91
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -92,7 +92,7 @@ module SwaggerAemClient
92
92
  end
93
93
 
94
94
  # Show invalid properties with the reasons. Usually used together with valid?
95
- # @return Array for valid properties with the reasons
95
+ # @return Array for valid properies with the reasons
96
96
  def list_invalid_properties
97
97
  invalid_properties = Array.new
98
98
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -303,7 +303,7 @@ module SwaggerAemClient
303
303
  end
304
304
 
305
305
  # Show invalid properties with the reasons. Usually used together with valid?
306
- # @return Array for valid properties with the reasons
306
+ # @return Array for valid properies with the reasons
307
307
  def list_invalid_properties
308
308
  invalid_properties = Array.new
309
309
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -95,7 +95,7 @@ module SwaggerAemClient
95
95
  end
96
96
 
97
97
  # Show invalid properties with the reasons. Usually used together with valid?
98
- # @return Array for valid properties with the reasons
98
+ # @return Array for valid properies with the reasons
99
99
  def list_invalid_properties
100
100
  invalid_properties = Array.new
101
101
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -93,7 +93,7 @@ module SwaggerAemClient
93
93
  end
94
94
 
95
95
  # Show invalid properties with the reasons. Usually used together with valid?
96
- # @return Array for valid properties with the reasons
96
+ # @return Array for valid properies with the reasons
97
97
  def list_invalid_properties
98
98
  invalid_properties = Array.new
99
99
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -93,7 +93,7 @@ module SwaggerAemClient
93
93
  end
94
94
 
95
95
  # Show invalid properties with the reasons. Usually used together with valid?
96
- # @return Array for valid properties with the reasons
96
+ # @return Array for valid properies with the reasons
97
97
  def list_invalid_properties
98
98
  invalid_properties = Array.new
99
99
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -93,7 +93,7 @@ module SwaggerAemClient
93
93
  end
94
94
 
95
95
  # Show invalid properties with the reasons. Usually used together with valid?
96
- # @return Array for valid properties with the reasons
96
+ # @return Array for valid properies with the reasons
97
97
  def list_invalid_properties
98
98
  invalid_properties = Array.new
99
99
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -58,7 +58,7 @@ module SwaggerAemClient
58
58
  end
59
59
 
60
60
  # Show invalid properties with the reasons. Usually used together with valid?
61
- # @return Array for valid properties with the reasons
61
+ # @return Array for valid properies with the reasons
62
62
  def list_invalid_properties
63
63
  invalid_properties = Array.new
64
64
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -101,7 +101,7 @@ module SwaggerAemClient
101
101
  end
102
102
 
103
103
  # Show invalid properties with the reasons. Usually used together with valid?
104
- # @return Array for valid properties with the reasons
104
+ # @return Array for valid properies with the reasons
105
105
  def list_invalid_properties
106
106
  invalid_properties = Array.new
107
107
  return invalid_properties
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
13
13
  module SwaggerAemClient
14
- VERSION = "2.2.0"
14
+ VERSION = "2.3.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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -32,6 +32,17 @@ describe 'ConsoleApi' do
32
32
  end
33
33
  end
34
34
 
35
+ # unit tests for get_aem_product_info
36
+ #
37
+ #
38
+ # @param [Hash] opts the optional parameters
39
+ # @return [Array<String>]
40
+ describe 'get_aem_product_info test' 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
+
35
46
  # unit tests for post_bundle
36
47
  #
37
48
  #
@@ -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.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.1.0
6
+ OpenAPI spec version: 2.2.0
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -5,10 +5,10 @@
5
5
 
6
6
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
7
7
 
8
- OpenAPI spec version: 2.1.0
8
+ OpenAPI spec version: 2.2.0
9
9
  Contact: opensource@shinesolutions.com
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
- Swagger Codegen version: 2.3.1
11
+ Swagger Codegen version: 2.3.0-SNAPSHOT
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: 2.2.0
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shine Solutions
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-10 00:00:00.000000000 Z
11
+ date: 2018-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus