Sha256: e685f8886aa0ea2205f104057dc8253e5e9494ad521543dc8c34aa28dde173a4

Contents?: true

Size: 965 Bytes

Versions: 14

Compression:

Stored size: 965 Bytes

Contents

module Fog
  module Compute
    class Google
      class Flavor < Fog::Model
        identity :name

        attribute :kind
        attribute :id
        attribute :creation_timestamp, :aliases => "creationTimestamp"
        attribute :deprecated
        attribute :description
        attribute :guest_cpus, :aliases => "guestCpus"
        attribute :image_space_gb, :aliases => "imageSpaceGb"
        attribute :maximum_persistent_disks, :aliases => "maximumPersistentDisks"
        attribute :maximum_persistent_disks_size, :aliases => "maximumPersistentDisksSizeGb"
        attribute :memory_mb, :aliases => "memoryMb"
        attribute :scratch_disks, aliases => "scratchDisks"
        attribute :self_link, :aliases => "selfLink"
        attribute :zone

        def reload
          requires :identity, :zone

          data = collection.get(identity, zone)
          merge_attributes(data.attributes)
          self
        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/flavor.rb
fog-google-0.5.5 lib/fog/compute/google/models/flavor.rb
fog-google-0.5.4 lib/fog/compute/google/models/flavor.rb
fog-google-0.5.3 lib/fog/compute/google/models/flavor.rb
fog-google-0.5.2 lib/fog/compute/google/models/flavor.rb
fog-google-0.5.1 lib/fog/compute/google/models/flavor.rb
fog-google-0.5.0 lib/fog/compute/google/models/flavor.rb
fog-google-0.4.2 lib/fog/compute/google/models/flavor.rb
fog-google-0.4.1 lib/fog/compute/google/models/flavor.rb
fog-google-0.4.0 lib/fog/compute/google/models/flavor.rb
fog-google-0.3.2 lib/fog/compute/google/models/flavor.rb
fog-google-0.3.1 lib/fog/compute/google/models/flavor.rb
fog-google-0.3.0 lib/fog/compute/google/models/flavor.rb
fog-google-0.2.0 lib/fog/compute/google/models/flavor.rb