Class: Google::Apis::OndemandscanningV1beta1::Layer

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Layer

Returns a new instance of Layer.



1111
1112
1113
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1111

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

Instance Attribute Details

#argumentsString

The recovered arguments to the Dockerfile directive. Corresponds to the JSON property arguments

Returns:

  • (String)


1103
1104
1105
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1103

def arguments
  @arguments
end

#directiveString

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

Returns:

  • (String)


1109
1110
1111
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1109

def directive
  @directive
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1116
1117
1118
1119
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1116

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