Package com.google.cloud.workstations.v1
Interface ListWorkstationConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListWorkstationConfigsResponse
,ListWorkstationConfigsResponse.Builder
public interface ListWorkstationConfigsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.String
getUnreachable(int index)
Unreachable resources.com.google.protobuf.ByteString
getUnreachableBytes(int index)
Unreachable resources.int
getUnreachableCount()
Unreachable resources.List<String>
getUnreachableList()
Unreachable resources.WorkstationConfig
getWorkstationConfigs(int index)
The requested configs.int
getWorkstationConfigsCount()
The requested configs.List<WorkstationConfig>
getWorkstationConfigsList()
The requested configs.WorkstationConfigOrBuilder
getWorkstationConfigsOrBuilder(int index)
The requested configs.List<? extends WorkstationConfigOrBuilder>
getWorkstationConfigsOrBuilderList()
The requested configs.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWorkstationConfigsList
List<WorkstationConfig> getWorkstationConfigsList()
The requested configs.
repeated .google.cloud.workstations.v1.WorkstationConfig workstation_configs = 1;
-
getWorkstationConfigs
WorkstationConfig getWorkstationConfigs(int index)
The requested configs.
repeated .google.cloud.workstations.v1.WorkstationConfig workstation_configs = 1;
-
getWorkstationConfigsCount
int getWorkstationConfigsCount()
The requested configs.
repeated .google.cloud.workstations.v1.WorkstationConfig workstation_configs = 1;
-
getWorkstationConfigsOrBuilderList
List<? extends WorkstationConfigOrBuilder> getWorkstationConfigsOrBuilderList()
The requested configs.
repeated .google.cloud.workstations.v1.WorkstationConfig workstation_configs = 1;
-
getWorkstationConfigsOrBuilder
WorkstationConfigOrBuilder getWorkstationConfigsOrBuilder(int index)
The requested configs.
repeated .google.cloud.workstations.v1.WorkstationConfig workstation_configs = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
Unreachable resources.
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
Unreachable resources.
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
Unreachable resources.
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)
Unreachable resources.
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-