Package com.google.cloud.automl.v1
Interface InputConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InputConfig
,InputConfig.Builder
public interface InputConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsParams(String key)
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long.GcsSource
getGcsSource()
The Google Cloud Storage location for the input content.GcsSourceOrBuilder
getGcsSourceOrBuilder()
The Google Cloud Storage location for the input content.Map<String,String>
getParams()
Deprecated.int
getParamsCount()
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long.Map<String,String>
getParamsMap()
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long.String
getParamsOrDefault(String key, String defaultValue)
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long.String
getParamsOrThrow(String key)
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long.InputConfig.SourceCase
getSourceCase()
boolean
hasGcsSource()
The Google Cloud Storage location for the input content.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGcsSource
boolean hasGcsSource()
The Google Cloud Storage location for the input content. For [AutoMl.ImportData][google.cloud.automl.v1.AutoMl.ImportData], `gcs_source` points to a CSV file with a structure described in [InputConfig][google.cloud.automl.v1.InputConfig].
.google.cloud.automl.v1.GcsSource gcs_source = 1;
- Returns:
- Whether the gcsSource field is set.
-
getGcsSource
GcsSource getGcsSource()
The Google Cloud Storage location for the input content. For [AutoMl.ImportData][google.cloud.automl.v1.AutoMl.ImportData], `gcs_source` points to a CSV file with a structure described in [InputConfig][google.cloud.automl.v1.InputConfig].
.google.cloud.automl.v1.GcsSource gcs_source = 1;
- Returns:
- The gcsSource.
-
getGcsSourceOrBuilder
GcsSourceOrBuilder getGcsSourceOrBuilder()
The Google Cloud Storage location for the input content. For [AutoMl.ImportData][google.cloud.automl.v1.AutoMl.ImportData], `gcs_source` points to a CSV file with a structure described in [InputConfig][google.cloud.automl.v1.InputConfig].
.google.cloud.automl.v1.GcsSource gcs_source = 1;
-
getParamsCount
int getParamsCount()
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long. <h4>AutoML Tables</h4> `schema_inference_version` : (integer) This value must be supplied. The version of the algorithm to use for the initial inference of the column data types of the imported table. Allowed values: "1".
map<string, string> params = 2;
-
containsParams
boolean containsParams(String key)
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long. <h4>AutoML Tables</h4> `schema_inference_version` : (integer) This value must be supplied. The version of the algorithm to use for the initial inference of the column data types of the imported table. Allowed values: "1".
map<string, string> params = 2;
-
getParams
@Deprecated Map<String,String> getParams()
Deprecated.UsegetParamsMap()
instead.
-
getParamsMap
Map<String,String> getParamsMap()
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long. <h4>AutoML Tables</h4> `schema_inference_version` : (integer) This value must be supplied. The version of the algorithm to use for the initial inference of the column data types of the imported table. Allowed values: "1".
map<string, string> params = 2;
-
getParamsOrDefault
String getParamsOrDefault(String key, String defaultValue)
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long. <h4>AutoML Tables</h4> `schema_inference_version` : (integer) This value must be supplied. The version of the algorithm to use for the initial inference of the column data types of the imported table. Allowed values: "1".
map<string, string> params = 2;
-
getParamsOrThrow
String getParamsOrThrow(String key)
Additional domain-specific parameters describing the semantic of the imported data, any string must be up to 25000 characters long. <h4>AutoML Tables</h4> `schema_inference_version` : (integer) This value must be supplied. The version of the algorithm to use for the initial inference of the column data types of the imported table. Allowed values: "1".
map<string, string> params = 2;
-
getSourceCase
InputConfig.SourceCase getSourceCase()
-
-