com.google.cloud.baremetalsolution.v2.ServerNetworkTemplateOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-bare-metal-solution-v2 Show documentation
Show all versions of proto-google-cloud-bare-metal-solution-v2 Show documentation
Proto library for google-cloud-bare-metal-solution
/*
* 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/instance.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.baremetalsolution.v2;
public interface ServerNetworkTemplateOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.baremetalsolution.v2.ServerNetworkTemplate)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. Template's unique name. The full resource name follows the
* pattern:
* `projects/{project}/locations/{location}/serverNetworkTemplate/{server_network_template}`
* Generally, the {server_network_template} follows the syntax of
* "bond<interface_type_index><bond_mode>" or "nic<interface_type_index>".
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Output only. Template's unique name. The full resource name follows the
* pattern:
* `projects/{project}/locations/{location}/serverNetworkTemplate/{server_network_template}`
* Generally, the {server_network_template} follows the syntax of
* "bond<interface_type_index><bond_mode>" or "nic<interface_type_index>".
*
*
* string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Instance types this template is applicable to.
*
*
* repeated string applicable_instance_types = 2;
*
* @return A list containing the applicableInstanceTypes.
*/
java.util.List getApplicableInstanceTypesList();
/**
*
*
*
* Instance types this template is applicable to.
*
*
* repeated string applicable_instance_types = 2;
*
* @return The count of applicableInstanceTypes.
*/
int getApplicableInstanceTypesCount();
/**
*
*
*
* Instance types this template is applicable to.
*
*
* repeated string applicable_instance_types = 2;
*
* @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 template is applicable to.
*
*
* repeated string applicable_instance_types = 2;
*
* @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);
/**
*
*
*
* Logical interfaces.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterface logical_interfaces = 3;
*
*/
java.util.List
getLogicalInterfacesList();
/**
*
*
*
* Logical interfaces.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterface logical_interfaces = 3;
*
*/
com.google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterface getLogicalInterfaces(
int index);
/**
*
*
*
* Logical interfaces.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterface logical_interfaces = 3;
*
*/
int getLogicalInterfacesCount();
/**
*
*
*
* Logical interfaces.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterface logical_interfaces = 3;
*
*/
java.util.List<
? extends
com.google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterfaceOrBuilder>
getLogicalInterfacesOrBuilderList();
/**
*
*
*
* Logical interfaces.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterface logical_interfaces = 3;
*
*/
com.google.cloud.baremetalsolution.v2.ServerNetworkTemplate.LogicalInterfaceOrBuilder
getLogicalInterfacesOrBuilder(int index);
}