Interface ListDomainsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDomainsResponse
,ListDomainsResponse.Builder
public interface ListDomainsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Domain
getDomains(int index)
A list of Managed Identities Service domains in the project.int
getDomainsCount()
A list of Managed Identities Service domains in the project.List<Domain>
getDomainsList()
A list of Managed Identities Service domains in the project.DomainOrBuilder
getDomainsOrBuilder(int index)
A list of Managed Identities Service domains in the project.List<? extends DomainOrBuilder>
getDomainsOrBuilderList()
A list of Managed Identities Service domains in the project.String
getNextPageToken()
A token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve the next page of results, or empty if there are no more results in the list.String
getUnreachable(int index)
A list of locations that could not be reached.com.google.protobuf.ByteString
getUnreachableBytes(int index)
A list of locations that could not be reached.int
getUnreachableCount()
A list of locations that could not be reached.List<String>
getUnreachableList()
A list of locations 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
-
getDomainsList
List<Domain> getDomainsList()
A list of Managed Identities Service domains in the project.
repeated .google.cloud.managedidentities.v1.Domain domains = 1;
-
getDomains
Domain getDomains(int index)
A list of Managed Identities Service domains in the project.
repeated .google.cloud.managedidentities.v1.Domain domains = 1;
-
getDomainsCount
int getDomainsCount()
A list of Managed Identities Service domains in the project.
repeated .google.cloud.managedidentities.v1.Domain domains = 1;
-
getDomainsOrBuilderList
List<? extends DomainOrBuilder> getDomainsOrBuilderList()
A list of Managed Identities Service domains in the project.
repeated .google.cloud.managedidentities.v1.Domain domains = 1;
-
getDomainsOrBuilder
DomainOrBuilder getDomainsOrBuilder(int index)
A list of Managed Identities Service domains in the project.
repeated .google.cloud.managedidentities.v1.Domain domains = 1;
-
getNextPageToken
String getNextPageToken()
A 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()
A 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()
A list of locations that could not be reached.
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
A list of locations that could not be reached.
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
A list of locations that could not be reached.
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)
A list of locations that could not be reached.
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-