All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.automl.v1beta1.ColumnSpecOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.141.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/automl/v1beta1/column_spec.proto

// Protobuf Java Version: 3.25.3
package com.google.cloud.automl.v1beta1;

public interface ColumnSpecOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.automl.v1beta1.ColumnSpec)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Output only. The resource name of the column specs.
   * Form:
   *
   * `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/tableSpecs/{table_spec_id}/columnSpecs/{column_spec_id}`
   * 
* * string name = 1; * * @return The name. */ java.lang.String getName(); /** * * *
   * Output only. The resource name of the column specs.
   * Form:
   *
   * `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/tableSpecs/{table_spec_id}/columnSpecs/{column_spec_id}`
   * 
* * string name = 1; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * The data type of elements stored in the column.
   * 
* * .google.cloud.automl.v1beta1.DataType data_type = 2; * * @return Whether the dataType field is set. */ boolean hasDataType(); /** * * *
   * The data type of elements stored in the column.
   * 
* * .google.cloud.automl.v1beta1.DataType data_type = 2; * * @return The dataType. */ com.google.cloud.automl.v1beta1.DataType getDataType(); /** * * *
   * The data type of elements stored in the column.
   * 
* * .google.cloud.automl.v1beta1.DataType data_type = 2; */ com.google.cloud.automl.v1beta1.DataTypeOrBuilder getDataTypeOrBuilder(); /** * * *
   * Output only. The name of the column to show in the interface. The name can
   * be up to 100 characters long and can consist only of ASCII Latin letters
   * A-Z and a-z, ASCII digits 0-9, underscores(_), and forward slashes(/), and
   * must start with a letter or a digit.
   * 
* * string display_name = 3; * * @return The displayName. */ java.lang.String getDisplayName(); /** * * *
   * Output only. The name of the column to show in the interface. The name can
   * be up to 100 characters long and can consist only of ASCII Latin letters
   * A-Z and a-z, ASCII digits 0-9, underscores(_), and forward slashes(/), and
   * must start with a letter or a digit.
   * 
* * string display_name = 3; * * @return The bytes for displayName. */ com.google.protobuf.ByteString getDisplayNameBytes(); /** * * *
   * Output only. Stats of the series of values in the column.
   * This field may be stale, see the ancestor's
   * Dataset.tables_dataset_metadata.stats_update_time field
   * for the timestamp at which these stats were last updated.
   * 
* * .google.cloud.automl.v1beta1.DataStats data_stats = 4; * * @return Whether the dataStats field is set. */ boolean hasDataStats(); /** * * *
   * Output only. Stats of the series of values in the column.
   * This field may be stale, see the ancestor's
   * Dataset.tables_dataset_metadata.stats_update_time field
   * for the timestamp at which these stats were last updated.
   * 
* * .google.cloud.automl.v1beta1.DataStats data_stats = 4; * * @return The dataStats. */ com.google.cloud.automl.v1beta1.DataStats getDataStats(); /** * * *
   * Output only. Stats of the series of values in the column.
   * This field may be stale, see the ancestor's
   * Dataset.tables_dataset_metadata.stats_update_time field
   * for the timestamp at which these stats were last updated.
   * 
* * .google.cloud.automl.v1beta1.DataStats data_stats = 4; */ com.google.cloud.automl.v1beta1.DataStatsOrBuilder getDataStatsOrBuilder(); /** * * *
   * Deprecated.
   * 
* * * repeated .google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumn top_correlated_columns = 5; * */ java.util.List getTopCorrelatedColumnsList(); /** * * *
   * Deprecated.
   * 
* * * repeated .google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumn top_correlated_columns = 5; * */ com.google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumn getTopCorrelatedColumns(int index); /** * * *
   * Deprecated.
   * 
* * * repeated .google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumn top_correlated_columns = 5; * */ int getTopCorrelatedColumnsCount(); /** * * *
   * Deprecated.
   * 
* * * repeated .google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumn top_correlated_columns = 5; * */ java.util.List getTopCorrelatedColumnsOrBuilderList(); /** * * *
   * Deprecated.
   * 
* * * repeated .google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumn top_correlated_columns = 5; * */ com.google.cloud.automl.v1beta1.ColumnSpec.CorrelatedColumnOrBuilder getTopCorrelatedColumnsOrBuilder(int index); /** * * *
   * Used to perform consistent read-modify-write updates. If not set, a blind
   * "overwrite" update happens.
   * 
* * string etag = 6; * * @return The etag. */ java.lang.String getEtag(); /** * * *
   * Used to perform consistent read-modify-write updates. If not set, a blind
   * "overwrite" update happens.
   * 
* * string etag = 6; * * @return The bytes for etag. */ com.google.protobuf.ByteString getEtagBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy