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 NodeTemplateNodeTypeFlexibilityOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.NodeTemplateNodeTypeFlexibility) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * <code>optional string cpus = 3060683;</code> 28 * 29 * @return Whether the cpus field is set. 30 */ hasCpus()31 boolean hasCpus(); 32 /** 33 * <code>optional string cpus = 3060683;</code> 34 * 35 * @return The cpus. 36 */ getCpus()37 java.lang.String getCpus(); 38 /** 39 * <code>optional string cpus = 3060683;</code> 40 * 41 * @return The bytes for cpus. 42 */ getCpusBytes()43 com.google.protobuf.ByteString getCpusBytes(); 44 45 /** 46 * <code>optional string local_ssd = 405741360;</code> 47 * 48 * @return Whether the localSsd field is set. 49 */ hasLocalSsd()50 boolean hasLocalSsd(); 51 /** 52 * <code>optional string local_ssd = 405741360;</code> 53 * 54 * @return The localSsd. 55 */ getLocalSsd()56 java.lang.String getLocalSsd(); 57 /** 58 * <code>optional string local_ssd = 405741360;</code> 59 * 60 * @return The bytes for localSsd. 61 */ getLocalSsdBytes()62 com.google.protobuf.ByteString getLocalSsdBytes(); 63 64 /** 65 * <code>optional string memory = 532856065;</code> 66 * 67 * @return Whether the memory field is set. 68 */ hasMemory()69 boolean hasMemory(); 70 /** 71 * <code>optional string memory = 532856065;</code> 72 * 73 * @return The memory. 74 */ getMemory()75 java.lang.String getMemory(); 76 /** 77 * <code>optional string memory = 532856065;</code> 78 * 79 * @return The bytes for memory. 80 */ getMemoryBytes()81 com.google.protobuf.ByteString getMemoryBytes(); 82 } 83