Class: Google::Apis::ContaineranalysisV1beta1::Derived
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::Derived
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb
Overview
Derived describes the derived image portion (Occurrence) 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::ContaineranalysisV1beta1::Fingerprint
A set of properties that uniquely identify a given Docker image.
-
#layer_info ⇒ Array<Google::Apis::ContaineranalysisV1beta1::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) ⇒ Derived
constructor
A new instance of Derived.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Derived
Returns a new instance of Derived
780 781 782 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 780 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
760 761 762 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 760 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
766 767 768 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 766 def distance @distance end |
#fingerprint ⇒ Google::Apis::ContaineranalysisV1beta1::Fingerprint
A set of properties that uniquely identify a given Docker image.
Corresponds to the JSON property fingerprint
771 772 773 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 771 def fingerprint @fingerprint end |
#layer_info ⇒ Array<Google::Apis::ContaineranalysisV1beta1::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
778 779 780 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 778 def layer_info @layer_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
785 786 787 788 789 790 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 785 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 |