com.google.cloud.baremetalsolution.v2.VRFOrBuilder 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/network.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.baremetalsolution.v2;
public interface VRFOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.baremetalsolution.v2.VRF)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The name of the VRF.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The name of the VRF.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The possible state of VRF.
*
*
* .google.cloud.baremetalsolution.v2.VRF.State state = 5;
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* The possible state of VRF.
*
*
* .google.cloud.baremetalsolution.v2.VRF.State state = 5;
*
* @return The state.
*/
com.google.cloud.baremetalsolution.v2.VRF.State getState();
/**
*
*
*
* The QOS policy applied to this VRF.
* The value is only meaningful when all the vlan attachments have the same
* QoS. This field should not be used for new integrations, use vlan
* attachment level qos instead. The field is left for backward-compatibility.
*
*
* .google.cloud.baremetalsolution.v2.VRF.QosPolicy qos_policy = 6;
*
* @return Whether the qosPolicy field is set.
*/
boolean hasQosPolicy();
/**
*
*
*
* The QOS policy applied to this VRF.
* The value is only meaningful when all the vlan attachments have the same
* QoS. This field should not be used for new integrations, use vlan
* attachment level qos instead. The field is left for backward-compatibility.
*
*
* .google.cloud.baremetalsolution.v2.VRF.QosPolicy qos_policy = 6;
*
* @return The qosPolicy.
*/
com.google.cloud.baremetalsolution.v2.VRF.QosPolicy getQosPolicy();
/**
*
*
*
* The QOS policy applied to this VRF.
* The value is only meaningful when all the vlan attachments have the same
* QoS. This field should not be used for new integrations, use vlan
* attachment level qos instead. The field is left for backward-compatibility.
*
*
* .google.cloud.baremetalsolution.v2.VRF.QosPolicy qos_policy = 6;
*/
com.google.cloud.baremetalsolution.v2.VRF.QosPolicyOrBuilder getQosPolicyOrBuilder();
/**
*
*
*
* The list of VLAN attachments for the VRF.
*
*
* repeated .google.cloud.baremetalsolution.v2.VRF.VlanAttachment vlan_attachments = 7;
*
*/
java.util.List getVlanAttachmentsList();
/**
*
*
*
* The list of VLAN attachments for the VRF.
*
*
* repeated .google.cloud.baremetalsolution.v2.VRF.VlanAttachment vlan_attachments = 7;
*
*/
com.google.cloud.baremetalsolution.v2.VRF.VlanAttachment getVlanAttachments(int index);
/**
*
*
*
* The list of VLAN attachments for the VRF.
*
*
* repeated .google.cloud.baremetalsolution.v2.VRF.VlanAttachment vlan_attachments = 7;
*
*/
int getVlanAttachmentsCount();
/**
*
*
*
* The list of VLAN attachments for the VRF.
*
*
* repeated .google.cloud.baremetalsolution.v2.VRF.VlanAttachment vlan_attachments = 7;
*
*/
java.util.List extends com.google.cloud.baremetalsolution.v2.VRF.VlanAttachmentOrBuilder>
getVlanAttachmentsOrBuilderList();
/**
*
*
*
* The list of VLAN attachments for the VRF.
*
*
* repeated .google.cloud.baremetalsolution.v2.VRF.VlanAttachment vlan_attachments = 7;
*
*/
com.google.cloud.baremetalsolution.v2.VRF.VlanAttachmentOrBuilder getVlanAttachmentsOrBuilder(
int index);
}