Interface ExportDataOperationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportDataOperationMetadata
,ExportDataOperationMetadata.Builder
public interface ExportDataOperationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCreateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Output only.String
getDataset()
Output only.com.google.protobuf.ByteString
getDatasetBytes()
Output only.com.google.rpc.Status
getPartialFailures(int index)
Output only.int
getPartialFailuresCount()
Output only.List<com.google.rpc.Status>
getPartialFailuresList()
Output only.com.google.rpc.StatusOrBuilder
getPartialFailuresOrBuilder(int index)
Output only.List<? extends com.google.rpc.StatusOrBuilder>
getPartialFailuresOrBuilderList()
Output only.boolean
hasCreateTime()
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 dataset to be exported. "projects/*/datasets/*"
string dataset = 1;
- Returns:
- The dataset.
-
getDatasetBytes
com.google.protobuf.ByteString getDatasetBytes()
Output only. The name of dataset to be exported. "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 export 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 export dataset request was created.
.google.protobuf.Timestamp create_time = 3;
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. Timestamp when export dataset request was created.
.google.protobuf.Timestamp create_time = 3;
-
-