com.google.cloud.baremetalsolution.v2.OSImageOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/baremetalsolution/v2/osimage.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.baremetalsolution.v2;
public interface OSImageOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.baremetalsolution.v2.OSImage)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. OS Image's unique name.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Output only. OS Image's unique name.
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* OS Image code.
*
*
* string code = 2;
*
* @return The code.
*/
java.lang.String getCode();
/**
*
*
*
* OS Image code.
*
*
* string code = 2;
*
* @return The bytes for code.
*/
com.google.protobuf.ByteString getCodeBytes();
/**
*
*
*
* OS Image description.
*
*
* string description = 3;
*
* @return The description.
*/
java.lang.String getDescription();
/**
*
*
*
* OS Image description.
*
*
* string description = 3;
*
* @return The bytes for description.
*/
com.google.protobuf.ByteString getDescriptionBytes();
/**
*
*
*
* Instance types this image is applicable to.
* [Available
* types](https://cloud.google.com/bare-metal/docs/bms-planning#server_configurations)
*
*
* repeated string applicable_instance_types = 4;
*
* @return A list containing the applicableInstanceTypes.
*/
java.util.List getApplicableInstanceTypesList();
/**
*
*
*
* Instance types this image is applicable to.
* [Available
* types](https://cloud.google.com/bare-metal/docs/bms-planning#server_configurations)
*
*
* repeated string applicable_instance_types = 4;
*
* @return The count of applicableInstanceTypes.
*/
int getApplicableInstanceTypesCount();
/**
*
*
*
* Instance types this image is applicable to.
* [Available
* types](https://cloud.google.com/bare-metal/docs/bms-planning#server_configurations)
*
*
* repeated string applicable_instance_types = 4;
*
* @param index The index of the element to return.
* @return The applicableInstanceTypes at the given index.
*/
java.lang.String getApplicableInstanceTypes(int index);
/**
*
*
*
* Instance types this image is applicable to.
* [Available
* types](https://cloud.google.com/bare-metal/docs/bms-planning#server_configurations)
*
*
* repeated string applicable_instance_types = 4;
*
* @param index The index of the value to return.
* @return The bytes of the applicableInstanceTypes at the given index.
*/
com.google.protobuf.ByteString getApplicableInstanceTypesBytes(int index);
/**
*
*
*
* Network templates that can be used with this OS Image.
*
*
* repeated string supported_network_templates = 5;
*
* @return A list containing the supportedNetworkTemplates.
*/
java.util.List getSupportedNetworkTemplatesList();
/**
*
*
*
* Network templates that can be used with this OS Image.
*
*
* repeated string supported_network_templates = 5;
*
* @return The count of supportedNetworkTemplates.
*/
int getSupportedNetworkTemplatesCount();
/**
*
*
*
* Network templates that can be used with this OS Image.
*
*
* repeated string supported_network_templates = 5;
*
* @param index The index of the element to return.
* @return The supportedNetworkTemplates at the given index.
*/
java.lang.String getSupportedNetworkTemplates(int index);
/**
*
*
*
* Network templates that can be used with this OS Image.
*
*
* repeated string supported_network_templates = 5;
*
* @param index The index of the value to return.
* @return The bytes of the supportedNetworkTemplates at the given index.
*/
com.google.protobuf.ByteString getSupportedNetworkTemplatesBytes(int index);
}