com.google.cloud.datastream.v1alpha1.ConnectionProfileOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-datastream-v1alpha1 Show documentation
Show all versions of proto-google-cloud-datastream-v1alpha1 Show documentation
Proto library for google-cloud-datastream
The 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/datastream/v1alpha1/datastream_resources.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.datastream.v1alpha1;
public interface ConnectionProfileOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1alpha1.ConnectionProfile)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. The resource's name.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Output only. The resource's name.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Output only. The create time of the resource.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. The create time of the resource.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The create time of the resource.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The update time of the resource.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. The update time of the resource.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The update time of the resource.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Labels.
*
*
* map<string, string> labels = 4;
*/
int getLabelsCount();
/**
*
*
*
* Labels.
*
*
* map<string, string> labels = 4;
*/
boolean containsLabels(java.lang.String key);
/** Use {@link #getLabelsMap()} instead. */
@java.lang.Deprecated
java.util.Map getLabels();
/**
*
*
*
* Labels.
*
*
* map<string, string> labels = 4;
*/
java.util.Map getLabelsMap();
/**
*
*
*
* Labels.
*
*
* map<string, string> labels = 4;
*/
/* nullable */
java.lang.String getLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* Labels.
*
*
* map<string, string> labels = 4;
*/
java.lang.String getLabelsOrThrow(java.lang.String key);
/**
*
*
*
* Required. Display name.
*
*
* string display_name = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* Required. Display name.
*
*
* string display_name = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* Oracle ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.OracleProfile oracle_profile = 100;
*
* @return Whether the oracleProfile field is set.
*/
boolean hasOracleProfile();
/**
*
*
*
* Oracle ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.OracleProfile oracle_profile = 100;
*
* @return The oracleProfile.
*/
com.google.cloud.datastream.v1alpha1.OracleProfile getOracleProfile();
/**
*
*
*
* Oracle ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.OracleProfile oracle_profile = 100;
*/
com.google.cloud.datastream.v1alpha1.OracleProfileOrBuilder getOracleProfileOrBuilder();
/**
*
*
*
* Cloud Storage ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.GcsProfile gcs_profile = 101;
*
* @return Whether the gcsProfile field is set.
*/
boolean hasGcsProfile();
/**
*
*
*
* Cloud Storage ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.GcsProfile gcs_profile = 101;
*
* @return The gcsProfile.
*/
com.google.cloud.datastream.v1alpha1.GcsProfile getGcsProfile();
/**
*
*
*
* Cloud Storage ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.GcsProfile gcs_profile = 101;
*/
com.google.cloud.datastream.v1alpha1.GcsProfileOrBuilder getGcsProfileOrBuilder();
/**
*
*
*
* MySQL ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.MysqlProfile mysql_profile = 102;
*
* @return Whether the mysqlProfile field is set.
*/
boolean hasMysqlProfile();
/**
*
*
*
* MySQL ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.MysqlProfile mysql_profile = 102;
*
* @return The mysqlProfile.
*/
com.google.cloud.datastream.v1alpha1.MysqlProfile getMysqlProfile();
/**
*
*
*
* MySQL ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.MysqlProfile mysql_profile = 102;
*/
com.google.cloud.datastream.v1alpha1.MysqlProfileOrBuilder getMysqlProfileOrBuilder();
/**
*
*
*
* No connectivity option chosen.
*
*
* .google.cloud.datastream.v1alpha1.NoConnectivitySettings no_connectivity = 200;
*
* @return Whether the noConnectivity field is set.
*/
boolean hasNoConnectivity();
/**
*
*
*
* No connectivity option chosen.
*
*
* .google.cloud.datastream.v1alpha1.NoConnectivitySettings no_connectivity = 200;
*
* @return The noConnectivity.
*/
com.google.cloud.datastream.v1alpha1.NoConnectivitySettings getNoConnectivity();
/**
*
*
*
* No connectivity option chosen.
*
*
* .google.cloud.datastream.v1alpha1.NoConnectivitySettings no_connectivity = 200;
*/
com.google.cloud.datastream.v1alpha1.NoConnectivitySettingsOrBuilder getNoConnectivityOrBuilder();
/**
*
*
*
* Static Service IP connectivity.
*
*
*
* .google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity static_service_ip_connectivity = 201;
*
*
* @return Whether the staticServiceIpConnectivity field is set.
*/
boolean hasStaticServiceIpConnectivity();
/**
*
*
*
* Static Service IP connectivity.
*
*
*
* .google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity static_service_ip_connectivity = 201;
*
*
* @return The staticServiceIpConnectivity.
*/
com.google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity getStaticServiceIpConnectivity();
/**
*
*
*
* Static Service IP connectivity.
*
*
*
* .google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity static_service_ip_connectivity = 201;
*
*/
com.google.cloud.datastream.v1alpha1.StaticServiceIpConnectivityOrBuilder
getStaticServiceIpConnectivityOrBuilder();
/**
*
*
*
* Forward SSH tunnel connectivity.
*
*
*
* .google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity forward_ssh_connectivity = 202;
*
*
* @return Whether the forwardSshConnectivity field is set.
*/
boolean hasForwardSshConnectivity();
/**
*
*
*
* Forward SSH tunnel connectivity.
*
*
*
* .google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity forward_ssh_connectivity = 202;
*
*
* @return The forwardSshConnectivity.
*/
com.google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity getForwardSshConnectivity();
/**
*
*
*
* Forward SSH tunnel connectivity.
*
*
*
* .google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity forward_ssh_connectivity = 202;
*
*/
com.google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivityOrBuilder
getForwardSshConnectivityOrBuilder();
/**
*
*
*
* Private connectivity.
*
*
* .google.cloud.datastream.v1alpha1.PrivateConnectivity private_connectivity = 203;
*
* @return Whether the privateConnectivity field is set.
*/
boolean hasPrivateConnectivity();
/**
*
*
*
* Private connectivity.
*
*
* .google.cloud.datastream.v1alpha1.PrivateConnectivity private_connectivity = 203;
*
* @return The privateConnectivity.
*/
com.google.cloud.datastream.v1alpha1.PrivateConnectivity getPrivateConnectivity();
/**
*
*
*
* Private connectivity.
*
*
* .google.cloud.datastream.v1alpha1.PrivateConnectivity private_connectivity = 203;
*/
com.google.cloud.datastream.v1alpha1.PrivateConnectivityOrBuilder
getPrivateConnectivityOrBuilder();
com.google.cloud.datastream.v1alpha1.ConnectionProfile.ProfileCase getProfileCase();
com.google.cloud.datastream.v1alpha1.ConnectionProfile.ConnectivityCase getConnectivityCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy