Interface ImportDataRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportDataRequest,ImportDataRequest.Builder
public interface ImportDataRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputConfiggetInputConfig()Required.InputConfigOrBuildergetInputConfigOrBuilder()Required.StringgetName()Required.com.google.protobuf.ByteStringgetNameBytes()Required.StringgetUserEmailAddress()Email of the user who started the import task and should be notified by email.com.google.protobuf.ByteStringgetUserEmailAddressBytes()Email of the user who started the import task and should be notified by email.booleanhasInputConfig()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.
-
hasInputConfig
boolean hasInputConfig()
Required. Specify the input source of the data.
.google.cloud.datalabeling.v1beta1.InputConfig input_config = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the inputConfig field is set.
-
getInputConfig
InputConfig getInputConfig()
Required. Specify the input source of the data.
.google.cloud.datalabeling.v1beta1.InputConfig input_config = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The inputConfig.
-
getInputConfigOrBuilder
InputConfigOrBuilder getInputConfigOrBuilder()
Required. Specify the input source of the data.
.google.cloud.datalabeling.v1beta1.InputConfig input_config = 2 [(.google.api.field_behavior) = REQUIRED];
-
getUserEmailAddress
String getUserEmailAddress()
Email of the user who started the import task and should be notified by email. If empty no notification will be sent.
string user_email_address = 3;- Returns:
- The userEmailAddress.
-
getUserEmailAddressBytes
com.google.protobuf.ByteString getUserEmailAddressBytes()
Email of the user who started the import task and should be notified by email. If empty no notification will be sent.
string user_email_address = 3;- Returns:
- The bytes for userEmailAddress.
-
-