Interface ExportDataRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportDataRequest
,ExportDataRequest.Builder
public interface ExportDataRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAnnotatedDataset()
Required.com.google.protobuf.ByteString
getAnnotatedDatasetBytes()
Required.String
getFilter()
Optional.com.google.protobuf.ByteString
getFilterBytes()
Optional.String
getName()
Required.com.google.protobuf.ByteString
getNameBytes()
Required.OutputConfig
getOutputConfig()
Required.OutputConfigOrBuilder
getOutputConfigOrBuilder()
Required.String
getUserEmailAddress()
Email of the user who started the export task and should be notified by email.com.google.protobuf.ByteString
getUserEmailAddressBytes()
Email of the user who started the export task and should be notified by email.boolean
hasOutputConfig()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Required. Dataset resource name, format: projects/{project_id}/datasets/{dataset_id}
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. Dataset resource name, format: projects/{project_id}/datasets/{dataset_id}
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for name.
-
getAnnotatedDataset
String getAnnotatedDataset()
Required. Annotated dataset resource name. DataItem in Dataset and their annotations in specified annotated dataset will be exported. It's in format of projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}
string annotated_dataset = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The annotatedDataset.
-
getAnnotatedDatasetBytes
com.google.protobuf.ByteString getAnnotatedDatasetBytes()
Required. Annotated dataset resource name. DataItem in Dataset and their annotations in specified annotated dataset will be exported. It's in format of projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}
string annotated_dataset = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for annotatedDataset.
-
getFilter
String getFilter()
Optional. Filter is not supported at this moment.
string filter = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
Optional. Filter is not supported at this moment.
string filter = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for filter.
-
hasOutputConfig
boolean hasOutputConfig()
Required. Specify the output destination.
.google.cloud.datalabeling.v1beta1.OutputConfig output_config = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the outputConfig field is set.
-
getOutputConfig
OutputConfig getOutputConfig()
Required. Specify the output destination.
.google.cloud.datalabeling.v1beta1.OutputConfig output_config = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The outputConfig.
-
getOutputConfigOrBuilder
OutputConfigOrBuilder getOutputConfigOrBuilder()
Required. Specify the output destination.
.google.cloud.datalabeling.v1beta1.OutputConfig output_config = 4 [(.google.api.field_behavior) = REQUIRED];
-
getUserEmailAddress
String getUserEmailAddress()
Email of the user who started the export task and should be notified by email. If empty no notification will be sent.
string user_email_address = 5;
- Returns:
- The userEmailAddress.
-
getUserEmailAddressBytes
com.google.protobuf.ByteString getUserEmailAddressBytes()
Email of the user who started the export task and should be notified by email. If empty no notification will be sent.
string user_email_address = 5;
- Returns:
- The bytes for userEmailAddress.
-
-