com.google.cloud.baremetalsolution.v2.LogicalInterfaceOrBuilder 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 2023 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/network.proto
package com.google.cloud.baremetalsolution.v2;
public interface LogicalInterfaceOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.baremetalsolution.v2.LogicalInterface)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* List of logical network interfaces within a logical interface.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterface logical_network_interfaces = 1;
*
*/
java.util.List
getLogicalNetworkInterfacesList();
/**
*
*
*
* List of logical network interfaces within a logical interface.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterface logical_network_interfaces = 1;
*
*/
com.google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterface
getLogicalNetworkInterfaces(int index);
/**
*
*
*
* List of logical network interfaces within a logical interface.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterface logical_network_interfaces = 1;
*
*/
int getLogicalNetworkInterfacesCount();
/**
*
*
*
* List of logical network interfaces within a logical interface.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterface logical_network_interfaces = 1;
*
*/
java.util.List<
? extends
com.google.cloud.baremetalsolution.v2.LogicalInterface
.LogicalNetworkInterfaceOrBuilder>
getLogicalNetworkInterfacesOrBuilderList();
/**
*
*
*
* List of logical network interfaces within a logical interface.
*
*
*
* repeated .google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterface logical_network_interfaces = 1;
*
*/
com.google.cloud.baremetalsolution.v2.LogicalInterface.LogicalNetworkInterfaceOrBuilder
getLogicalNetworkInterfacesOrBuilder(int index);
/**
*
*
*
* Interface name. This is of syntax <bond><bond_mode> or <nic> and
* forms part of the network template name.
*
*
* string name = 2;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Interface name. This is of syntax <bond><bond_mode> or <nic> and
* forms part of the network template name.
*
*
* string name = 2;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The index of the logical interface mapping to the index of the hardware
* bond or nic on the chosen network template. This field is deprecated.
*
*
* int32 interface_index = 3 [deprecated = true];
*
* @deprecated google.cloud.baremetalsolution.v2.LogicalInterface.interface_index is deprecated.
* See google/cloud/baremetalsolution/v2/network.proto;l=243
* @return The interfaceIndex.
*/
@java.lang.Deprecated
int getInterfaceIndex();
}