• 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 InstanceGroupManagerStatusStatefulOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.InstanceGroupManagerStatusStateful)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * [Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
31    * </pre>
32    *
33    * <code>optional bool has_stateful_config = 110474224;</code>
34    *
35    * @return Whether the hasStatefulConfig field is set.
36    */
hasHasStatefulConfig()37   boolean hasHasStatefulConfig();
38   /**
39    *
40    *
41    * <pre>
42    * [Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
43    * </pre>
44    *
45    * <code>optional bool has_stateful_config = 110474224;</code>
46    *
47    * @return The hasStatefulConfig.
48    */
getHasStatefulConfig()49   boolean getHasStatefulConfig();
50 
51   /**
52    *
53    *
54    * <pre>
55    * [Output Only] Status of per-instance configurations on the instance.
56    * </pre>
57    *
58    * <code>
59    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs per_instance_configs = 526265001;
60    * </code>
61    *
62    * @return Whether the perInstanceConfigs field is set.
63    */
hasPerInstanceConfigs()64   boolean hasPerInstanceConfigs();
65   /**
66    *
67    *
68    * <pre>
69    * [Output Only] Status of per-instance configurations on the instance.
70    * </pre>
71    *
72    * <code>
73    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs per_instance_configs = 526265001;
74    * </code>
75    *
76    * @return The perInstanceConfigs.
77    */
78   com.google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs
getPerInstanceConfigs()79       getPerInstanceConfigs();
80   /**
81    *
82    *
83    * <pre>
84    * [Output Only] Status of per-instance configurations on the instance.
85    * </pre>
86    *
87    * <code>
88    * optional .google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs per_instance_configs = 526265001;
89    * </code>
90    */
91   com.google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigsOrBuilder
getPerInstanceConfigsOrBuilder()92       getPerInstanceConfigsOrBuilder();
93 }
94