• 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 SetLabelsImageRequestOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.SetLabelsImageRequest)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The body resource for this request
31    * </pre>
32    *
33    * <code>
34    * .google.cloud.compute.v1.GlobalSetLabelsRequest global_set_labels_request_resource = 319917189 [(.google.api.field_behavior) = REQUIRED];
35    * </code>
36    *
37    * @return Whether the globalSetLabelsRequestResource field is set.
38    */
hasGlobalSetLabelsRequestResource()39   boolean hasGlobalSetLabelsRequestResource();
40   /**
41    *
42    *
43    * <pre>
44    * The body resource for this request
45    * </pre>
46    *
47    * <code>
48    * .google.cloud.compute.v1.GlobalSetLabelsRequest global_set_labels_request_resource = 319917189 [(.google.api.field_behavior) = REQUIRED];
49    * </code>
50    *
51    * @return The globalSetLabelsRequestResource.
52    */
getGlobalSetLabelsRequestResource()53   com.google.cloud.compute.v1.GlobalSetLabelsRequest getGlobalSetLabelsRequestResource();
54   /**
55    *
56    *
57    * <pre>
58    * The body resource for this request
59    * </pre>
60    *
61    * <code>
62    * .google.cloud.compute.v1.GlobalSetLabelsRequest global_set_labels_request_resource = 319917189 [(.google.api.field_behavior) = REQUIRED];
63    * </code>
64    */
65   com.google.cloud.compute.v1.GlobalSetLabelsRequestOrBuilder
getGlobalSetLabelsRequestResourceOrBuilder()66       getGlobalSetLabelsRequestResourceOrBuilder();
67 
68   /**
69    *
70    *
71    * <pre>
72    * Project ID for this request.
73    * </pre>
74    *
75    * <code>
76    * string project = 227560217 [(.google.api.field_behavior) = REQUIRED, (.google.cloud.operation_request_field) = "project"];
77    * </code>
78    *
79    * @return The project.
80    */
getProject()81   java.lang.String getProject();
82   /**
83    *
84    *
85    * <pre>
86    * Project ID for this request.
87    * </pre>
88    *
89    * <code>
90    * string project = 227560217 [(.google.api.field_behavior) = REQUIRED, (.google.cloud.operation_request_field) = "project"];
91    * </code>
92    *
93    * @return The bytes for project.
94    */
getProjectBytes()95   com.google.protobuf.ByteString getProjectBytes();
96 
97   /**
98    *
99    *
100    * <pre>
101    * Name or id of the resource for this request.
102    * </pre>
103    *
104    * <code>string resource = 195806222 [(.google.api.field_behavior) = REQUIRED];</code>
105    *
106    * @return The resource.
107    */
getResource()108   java.lang.String getResource();
109   /**
110    *
111    *
112    * <pre>
113    * Name or id of the resource for this request.
114    * </pre>
115    *
116    * <code>string resource = 195806222 [(.google.api.field_behavior) = REQUIRED];</code>
117    *
118    * @return The bytes for resource.
119    */
getResourceBytes()120   com.google.protobuf.ByteString getResourceBytes();
121 }
122