Class: Google::Apis::ContaineranalysisV1alpha1::Layer

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



4668
4669
4670
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4668

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)


4661
4662
4663
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4661

def arguments
  @arguments
end

#directiveString

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

Returns:

  • (String)


4666
4667
4668
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4666

def directive
  @directive
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4673
4674
4675
4676
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4673

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