lib/fog/google/models/compute/snapshot.rb in fog-1.22.0 vs lib/fog/google/models/compute/snapshot.rb in fog-1.22.1

- old
+ new

@@ -1,13 +1,11 @@ require 'fog/core/model' module Fog module Compute class Google - class Snapshot < Fog::Model - identity :name attribute :kind attribute :self_link , :aliases => 'selfLink' attribute :creation_timestamp, :aliases => 'creationTimestamp' @@ -42,11 +40,9 @@ end def resource_url "#{self.service.project}/global/snapshots/#{name}" end - end - end end end