Class: Google::Apis::ContaineranalysisV1beta1::Layer

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



3807
3808
3809
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3807

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)


3800
3801
3802
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3800

def arguments
  @arguments
end

#directiveString

Required. The recovered Dockerfile directive used to construct this layer. Corresponds to the JSON property directive

Returns:

  • (String)


3805
3806
3807
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3805

def directive
  @directive
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3812
3813
3814
3815
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3812

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