Package com.google.appengine.v1
Interface VolumeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Volume
,Volume.Builder
public interface VolumeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Unique name for the volume.com.google.protobuf.ByteString
getNameBytes()
Unique name for the volume.double
getSizeGb()
Volume size in gigabytes.String
getVolumeType()
Underlying volume type, e.g.com.google.protobuf.ByteString
getVolumeTypeBytes()
Underlying volume type, e.g.-
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()
Unique name for the volume.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Unique name for the volume.
string name = 1;
- Returns:
- The bytes for name.
-
getVolumeType
String getVolumeType()
Underlying volume type, e.g. 'tmpfs'.
string volume_type = 2;
- Returns:
- The volumeType.
-
getVolumeTypeBytes
com.google.protobuf.ByteString getVolumeTypeBytes()
Underlying volume type, e.g. 'tmpfs'.
string volume_type = 2;
- Returns:
- The bytes for volumeType.
-
getSizeGb
double getSizeGb()
Volume size in gigabytes.
double size_gb = 3;
- Returns:
- The sizeGb.
-
-