Class: Google::Apis::OndemandscanningV1::ImageOccurrence
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1::ImageOccurrence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb
Overview
Details of the derived image portion of the DockerImage relationship. This image would be produced from a Dockerfile with FROM .
Instance Attribute Summary collapse
-
#base_resource_url ⇒ String
Output only.
-
#distance ⇒ Fixnum
Output only.
-
#fingerprint ⇒ Google::Apis::OndemandscanningV1::Fingerprint
A set of properties that uniquely identify a given Docker image.
-
#layer_info ⇒ Array<Google::Apis::OndemandscanningV1::Layer>
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImageOccurrence
constructor
A new instance of ImageOccurrence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImageOccurrence
Returns a new instance of ImageOccurrence.
1000 1001 1002 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1000 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_resource_url ⇒ String
Output only. This contains the base image URL for the derived image occurrence.
Corresponds to the JSON property baseResourceUrl
980 981 982 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 980 def base_resource_url @base_resource_url end |
#distance ⇒ Fixnum
Output only. The number of layers by which this image differs from the
associated image basis.
Corresponds to the JSON property distance
986 987 988 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 986 def distance @distance end |
#fingerprint ⇒ Google::Apis::OndemandscanningV1::Fingerprint
A set of properties that uniquely identify a given Docker image.
Corresponds to the JSON property fingerprint
991 992 993 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 991 def fingerprint @fingerprint end |
#layer_info ⇒ Array<Google::Apis::OndemandscanningV1::Layer>
This contains layer-specific metadata, if populated it has length "distance"
and is ordered with [distance] being the layer immediately following the base
image and [1] being the final layer.
Corresponds to the JSON property layerInfo
998 999 1000 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 998 def layer_info @layer_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1005 1006 1007 1008 1009 1010 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1005 def update!(**args) @base_resource_url = args[:base_resource_url] if args.key?(:base_resource_url) @distance = args[:distance] if args.key?(:distance) @fingerprint = args[:fingerprint] if args.key?(:fingerprint) @layer_info = args[:layer_info] if args.key?(:layer_info) end |