Sha256: 45b9d8c896ce6085d98ed95ad09601c13d6f466ac0103183ef0c1cedfabe3dee

Contents?: true

Size: 1.65 KB

Versions: 28

Compression:

Stored size: 1.65 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 :next_hop_vpn_tunnel, :aliases => "nextHopVpnTunnel"
        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.name)
          operation.wait_for { ready? }
          reload
        end

        def destroy(async = true)
          requires :identity

          data = service.delete_route(identity)
          operation = Fog::Compute::Google::Operations.new(:service => service)
                                                      .get(data.name)
          operation.wait_for { ready? } unless async
          operation
        end
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
fog-google-1.24.1 lib/fog/compute/google/models/route.rb
fog-google-1.24.0 lib/fog/compute/google/models/route.rb
fog-google-1.23.0 lib/fog/compute/google/models/route.rb
fog-google-1.22.0 lib/fog/compute/google/models/route.rb
fog-google-1.21.1 lib/fog/compute/google/models/route.rb
fog-google-1.21.0 lib/fog/compute/google/models/route.rb
fog-google-1.20.0 lib/fog/compute/google/models/route.rb
fog-google-1.19.0 lib/fog/compute/google/models/route.rb
fog-google-1.18.0 lib/fog/compute/google/models/route.rb
fog-google-1.17.0 lib/fog/compute/google/models/route.rb
fog-google-1.16.1 lib/fog/compute/google/models/route.rb
fog-google-1.16.0 lib/fog/compute/google/models/route.rb
fog-google-1.15.0 lib/fog/compute/google/models/route.rb
fog-google-1.14.0 lib/fog/compute/google/models/route.rb
gitlab-fog-google-1.14.0 lib/fog/compute/google/models/route.rb
fog-google-1.13.0 lib/fog/compute/google/models/route.rb
gitlab-fog-google-1.13.0 lib/fog/compute/google/models/route.rb
fog-google-1.12.1 lib/fog/compute/google/models/route.rb
fog-google-1.12.0 lib/fog/compute/google/models/route.rb
fog-google-1.11.0 lib/fog/compute/google/models/route.rb