• 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/compute/v1/compute.proto
18 
19 package com.google.cloud.compute.v1;
20 
21 public interface GetInterconnectLocationRequestOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.GetInterconnectLocationRequest)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Name of the interconnect location to return.
31    * </pre>
32    *
33    * <code>string interconnect_location = 492235846 [(.google.api.field_behavior) = REQUIRED];
34    * </code>
35    *
36    * @return The interconnectLocation.
37    */
getInterconnectLocation()38   java.lang.String getInterconnectLocation();
39   /**
40    *
41    *
42    * <pre>
43    * Name of the interconnect location to return.
44    * </pre>
45    *
46    * <code>string interconnect_location = 492235846 [(.google.api.field_behavior) = REQUIRED];
47    * </code>
48    *
49    * @return The bytes for interconnectLocation.
50    */
getInterconnectLocationBytes()51   com.google.protobuf.ByteString getInterconnectLocationBytes();
52 
53   /**
54    *
55    *
56    * <pre>
57    * Project ID for this request.
58    * </pre>
59    *
60    * <code>string project = 227560217 [(.google.api.field_behavior) = REQUIRED];</code>
61    *
62    * @return The project.
63    */
getProject()64   java.lang.String getProject();
65   /**
66    *
67    *
68    * <pre>
69    * Project ID for this request.
70    * </pre>
71    *
72    * <code>string project = 227560217 [(.google.api.field_behavior) = REQUIRED];</code>
73    *
74    * @return The bytes for project.
75    */
getProjectBytes()76   com.google.protobuf.ByteString getProjectBytes();
77 }
78