Class: Google::Apis::ContaineranalysisV1alpha1::Layer
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::Layer
- Defined in:
- generated/google/apis/containeranalysis_v1alpha1/classes.rb,
generated/google/apis/containeranalysis_v1alpha1/representations.rb,
generated/google/apis/containeranalysis_v1alpha1/representations.rb
Overview
Layer holds metadata specific to a layer of a Docker image.
Instance Attribute Summary collapse
-
#arguments ⇒ String
The recovered arguments to the Dockerfile directive.
-
#directive ⇒ String
The recovered Dockerfile directive used to construct this layer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Layer
constructor
A new instance of Layer.
-
#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) ⇒ Layer
Returns a new instance of Layer
1459 1460 1461 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1459 def initialize(**args) update!(**args) end |
Instance Attribute Details
#arguments ⇒ String
The recovered arguments to the Dockerfile directive.
Corresponds to the JSON property arguments
1452 1453 1454 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1452 def arguments @arguments end |
#directive ⇒ String
The recovered Dockerfile directive used to construct this layer.
Corresponds to the JSON property directive
1457 1458 1459 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1457 def directive @directive end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1464 1465 1466 1467 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1464 def update!(**args) @arguments = args[:arguments] if args.key?(:arguments) @directive = args[:directive] if args.key?(:directive) end |