Package com.google.appengine.v1
Interface ListVersionsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListVersionsRequest,ListVersionsRequest.Builder
public interface ListVersionsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetPageSize()Maximum results to return per page.StringgetPageToken()Continuation token for fetching the next page of results.com.google.protobuf.ByteStringgetPageTokenBytes()Continuation token for fetching the next page of results.StringgetParent()Name of the parent Service resource.com.google.protobuf.ByteStringgetParentBytes()Name of the parent Service resource.VersionViewgetView()Controls the set of fields returned in the `List` response.intgetViewValue()Controls the set of fields returned in the `List` response.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Name of the parent Service resource. Example: `apps/myapp/services/default`.
string parent = 1;- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Name of the parent Service resource. Example: `apps/myapp/services/default`.
string parent = 1;- Returns:
- The bytes for parent.
-
getViewValue
int getViewValue()
Controls the set of fields returned in the `List` response.
.google.appengine.v1.VersionView view = 2;- Returns:
- The enum numeric value on the wire for view.
-
getView
VersionView getView()
Controls the set of fields returned in the `List` response.
.google.appengine.v1.VersionView view = 2;- Returns:
- The view.
-
getPageSize
int getPageSize()
Maximum results to return per page.
int32 page_size = 3;- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
Continuation token for fetching the next page of results.
string page_token = 4;- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Continuation token for fetching the next page of results.
string page_token = 4;- Returns:
- The bytes for pageToken.
-
-