class Google::Apis::CloudbuildV1::BuiltImage

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]

push_timing[RW]

Start and end times for a build execution phase. Corresponds to the JSON property `pushTiming` @return [Google::Apis::CloudbuildV1::TimeSpan]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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