apcera 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/apcera/api/services_and_bindings_api.rb +6 -5
- data/lib/apcera/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 345cd0ee7422fa5545714bd13fa302a7524abc6b
|
|
4
|
+
data.tar.gz: 2200416b78450514cc8a63171248953c7ac122e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a762fd6947da094eea873f11a338e6be2c80f8dd870e8812978afce13024cfed584e3fcbc782e6732a3894446ad57af2ccc7cc7134fff6db73e93c74bc7910f3
|
|
7
|
+
data.tar.gz: f8c644453c29b3508511304cbe6e94b512daee399c0a5f795fc2c296ee7241e208acfb1ee5bff4d642638a320a880a2ed39df57faa8c0e3f03bf03414a4f02d2
|
|
@@ -68,7 +68,7 @@ module Apcera
|
|
|
68
68
|
# @param [Hash] opts the optional parameters
|
|
69
69
|
# @option opts [String] :authorization
|
|
70
70
|
# @option opts [String] :fqn FQN of service to return.
|
|
71
|
-
# @return [
|
|
71
|
+
# @return [Array<Service>]
|
|
72
72
|
def services_get(opts = {})
|
|
73
73
|
|
|
74
74
|
if Configuration.debugging
|
|
@@ -103,16 +103,17 @@ module Apcera
|
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
auth_names = ['authorization']
|
|
106
|
-
@api_client.call_api(:GET, path,
|
|
106
|
+
result = @api_client.call_api(:GET, path,
|
|
107
107
|
:header_params => header_params,
|
|
108
108
|
:query_params => query_params,
|
|
109
109
|
:form_params => form_params,
|
|
110
110
|
:body => post_body,
|
|
111
|
-
:auth_names => auth_names
|
|
111
|
+
:auth_names => auth_names,
|
|
112
|
+
:return_type => 'Array<Service>')
|
|
112
113
|
if Configuration.debugging
|
|
113
|
-
Configuration.logger.debug "API called: ServicesAndBindingsApi#services_get"
|
|
114
|
+
Configuration.logger.debug "API called: ServicesAndBindingsApi#services_get. Result: #{result.inspect}"
|
|
114
115
|
end
|
|
115
|
-
return
|
|
116
|
+
return result
|
|
116
117
|
end
|
|
117
118
|
|
|
118
119
|
# Creates a new service.
|
data/lib/apcera/version.rb
CHANGED