Sha256: 92aeb26428cb11af1ca2adf4eff7bb5a744b91d94bad0f724d11ecab35015d97
Contents?: true
Size: 1.83 KB
Versions: 2
Compression:
Stored size: 1.83 KB
Contents
module Fog module Compute class Google class TargetHttpProxy < Fog::Model identity :name attribute :kind, :aliases => "kind" attribute :self_link, :aliases => "selfLink" attribute :id, :aliases => "id" attribute :creation_timestamp, :aliases => "creationTimestamp" attribute :description, :aliases => "description" attribute :url_map, :aliases => "urlMap" def save requires :name options = { "description" => description, "urlMap" => url_map } data = service.insert_target_http_proxy(name, options).body operation = Fog::Compute::Google::Operations.new(:service => service).get(data["name"], data["zone"]) operation.wait_for { !pending? } reload end def destroy(async = true) requires :name operation = service.delete_target_http_proxy(name) unless async # wait until "DONE" to ensure the operation doesn't fail, raises # exception on error Fog.wait_for do operation.body["status"] == "DONE" end end operation end def set_url_map(url_map) service.set_target_http_proxy_url_map(self, url_map) reload end def ready? service.get_target_http_proxy(name) true rescue Fog::Errors::NotFound false end def reload requires :name return unless data = begin collection.get(name) rescue Excon::Errors::SocketError nil end new_attributes = data.attributes merge_attributes(new_attributes) self end RUNNING_STATE = "READY".freeze end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-google-0.6.0 | lib/fog/compute/google/models/target_http_proxy.rb |
fog-google-0.5.5 | lib/fog/compute/google/models/target_http_proxy.rb |