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 NodeGroupsScopedListOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.NodeGroupsScopedList) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * [Output Only] A list of node groups contained in this scope. 31 * </pre> 32 * 33 * <code>repeated .google.cloud.compute.v1.NodeGroup node_groups = 73188017;</code> 34 */ getNodeGroupsList()35 java.util.List<com.google.cloud.compute.v1.NodeGroup> getNodeGroupsList(); 36 /** 37 * 38 * 39 * <pre> 40 * [Output Only] A list of node groups contained in this scope. 41 * </pre> 42 * 43 * <code>repeated .google.cloud.compute.v1.NodeGroup node_groups = 73188017;</code> 44 */ getNodeGroups(int index)45 com.google.cloud.compute.v1.NodeGroup getNodeGroups(int index); 46 /** 47 * 48 * 49 * <pre> 50 * [Output Only] A list of node groups contained in this scope. 51 * </pre> 52 * 53 * <code>repeated .google.cloud.compute.v1.NodeGroup node_groups = 73188017;</code> 54 */ getNodeGroupsCount()55 int getNodeGroupsCount(); 56 /** 57 * 58 * 59 * <pre> 60 * [Output Only] A list of node groups contained in this scope. 61 * </pre> 62 * 63 * <code>repeated .google.cloud.compute.v1.NodeGroup node_groups = 73188017;</code> 64 */ 65 java.util.List<? extends com.google.cloud.compute.v1.NodeGroupOrBuilder> getNodeGroupsOrBuilderList()66 getNodeGroupsOrBuilderList(); 67 /** 68 * 69 * 70 * <pre> 71 * [Output Only] A list of node groups contained in this scope. 72 * </pre> 73 * 74 * <code>repeated .google.cloud.compute.v1.NodeGroup node_groups = 73188017;</code> 75 */ getNodeGroupsOrBuilder(int index)76 com.google.cloud.compute.v1.NodeGroupOrBuilder getNodeGroupsOrBuilder(int index); 77 78 /** 79 * 80 * 81 * <pre> 82 * [Output Only] An informational warning that appears when the nodeGroup list is empty. 83 * </pre> 84 * 85 * <code>optional .google.cloud.compute.v1.Warning warning = 50704284;</code> 86 * 87 * @return Whether the warning field is set. 88 */ hasWarning()89 boolean hasWarning(); 90 /** 91 * 92 * 93 * <pre> 94 * [Output Only] An informational warning that appears when the nodeGroup list is empty. 95 * </pre> 96 * 97 * <code>optional .google.cloud.compute.v1.Warning warning = 50704284;</code> 98 * 99 * @return The warning. 100 */ getWarning()101 com.google.cloud.compute.v1.Warning getWarning(); 102 /** 103 * 104 * 105 * <pre> 106 * [Output Only] An informational warning that appears when the nodeGroup list is empty. 107 * </pre> 108 * 109 * <code>optional .google.cloud.compute.v1.Warning warning = 50704284;</code> 110 */ getWarningOrBuilder()111 com.google.cloud.compute.v1.WarningOrBuilder getWarningOrBuilder(); 112 } 113