• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/clouddms/v1/clouddms_resources.proto
18 
19 package com.google.cloud.clouddms.v1;
20 
21 public interface ReverseSshConnectivityOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.clouddms.v1.ReverseSshConnectivity)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. The IP of the virtual machine (Compute Engine) used as the bastion server
31    * for the SSH tunnel.
32    * </pre>
33    *
34    * <code>string vm_ip = 1 [(.google.api.field_behavior) = REQUIRED];</code>
35    *
36    * @return The vmIp.
37    */
getVmIp()38   java.lang.String getVmIp();
39   /**
40    *
41    *
42    * <pre>
43    * Required. The IP of the virtual machine (Compute Engine) used as the bastion server
44    * for the SSH tunnel.
45    * </pre>
46    *
47    * <code>string vm_ip = 1 [(.google.api.field_behavior) = REQUIRED];</code>
48    *
49    * @return The bytes for vmIp.
50    */
getVmIpBytes()51   com.google.protobuf.ByteString getVmIpBytes();
52 
53   /**
54    *
55    *
56    * <pre>
57    * Required. The forwarding port of the virtual machine (Compute Engine) used as the
58    * bastion server for the SSH tunnel.
59    * </pre>
60    *
61    * <code>int32 vm_port = 2 [(.google.api.field_behavior) = REQUIRED];</code>
62    *
63    * @return The vmPort.
64    */
getVmPort()65   int getVmPort();
66 
67   /**
68    *
69    *
70    * <pre>
71    * The name of the virtual machine (Compute Engine) used as the bastion server
72    * for the SSH tunnel.
73    * </pre>
74    *
75    * <code>string vm = 3;</code>
76    *
77    * @return The vm.
78    */
getVm()79   java.lang.String getVm();
80   /**
81    *
82    *
83    * <pre>
84    * The name of the virtual machine (Compute Engine) used as the bastion server
85    * for the SSH tunnel.
86    * </pre>
87    *
88    * <code>string vm = 3;</code>
89    *
90    * @return The bytes for vm.
91    */
getVmBytes()92   com.google.protobuf.ByteString getVmBytes();
93 
94   /**
95    *
96    *
97    * <pre>
98    * The name of the VPC to peer with the Cloud SQL private network.
99    * </pre>
100    *
101    * <code>string vpc = 4;</code>
102    *
103    * @return The vpc.
104    */
getVpc()105   java.lang.String getVpc();
106   /**
107    *
108    *
109    * <pre>
110    * The name of the VPC to peer with the Cloud SQL private network.
111    * </pre>
112    *
113    * <code>string vpc = 4;</code>
114    *
115    * @return The bytes for vpc.
116    */
getVpcBytes()117   com.google.protobuf.ByteString getVpcBytes();
118 }
119