Sha256: 64c38e7a676a02017df5fca1c7ba0c9b39cf1c2afd18b232b90c0db626bd8650

Contents?: true

Size: 1.56 KB

Versions: 34

Compression:

Stored size: 1.56 KB

Contents

require 'fog/core/model'

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, self.network, self.dest_range, self.priority, self.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'])
          unless async
            operation.wait_for { ready? }
          end
          operation
        end
      end
    end
  end
end

Version data entries

34 entries across 32 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-google-0.1.0/lib/fog/google/models/compute/route.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/models/compute/route.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/models/compute/route.rb
fog-google-0.1.3 lib/fog/google/models/compute/route.rb
fog-google-0.1.2 lib/fog/google/models/compute/route.rb
fog-google-0.1.1 lib/fog/google/models/compute/route.rb
fog-google-0.1.0 lib/fog/google/models/compute/route.rb
fog-google-0.0.9 lib/fog/google/models/compute/route.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/models/compute/route.rb
fog-google-0.0.7 lib/fog/google/models/compute/route.rb
fog-google-0.0.6 lib/fog/google/models/compute/route.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/google/models/compute/route.rb
fog-google-0.0.5 lib/fog/google/models/compute/route.rb
fog-google-0.0.4 lib/fog/google/models/compute/route.rb
fog-google-0.0.3 lib/fog/google/models/compute/route.rb
fog-google-0.0.2 lib/fog/google/models/compute/route.rb
fog-1.29.0 lib/fog/google/models/compute/route.rb
fog-1.28.0 lib/fog/google/models/compute/route.rb
fog-1.27.0 lib/fog/google/models/compute/route.rb
fog-1.26.0 lib/fog/google/models/compute/route.rb