Class: Google::Apis::ContaineranalysisV1alpha1::Basis

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/containeranalysis_v1alpha1/classes.rb,
generated/google/apis/containeranalysis_v1alpha1/representations.rb,
generated/google/apis/containeranalysis_v1alpha1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Basis

Returns a new instance of Basis.



176
177
178
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 176

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#fingerprintGoogle::Apis::ContaineranalysisV1alpha1::Fingerprint

A set of properties that uniquely identify a given Docker image. Corresponds to the JSON property fingerprint



168
169
170
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 168

def fingerprint
  @fingerprint
end

#resource_urlString

The resource_url for the resource representing the basis of associated occurrence images. Corresponds to the JSON property resourceUrl

Returns:

  • (String)


174
175
176
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 174

def resource_url
  @resource_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



181
182
183
184
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 181

def update!(**args)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @resource_url = args[:resource_url] if args.key?(:resource_url)
end