Interface ImportDataOperationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportDataOperationMetadata,ImportDataOperationMetadata.Builder
public interface ImportDataOperationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCreateTime()Output only.com.google.protobuf.TimestampOrBuildergetCreateTimeOrBuilder()Output only.StringgetDataset()Output only.com.google.protobuf.ByteStringgetDatasetBytes()Output only.com.google.rpc.StatusgetPartialFailures(int index)Output only.intgetPartialFailuresCount()Output only.List<com.google.rpc.Status>getPartialFailuresList()Output only.com.google.rpc.StatusOrBuildergetPartialFailuresOrBuilder(int index)Output only.List<? extends com.google.rpc.StatusOrBuilder>getPartialFailuresOrBuilderList()Output only.booleanhasCreateTime()Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataset
String getDataset()
Output only. The name of imported dataset. "projects/*/datasets/*"
string dataset = 1;- Returns:
- The dataset.
-
getDatasetBytes
com.google.protobuf.ByteString getDatasetBytes()
Output only. The name of imported dataset. "projects/*/datasets/*"
string dataset = 1;- Returns:
- The bytes for dataset.
-
getPartialFailuresList
List<com.google.rpc.Status> getPartialFailuresList()
Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.
repeated .google.rpc.Status partial_failures = 2;
-
getPartialFailures
com.google.rpc.Status getPartialFailures(int index)
Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.
repeated .google.rpc.Status partial_failures = 2;
-
getPartialFailuresCount
int getPartialFailuresCount()
Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.
repeated .google.rpc.Status partial_failures = 2;
-
getPartialFailuresOrBuilderList
List<? extends com.google.rpc.StatusOrBuilder> getPartialFailuresOrBuilderList()
Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.
repeated .google.rpc.Status partial_failures = 2;
-
getPartialFailuresOrBuilder
com.google.rpc.StatusOrBuilder getPartialFailuresOrBuilder(int index)
Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.
repeated .google.rpc.Status partial_failures = 2;
-
hasCreateTime
boolean hasCreateTime()
Output only. Timestamp when import dataset request was created.
.google.protobuf.Timestamp create_time = 3;- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Output only. Timestamp when import dataset request was created.
.google.protobuf.Timestamp create_time = 3;- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. Timestamp when import dataset request was created.
.google.protobuf.Timestamp create_time = 3;
-
-