Interface FileValidationReportOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FileValidationReport
,FileValidationReport.Builder
public interface FileValidationReportOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportError
getFileErrors(int index)
List of file level errors.int
getFileErrorsCount()
List of file level errors.List<ImportError>
getFileErrorsList()
List of file level errors.ImportErrorOrBuilder
getFileErrorsOrBuilder(int index)
List of file level errors.List<? extends ImportErrorOrBuilder>
getFileErrorsOrBuilderList()
List of file level errors.String
getFileName()
The name of the file.com.google.protobuf.ByteString
getFileNameBytes()
The name of the file.boolean
getPartialReport()
Flag indicating that processing was aborted due to maximum number of errors.ImportRowError
getRowErrors(int index)
Partial list of rows that encountered validation error.int
getRowErrorsCount()
Partial list of rows that encountered validation error.List<ImportRowError>
getRowErrorsList()
Partial list of rows that encountered validation error.ImportRowErrorOrBuilder
getRowErrorsOrBuilder(int index)
Partial list of rows that encountered validation error.List<? extends ImportRowErrorOrBuilder>
getRowErrorsOrBuilderList()
Partial list of rows that encountered validation error.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFileName
String getFileName()
The name of the file.
string file_name = 1;
- Returns:
- The fileName.
-
getFileNameBytes
com.google.protobuf.ByteString getFileNameBytes()
The name of the file.
string file_name = 1;
- Returns:
- The bytes for fileName.
-
getRowErrorsList
List<ImportRowError> getRowErrorsList()
Partial list of rows that encountered validation error.
repeated .google.cloud.migrationcenter.v1.ImportRowError row_errors = 2;
-
getRowErrors
ImportRowError getRowErrors(int index)
Partial list of rows that encountered validation error.
repeated .google.cloud.migrationcenter.v1.ImportRowError row_errors = 2;
-
getRowErrorsCount
int getRowErrorsCount()
Partial list of rows that encountered validation error.
repeated .google.cloud.migrationcenter.v1.ImportRowError row_errors = 2;
-
getRowErrorsOrBuilderList
List<? extends ImportRowErrorOrBuilder> getRowErrorsOrBuilderList()
Partial list of rows that encountered validation error.
repeated .google.cloud.migrationcenter.v1.ImportRowError row_errors = 2;
-
getRowErrorsOrBuilder
ImportRowErrorOrBuilder getRowErrorsOrBuilder(int index)
Partial list of rows that encountered validation error.
repeated .google.cloud.migrationcenter.v1.ImportRowError row_errors = 2;
-
getPartialReport
boolean getPartialReport()
Flag indicating that processing was aborted due to maximum number of errors.
bool partial_report = 3;
- Returns:
- The partialReport.
-
getFileErrorsList
List<ImportError> getFileErrorsList()
List of file level errors.
repeated .google.cloud.migrationcenter.v1.ImportError file_errors = 4;
-
getFileErrors
ImportError getFileErrors(int index)
List of file level errors.
repeated .google.cloud.migrationcenter.v1.ImportError file_errors = 4;
-
getFileErrorsCount
int getFileErrorsCount()
List of file level errors.
repeated .google.cloud.migrationcenter.v1.ImportError file_errors = 4;
-
getFileErrorsOrBuilderList
List<? extends ImportErrorOrBuilder> getFileErrorsOrBuilderList()
List of file level errors.
repeated .google.cloud.migrationcenter.v1.ImportError file_errors = 4;
-
getFileErrorsOrBuilder
ImportErrorOrBuilder getFileErrorsOrBuilder(int index)
List of file level errors.
repeated .google.cloud.migrationcenter.v1.ImportError file_errors = 4;
-
-