Package com.google.cloud.gsuiteaddons.v1
Interface ListDeploymentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDeploymentsResponse,ListDeploymentsResponse.Builder
public interface ListDeploymentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentgetDeployments(int index)The list of deployments for the given project.intgetDeploymentsCount()The list of deployments for the given project.List<Deployment>getDeploymentsList()The list of deployments for the given project.DeploymentOrBuildergetDeploymentsOrBuilder(int index)The list of deployments for the given project.List<? extends DeploymentOrBuilder>getDeploymentsOrBuilderList()The list of deployments for the given project.StringgetNextPageToken()A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDeploymentsList
List<Deployment> getDeploymentsList()
The list of deployments for the given project.
repeated .google.cloud.gsuiteaddons.v1.Deployment deployments = 1;
-
getDeployments
Deployment getDeployments(int index)
The list of deployments for the given project.
repeated .google.cloud.gsuiteaddons.v1.Deployment deployments = 1;
-
getDeploymentsCount
int getDeploymentsCount()
The list of deployments for the given project.
repeated .google.cloud.gsuiteaddons.v1.Deployment deployments = 1;
-
getDeploymentsOrBuilderList
List<? extends DeploymentOrBuilder> getDeploymentsOrBuilderList()
The list of deployments for the given project.
repeated .google.cloud.gsuiteaddons.v1.Deployment deployments = 1;
-
getDeploymentsOrBuilder
DeploymentOrBuilder getDeploymentsOrBuilder(int index)
The list of deployments for the given project.
repeated .google.cloud.gsuiteaddons.v1.Deployment deployments = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-