Class: Fog::Compute::Google::TargetHttpProxy

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/google/models/compute/target_http_proxy.rb

Constant Summary collapse

RUNNING_STATE =
"READY"

Instance Method Summary collapse

Instance Method Details

#destroy(async = true) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/fog/google/models/compute/target_http_proxy.rb', line 30

def destroy(async=true)
  requires :name
  operation = service.delete_target_http_proxy(name)
  if not 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

#ready?Boolean

Returns:

  • (Boolean)


48
49
50
51
52
53
54
55
# File 'lib/fog/google/models/compute/target_http_proxy.rb', line 48

def ready?
  begin
    service.get_target_http_proxy(self.name)
    true
  rescue Fog::Errors::NotFound
    false
  end
end

#reloadObject



57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/fog/google/models/compute/target_http_proxy.rb', line 57

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

#saveObject



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/google/models/compute/target_http_proxy.rb', line 16

def save
  requires :name

  options = {
    'description' => description,
    'urlMap'      => urlMap
  }

  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

#set_url_map(urlMap) ⇒ Object



43
44
45
46
# File 'lib/fog/google/models/compute/target_http_proxy.rb', line 43

def set_url_map urlMap
  operation = service.set_target_http_proxy_url_map(self, urlMap)
  reload
end