• 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/gkemulticloud/v1/azure_resources.proto
18 
19 package com.google.cloud.gkemulticloud.v1;
20 
21 public interface AzureNodePoolAutoscalingOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.gkemulticloud.v1.AzureNodePoolAutoscaling)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. Minimum number of nodes in the node pool. Must be greater than or
31    * equal to 1 and less than or equal to max_node_count.
32    * </pre>
33    *
34    * <code>int32 min_node_count = 1 [(.google.api.field_behavior) = REQUIRED];</code>
35    *
36    * @return The minNodeCount.
37    */
getMinNodeCount()38   int getMinNodeCount();
39 
40   /**
41    *
42    *
43    * <pre>
44    * Required. Maximum number of nodes in the node pool. Must be greater than or
45    * equal to min_node_count and less than or equal to 50.
46    * </pre>
47    *
48    * <code>int32 max_node_count = 2 [(.google.api.field_behavior) = REQUIRED];</code>
49    *
50    * @return The maxNodeCount.
51    */
getMaxNodeCount()52   int getMaxNodeCount();
53 }
54