Interface BatchDeleteVersionsMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchDeleteVersionsMetadata,BatchDeleteVersionsMetadata.Builder
public interface BatchDeleteVersionsMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFailedVersions(int index)The versions the operation failed to delete.com.google.protobuf.ByteStringgetFailedVersionsBytes(int index)The versions the operation failed to delete.intgetFailedVersionsCount()The versions the operation failed to delete.List<String>getFailedVersionsList()The versions the operation failed to delete.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFailedVersionsList
List<String> getFailedVersionsList()
The versions the operation failed to delete.
repeated string failed_versions = 2;- Returns:
- A list containing the failedVersions.
-
getFailedVersionsCount
int getFailedVersionsCount()
The versions the operation failed to delete.
repeated string failed_versions = 2;- Returns:
- The count of failedVersions.
-
getFailedVersions
String getFailedVersions(int index)
The versions the operation failed to delete.
repeated string failed_versions = 2;- Parameters:
index- The index of the element to return.- Returns:
- The failedVersions at the given index.
-
getFailedVersionsBytes
com.google.protobuf.ByteString getFailedVersionsBytes(int index)
The versions the operation failed to delete.
repeated string failed_versions = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the failedVersions at the given index.
-
-