Class: CFoundry::V2::Base
- Inherits:
-
BaseClient
- Object
- BaseClient
- CFoundry::V2::Base
- Defined in:
- lib/cfoundry/v2/base.rb
Constant Summary
Constants inherited from BaseClient
Instance Attribute Summary collapse
-
#backtrace ⇒ Object
Returns the value of attribute backtrace.
-
#log ⇒ Object
Returns the value of attribute log.
-
#proxy ⇒ Object
Returns the value of attribute proxy.
-
#target ⇒ Object
Returns the value of attribute target.
-
#token ⇒ Object
Returns the value of attribute token.
-
#trace ⇒ Object
Returns the value of attribute trace.
Instance Method Summary collapse
- #all_pages(paginated) ⇒ Object
- #files(guid, instance, *path) ⇒ Object (also: #file)
-
#info ⇒ Object
Cloud metadata.
-
#initialize(target = "https://api.cloudfoundry.com", token = nil) ⇒ Base
constructor
A new instance of Base.
- #instances(guid) ⇒ Object
- #params_from(args) ⇒ Object
- #resource_match(fingerprints) ⇒ Object
- #stats(guid) ⇒ Object
-
#uaa ⇒ Object
The UAA used for this client.
- #upload_app(guid, zipfile, resources = []) ⇒ Object
Methods inherited from BaseClient
Constructor Details
#initialize(target = "https://api.cloudfoundry.com", token = nil) ⇒ Base
Returns a new instance of Base.
13 14 15 16 17 |
# File 'lib/cfoundry/v2/base.rb', line 13 def initialize( target = "https://api.cloudfoundry.com", token = nil) super end |
Instance Attribute Details
#backtrace ⇒ Object
Returns the value of attribute backtrace.
11 12 13 |
# File 'lib/cfoundry/v2/base.rb', line 11 def backtrace @backtrace end |
#log ⇒ Object
Returns the value of attribute log.
11 12 13 |
# File 'lib/cfoundry/v2/base.rb', line 11 def log @log end |
#proxy ⇒ Object
Returns the value of attribute proxy.
11 12 13 |
# File 'lib/cfoundry/v2/base.rb', line 11 def proxy @proxy end |
#target ⇒ Object
Returns the value of attribute target.
11 12 13 |
# File 'lib/cfoundry/v2/base.rb', line 11 def target @target end |
#token ⇒ Object
Returns the value of attribute token.
11 12 13 |
# File 'lib/cfoundry/v2/base.rb', line 11 def token @token end |
#trace ⇒ Object
Returns the value of attribute trace.
11 12 13 |
# File 'lib/cfoundry/v2/base.rb', line 11 def trace @trace end |
Instance Method Details
#all_pages(paginated) ⇒ Object
125 126 127 128 129 130 131 132 133 134 |
# File 'lib/cfoundry/v2/base.rb', line 125 def all_pages(paginated) payload = paginated[:resources] while next_page = paginated[:next_url] paginated = request_path(:get, next_page, nil => :json) payload += paginated[:resources] end payload end |
#files(guid, instance, *path) ⇒ Object Also known as: file
98 99 100 |
# File 'lib/cfoundry/v2/base.rb', line 98 def files(guid, instance, *path) get("v2", "apps", guid, "instances", instance, "files", *path) end |
#info ⇒ Object
Cloud metadata
37 38 39 |
# File 'lib/cfoundry/v2/base.rb', line 37 def info get("info", nil => :json) end |
#instances(guid) ⇒ Object
103 104 105 |
# File 'lib/cfoundry/v2/base.rb', line 103 def instances(guid) get("v2", "apps", guid, "instances", nil => :json) end |
#params_from(args) ⇒ Object
112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/cfoundry/v2/base.rb', line 112 def params_from(args) depth, query = args depth ||= 1 params = { :"inline-relations-depth" => depth } if query params[:q] = "#{query.keys.first}:#{query.values.first}" end params end |
#resource_match(fingerprints) ⇒ Object
77 78 79 |
# File 'lib/cfoundry/v2/base.rb', line 77 def resource_match(fingerprints) put(fingerprints, "v2", "resource_match", :json => :json) end |
#stats(guid) ⇒ Object
107 108 109 |
# File 'lib/cfoundry/v2/base.rb', line 107 def stats(guid) get("v2", "apps", guid, "stats", nil => :json) end |
#uaa ⇒ Object
The UAA used for this client.
‘false` if no UAA (legacy)
23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/cfoundry/v2/base.rb', line 23 def uaa return @uaa unless @uaa.nil? endpoint = info[:authorization_endpoint] return @uaa = false unless endpoint @uaa = CFoundry::UAAClient.new(endpoint) @uaa.trace = @trace @uaa.token = @token @uaa end |
#upload_app(guid, zipfile, resources = []) ⇒ Object
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/cfoundry/v2/base.rb', line 81 def upload_app(guid, zipfile, resources = []) payload = { :resources => MultiJson.dump(resources), :multipart => true, :application => if zipfile.is_a? File zipfile elsif zipfile.is_a? String File.new(zipfile, "rb") end } put(payload, "v2", "apps", guid, "bits") rescue RestClient::ServerBrokeConnection retry end |