Class: Google::Apis::ContaineranalysisV1::Layer

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/containeranalysis_v1/classes.rb,
lib/google/apis/containeranalysis_v1/representations.rb,
lib/google/apis/containeranalysis_v1/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.



4281
4282
4283
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4281

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)


4273
4274
4275
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4273

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)


4279
4280
4281
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4279

def directive
  @directive
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4286
4287
4288
4289
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4286

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