Interface ListWorkstationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListWorkstationsResponse
,ListWorkstationsResponse.Builder
public interface ListWorkstationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Optional.com.google.protobuf.ByteString
getNextPageTokenBytes()
Optional.String
getUnreachable(int index)
Optional.com.google.protobuf.ByteString
getUnreachableBytes(int index)
Optional.int
getUnreachableCount()
Optional.List<String>
getUnreachableList()
Optional.Workstation
getWorkstations(int index)
The requested workstations.int
getWorkstationsCount()
The requested workstations.List<Workstation>
getWorkstationsList()
The requested workstations.WorkstationOrBuilder
getWorkstationsOrBuilder(int index)
The requested workstations.List<? extends WorkstationOrBuilder>
getWorkstationsOrBuilderList()
The requested workstations.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWorkstationsList
List<Workstation> getWorkstationsList()
The requested workstations.
repeated .google.cloud.workstations.v1beta.Workstation workstations = 1;
-
getWorkstations
Workstation getWorkstations(int index)
The requested workstations.
repeated .google.cloud.workstations.v1beta.Workstation workstations = 1;
-
getWorkstationsCount
int getWorkstationsCount()
The requested workstations.
repeated .google.cloud.workstations.v1beta.Workstation workstations = 1;
-
getWorkstationsOrBuilderList
List<? extends WorkstationOrBuilder> getWorkstationsOrBuilderList()
The requested workstations.
repeated .google.cloud.workstations.v1beta.Workstation workstations = 1;
-
getWorkstationsOrBuilder
WorkstationOrBuilder getWorkstationsOrBuilder(int index)
The requested workstations.
repeated .google.cloud.workstations.v1beta.Workstation workstations = 1;
-
getNextPageToken
String getNextPageToken()
Optional. Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Optional. Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
Optional. Unreachable resources.
repeated string unreachable = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
Optional. Unreachable resources.
repeated string unreachable = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
Optional. Unreachable resources.
repeated string unreachable = 3 [(.google.api.field_behavior) = OPTIONAL];
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
Optional. Unreachable resources.
repeated string unreachable = 3 [(.google.api.field_behavior) = OPTIONAL];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-