Sha256: d5aa6a058bc99589daff541116dd57d1972ebae5113e553cfada85c952beec8d
Contents?: true
Size: 720 Bytes
Versions: 39
Compression:
Stored size: 720 Bytes
Contents
require 'fog/core/model' module Fog module Compute class RackspaceV2 class Flavor < Fog::Model # @!attribute [r] id # @return [String] The flavor id identity :id # @!attribute [r] name # @return [String] flavor name attribute :name # @!attribute [r] rame # @return [Fixnum] ram in MB attribute :ram # @!attribute [r] disk # @return [String] disk space in GB attribute :disk # @!attribute [r] vcpus # @return [Fixnum] number of virtual CPUs attribute :vcpus # @!attribute [r] links # @return [Array] flavor links. attribute :links end end end end
Version data entries
39 entries across 37 versions & 6 rubygems