class Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage

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::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/containeranalysis_v1/classes.rb, line 1693
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