io.envoyproxy.envoy.api.v3alpha.ResourceOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/api/v3alpha/discovery.proto
package io.envoyproxy.envoy.api.v3alpha;
public interface ResourceOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.api.v3alpha.Resource)
com.google.protobuf.MessageOrBuilder {
/**
*
* The resource's name, to distinguish it from others of the same type of resource.
*
*
* string name = 3;
*/
java.lang.String getName();
/**
*
* The resource's name, to distinguish it from others of the same type of resource.
*
*
* string name = 3;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* [#not-implemented-hide:]
* The aliases are a list of other names that this resource can go by.
*
*
* repeated string aliases = 4;
*/
java.util.List
getAliasesList();
/**
*
* [#not-implemented-hide:]
* The aliases are a list of other names that this resource can go by.
*
*
* repeated string aliases = 4;
*/
int getAliasesCount();
/**
*
* [#not-implemented-hide:]
* The aliases are a list of other names that this resource can go by.
*
*
* repeated string aliases = 4;
*/
java.lang.String getAliases(int index);
/**
*
* [#not-implemented-hide:]
* The aliases are a list of other names that this resource can go by.
*
*
* repeated string aliases = 4;
*/
com.google.protobuf.ByteString
getAliasesBytes(int index);
/**
*
* The resource level version. It allows xDS to track the state of individual
* resources.
*
*
* string version = 1;
*/
java.lang.String getVersion();
/**
*
* The resource level version. It allows xDS to track the state of individual
* resources.
*
*
* string version = 1;
*/
com.google.protobuf.ByteString
getVersionBytes();
/**
*
* The resource being tracked.
*
*
* .google.protobuf.Any resource = 2;
*/
boolean hasResource();
/**
*
* The resource being tracked.
*
*
* .google.protobuf.Any resource = 2;
*/
com.google.protobuf.Any getResource();
/**
*
* The resource being tracked.
*
*
* .google.protobuf.Any resource = 2;
*/
com.google.protobuf.AnyOrBuilder getResourceOrBuilder();
}