Package io.grafeas.v1beta1.image
Interface LayerOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Layer,Layer.Builder
public interface LayerOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetArguments()The recovered arguments to the Dockerfile directive.com.google.protobuf.ByteStringgetArgumentsBytes()The recovered arguments to the Dockerfile directive.Layer.DirectivegetDirective()Required.intgetDirectiveValue()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDirectiveValue
int getDirectiveValue()
Required. The recovered Dockerfile directive used to construct this layer.
.grafeas.v1beta1.image.Layer.Directive directive = 1;- Returns:
- The enum numeric value on the wire for directive.
-
getDirective
Layer.Directive getDirective()
Required. The recovered Dockerfile directive used to construct this layer.
.grafeas.v1beta1.image.Layer.Directive directive = 1;- Returns:
- The directive.
-
getArguments
String getArguments()
The recovered arguments to the Dockerfile directive.
string arguments = 2;- Returns:
- The arguments.
-
getArgumentsBytes
com.google.protobuf.ByteString getArgumentsBytes()
The recovered arguments to the Dockerfile directive.
string arguments = 2;- Returns:
- The bytes for arguments.
-
-