com.google.cloud.dataform.v1beta1.RelationDescriptorOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dataform-v1beta1 Show documentation
Show all versions of proto-google-cloud-dataform-v1beta1 Show documentation
Proto library for google-cloud-dataform
/*
* 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/dataform/v1beta1/dataform.proto
// Protobuf Java Version: 3.25.2
package com.google.cloud.dataform.v1beta1;
public interface RelationDescriptorOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataform.v1beta1.RelationDescriptor)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A text description of the relation.
*
*
* string description = 1;
*
* @return The description.
*/
java.lang.String getDescription();
/**
*
*
*
* A text description of the relation.
*
*
* string description = 1;
*
* @return The bytes for description.
*/
com.google.protobuf.ByteString getDescriptionBytes();
/**
*
*
*
* A list of descriptions of columns within the relation.
*
*
* repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
*
*/
java.util.List
getColumnsList();
/**
*
*
*
* A list of descriptions of columns within the relation.
*
*
* repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
*
*/
com.google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor getColumns(int index);
/**
*
*
*
* A list of descriptions of columns within the relation.
*
*
* repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
*
*/
int getColumnsCount();
/**
*
*
*
* A list of descriptions of columns within the relation.
*
*
* repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
*
*/
java.util.List<
? extends com.google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptorOrBuilder>
getColumnsOrBuilderList();
/**
*
*
*
* A list of descriptions of columns within the relation.
*
*
* repeated .google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor columns = 2;
*
*/
com.google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptorOrBuilder
getColumnsOrBuilder(int index);
/**
*
*
*
* A set of BigQuery labels that should be applied to the relation.
*
*
* map<string, string> bigquery_labels = 3;
*/
int getBigqueryLabelsCount();
/**
*
*
*
* A set of BigQuery labels that should be applied to the relation.
*
*
* map<string, string> bigquery_labels = 3;
*/
boolean containsBigqueryLabels(java.lang.String key);
/** Use {@link #getBigqueryLabelsMap()} instead. */
@java.lang.Deprecated
java.util.Map getBigqueryLabels();
/**
*
*
*
* A set of BigQuery labels that should be applied to the relation.
*
*
* map<string, string> bigquery_labels = 3;
*/
java.util.Map getBigqueryLabelsMap();
/**
*
*
*
* A set of BigQuery labels that should be applied to the relation.
*
*
* map<string, string> bigquery_labels = 3;
*/
/* nullable */
java.lang.String getBigqueryLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* A set of BigQuery labels that should be applied to the relation.
*
*
* map<string, string> bigquery_labels = 3;
*/
java.lang.String getBigqueryLabelsOrThrow(java.lang.String key);
}