Interface ExportEvaluatedDataItemsConfigOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDestinationBigqueryUri()
      URI of desired destination BigQuery table.
      com.google.protobuf.ByteString getDestinationBigqueryUriBytes()
      URI of desired destination BigQuery table.
      boolean getOverrideExistingTable()
      If true and an export destination is specified, then the contents of the destination are overwritten.
      • 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

      • getDestinationBigqueryUri

        String getDestinationBigqueryUri()
         URI of desired destination BigQuery table. Expected format:
         bq://<project_id>:<dataset_id>:<table>
        
         If not specified, then results are exported to the following auto-created
         BigQuery table:
         <project_id>:export_evaluated_examples_<model_name>_<yyyy_MM_dd'T'HH_mm_ss_SSS'Z'>.evaluated_examples
         
        string destination_bigquery_uri = 1;
        Returns:
        The destinationBigqueryUri.
      • getDestinationBigqueryUriBytes

        com.google.protobuf.ByteString getDestinationBigqueryUriBytes()
         URI of desired destination BigQuery table. Expected format:
         bq://<project_id>:<dataset_id>:<table>
        
         If not specified, then results are exported to the following auto-created
         BigQuery table:
         <project_id>:export_evaluated_examples_<model_name>_<yyyy_MM_dd'T'HH_mm_ss_SSS'Z'>.evaluated_examples
         
        string destination_bigquery_uri = 1;
        Returns:
        The bytes for destinationBigqueryUri.
      • getOverrideExistingTable

        boolean getOverrideExistingTable()
         If true and an export destination is specified, then the contents of the
         destination are overwritten. Otherwise, if the export destination already
         exists, then the export operation fails.
         
        bool override_existing_table = 2;
        Returns:
        The overrideExistingTable.