com.google.api.SystemParameterOrBuilder 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/system_parameter.proto
package com.google.api;
public interface SystemParameterOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.SystemParameter)
com.google.protobuf.MessageOrBuilder {
/**
* optional string name = 1;
*
*
* Define the name of the parameter, such as "api_key", "alt", "callback",
* and etc. It is case sensitive.
*
*/
java.lang.String getName();
/**
* optional string name = 1;
*
*
* Define the name of the parameter, such as "api_key", "alt", "callback",
* and etc. It is case sensitive.
*
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* optional string http_header = 2;
*
*
* Define the HTTP header name to use for the parameter. It is case
* insensitive.
*
*/
java.lang.String getHttpHeader();
/**
* optional string http_header = 2;
*
*
* Define the HTTP header name to use for the parameter. It is case
* insensitive.
*
*/
com.google.protobuf.ByteString
getHttpHeaderBytes();
/**
* optional string url_query_parameter = 3;
*
*
* Define the URL query parameter name to use for the parameter. It is case
* sensitive.
*
*/
java.lang.String getUrlQueryParameter();
/**
* optional string url_query_parameter = 3;
*
*
* Define the URL query parameter name to use for the parameter. It is case
* sensitive.
*
*/
com.google.protobuf.ByteString
getUrlQueryParameterBytes();
}