com.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequestOrBuilder 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.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.datastream.v1alpha1;
public interface DiscoverConnectionProfileRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The parent resource of the ConnectionProfile type. Must be in the
* format `projects/*/locations/*`.
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The parent.
*/
java.lang.String getParent();
/**
*
*
*
* Required. The parent resource of the ConnectionProfile type. Must be in the
* format `projects/*/locations/*`.
*
*
*
* string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for parent.
*/
com.google.protobuf.ByteString getParentBytes();
/**
*
*
*
* An ad-hoc ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.ConnectionProfile connection_profile = 200;
*
* @return Whether the connectionProfile field is set.
*/
boolean hasConnectionProfile();
/**
*
*
*
* An ad-hoc ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.ConnectionProfile connection_profile = 200;
*
* @return The connectionProfile.
*/
com.google.cloud.datastream.v1alpha1.ConnectionProfile getConnectionProfile();
/**
*
*
*
* An ad-hoc ConnectionProfile configuration.
*
*
* .google.cloud.datastream.v1alpha1.ConnectionProfile connection_profile = 200;
*/
com.google.cloud.datastream.v1alpha1.ConnectionProfileOrBuilder getConnectionProfileOrBuilder();
/**
*
*
*
* A reference to an existing ConnectionProfile.
*
*
* string connection_profile_name = 201;
*
* @return Whether the connectionProfileName field is set.
*/
boolean hasConnectionProfileName();
/**
*
*
*
* A reference to an existing ConnectionProfile.
*
*
* string connection_profile_name = 201;
*
* @return The connectionProfileName.
*/
java.lang.String getConnectionProfileName();
/**
*
*
*
* A reference to an existing ConnectionProfile.
*
*
* string connection_profile_name = 201;
*
* @return The bytes for connectionProfileName.
*/
com.google.protobuf.ByteString getConnectionProfileNameBytes();
/**
*
*
*
* Whether to retrieve the full hierarchy of data objects (TRUE) or only the
* current level (FALSE).
*
*
* bool recursive = 3;
*
* @return Whether the recursive field is set.
*/
boolean hasRecursive();
/**
*
*
*
* Whether to retrieve the full hierarchy of data objects (TRUE) or only the
* current level (FALSE).
*
*
* bool recursive = 3;
*
* @return The recursive.
*/
boolean getRecursive();
/**
*
*
*
* The number of hierarchy levels below the current level to be retrieved.
*
*
* int32 recursion_depth = 4;
*
* @return Whether the recursionDepth field is set.
*/
boolean hasRecursionDepth();
/**
*
*
*
* The number of hierarchy levels below the current level to be retrieved.
*
*
* int32 recursion_depth = 4;
*
* @return The recursionDepth.
*/
int getRecursionDepth();
/**
*
*
*
* Oracle RDBMS to enrich with child data objects and metadata.
*
*
* .google.cloud.datastream.v1alpha1.OracleRdbms oracle_rdbms = 100;
*
* @return Whether the oracleRdbms field is set.
*/
boolean hasOracleRdbms();
/**
*
*
*
* Oracle RDBMS to enrich with child data objects and metadata.
*
*
* .google.cloud.datastream.v1alpha1.OracleRdbms oracle_rdbms = 100;
*
* @return The oracleRdbms.
*/
com.google.cloud.datastream.v1alpha1.OracleRdbms getOracleRdbms();
/**
*
*
*
* Oracle RDBMS to enrich with child data objects and metadata.
*
*
* .google.cloud.datastream.v1alpha1.OracleRdbms oracle_rdbms = 100;
*/
com.google.cloud.datastream.v1alpha1.OracleRdbmsOrBuilder getOracleRdbmsOrBuilder();
/**
*
*
*
* MySQL RDBMS to enrich with child data objects and metadata.
*
*
* .google.cloud.datastream.v1alpha1.MysqlRdbms mysql_rdbms = 101;
*
* @return Whether the mysqlRdbms field is set.
*/
boolean hasMysqlRdbms();
/**
*
*
*
* MySQL RDBMS to enrich with child data objects and metadata.
*
*
* .google.cloud.datastream.v1alpha1.MysqlRdbms mysql_rdbms = 101;
*
* @return The mysqlRdbms.
*/
com.google.cloud.datastream.v1alpha1.MysqlRdbms getMysqlRdbms();
/**
*
*
*
* MySQL RDBMS to enrich with child data objects and metadata.
*
*
* .google.cloud.datastream.v1alpha1.MysqlRdbms mysql_rdbms = 101;
*/
com.google.cloud.datastream.v1alpha1.MysqlRdbmsOrBuilder getMysqlRdbmsOrBuilder();
com.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest.TargetCase getTargetCase();
com.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest.DepthCase getDepthCase();
com.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest.DataObjectCase
getDataObjectCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy