Interface ListModelEvaluationsRequestOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFilter()
      An expression for filtering the results of the request.
      com.google.protobuf.ByteString getFilterBytes()
      An expression for filtering the results of the request.
      int getPageSize()
      Requested page size.
      String getPageToken()
      A token identifying a page of results for the server to return.
      com.google.protobuf.ByteString getPageTokenBytes()
      A token identifying a page of results for the server to return.
      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. Resource name of the model to list the model evaluations for.
         If modelId is set as "-", this will list model evaluations from across all
         models of the parent location.
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The parent.
      • getParentBytes

        com.google.protobuf.ByteString getParentBytes()
         Required. Resource name of the model to list the model evaluations for.
         If modelId is set as "-", this will list model evaluations from across all
         models of the parent location.
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The bytes for parent.
      • getFilter

        String getFilter()
         An expression for filtering the results of the request.
        
           * `annotation_spec_id` - for =, !=  or existence. See example below for
                                  the last.
        
         Some examples of using the filter are:
        
           * `annotation_spec_id!=4` --> The model evaluation was done for
                                     annotation spec with ID different than 4.
           * `NOT annotation_spec_id:*` --> The model evaluation was done for
                                        aggregate of all annotation specs.
         
        string filter = 3;
        Returns:
        The filter.
      • getFilterBytes

        com.google.protobuf.ByteString getFilterBytes()
         An expression for filtering the results of the request.
        
           * `annotation_spec_id` - for =, !=  or existence. See example below for
                                  the last.
        
         Some examples of using the filter are:
        
           * `annotation_spec_id!=4` --> The model evaluation was done for
                                     annotation spec with ID different than 4.
           * `NOT annotation_spec_id:*` --> The model evaluation was done for
                                        aggregate of all annotation specs.
         
        string filter = 3;
        Returns:
        The bytes for filter.
      • getPageSize

        int getPageSize()
         Requested page size.
         
        int32 page_size = 4;
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         A token identifying a page of results for the server to return.
         Typically obtained via
         [ListModelEvaluationsResponse.next_page_token][google.cloud.automl.v1beta1.ListModelEvaluationsResponse.next_page_token] of the previous
         [AutoMl.ListModelEvaluations][google.cloud.automl.v1beta1.AutoMl.ListModelEvaluations] call.
         
        string page_token = 6;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         A token identifying a page of results for the server to return.
         Typically obtained via
         [ListModelEvaluationsResponse.next_page_token][google.cloud.automl.v1beta1.ListModelEvaluationsResponse.next_page_token] of the previous
         [AutoMl.ListModelEvaluations][google.cloud.automl.v1beta1.AutoMl.ListModelEvaluations] call.
         
        string page_token = 6;
        Returns:
        The bytes for pageToken.