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

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

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Layer

Returns a new instance of Layer.



1396
1397
1398
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1396

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)


1389
1390
1391
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1389

def arguments
  @arguments
end

#directiveString

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

Returns:

  • (String)


1394
1395
1396
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1394

def directive
  @directive
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1401
1402
1403
1404
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1401

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