Sha256: c2582bf6c2426e19be0982e6cc2b2ff15aebba592db7f864d3c1fe39cccb5ef9

Contents?: true

Size: 1.91 KB

Versions: 14

Compression:

Stored size: 1.91 KB

Contents

module Fog
  module Compute
    class Google
      class TargetInstance < 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 :zone, :aliases => "zone"
        attribute :instance, :aliases => "instance"
        attribute :nat_policy, :aliases => "natPolicy"

        def save
          requires :name, :zone

          options = {
            "description" => description,
            "zone" => zone,
            "natPolicy" => nat_policy,
            "instance" => instance
          }

          data = service.insert_target_instance(name, zone, options)
          operation = Fog::Compute::Google::Operations.new(:service => service).get(data.body["name"], data.body["zone"])
          operation.wait_for { !pending? }
          reload
        end

        def destroy(async = true)
          requires :name, :zone
          operation = service.delete_target_instance(name, zone)
          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 ready?
          service.get_target_instance(name, zone)
          true
        rescue Fog::Errors::NotFound
          false
        end

        def reload
          requires :name, :zone

          begin
            data = collection.get(name, zone)
            new_attributes = data.attributes
            merge_attributes(new_attributes)
            return self
          rescue Excon::Errors::SocketError
            return nil
          end
        end

        RUNNING_STATE = "READY"
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-google-0.6.0 lib/fog/compute/google/models/target_instance.rb
fog-google-0.5.5 lib/fog/compute/google/models/target_instance.rb
fog-google-0.5.4 lib/fog/compute/google/models/target_instance.rb
fog-google-0.5.3 lib/fog/compute/google/models/target_instance.rb
fog-google-0.5.2 lib/fog/compute/google/models/target_instance.rb
fog-google-0.5.1 lib/fog/compute/google/models/target_instance.rb
fog-google-0.5.0 lib/fog/compute/google/models/target_instance.rb
fog-google-0.4.2 lib/fog/compute/google/models/target_instance.rb
fog-google-0.4.1 lib/fog/compute/google/models/target_instance.rb
fog-google-0.4.0 lib/fog/compute/google/models/target_instance.rb
fog-google-0.3.2 lib/fog/compute/google/models/target_instance.rb
fog-google-0.3.1 lib/fog/compute/google/models/target_instance.rb
fog-google-0.3.0 lib/fog/compute/google/models/target_instance.rb
fog-google-0.2.0 lib/fog/compute/google/models/target_instance.rb