Sha256: c81e8ff0f068ac53d9d9151c2876ea85a8a060f765b3cddb7b8f993454b4717c

Contents?: true

Size: 1.62 KB

Versions: 4

Compression:

Stored size: 1.62 KB

Contents

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

        attribute :kind
        attribute :id
        attribute :allowed
        attribute :creation_timestamp, :aliases => "creationTimestamp"
        attribute :description
        attribute :network
        attribute :self_link, :aliases => "selfLink"
        attribute :source_ranges, :aliases => "sourceRanges"
        attribute :source_tags, :aliases => "sourceTags"
        attribute :target_tags, :aliases => "targetTags"

        def save
          requires :identity, :allowed, :network

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

        def update
          requires :identity, :allowed, :network

          data = service.update_firewall(identity, allowed, network, 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_firewall(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

4 entries across 4 versions & 1 rubygems

Version Path
fog-google-0.6.0 lib/fog/compute/google/models/firewall.rb
fog-google-0.5.5 lib/fog/compute/google/models/firewall.rb
fog-google-0.5.4 lib/fog/compute/google/models/firewall.rb
fog-google-0.5.3 lib/fog/compute/google/models/firewall.rb