class Google::Apis::ContaineranalysisV1::ImageNote

Basis describes the base image portion (Note) of the DockerImage relationship. Linked occurrences are derived from this or an equivalent image via: FROM Or an equivalent reference, e.g., a tag of the resource_url.

Attributes

fingerprint[RW]

A set of properties that uniquely identify a given Docker image. Corresponds to the JSON property ‘fingerprint` @return [Google::Apis::ContaineranalysisV1::Fingerprint]

resource_url[RW]

Required. Immutable. The resource_url for the resource representing the basis of associated occurrence images. Corresponds to the JSON property ‘resourceUrl` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1/classes.rb, line 3028
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 3033
def update!(**args)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @resource_url = args[:resource_url] if args.key?(:resource_url)
end