com.google.api.ContextRuleOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-core-proto Show documentation
Show all versions of grpc-core-proto Show documentation
GoogleAPI classes generated from core protos
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/context.proto
package com.google.api;
public interface ContextRuleOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.ContextRule)
com.google.protobuf.MessageOrBuilder {
/**
* optional string selector = 1;
*
*
* Selects the methods to which this rule applies.
* Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
*
*/
java.lang.String getSelector();
/**
* optional string selector = 1;
*
*
* Selects the methods to which this rule applies.
* Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
*
*/
com.google.protobuf.ByteString
getSelectorBytes();
/**
* repeated string requested = 2;
*
*
* A list of full type names of requested contexts.
*
*/
com.google.protobuf.ProtocolStringList
getRequestedList();
/**
* repeated string requested = 2;
*
*
* A list of full type names of requested contexts.
*
*/
int getRequestedCount();
/**
* repeated string requested = 2;
*
*
* A list of full type names of requested contexts.
*
*/
java.lang.String getRequested(int index);
/**
* repeated string requested = 2;
*
*
* A list of full type names of requested contexts.
*
*/
com.google.protobuf.ByteString
getRequestedBytes(int index);
/**
* repeated string provided = 3;
*
*
* A list of full type names of provided contexts.
*
*/
com.google.protobuf.ProtocolStringList
getProvidedList();
/**
* repeated string provided = 3;
*
*
* A list of full type names of provided contexts.
*
*/
int getProvidedCount();
/**
* repeated string provided = 3;
*
*
* A list of full type names of provided contexts.
*
*/
java.lang.String getProvided(int index);
/**
* repeated string provided = 3;
*
*
* A list of full type names of provided contexts.
*
*/
com.google.protobuf.ByteString
getProvidedBytes(int index);
}