com.google.api.SystemParameterRuleOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/system_parameter.proto
// Protobuf Java Version: 3.25.3
package com.google.api;
public interface SystemParameterRuleOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.SystemParameterRule)
com.google.protobuf.MessageOrBuilder {
/**
*
* Selects the methods to which this rule applies. Use '*' to indicate all
* methods in all APIs.
*
* Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
*
*
* string selector = 1;
* @return The selector.
*/
java.lang.String getSelector();
/**
*
* Selects the methods to which this rule applies. Use '*' to indicate all
* methods in all APIs.
*
* Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
*
*
* string selector = 1;
* @return The bytes for selector.
*/
com.google.protobuf.ByteString
getSelectorBytes();
/**
*
* Define parameters. Multiple names may be defined for a parameter.
* For a given method call, only one of them should be used. If multiple
* names are used the behavior is implementation-dependent.
* If none of the specified names are present the behavior is
* parameter-dependent.
*
*
* repeated .google.api.SystemParameter parameters = 2;
*/
java.util.List
getParametersList();
/**
*
* Define parameters. Multiple names may be defined for a parameter.
* For a given method call, only one of them should be used. If multiple
* names are used the behavior is implementation-dependent.
* If none of the specified names are present the behavior is
* parameter-dependent.
*
*
* repeated .google.api.SystemParameter parameters = 2;
*/
com.google.api.SystemParameter getParameters(int index);
/**
*
* Define parameters. Multiple names may be defined for a parameter.
* For a given method call, only one of them should be used. If multiple
* names are used the behavior is implementation-dependent.
* If none of the specified names are present the behavior is
* parameter-dependent.
*
*
* repeated .google.api.SystemParameter parameters = 2;
*/
int getParametersCount();
/**
*
* Define parameters. Multiple names may be defined for a parameter.
* For a given method call, only one of them should be used. If multiple
* names are used the behavior is implementation-dependent.
* If none of the specified names are present the behavior is
* parameter-dependent.
*
*
* repeated .google.api.SystemParameter parameters = 2;
*/
java.util.List extends com.google.api.SystemParameterOrBuilder>
getParametersOrBuilderList();
/**
*
* Define parameters. Multiple names may be defined for a parameter.
* For a given method call, only one of them should be used. If multiple
* names are used the behavior is implementation-dependent.
* If none of the specified names are present the behavior is
* parameter-dependent.
*
*
* repeated .google.api.SystemParameter parameters = 2;
*/
com.google.api.SystemParameterOrBuilder getParametersOrBuilder(
int index);
}