Interface DeleteVersionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeleteVersionRequest
,DeleteVersionRequest.Builder
public interface DeleteVersionRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getForce()
By default, a version that is tagged may not be deleted.String
getName()
The name of the version to delete.com.google.protobuf.ByteString
getNameBytes()
The name of the version to delete.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The name of the version to delete.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the version to delete.
string name = 1;
- Returns:
- The bytes for name.
-
getForce
boolean getForce()
By default, a version that is tagged may not be deleted. If force=true, the version and any tags pointing to the version are deleted.
bool force = 2;
- Returns:
- The force.
-
-