Sha256: 474e648801256da72c6335249e1b44aa438793efedb35cdf3ff7c76dc62b27a1

Contents?: true

Size: 1.9 KB

Versions: 11

Compression:

Stored size: 1.9 KB

Contents

require 'fog/core/model'

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 :urlMap, :aliases => "urlMap"

        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

        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
        
        def set_url_map urlMap
          operation = service.set_target_http_proxy_url_map(self, urlMap)
          reload
        end

        def ready?
          begin
            service.get_target_http_proxy(self.name)
            true
          rescue Fog::Errors::NotFound
            false
          end
        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"
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
fog-google-0.0.5 lib/fog/google/models/compute/target_http_proxy.rb
fog-google-0.0.4 lib/fog/google/models/compute/target_http_proxy.rb
fog-google-0.0.3 lib/fog/google/models/compute/target_http_proxy.rb
fog-google-0.0.2 lib/fog/google/models/compute/target_http_proxy.rb
fog-1.29.0 lib/fog/google/models/compute/target_http_proxy.rb
fog-1.28.0 lib/fog/google/models/compute/target_http_proxy.rb
fog-1.27.0 lib/fog/google/models/compute/target_http_proxy.rb
fog-1.26.0 lib/fog/google/models/compute/target_http_proxy.rb
fog-1.25.0 lib/fog/google/models/compute/target_http_proxy.rb
nsidc-fog-1.24.1 lib/fog/google/models/compute/target_http_proxy.rb
fog-1.24.0 lib/fog/google/models/compute/target_http_proxy.rb