com.google.cloud.datastream.v1.OracleProfileOrBuilder 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-v1 Show documentation
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Proto library for google-cloud-datastream
/*
* 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/v1/datastream_resources.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.datastream.v1;
public interface OracleProfileOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1.OracleProfile)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Hostname for the Oracle connection.
*
*
* string hostname = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The hostname.
*/
java.lang.String getHostname();
/**
*
*
*
* Required. Hostname for the Oracle connection.
*
*
* string hostname = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for hostname.
*/
com.google.protobuf.ByteString getHostnameBytes();
/**
*
*
*
* Port for the Oracle connection, default value is 1521.
*
*
* int32 port = 2;
*
* @return The port.
*/
int getPort();
/**
*
*
*
* Required. Username for the Oracle connection.
*
*
* string username = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return The username.
*/
java.lang.String getUsername();
/**
*
*
*
* Required. Username for the Oracle connection.
*
*
* string username = 3 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for username.
*/
com.google.protobuf.ByteString getUsernameBytes();
/**
*
*
*
* Required. Password for the Oracle connection.
*
*
* string password = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return The password.
*/
java.lang.String getPassword();
/**
*
*
*
* Required. Password for the Oracle connection.
*
*
* string password = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for password.
*/
com.google.protobuf.ByteString getPasswordBytes();
/**
*
*
*
* Required. Database for the Oracle connection.
*
*
* string database_service = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The databaseService.
*/
java.lang.String getDatabaseService();
/**
*
*
*
* Required. Database for the Oracle connection.
*
*
* string database_service = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for databaseService.
*/
com.google.protobuf.ByteString getDatabaseServiceBytes();
/**
*
*
*
* Connection string attributes
*
*
* map<string, string> connection_attributes = 6;
*/
int getConnectionAttributesCount();
/**
*
*
*
* Connection string attributes
*
*
* map<string, string> connection_attributes = 6;
*/
boolean containsConnectionAttributes(java.lang.String key);
/** Use {@link #getConnectionAttributesMap()} instead. */
@java.lang.Deprecated
java.util.Map getConnectionAttributes();
/**
*
*
*
* Connection string attributes
*
*
* map<string, string> connection_attributes = 6;
*/
java.util.Map getConnectionAttributesMap();
/**
*
*
*
* Connection string attributes
*
*
* map<string, string> connection_attributes = 6;
*/
/* nullable */
java.lang.String getConnectionAttributesOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* Connection string attributes
*
*
* map<string, string> connection_attributes = 6;
*/
java.lang.String getConnectionAttributesOrThrow(java.lang.String key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy