Interface ListMembershipsRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFilter()
      Optional.
      com.google.protobuf.ByteString getFilterBytes()
      Optional.
      String getOrderBy()
      Optional.
      com.google.protobuf.ByteString getOrderByBytes()
      Optional.
      int getPageSize()
      Optional.
      String getPageToken()
      Optional.
      com.google.protobuf.ByteString getPageTokenBytes()
      Optional.
      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 Memberships will be listed.
         Specified in the format `projects/*/locations/*`.
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The parent.
      • getParentBytes

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

        int getPageSize()
         Optional. 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 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         Optional. Token returned by previous call to `ListMemberships` which
         specifies the position in the list from where to continue listing the
         resources.
         
        string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The pageToken.
      • getPageTokenBytes

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

        String getFilter()
         Optional. Lists Memberships that match the filter expression, following the syntax
         outlined in https://google.aip.dev/160.
        
         Examples:
        
           - Name is `bar` in project `foo-proj` and location `global`:
        
               name = "projects/foo-proj/locations/global/membership/bar"
        
           - Memberships that have a label called `foo`:
        
               labels.foo:*
        
           - Memberships that have a label called `foo` whose value is `bar`:
        
               labels.foo = bar
        
           - Memberships in the CREATING state:
        
               state = CREATING
         
        string filter = 4 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The filter.
      • getFilterBytes

        com.google.protobuf.ByteString getFilterBytes()
         Optional. Lists Memberships that match the filter expression, following the syntax
         outlined in https://google.aip.dev/160.
        
         Examples:
        
           - Name is `bar` in project `foo-proj` and location `global`:
        
               name = "projects/foo-proj/locations/global/membership/bar"
        
           - Memberships that have a label called `foo`:
        
               labels.foo:*
        
           - Memberships that have a label called `foo` whose value is `bar`:
        
               labels.foo = bar
        
           - Memberships in the CREATING state:
        
               state = CREATING
         
        string filter = 4 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The bytes for filter.
      • getOrderBy

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

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