Interface ListServicesRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ListServicesRequest, ListServicesRequest.Builder

    public interface ListServicesRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFilter()
      Only list services that conform to the given filter.
      com.google.protobuf.ByteString getFilterBytes()
      Only list services that conform to the given filter.
      int getPageSize()
      Requested size of the next page of data.
      String getPageToken()
      Token identifying which result to start with, which is returned by a previous list call.
      com.google.protobuf.ByteString getPageTokenBytes()
      Token identifying which result to start with, which is returned by a previous list call.
      String getParent()
      Parent to search for services on.
      com.google.protobuf.ByteString getParentBytes()
      Parent to search for services on.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getParent

        String getParent()
         Parent to search for services on.
        
         An example name would be:
         `projects/123`
         where `123` is the project number (not project ID).
         
        string parent = 1;
        Returns:
        The parent.
      • getParentBytes

        com.google.protobuf.ByteString getParentBytes()
         Parent to search for services on.
        
         An example name would be:
         `projects/123`
         where `123` is the project number (not project ID).
         
        string parent = 1;
        Returns:
        The bytes for parent.
      • getPageSize

        int getPageSize()
         Requested size of the next page of data.
         Requested page size cannot exceed 200.
          If not set, the default page size is 50.
         
        int32 page_size = 2;
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         Token identifying which result to start with, which is returned by a
         previous list call.
         
        string page_token = 3;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         Token identifying which result to start with, which is returned by a
         previous list call.
         
        string page_token = 3;
        Returns:
        The bytes for pageToken.
      • getFilter

        String getFilter()
         Only list services that conform to the given filter.
         The allowed filter strings are `state:ENABLED` and `state:DISABLED`.
         
        string filter = 4;
        Returns:
        The filter.
      • getFilterBytes

        com.google.protobuf.ByteString getFilterBytes()
         Only list services that conform to the given filter.
         The allowed filter strings are `state:ENABLED` and `state:DISABLED`.
         
        string filter = 4;
        Returns:
        The bytes for filter.