Class: Google::Apis::OndemandscanningV1beta1::Layer
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::Layer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/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
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Layer
constructor
A new instance of Layer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Layer
Returns a new instance of Layer.
1544 1545 1546 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1544 def initialize(**args) update!(**args) end |
Instance Attribute Details
#arguments ⇒ String
The recovered arguments to the Dockerfile directive.
Corresponds to the JSON property arguments
1536 1537 1538 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1536 def arguments @arguments end |
#directive ⇒ String
Required. The recovered Dockerfile directive used to construct this layer. See
https://docs.docker.com/engine/reference/builder/ for more information.
Corresponds to the JSON property directive
1542 1543 1544 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1542 def directive @directive end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1549 1550 1551 1552 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1549 def update!(**args) @arguments = args[:arguments] if args.key?(:arguments) @directive = args[:directive] if args.key?(:directive) end |