class Google::Apis::CloudbuildV1::BuiltImage

BuiltImage describes an image built by the pipeline.

Attributes

digest[RW]

Docker Registry 2.0 digest. Corresponds to the JSON property `digest` @return [String]

name[RW]

Name used to push the container image to Google Container Registry, as presented to `docker push`. Corresponds to the JSON property `name` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/cloudbuild_v1/classes.rb, line 257
def update!(**args)
  @digest = args[:digest] if args.key?(:digest)
  @name = args[:name] if args.key?(:name)
end