Package com.google.cloud.notebooks.v1
Interface ListExecutionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListExecutionsResponse
,ListExecutionsResponse.Builder
public interface ListExecutionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Execution
getExecutions(int index)
A list of returned instances.int
getExecutionsCount()
A list of returned instances.List<Execution>
getExecutionsList()
A list of returned instances.ExecutionOrBuilder
getExecutionsOrBuilder(int index)
A list of returned instances.List<? extends ExecutionOrBuilder>
getExecutionsOrBuilderList()
A list of returned instances.String
getNextPageToken()
Page token that can be used to continue listing from the last result in the next list call.com.google.protobuf.ByteString
getNextPageTokenBytes()
Page token that can be used to continue listing from the last result in the next list call.String
getUnreachable(int index)
Executions IDs that could not be reached.com.google.protobuf.ByteString
getUnreachableBytes(int index)
Executions IDs that could not be reached.int
getUnreachableCount()
Executions IDs that could not be reached.List<String>
getUnreachableList()
Executions IDs that could not be reached.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExecutionsList
List<Execution> getExecutionsList()
A list of returned instances.
repeated .google.cloud.notebooks.v1.Execution executions = 1;
-
getExecutions
Execution getExecutions(int index)
A list of returned instances.
repeated .google.cloud.notebooks.v1.Execution executions = 1;
-
getExecutionsCount
int getExecutionsCount()
A list of returned instances.
repeated .google.cloud.notebooks.v1.Execution executions = 1;
-
getExecutionsOrBuilderList
List<? extends ExecutionOrBuilder> getExecutionsOrBuilderList()
A list of returned instances.
repeated .google.cloud.notebooks.v1.Execution executions = 1;
-
getExecutionsOrBuilder
ExecutionOrBuilder getExecutionsOrBuilder(int index)
A list of returned instances.
repeated .google.cloud.notebooks.v1.Execution executions = 1;
-
getNextPageToken
String getNextPageToken()
Page token that can be used to continue listing from the last result in the next list call.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Page token that can be used to continue listing from the last result in the next list call.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
Executions IDs that could not be reached. For example: ['projects/{project_id}/location/{location}/executions/imagenet_test1', 'projects/{project_id}/location/{location}/executions/classifier_train1']
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
Executions IDs that could not be reached. For example: ['projects/{project_id}/location/{location}/executions/imagenet_test1', 'projects/{project_id}/location/{location}/executions/classifier_train1']
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
Executions IDs that could not be reached. For example: ['projects/{project_id}/location/{location}/executions/imagenet_test1', 'projects/{project_id}/location/{location}/executions/classifier_train1']
repeated string unreachable = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
Executions IDs that could not be reached. For example: ['projects/{project_id}/location/{location}/executions/imagenet_test1', 'projects/{project_id}/location/{location}/executions/classifier_train1']
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-