Interface ImportRagFilesOperationMetadataOrBuilder

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

@Generated public interface ImportRagFilesOperationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • hasGenericMetadata

      boolean hasGenericMetadata()
       The operation generic information.
       
      .google.cloud.aiplatform.v1.GenericOperationMetadata generic_metadata = 1;
      Returns:
      Whether the genericMetadata field is set.
    • getGenericMetadata

      GenericOperationMetadata getGenericMetadata()
       The operation generic information.
       
      .google.cloud.aiplatform.v1.GenericOperationMetadata generic_metadata = 1;
      Returns:
      The genericMetadata.
    • getGenericMetadataOrBuilder

      GenericOperationMetadataOrBuilder getGenericMetadataOrBuilder()
       The operation generic information.
       
      .google.cloud.aiplatform.v1.GenericOperationMetadata generic_metadata = 1;
    • getRagCorpusId

      long getRagCorpusId()
       The resource ID of RagCorpus that this operation is executed on.
       
      int64 rag_corpus_id = 2;
      Returns:
      The ragCorpusId.
    • hasImportRagFilesConfig

      boolean hasImportRagFilesConfig()
       Output only. The config that was passed in the ImportRagFilesRequest.
       
      .google.cloud.aiplatform.v1.ImportRagFilesConfig import_rag_files_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      Whether the importRagFilesConfig field is set.
    • getImportRagFilesConfig

      ImportRagFilesConfig getImportRagFilesConfig()
       Output only. The config that was passed in the ImportRagFilesRequest.
       
      .google.cloud.aiplatform.v1.ImportRagFilesConfig import_rag_files_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
      Returns:
      The importRagFilesConfig.
    • getImportRagFilesConfigOrBuilder

      ImportRagFilesConfigOrBuilder getImportRagFilesConfigOrBuilder()
       Output only. The config that was passed in the ImportRagFilesRequest.
       
      .google.cloud.aiplatform.v1.ImportRagFilesConfig import_rag_files_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
    • getProgressPercentage

      int getProgressPercentage()
       The progress percentage of the operation. Value is in the range [0, 100].
       This percentage is calculated as follows:
       progress_percentage = 100 * (successes + failures + skips) / total
       
      int32 progress_percentage = 4;
      Returns:
      The progressPercentage.