Interface ListFeaturesRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFilter()
      Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160.
      com.google.protobuf.ByteString getFilterBytes()
      Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160.
      String getOrderBy()
      One or more fields to compare and use to sort the output.
      com.google.protobuf.ByteString getOrderByBytes()
      One or more fields to compare and use to sort the output.
      int getPageSize()
      When requesting a 'page' of resources, `page_size` specifies number of resources to return.
      String getPageToken()
      Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.
      com.google.protobuf.ByteString getPageTokenBytes()
      Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.
      String getParent()
      Required.
      com.google.protobuf.ByteString getParentBytes()
      Required.
      • 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()
         Required. The parent (project and location) where the Features will be listed.
         Specified in the format `projects/*/locations/*`.
         
        string parent = 1 [(.google.api.resource_reference) = { ... }
        Returns:
        The parent.
      • getParentBytes

        com.google.protobuf.ByteString getParentBytes()
         Required. The parent (project and location) where the Features will be listed.
         Specified in the format `projects/*/locations/*`.
         
        string parent = 1 [(.google.api.resource_reference) = { ... }
        Returns:
        The bytes for parent.
      • getPageSize

        int getPageSize()
         When requesting a 'page' of resources, `page_size` specifies number of
         resources to return. If unspecified or set to 0, all resources will
         be returned.
         
        int32 page_size = 2;
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         Token returned by previous call to `ListFeatures` which
         specifies the position in the list from where to continue listing the
         resources.
         
        string page_token = 3;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         Token returned by previous call to `ListFeatures` which
         specifies the position in the list from where to continue listing the
         resources.
         
        string page_token = 3;
        Returns:
        The bytes for pageToken.
      • getFilter

        String getFilter()
         Lists Features that match the filter expression, following the syntax
         outlined in https://google.aip.dev/160.
        
         Examples:
        
           - Feature with the name "servicemesh" in project "foo-proj":
        
               name = "projects/foo-proj/locations/global/features/servicemesh"
        
           - Features that have a label called `foo`:
        
               labels.foo:*
        
           - Features that have a label called `foo` whose value is `bar`:
        
               labels.foo = bar
         
        string filter = 4;
        Returns:
        The filter.
      • getFilterBytes

        com.google.protobuf.ByteString getFilterBytes()
         Lists Features that match the filter expression, following the syntax
         outlined in https://google.aip.dev/160.
        
         Examples:
        
           - Feature with the name "servicemesh" in project "foo-proj":
        
               name = "projects/foo-proj/locations/global/features/servicemesh"
        
           - Features that have a label called `foo`:
        
               labels.foo:*
        
           - Features that have a label called `foo` whose value is `bar`:
        
               labels.foo = bar
         
        string filter = 4;
        Returns:
        The bytes for filter.
      • getOrderBy

        String getOrderBy()
         One or more fields to compare and use to sort the output.
         See https://google.aip.dev/132#ordering.
         
        string order_by = 5;
        Returns:
        The orderBy.
      • getOrderByBytes

        com.google.protobuf.ByteString getOrderByBytes()
         One or more fields to compare and use to sort the output.
         See https://google.aip.dev/132#ordering.
         
        string order_by = 5;
        Returns:
        The bytes for orderBy.