com.google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivityOrBuilder 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 ForwardSshTunnelConnectivityOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Hostname for the SSH tunnel.
*
*
* string hostname = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The hostname.
*/
java.lang.String getHostname();
/**
*
*
*
* Required. Hostname for the SSH tunnel.
*
*
* string hostname = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for hostname.
*/
com.google.protobuf.ByteString getHostnameBytes();
/**
*
*
*
* Required. Username for the SSH tunnel.
*
*
* string username = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The username.
*/
java.lang.String getUsername();
/**
*
*
*
* Required. Username for the SSH tunnel.
*
*
* string username = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for username.
*/
com.google.protobuf.ByteString getUsernameBytes();
/**
*
*
*
* Port for the SSH tunnel, default value is 22.
*
*
* int32 port = 3;
*
* @return The port.
*/
int getPort();
/**
*
*
*
* Input only. SSH password.
*
*
* string password = 100 [(.google.api.field_behavior) = INPUT_ONLY];
*
* @return Whether the password field is set.
*/
boolean hasPassword();
/**
*
*
*
* Input only. SSH password.
*
*
* string password = 100 [(.google.api.field_behavior) = INPUT_ONLY];
*
* @return The password.
*/
java.lang.String getPassword();
/**
*
*
*
* Input only. SSH password.
*
*
* string password = 100 [(.google.api.field_behavior) = INPUT_ONLY];
*
* @return The bytes for password.
*/
com.google.protobuf.ByteString getPasswordBytes();
/**
*
*
*
* Input only. SSH private key.
*
*
* string private_key = 101 [(.google.api.field_behavior) = INPUT_ONLY];
*
* @return Whether the privateKey field is set.
*/
boolean hasPrivateKey();
/**
*
*
*
* Input only. SSH private key.
*
*
* string private_key = 101 [(.google.api.field_behavior) = INPUT_ONLY];
*
* @return The privateKey.
*/
java.lang.String getPrivateKey();
/**
*
*
*
* Input only. SSH private key.
*
*
* string private_key = 101 [(.google.api.field_behavior) = INPUT_ONLY];
*
* @return The bytes for privateKey.
*/
com.google.protobuf.ByteString getPrivateKeyBytes();
com.google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity.AuthenticationMethodCase
getAuthenticationMethodCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy