Package io.grafeas.v1beta1.image
Interface DerivedOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Derived
,Derived.Builder
public interface DerivedOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBaseResourceUrl()
Output only.com.google.protobuf.ByteString
getBaseResourceUrlBytes()
Output only.int
getDistance()
Output only.Fingerprint
getFingerprint()
Required.FingerprintOrBuilder
getFingerprintOrBuilder()
Required.Layer
getLayerInfo(int index)
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.int
getLayerInfoCount()
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.List<Layer>
getLayerInfoList()
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.LayerOrBuilder
getLayerInfoOrBuilder(int index)
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.List<? extends LayerOrBuilder>
getLayerInfoOrBuilderList()
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.boolean
hasFingerprint()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFingerprint
boolean hasFingerprint()
Required. The fingerprint of the derived image.
.grafeas.v1beta1.image.Fingerprint fingerprint = 1;
- Returns:
- Whether the fingerprint field is set.
-
getFingerprint
Fingerprint getFingerprint()
Required. The fingerprint of the derived image.
.grafeas.v1beta1.image.Fingerprint fingerprint = 1;
- Returns:
- The fingerprint.
-
getFingerprintOrBuilder
FingerprintOrBuilder getFingerprintOrBuilder()
Required. The fingerprint of the derived image.
.grafeas.v1beta1.image.Fingerprint fingerprint = 1;
-
getDistance
int getDistance()
Output only. The number of layers by which this image differs from the associated image basis.
int32 distance = 2;
- Returns:
- The distance.
-
getLayerInfoList
List<Layer> getLayerInfoList()
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.
repeated .grafeas.v1beta1.image.Layer layer_info = 3;
-
getLayerInfo
Layer getLayerInfo(int index)
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.
repeated .grafeas.v1beta1.image.Layer layer_info = 3;
-
getLayerInfoCount
int getLayerInfoCount()
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.
repeated .grafeas.v1beta1.image.Layer layer_info = 3;
-
getLayerInfoOrBuilderList
List<? extends LayerOrBuilder> getLayerInfoOrBuilderList()
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.
repeated .grafeas.v1beta1.image.Layer layer_info = 3;
-
getLayerInfoOrBuilder
LayerOrBuilder getLayerInfoOrBuilder(int index)
This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.
repeated .grafeas.v1beta1.image.Layer layer_info = 3;
-
getBaseResourceUrl
String getBaseResourceUrl()
Output only. This contains the base image URL for the derived image occurrence.
string base_resource_url = 4;
- Returns:
- The baseResourceUrl.
-
getBaseResourceUrlBytes
com.google.protobuf.ByteString getBaseResourceUrlBytes()
Output only. This contains the base image URL for the derived image occurrence.
string base_resource_url = 4;
- Returns:
- The bytes for baseResourceUrl.
-
-