Sha256: 1ed64d54818652f1aabb24cf95e5f9fb7845b27ddc34d27cb3c6b55fdefadec8

Contents?: true

Size: 1.49 KB

Versions: 14

Compression:

Stored size: 1.49 KB

Contents

module Fog
  module Compute
    class Google
      ##
      # Represents a Route resource
      #
      # @see https://developers.google.com/compute/docs/reference/latest/routes
      class Route < Fog::Model
        identity :name

        attribute :kind
        attribute :id
        attribute :creation_timestamp, :aliases => "creationTimestamp"
        attribute :description
        attribute :dest_range, :aliases => "destRange"
        attribute :network
        attribute :next_hop_gateway, :aliases => "nextHopGateway"
        attribute :next_hop_instance, :aliases => "nextHopInstance"
        attribute :next_hop_ip, :aliases => "nextHopIp"
        attribute :next_hop_network, :aliases => "nextHopNetwork"
        attribute :priority
        attribute :self_link, :aliases => "selfLink"
        attribute :tags
        attribute :warnings

        def save
          requires :identity, :network, :dest_range, :priority

          data = service.insert_route(identity, network, dest_range, priority, attributes)
          operation = Fog::Compute::Google::Operations.new(:service => service).get(data.body["name"])
          operation.wait_for { !pending? }
          reload
        end

        def destroy(async = true)
          requires :identity

          data = service.delete_route(identity)
          operation = Fog::Compute::Google::Operations.new(:service => service).get(data.body["name"])
          operation.wait_for { ready? } unless async
          operation
        end
      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/route.rb
fog-google-0.5.5 lib/fog/compute/google/models/route.rb
fog-google-0.5.4 lib/fog/compute/google/models/route.rb
fog-google-0.5.3 lib/fog/compute/google/models/route.rb
fog-google-0.5.2 lib/fog/compute/google/models/route.rb
fog-google-0.5.1 lib/fog/compute/google/models/route.rb
fog-google-0.5.0 lib/fog/compute/google/models/route.rb
fog-google-0.4.2 lib/fog/compute/google/models/route.rb
fog-google-0.4.1 lib/fog/compute/google/models/route.rb
fog-google-0.4.0 lib/fog/compute/google/models/route.rb
fog-google-0.3.2 lib/fog/compute/google/models/route.rb
fog-google-0.3.1 lib/fog/compute/google/models/route.rb
fog-google-0.3.0 lib/fog/compute/google/models/route.rb
fog-google-0.2.0 lib/fog/compute/google/models/route.rb