class Google::Apis::ClouddeployV1::BuildArtifact

Description of an a image to use during Skaffold rendering.

Attributes

image[RW]

Image name in Skaffold configuration. Corresponds to the JSON property ‘image` @return [String]

tag[RW]

Image tag to use. This will generally be the full path to an image, such as “ gcr.io/my-project/busybox:1.2.3” or “gcr.io/my-project/busybox@sha256:abc123”. Corresponds to the JSON property ‘tag` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouddeploy_v1/classes.rb, line 236
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/clouddeploy_v1/classes.rb, line 241
def update!(**args)
  @image = args[:image] if args.key?(:image)
  @tag = args[:tag] if args.key?(:tag)
end