Sha256: 392bfb63063e9ebba77583413014b9823937cd018522afbd95a09fb444592678
Contents?: true
Size: 727 Bytes
Versions: 20
Compression:
Stored size: 727 Bytes
Contents
module Fog module Compute class Google class Mock def get_image_from_family(_family, _project = @project) Fog::Mock.not_implemented end end class Real # Returns the latest non-deprecated image that is part of an image family. # # @param family [String] Name of the image family # @param project [String] Project the image belongs to. # @return Google::Apis::ComputeV1::Image # # @see https://cloud.google.com/compute/docs/reference/latest/images/getFromFamily def get_image_from_family(family, project = @project) @compute.get_image_from_family(project, family) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems