• 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 PatchNodeGroupRequestOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.PatchNodeGroupRequest)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Name of the NodeGroup resource to update.
31    * </pre>
32    *
33    * <code>string node_group = 469958146 [(.google.api.field_behavior) = REQUIRED];</code>
34    *
35    * @return The nodeGroup.
36    */
getNodeGroup()37   java.lang.String getNodeGroup();
38   /**
39    *
40    *
41    * <pre>
42    * Name of the NodeGroup resource to update.
43    * </pre>
44    *
45    * <code>string node_group = 469958146 [(.google.api.field_behavior) = REQUIRED];</code>
46    *
47    * @return The bytes for nodeGroup.
48    */
getNodeGroupBytes()49   com.google.protobuf.ByteString getNodeGroupBytes();
50 
51   /**
52    *
53    *
54    * <pre>
55    * The body resource for this request
56    * </pre>
57    *
58    * <code>
59    * .google.cloud.compute.v1.NodeGroup node_group_resource = 505321899 [(.google.api.field_behavior) = REQUIRED];
60    * </code>
61    *
62    * @return Whether the nodeGroupResource field is set.
63    */
hasNodeGroupResource()64   boolean hasNodeGroupResource();
65   /**
66    *
67    *
68    * <pre>
69    * The body resource for this request
70    * </pre>
71    *
72    * <code>
73    * .google.cloud.compute.v1.NodeGroup node_group_resource = 505321899 [(.google.api.field_behavior) = REQUIRED];
74    * </code>
75    *
76    * @return The nodeGroupResource.
77    */
getNodeGroupResource()78   com.google.cloud.compute.v1.NodeGroup getNodeGroupResource();
79   /**
80    *
81    *
82    * <pre>
83    * The body resource for this request
84    * </pre>
85    *
86    * <code>
87    * .google.cloud.compute.v1.NodeGroup node_group_resource = 505321899 [(.google.api.field_behavior) = REQUIRED];
88    * </code>
89    */
getNodeGroupResourceOrBuilder()90   com.google.cloud.compute.v1.NodeGroupOrBuilder getNodeGroupResourceOrBuilder();
91 
92   /**
93    *
94    *
95    * <pre>
96    * Project ID for this request.
97    * </pre>
98    *
99    * <code>
100    * string project = 227560217 [(.google.api.field_behavior) = REQUIRED, (.google.cloud.operation_request_field) = "project"];
101    * </code>
102    *
103    * @return The project.
104    */
getProject()105   java.lang.String getProject();
106   /**
107    *
108    *
109    * <pre>
110    * Project ID for this request.
111    * </pre>
112    *
113    * <code>
114    * string project = 227560217 [(.google.api.field_behavior) = REQUIRED, (.google.cloud.operation_request_field) = "project"];
115    * </code>
116    *
117    * @return The bytes for project.
118    */
getProjectBytes()119   com.google.protobuf.ByteString getProjectBytes();
120 
121   /**
122    *
123    *
124    * <pre>
125    * An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
126    * </pre>
127    *
128    * <code>optional string request_id = 37109963;</code>
129    *
130    * @return Whether the requestId field is set.
131    */
hasRequestId()132   boolean hasRequestId();
133   /**
134    *
135    *
136    * <pre>
137    * An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
138    * </pre>
139    *
140    * <code>optional string request_id = 37109963;</code>
141    *
142    * @return The requestId.
143    */
getRequestId()144   java.lang.String getRequestId();
145   /**
146    *
147    *
148    * <pre>
149    * An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
150    * </pre>
151    *
152    * <code>optional string request_id = 37109963;</code>
153    *
154    * @return The bytes for requestId.
155    */
getRequestIdBytes()156   com.google.protobuf.ByteString getRequestIdBytes();
157 
158   /**
159    *
160    *
161    * <pre>
162    * The name of the zone for this request.
163    * </pre>
164    *
165    * <code>
166    * string zone = 3744684 [(.google.api.field_behavior) = REQUIRED, (.google.cloud.operation_request_field) = "zone"];
167    * </code>
168    *
169    * @return The zone.
170    */
getZone()171   java.lang.String getZone();
172   /**
173    *
174    *
175    * <pre>
176    * The name of the zone for this request.
177    * </pre>
178    *
179    * <code>
180    * string zone = 3744684 [(.google.api.field_behavior) = REQUIRED, (.google.cloud.operation_request_field) = "zone"];
181    * </code>
182    *
183    * @return The bytes for zone.
184    */
getZoneBytes()185   com.google.protobuf.ByteString getZoneBytes();
186 }
187