• 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 InstanceGroupManagerStatusOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.InstanceGroupManagerStatus)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * [Output Only] The URL of the Autoscaler that targets this instance group manager.
31    * </pre>
32    *
33    * <code>optional string autoscaler = 517258967;</code>
34    *
35    * @return Whether the autoscaler field is set.
36    */
hasAutoscaler()37   boolean hasAutoscaler();
38   /**
39    *
40    *
41    * <pre>
42    * [Output Only] The URL of the Autoscaler that targets this instance group manager.
43    * </pre>
44    *
45    * <code>optional string autoscaler = 517258967;</code>
46    *
47    * @return The autoscaler.
48    */
getAutoscaler()49   java.lang.String getAutoscaler();
50   /**
51    *
52    *
53    * <pre>
54    * [Output Only] The URL of the Autoscaler that targets this instance group manager.
55    * </pre>
56    *
57    * <code>optional string autoscaler = 517258967;</code>
58    *
59    * @return The bytes for autoscaler.
60    */
getAutoscalerBytes()61   com.google.protobuf.ByteString getAutoscalerBytes();
62 
63   /**
64    *
65    *
66    * <pre>
67    * [Output Only] A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
68    * </pre>
69    *
70    * <code>optional bool is_stable = 108410864;</code>
71    *
72    * @return Whether the isStable field is set.
73    */
hasIsStable()74   boolean hasIsStable();
75   /**
76    *
77    *
78    * <pre>
79    * [Output Only] A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
80    * </pre>
81    *
82    * <code>optional bool is_stable = 108410864;</code>
83    *
84    * @return The isStable.
85    */
getIsStable()86   boolean getIsStable();
87 
88   /**
89    *
90    *
91    * <pre>
92    * [Output Only] Stateful status of the given Instance Group Manager.
93    * </pre>
94    *
95    * <code>
96    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusStateful stateful = 244462412;
97    * </code>
98    *
99    * @return Whether the stateful field is set.
100    */
hasStateful()101   boolean hasStateful();
102   /**
103    *
104    *
105    * <pre>
106    * [Output Only] Stateful status of the given Instance Group Manager.
107    * </pre>
108    *
109    * <code>
110    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusStateful stateful = 244462412;
111    * </code>
112    *
113    * @return The stateful.
114    */
getStateful()115   com.google.cloud.compute.v1.InstanceGroupManagerStatusStateful getStateful();
116   /**
117    *
118    *
119    * <pre>
120    * [Output Only] Stateful status of the given Instance Group Manager.
121    * </pre>
122    *
123    * <code>
124    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusStateful stateful = 244462412;
125    * </code>
126    */
getStatefulOrBuilder()127   com.google.cloud.compute.v1.InstanceGroupManagerStatusStatefulOrBuilder getStatefulOrBuilder();
128 
129   /**
130    *
131    *
132    * <pre>
133    * [Output Only] A status of consistency of Instances' versions with their target version specified by version field on Instance Group Manager.
134    * </pre>
135    *
136    * <code>
137    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget version_target = 289386200;
138    * </code>
139    *
140    * @return Whether the versionTarget field is set.
141    */
hasVersionTarget()142   boolean hasVersionTarget();
143   /**
144    *
145    *
146    * <pre>
147    * [Output Only] A status of consistency of Instances' versions with their target version specified by version field on Instance Group Manager.
148    * </pre>
149    *
150    * <code>
151    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget version_target = 289386200;
152    * </code>
153    *
154    * @return The versionTarget.
155    */
getVersionTarget()156   com.google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget getVersionTarget();
157   /**
158    *
159    *
160    * <pre>
161    * [Output Only] A status of consistency of Instances' versions with their target version specified by version field on Instance Group Manager.
162    * </pre>
163    *
164    * <code>
165    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget version_target = 289386200;
166    * </code>
167    */
168   com.google.cloud.compute.v1.InstanceGroupManagerStatusVersionTargetOrBuilder
getVersionTargetOrBuilder()169       getVersionTargetOrBuilder();
170 }
171