2022-07-07 20:11:50 +00:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
2024-02-24 00:34:55 +00:00
// protoc-gen-go v1.28.1
// protoc (unknown)
2022-07-07 20:11:50 +00:00
// source: protoc-gen-openapiv2/options/openapiv2.proto
package options
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
structpb "google.golang.org/protobuf/types/known/structpb"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl . EnforceVersion ( 20 - protoimpl . MinVersion )
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl . EnforceVersion ( protoimpl . MaxVersion - 20 )
)
// Scheme describes the schemes supported by the OpenAPI Swagger
// and Operation objects.
type Scheme int32
const (
Scheme_UNKNOWN Scheme = 0
Scheme_HTTP Scheme = 1
Scheme_HTTPS Scheme = 2
Scheme_WS Scheme = 3
Scheme_WSS Scheme = 4
)
// Enum value maps for Scheme.
var (
Scheme_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "HTTP" ,
2 : "HTTPS" ,
3 : "WS" ,
4 : "WSS" ,
}
Scheme_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"HTTP" : 1 ,
"HTTPS" : 2 ,
"WS" : 3 ,
"WSS" : 4 ,
}
)
func ( x Scheme ) Enum ( ) * Scheme {
p := new ( Scheme )
* p = x
return p
}
func ( x Scheme ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( Scheme ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 0 ] . Descriptor ( )
}
func ( Scheme ) Type ( ) protoreflect . EnumType {
return & file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 0 ]
}
func ( x Scheme ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use Scheme.Descriptor instead.
func ( Scheme ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 0 }
}
2024-02-24 00:34:55 +00:00
// `Type` is a a supported HTTP header type.
// See https://swagger.io/specification/v2/#parameterType.
type HeaderParameter_Type int32
const (
HeaderParameter_UNKNOWN HeaderParameter_Type = 0
HeaderParameter_STRING HeaderParameter_Type = 1
HeaderParameter_NUMBER HeaderParameter_Type = 2
HeaderParameter_INTEGER HeaderParameter_Type = 3
HeaderParameter_BOOLEAN HeaderParameter_Type = 4
)
// Enum value maps for HeaderParameter_Type.
var (
HeaderParameter_Type_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "STRING" ,
2 : "NUMBER" ,
3 : "INTEGER" ,
4 : "BOOLEAN" ,
}
HeaderParameter_Type_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"STRING" : 1 ,
"NUMBER" : 2 ,
"INTEGER" : 3 ,
"BOOLEAN" : 4 ,
}
)
func ( x HeaderParameter_Type ) Enum ( ) * HeaderParameter_Type {
p := new ( HeaderParameter_Type )
* p = x
return p
}
func ( x HeaderParameter_Type ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( HeaderParameter_Type ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 1 ] . Descriptor ( )
}
func ( HeaderParameter_Type ) Type ( ) protoreflect . EnumType {
return & file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 1 ]
}
func ( x HeaderParameter_Type ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use HeaderParameter_Type.Descriptor instead.
func ( HeaderParameter_Type ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 3 , 0 }
}
2022-07-07 20:11:50 +00:00
type JSONSchema_JSONSchemaSimpleTypes int32
const (
JSONSchema_UNKNOWN JSONSchema_JSONSchemaSimpleTypes = 0
JSONSchema_ARRAY JSONSchema_JSONSchemaSimpleTypes = 1
JSONSchema_BOOLEAN JSONSchema_JSONSchemaSimpleTypes = 2
JSONSchema_INTEGER JSONSchema_JSONSchemaSimpleTypes = 3
JSONSchema_NULL JSONSchema_JSONSchemaSimpleTypes = 4
JSONSchema_NUMBER JSONSchema_JSONSchemaSimpleTypes = 5
JSONSchema_OBJECT JSONSchema_JSONSchemaSimpleTypes = 6
JSONSchema_STRING JSONSchema_JSONSchemaSimpleTypes = 7
)
// Enum value maps for JSONSchema_JSONSchemaSimpleTypes.
var (
JSONSchema_JSONSchemaSimpleTypes_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "ARRAY" ,
2 : "BOOLEAN" ,
3 : "INTEGER" ,
4 : "NULL" ,
5 : "NUMBER" ,
6 : "OBJECT" ,
7 : "STRING" ,
}
JSONSchema_JSONSchemaSimpleTypes_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"ARRAY" : 1 ,
"BOOLEAN" : 2 ,
"INTEGER" : 3 ,
"NULL" : 4 ,
"NUMBER" : 5 ,
"OBJECT" : 6 ,
"STRING" : 7 ,
}
)
func ( x JSONSchema_JSONSchemaSimpleTypes ) Enum ( ) * JSONSchema_JSONSchemaSimpleTypes {
p := new ( JSONSchema_JSONSchemaSimpleTypes )
* p = x
return p
}
func ( x JSONSchema_JSONSchemaSimpleTypes ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( JSONSchema_JSONSchemaSimpleTypes ) Descriptor ( ) protoreflect . EnumDescriptor {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 2 ] . Descriptor ( )
2022-07-07 20:11:50 +00:00
}
func ( JSONSchema_JSONSchemaSimpleTypes ) Type ( ) protoreflect . EnumType {
2024-02-24 00:34:55 +00:00
return & file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 2 ]
2022-07-07 20:11:50 +00:00
}
func ( x JSONSchema_JSONSchemaSimpleTypes ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use JSONSchema_JSONSchemaSimpleTypes.Descriptor instead.
func ( JSONSchema_JSONSchemaSimpleTypes ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 11 , 0 }
2022-07-07 20:11:50 +00:00
}
// The type of the security scheme. Valid values are "basic",
// "apiKey" or "oauth2".
type SecurityScheme_Type int32
const (
SecurityScheme_TYPE_INVALID SecurityScheme_Type = 0
SecurityScheme_TYPE_BASIC SecurityScheme_Type = 1
SecurityScheme_TYPE_API_KEY SecurityScheme_Type = 2
SecurityScheme_TYPE_OAUTH2 SecurityScheme_Type = 3
)
// Enum value maps for SecurityScheme_Type.
var (
SecurityScheme_Type_name = map [ int32 ] string {
0 : "TYPE_INVALID" ,
1 : "TYPE_BASIC" ,
2 : "TYPE_API_KEY" ,
3 : "TYPE_OAUTH2" ,
}
SecurityScheme_Type_value = map [ string ] int32 {
"TYPE_INVALID" : 0 ,
"TYPE_BASIC" : 1 ,
"TYPE_API_KEY" : 2 ,
"TYPE_OAUTH2" : 3 ,
}
)
func ( x SecurityScheme_Type ) Enum ( ) * SecurityScheme_Type {
p := new ( SecurityScheme_Type )
* p = x
return p
}
func ( x SecurityScheme_Type ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( SecurityScheme_Type ) Descriptor ( ) protoreflect . EnumDescriptor {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 3 ] . Descriptor ( )
2022-07-07 20:11:50 +00:00
}
func ( SecurityScheme_Type ) Type ( ) protoreflect . EnumType {
2024-02-24 00:34:55 +00:00
return & file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 3 ]
2022-07-07 20:11:50 +00:00
}
func ( x SecurityScheme_Type ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use SecurityScheme_Type.Descriptor instead.
func ( SecurityScheme_Type ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 14 , 0 }
2022-07-07 20:11:50 +00:00
}
// The location of the API key. Valid values are "query" or "header".
type SecurityScheme_In int32
const (
SecurityScheme_IN_INVALID SecurityScheme_In = 0
SecurityScheme_IN_QUERY SecurityScheme_In = 1
SecurityScheme_IN_HEADER SecurityScheme_In = 2
)
// Enum value maps for SecurityScheme_In.
var (
SecurityScheme_In_name = map [ int32 ] string {
0 : "IN_INVALID" ,
1 : "IN_QUERY" ,
2 : "IN_HEADER" ,
}
SecurityScheme_In_value = map [ string ] int32 {
"IN_INVALID" : 0 ,
"IN_QUERY" : 1 ,
"IN_HEADER" : 2 ,
}
)
func ( x SecurityScheme_In ) Enum ( ) * SecurityScheme_In {
p := new ( SecurityScheme_In )
* p = x
return p
}
func ( x SecurityScheme_In ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( SecurityScheme_In ) Descriptor ( ) protoreflect . EnumDescriptor {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 4 ] . Descriptor ( )
2022-07-07 20:11:50 +00:00
}
func ( SecurityScheme_In ) Type ( ) protoreflect . EnumType {
2024-02-24 00:34:55 +00:00
return & file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 4 ]
2022-07-07 20:11:50 +00:00
}
func ( x SecurityScheme_In ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use SecurityScheme_In.Descriptor instead.
func ( SecurityScheme_In ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 14 , 1 }
2022-07-07 20:11:50 +00:00
}
// The flow used by the OAuth2 security scheme. Valid values are
// "implicit", "password", "application" or "accessCode".
type SecurityScheme_Flow int32
const (
SecurityScheme_FLOW_INVALID SecurityScheme_Flow = 0
SecurityScheme_FLOW_IMPLICIT SecurityScheme_Flow = 1
SecurityScheme_FLOW_PASSWORD SecurityScheme_Flow = 2
SecurityScheme_FLOW_APPLICATION SecurityScheme_Flow = 3
SecurityScheme_FLOW_ACCESS_CODE SecurityScheme_Flow = 4
)
// Enum value maps for SecurityScheme_Flow.
var (
SecurityScheme_Flow_name = map [ int32 ] string {
0 : "FLOW_INVALID" ,
1 : "FLOW_IMPLICIT" ,
2 : "FLOW_PASSWORD" ,
3 : "FLOW_APPLICATION" ,
4 : "FLOW_ACCESS_CODE" ,
}
SecurityScheme_Flow_value = map [ string ] int32 {
"FLOW_INVALID" : 0 ,
"FLOW_IMPLICIT" : 1 ,
"FLOW_PASSWORD" : 2 ,
"FLOW_APPLICATION" : 3 ,
"FLOW_ACCESS_CODE" : 4 ,
}
)
func ( x SecurityScheme_Flow ) Enum ( ) * SecurityScheme_Flow {
p := new ( SecurityScheme_Flow )
* p = x
return p
}
func ( x SecurityScheme_Flow ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( SecurityScheme_Flow ) Descriptor ( ) protoreflect . EnumDescriptor {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 5 ] . Descriptor ( )
2022-07-07 20:11:50 +00:00
}
func ( SecurityScheme_Flow ) Type ( ) protoreflect . EnumType {
2024-02-24 00:34:55 +00:00
return & file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes [ 5 ]
2022-07-07 20:11:50 +00:00
}
func ( x SecurityScheme_Flow ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use SecurityScheme_Flow.Descriptor instead.
func ( SecurityScheme_Flow ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 14 , 2 }
2022-07-07 20:11:50 +00:00
}
// `Swagger` is a representation of OpenAPI v2 specification's Swagger object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#swaggerObject
//
// Example:
//
2024-02-24 00:34:55 +00:00
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
// info: {
// title: "Echo API";
// version: "1.0";
// description: "";
// contact: {
// name: "gRPC-Gateway project";
// url: "https://github.com/grpc-ecosystem/grpc-gateway";
// email: "none@example.com";
// };
// license: {
// name: "BSD 3-Clause License";
// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
// };
// };
// schemes: HTTPS;
// consumes: "application/json";
// produces: "application/json";
// };
2022-07-07 20:11:50 +00:00
type Swagger struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Specifies the OpenAPI Specification version being used. It can be
// used by the OpenAPI UI and other clients to interpret the API listing. The
// value MUST be "2.0".
Swagger string ` protobuf:"bytes,1,opt,name=swagger,proto3" json:"swagger,omitempty" `
// Provides metadata about the API. The metadata can be used by the
// clients if needed.
Info * Info ` protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty" `
// The host (name or ip) serving the API. This MUST be the host only and does
// not include the scheme nor sub-paths. It MAY include a port. If the host is
// not included, the host serving the documentation is to be used (including
// the port). The host does not support path templating.
Host string ` protobuf:"bytes,3,opt,name=host,proto3" json:"host,omitempty" `
// The base path on which the API is served, which is relative to the host. If
// it is not included, the API is served directly under the host. The value
// MUST start with a leading slash (/). The basePath does not support path
// templating.
// Note that using `base_path` does not change the endpoint paths that are
// generated in the resulting OpenAPI file. If you wish to use `base_path`
// with relatively generated OpenAPI paths, the `base_path` prefix must be
// manually removed from your `google.api.http` paths and your code changed to
// serve the API from the `base_path`.
BasePath string ` protobuf:"bytes,4,opt,name=base_path,json=basePath,proto3" json:"base_path,omitempty" `
// The transfer protocol of the API. Values MUST be from the list: "http",
// "https", "ws", "wss". If the schemes is not included, the default scheme to
// be used is the one used to access the OpenAPI definition itself.
Schemes [ ] Scheme ` protobuf:"varint,5,rep,packed,name=schemes,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.Scheme" json:"schemes,omitempty" `
// A list of MIME types the APIs can consume. This is global to all APIs but
// can be overridden on specific API calls. Value MUST be as described under
// Mime Types.
Consumes [ ] string ` protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty" `
// A list of MIME types the APIs can produce. This is global to all APIs but
// can be overridden on specific API calls. Value MUST be as described under
// Mime Types.
Produces [ ] string ` protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty" `
// An object to hold responses that can be used across operations. This
// property does not define global responses for all operations.
Responses map [ string ] * Response ` protobuf:"bytes,10,rep,name=responses,proto3" json:"responses,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
// Security scheme definitions that can be used across the specification.
SecurityDefinitions * SecurityDefinitions ` protobuf:"bytes,11,opt,name=security_definitions,json=securityDefinitions,proto3" json:"security_definitions,omitempty" `
// A declaration of which security schemes are applied for the API as a whole.
// The list of values describes alternative security schemes that can be used
// (that is, there is a logical OR between the security requirements).
// Individual operations can override this definition.
Security [ ] * SecurityRequirement ` protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty" `
2024-02-24 00:34:55 +00:00
// A list of tags for API documentation control. Tags can be used for logical
// grouping of operations by resources or any other qualifier.
Tags [ ] * Tag ` protobuf:"bytes,13,rep,name=tags,proto3" json:"tags,omitempty" `
2022-07-07 20:11:50 +00:00
// Additional external documentation.
2024-02-24 00:34:55 +00:00
ExternalDocs * ExternalDocumentation ` protobuf:"bytes,14,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty" `
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,15,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
2022-07-07 20:11:50 +00:00
}
func ( x * Swagger ) Reset ( ) {
* x = Swagger { }
if protoimpl . UnsafeEnabled {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 0 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Swagger ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Swagger ) ProtoMessage ( ) { }
func ( x * Swagger ) ProtoReflect ( ) protoreflect . Message {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 0 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Swagger.ProtoReflect.Descriptor instead.
func ( * Swagger ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 0 }
}
func ( x * Swagger ) GetSwagger ( ) string {
if x != nil {
return x . Swagger
}
return ""
}
func ( x * Swagger ) GetInfo ( ) * Info {
if x != nil {
return x . Info
}
return nil
}
func ( x * Swagger ) GetHost ( ) string {
if x != nil {
return x . Host
}
return ""
}
func ( x * Swagger ) GetBasePath ( ) string {
if x != nil {
return x . BasePath
}
return ""
}
func ( x * Swagger ) GetSchemes ( ) [ ] Scheme {
if x != nil {
return x . Schemes
}
return nil
}
func ( x * Swagger ) GetConsumes ( ) [ ] string {
if x != nil {
return x . Consumes
}
return nil
}
func ( x * Swagger ) GetProduces ( ) [ ] string {
if x != nil {
return x . Produces
}
return nil
}
func ( x * Swagger ) GetResponses ( ) map [ string ] * Response {
if x != nil {
return x . Responses
}
return nil
}
func ( x * Swagger ) GetSecurityDefinitions ( ) * SecurityDefinitions {
if x != nil {
return x . SecurityDefinitions
}
return nil
}
func ( x * Swagger ) GetSecurity ( ) [ ] * SecurityRequirement {
if x != nil {
return x . Security
}
return nil
}
2024-02-24 00:34:55 +00:00
func ( x * Swagger ) GetTags ( ) [ ] * Tag {
if x != nil {
return x . Tags
}
return nil
}
2022-07-07 20:11:50 +00:00
func ( x * Swagger ) GetExternalDocs ( ) * ExternalDocumentation {
if x != nil {
return x . ExternalDocs
}
return nil
}
func ( x * Swagger ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
// `Operation` is a representation of OpenAPI v2 specification's Operation object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#operationObject
//
// Example:
//
2024-02-24 00:34:55 +00:00
// service EchoService {
// rpc Echo(SimpleMessage) returns (SimpleMessage) {
// option (google.api.http) = {
// get: "/v1/example/echo/{id}"
// };
2022-07-07 20:11:50 +00:00
//
2024-02-24 00:34:55 +00:00
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
// summary: "Get a message.";
// operation_id: "getMessage";
// tags: "echo";
// responses: {
// key: "200"
// value: {
// description: "OK";
// }
// }
// };
// }
// }
2022-07-07 20:11:50 +00:00
type Operation struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// A list of tags for API documentation control. Tags can be used for logical
// grouping of operations by resources or any other qualifier.
Tags [ ] string ` protobuf:"bytes,1,rep,name=tags,proto3" json:"tags,omitempty" `
// A short summary of what the operation does. For maximum readability in the
// swagger-ui, this field SHOULD be less than 120 characters.
Summary string ` protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty" `
// A verbose explanation of the operation behavior. GFM syntax can be used for
// rich text representation.
Description string ` protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty" `
// Additional external documentation for this operation.
ExternalDocs * ExternalDocumentation ` protobuf:"bytes,4,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty" `
// Unique string used to identify the operation. The id MUST be unique among
// all operations described in the API. Tools and libraries MAY use the
// operationId to uniquely identify an operation, therefore, it is recommended
// to follow common programming naming conventions.
OperationId string ` protobuf:"bytes,5,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty" `
// A list of MIME types the operation can consume. This overrides the consumes
// definition at the OpenAPI Object. An empty value MAY be used to clear the
// global definition. Value MUST be as described under Mime Types.
Consumes [ ] string ` protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty" `
// A list of MIME types the operation can produce. This overrides the produces
// definition at the OpenAPI Object. An empty value MAY be used to clear the
// global definition. Value MUST be as described under Mime Types.
Produces [ ] string ` protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty" `
// The list of possible responses as they are returned from executing this
// operation.
Responses map [ string ] * Response ` protobuf:"bytes,9,rep,name=responses,proto3" json:"responses,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
// The transfer protocol for the operation. Values MUST be from the list:
// "http", "https", "ws", "wss". The value overrides the OpenAPI Object
// schemes definition.
Schemes [ ] Scheme ` protobuf:"varint,10,rep,packed,name=schemes,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.Scheme" json:"schemes,omitempty" `
// Declares this operation to be deprecated. Usage of the declared operation
// should be refrained. Default value is false.
Deprecated bool ` protobuf:"varint,11,opt,name=deprecated,proto3" json:"deprecated,omitempty" `
// A declaration of which security schemes are applied for this operation. The
// list of values describes alternative security schemes that can be used
// (that is, there is a logical OR between the security requirements). This
// definition overrides any declared top-level security. To remove a top-level
// security declaration, an empty array can be used.
2024-02-24 00:34:55 +00:00
Security [ ] * SecurityRequirement ` protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty" `
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
2022-07-07 20:11:50 +00:00
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,13,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
2024-02-24 00:34:55 +00:00
// Custom parameters such as HTTP request headers.
// See: https://swagger.io/docs/specification/2-0/describing-parameters/
// and https://swagger.io/specification/v2/#parameter-object.
Parameters * Parameters ` protobuf:"bytes,14,opt,name=parameters,proto3" json:"parameters,omitempty" `
2022-07-07 20:11:50 +00:00
}
func ( x * Operation ) Reset ( ) {
* x = Operation { }
if protoimpl . UnsafeEnabled {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 1 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Operation ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Operation ) ProtoMessage ( ) { }
func ( x * Operation ) ProtoReflect ( ) protoreflect . Message {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 1 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Operation.ProtoReflect.Descriptor instead.
func ( * Operation ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 1 }
}
func ( x * Operation ) GetTags ( ) [ ] string {
if x != nil {
return x . Tags
}
return nil
}
func ( x * Operation ) GetSummary ( ) string {
if x != nil {
return x . Summary
}
return ""
}
func ( x * Operation ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Operation ) GetExternalDocs ( ) * ExternalDocumentation {
if x != nil {
return x . ExternalDocs
}
return nil
}
func ( x * Operation ) GetOperationId ( ) string {
if x != nil {
return x . OperationId
}
return ""
}
func ( x * Operation ) GetConsumes ( ) [ ] string {
if x != nil {
return x . Consumes
}
return nil
}
func ( x * Operation ) GetProduces ( ) [ ] string {
if x != nil {
return x . Produces
}
return nil
}
func ( x * Operation ) GetResponses ( ) map [ string ] * Response {
if x != nil {
return x . Responses
}
return nil
}
func ( x * Operation ) GetSchemes ( ) [ ] Scheme {
if x != nil {
return x . Schemes
}
return nil
}
func ( x * Operation ) GetDeprecated ( ) bool {
if x != nil {
return x . Deprecated
}
return false
}
func ( x * Operation ) GetSecurity ( ) [ ] * SecurityRequirement {
if x != nil {
return x . Security
}
return nil
}
func ( x * Operation ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
2024-02-24 00:34:55 +00:00
func ( x * Operation ) GetParameters ( ) * Parameters {
if x != nil {
return x . Parameters
}
return nil
}
// `Parameters` is a representation of OpenAPI v2 specification's parameters object.
// Note: This technically breaks compatibility with the OpenAPI 2 definition structure as we only
// allow header parameters to be set here since we do not want users specifying custom non-header
// parameters beyond those inferred from the Protobuf schema.
// See: https://swagger.io/specification/v2/#parameter-object
type Parameters struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// `Headers` is one or more HTTP header parameter.
// See: https://swagger.io/docs/specification/2-0/describing-parameters/#header-parameters
Headers [ ] * HeaderParameter ` protobuf:"bytes,1,rep,name=headers,proto3" json:"headers,omitempty" `
}
func ( x * Parameters ) Reset ( ) {
* x = Parameters { }
if protoimpl . UnsafeEnabled {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 2 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Parameters ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Parameters ) ProtoMessage ( ) { }
func ( x * Parameters ) ProtoReflect ( ) protoreflect . Message {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 2 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Parameters.ProtoReflect.Descriptor instead.
func ( * Parameters ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
func ( x * Parameters ) GetHeaders ( ) [ ] * HeaderParameter {
if x != nil {
return x . Headers
}
return nil
}
// `HeaderParameter` a HTTP header parameter.
// See: https://swagger.io/specification/v2/#parameter-object
type HeaderParameter struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// `Name` is the header name.
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" `
// `Description` is a short description of the header.
Description string ` protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" `
// `Type` is the type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
// See: https://swagger.io/specification/v2/#parameterType.
Type HeaderParameter_Type ` protobuf:"varint,3,opt,name=type,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter_Type" json:"type,omitempty" `
// `Format` The extending format for the previously mentioned type.
Format string ` protobuf:"bytes,4,opt,name=format,proto3" json:"format,omitempty" `
// `Required` indicates if the header is optional
Required bool ` protobuf:"varint,5,opt,name=required,proto3" json:"required,omitempty" `
}
func ( x * HeaderParameter ) Reset ( ) {
* x = HeaderParameter { }
if protoimpl . UnsafeEnabled {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 3 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * HeaderParameter ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * HeaderParameter ) ProtoMessage ( ) { }
func ( x * HeaderParameter ) ProtoReflect ( ) protoreflect . Message {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 3 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use HeaderParameter.ProtoReflect.Descriptor instead.
func ( * HeaderParameter ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
func ( x * HeaderParameter ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * HeaderParameter ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * HeaderParameter ) GetType ( ) HeaderParameter_Type {
if x != nil {
return x . Type
}
return HeaderParameter_UNKNOWN
}
func ( x * HeaderParameter ) GetFormat ( ) string {
if x != nil {
return x . Format
}
return ""
}
func ( x * HeaderParameter ) GetRequired ( ) bool {
if x != nil {
return x . Required
}
return false
}
2022-07-07 20:11:50 +00:00
// `Header` is a representation of OpenAPI v2 specification's Header object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#headerObject
type Header struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// `Description` is a short description of the header.
Description string ` protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty" `
// The type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
Type string ` protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty" `
// `Format` The extending format for the previously mentioned type.
Format string ` protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty" `
// `Default` Declares the value of the header that the server will use if none is provided.
// See: https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-6.2.
// Unlike JSON Schema this value MUST conform to the defined type for the header.
Default string ` protobuf:"bytes,6,opt,name=default,proto3" json:"default,omitempty" `
// 'Pattern' See https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.2.3.
Pattern string ` protobuf:"bytes,13,opt,name=pattern,proto3" json:"pattern,omitempty" `
}
func ( x * Header ) Reset ( ) {
* x = Header { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 4 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Header ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Header ) ProtoMessage ( ) { }
func ( x * Header ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 4 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Header.ProtoReflect.Descriptor instead.
func ( * Header ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 4 }
2022-07-07 20:11:50 +00:00
}
func ( x * Header ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Header ) GetType ( ) string {
if x != nil {
return x . Type
}
return ""
}
func ( x * Header ) GetFormat ( ) string {
if x != nil {
return x . Format
}
return ""
}
func ( x * Header ) GetDefault ( ) string {
if x != nil {
return x . Default
}
return ""
}
func ( x * Header ) GetPattern ( ) string {
if x != nil {
return x . Pattern
}
return ""
}
// `Response` is a representation of OpenAPI v2 specification's Response object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#responseObject
type Response struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// `Description` is a short description of the response.
// GFM syntax can be used for rich text representation.
Description string ` protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty" `
// `Schema` optionally defines the structure of the response.
// If `Schema` is not provided, it means there is no content to the response.
Schema * Schema ` protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty" `
// `Headers` A list of headers that are sent with the response.
// `Header` name is expected to be a string in the canonical format of the MIME header key
// See: https://golang.org/pkg/net/textproto/#CanonicalMIMEHeaderKey
Headers map [ string ] * Header ` protobuf:"bytes,3,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
// `Examples` gives per-mimetype response examples.
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#example-object
2024-02-24 00:34:55 +00:00
Examples map [ string ] string ` protobuf:"bytes,4,rep,name=examples,proto3" json:"examples,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
2022-07-07 20:11:50 +00:00
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,5,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
}
func ( x * Response ) Reset ( ) {
* x = Response { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 5 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Response ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Response ) ProtoMessage ( ) { }
func ( x * Response ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 5 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Response.ProtoReflect.Descriptor instead.
func ( * Response ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 5 }
2022-07-07 20:11:50 +00:00
}
func ( x * Response ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Response ) GetSchema ( ) * Schema {
if x != nil {
return x . Schema
}
return nil
}
func ( x * Response ) GetHeaders ( ) map [ string ] * Header {
if x != nil {
return x . Headers
}
return nil
}
func ( x * Response ) GetExamples ( ) map [ string ] string {
if x != nil {
return x . Examples
}
return nil
}
func ( x * Response ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
// `Info` is a representation of OpenAPI v2 specification's Info object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#infoObject
//
// Example:
//
2024-02-24 00:34:55 +00:00
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
// info: {
// title: "Echo API";
// version: "1.0";
// description: "";
// contact: {
// name: "gRPC-Gateway project";
// url: "https://github.com/grpc-ecosystem/grpc-gateway";
// email: "none@example.com";
// };
// license: {
// name: "BSD 3-Clause License";
// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
// };
// };
// ...
// };
2022-07-07 20:11:50 +00:00
type Info struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The title of the application.
Title string ` protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty" `
// A short description of the application. GFM syntax can be used for rich
// text representation.
Description string ` protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" `
// The Terms of Service for the API.
TermsOfService string ` protobuf:"bytes,3,opt,name=terms_of_service,json=termsOfService,proto3" json:"terms_of_service,omitempty" `
// The contact information for the exposed API.
Contact * Contact ` protobuf:"bytes,4,opt,name=contact,proto3" json:"contact,omitempty" `
// The license information for the exposed API.
License * License ` protobuf:"bytes,5,opt,name=license,proto3" json:"license,omitempty" `
// Provides the version of the application API (not to be confused
// with the specification version).
2024-02-24 00:34:55 +00:00
Version string ` protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty" `
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
2022-07-07 20:11:50 +00:00
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,7,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
}
func ( x * Info ) Reset ( ) {
* x = Info { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 6 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Info ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Info ) ProtoMessage ( ) { }
func ( x * Info ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 6 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Info.ProtoReflect.Descriptor instead.
func ( * Info ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 6 }
2022-07-07 20:11:50 +00:00
}
func ( x * Info ) GetTitle ( ) string {
if x != nil {
return x . Title
}
return ""
}
func ( x * Info ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Info ) GetTermsOfService ( ) string {
if x != nil {
return x . TermsOfService
}
return ""
}
func ( x * Info ) GetContact ( ) * Contact {
if x != nil {
return x . Contact
}
return nil
}
func ( x * Info ) GetLicense ( ) * License {
if x != nil {
return x . License
}
return nil
}
func ( x * Info ) GetVersion ( ) string {
if x != nil {
return x . Version
}
return ""
}
func ( x * Info ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
// `Contact` is a representation of OpenAPI v2 specification's Contact object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#contactObject
//
// Example:
//
2024-02-24 00:34:55 +00:00
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
// info: {
// ...
// contact: {
// name: "gRPC-Gateway project";
// url: "https://github.com/grpc-ecosystem/grpc-gateway";
// email: "none@example.com";
// };
// ...
// };
// ...
// };
2022-07-07 20:11:50 +00:00
type Contact struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The identifying name of the contact person/organization.
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" `
// The URL pointing to the contact information. MUST be in the format of a
// URL.
Url string ` protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty" `
// The email address of the contact person/organization. MUST be in the format
// of an email address.
Email string ` protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty" `
}
func ( x * Contact ) Reset ( ) {
* x = Contact { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 7 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Contact ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Contact ) ProtoMessage ( ) { }
func ( x * Contact ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 7 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Contact.ProtoReflect.Descriptor instead.
func ( * Contact ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 7 }
2022-07-07 20:11:50 +00:00
}
func ( x * Contact ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * Contact ) GetUrl ( ) string {
if x != nil {
return x . Url
}
return ""
}
func ( x * Contact ) GetEmail ( ) string {
if x != nil {
return x . Email
}
return ""
}
// `License` is a representation of OpenAPI v2 specification's License object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#licenseObject
//
// Example:
//
2024-02-24 00:34:55 +00:00
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
// info: {
// ...
// license: {
// name: "BSD 3-Clause License";
// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
// };
// ...
// };
// ...
// };
2022-07-07 20:11:50 +00:00
type License struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The license name used for the API.
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" `
// A URL to the license used for the API. MUST be in the format of a URL.
Url string ` protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty" `
}
func ( x * License ) Reset ( ) {
* x = License { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 8 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * License ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * License ) ProtoMessage ( ) { }
func ( x * License ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 8 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use License.ProtoReflect.Descriptor instead.
func ( * License ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 8 }
2022-07-07 20:11:50 +00:00
}
func ( x * License ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * License ) GetUrl ( ) string {
if x != nil {
return x . Url
}
return ""
}
// `ExternalDocumentation` is a representation of OpenAPI v2 specification's
// ExternalDocumentation object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#externalDocumentationObject
//
// Example:
//
2024-02-24 00:34:55 +00:00
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
// ...
// external_docs: {
// description: "More about gRPC-Gateway";
// url: "https://github.com/grpc-ecosystem/grpc-gateway";
// }
// ...
// };
2022-07-07 20:11:50 +00:00
type ExternalDocumentation struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// A short description of the target documentation. GFM syntax can be used for
// rich text representation.
Description string ` protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty" `
// The URL for the target documentation. Value MUST be in the format
// of a URL.
Url string ` protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty" `
}
func ( x * ExternalDocumentation ) Reset ( ) {
* x = ExternalDocumentation { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 9 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ExternalDocumentation ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ExternalDocumentation ) ProtoMessage ( ) { }
func ( x * ExternalDocumentation ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 9 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use ExternalDocumentation.ProtoReflect.Descriptor instead.
func ( * ExternalDocumentation ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 9 }
2022-07-07 20:11:50 +00:00
}
func ( x * ExternalDocumentation ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * ExternalDocumentation ) GetUrl ( ) string {
if x != nil {
return x . Url
}
return ""
}
// `Schema` is a representation of OpenAPI v2 specification's Schema object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
type Schema struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
JsonSchema * JSONSchema ` protobuf:"bytes,1,opt,name=json_schema,json=jsonSchema,proto3" json:"json_schema,omitempty" `
// Adds support for polymorphism. The discriminator is the schema property
// name that is used to differentiate between other schema that inherit this
// schema. The property name used MUST be defined at this schema and it MUST
// be in the required property list. When used, the value MUST be the name of
// this schema or any schema that inherits it.
Discriminator string ` protobuf:"bytes,2,opt,name=discriminator,proto3" json:"discriminator,omitempty" `
// Relevant only for Schema "properties" definitions. Declares the property as
// "read only". This means that it MAY be sent as part of a response but MUST
// NOT be sent as part of the request. Properties marked as readOnly being
// true SHOULD NOT be in the required list of the defined schema. Default
// value is false.
ReadOnly bool ` protobuf:"varint,3,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty" `
// Additional external documentation for this schema.
ExternalDocs * ExternalDocumentation ` protobuf:"bytes,5,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty" `
// A free-form property to include an example of an instance for this schema in JSON.
// This is copied verbatim to the output.
Example string ` protobuf:"bytes,6,opt,name=example,proto3" json:"example,omitempty" `
}
func ( x * Schema ) Reset ( ) {
* x = Schema { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 10 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Schema ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Schema ) ProtoMessage ( ) { }
func ( x * Schema ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 10 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Schema.ProtoReflect.Descriptor instead.
func ( * Schema ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 10 }
2022-07-07 20:11:50 +00:00
}
func ( x * Schema ) GetJsonSchema ( ) * JSONSchema {
if x != nil {
return x . JsonSchema
}
return nil
}
func ( x * Schema ) GetDiscriminator ( ) string {
if x != nil {
return x . Discriminator
}
return ""
}
func ( x * Schema ) GetReadOnly ( ) bool {
if x != nil {
return x . ReadOnly
}
return false
}
func ( x * Schema ) GetExternalDocs ( ) * ExternalDocumentation {
if x != nil {
return x . ExternalDocs
}
return nil
}
func ( x * Schema ) GetExample ( ) string {
if x != nil {
return x . Example
}
return ""
}
// `JSONSchema` represents properties from JSON Schema taken, and as used, in
// the OpenAPI v2 spec.
//
// This includes changes made by OpenAPI v2.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
//
// See also: https://cswr.github.io/JsonSchema/spec/basic_types/,
// https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json
//
// Example:
//
2024-02-24 00:34:55 +00:00
// message SimpleMessage {
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
// json_schema: {
// title: "SimpleMessage"
// description: "A simple message."
// required: ["id"]
// }
// };
2022-07-07 20:11:50 +00:00
//
2024-02-24 00:34:55 +00:00
// // Id represents the message identifier.
// string id = 1; [
// (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
// description: "The unique identifier of the simple message."
// }];
// }
2022-07-07 20:11:50 +00:00
type JSONSchema struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Ref is used to define an external reference to include in the message.
// This could be a fully qualified proto message reference, and that type must
// be imported into the protofile. If no message is identified, the Ref will
// be used verbatim in the output.
// For example:
2024-02-24 00:34:55 +00:00
//
// `ref: ".google.protobuf.Timestamp"`.
2022-07-07 20:11:50 +00:00
Ref string ` protobuf:"bytes,3,opt,name=ref,proto3" json:"ref,omitempty" `
// The title of the schema.
Title string ` protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty" `
// A short description of the schema.
Description string ` protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty" `
Default string ` protobuf:"bytes,7,opt,name=default,proto3" json:"default,omitempty" `
ReadOnly bool ` protobuf:"varint,8,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty" `
// A free-form property to include a JSON example of this field. This is copied
// verbatim to the output swagger.json. Quotes must be escaped.
// This property is the same for 2.0 and 3.0.0 https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/3.0.0.md#schemaObject https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
Example string ` protobuf:"bytes,9,opt,name=example,proto3" json:"example,omitempty" `
MultipleOf float64 ` protobuf:"fixed64,10,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty" `
// Maximum represents an inclusive upper limit for a numeric instance. The
// value of MUST be a number,
Maximum float64 ` protobuf:"fixed64,11,opt,name=maximum,proto3" json:"maximum,omitempty" `
ExclusiveMaximum bool ` protobuf:"varint,12,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty" `
// minimum represents an inclusive lower limit for a numeric instance. The
// value of MUST be a number,
Minimum float64 ` protobuf:"fixed64,13,opt,name=minimum,proto3" json:"minimum,omitempty" `
ExclusiveMinimum bool ` protobuf:"varint,14,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty" `
MaxLength uint64 ` protobuf:"varint,15,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty" `
MinLength uint64 ` protobuf:"varint,16,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty" `
Pattern string ` protobuf:"bytes,17,opt,name=pattern,proto3" json:"pattern,omitempty" `
MaxItems uint64 ` protobuf:"varint,20,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty" `
MinItems uint64 ` protobuf:"varint,21,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty" `
UniqueItems bool ` protobuf:"varint,22,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty" `
MaxProperties uint64 ` protobuf:"varint,24,opt,name=max_properties,json=maxProperties,proto3" json:"max_properties,omitempty" `
MinProperties uint64 ` protobuf:"varint,25,opt,name=min_properties,json=minProperties,proto3" json:"min_properties,omitempty" `
Required [ ] string ` protobuf:"bytes,26,rep,name=required,proto3" json:"required,omitempty" `
// Items in 'array' must be unique.
Array [ ] string ` protobuf:"bytes,34,rep,name=array,proto3" json:"array,omitempty" `
Type [ ] JSONSchema_JSONSchemaSimpleTypes ` protobuf:"varint,35,rep,packed,name=type,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.JSONSchema_JSONSchemaSimpleTypes" json:"type,omitempty" `
// `Format`
Format string ` protobuf:"bytes,36,opt,name=format,proto3" json:"format,omitempty" `
// Items in `enum` must be unique https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.5.1
Enum [ ] string ` protobuf:"bytes,46,rep,name=enum,proto3" json:"enum,omitempty" `
2024-02-24 00:34:55 +00:00
// Additional field level properties used when generating the OpenAPI v2 file.
FieldConfiguration * JSONSchema_FieldConfiguration ` protobuf:"bytes,1001,opt,name=field_configuration,json=fieldConfiguration,proto3" json:"field_configuration,omitempty" `
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,48,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
2022-07-07 20:11:50 +00:00
}
func ( x * JSONSchema ) Reset ( ) {
* x = JSONSchema { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 11 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * JSONSchema ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * JSONSchema ) ProtoMessage ( ) { }
func ( x * JSONSchema ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 11 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use JSONSchema.ProtoReflect.Descriptor instead.
func ( * JSONSchema ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 11 }
2022-07-07 20:11:50 +00:00
}
func ( x * JSONSchema ) GetRef ( ) string {
if x != nil {
return x . Ref
}
return ""
}
func ( x * JSONSchema ) GetTitle ( ) string {
if x != nil {
return x . Title
}
return ""
}
func ( x * JSONSchema ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * JSONSchema ) GetDefault ( ) string {
if x != nil {
return x . Default
}
return ""
}
func ( x * JSONSchema ) GetReadOnly ( ) bool {
if x != nil {
return x . ReadOnly
}
return false
}
func ( x * JSONSchema ) GetExample ( ) string {
if x != nil {
return x . Example
}
return ""
}
func ( x * JSONSchema ) GetMultipleOf ( ) float64 {
if x != nil {
return x . MultipleOf
}
return 0
}
func ( x * JSONSchema ) GetMaximum ( ) float64 {
if x != nil {
return x . Maximum
}
return 0
}
func ( x * JSONSchema ) GetExclusiveMaximum ( ) bool {
if x != nil {
return x . ExclusiveMaximum
}
return false
}
func ( x * JSONSchema ) GetMinimum ( ) float64 {
if x != nil {
return x . Minimum
}
return 0
}
func ( x * JSONSchema ) GetExclusiveMinimum ( ) bool {
if x != nil {
return x . ExclusiveMinimum
}
return false
}
func ( x * JSONSchema ) GetMaxLength ( ) uint64 {
if x != nil {
return x . MaxLength
}
return 0
}
func ( x * JSONSchema ) GetMinLength ( ) uint64 {
if x != nil {
return x . MinLength
}
return 0
}
func ( x * JSONSchema ) GetPattern ( ) string {
if x != nil {
return x . Pattern
}
return ""
}
func ( x * JSONSchema ) GetMaxItems ( ) uint64 {
if x != nil {
return x . MaxItems
}
return 0
}
func ( x * JSONSchema ) GetMinItems ( ) uint64 {
if x != nil {
return x . MinItems
}
return 0
}
func ( x * JSONSchema ) GetUniqueItems ( ) bool {
if x != nil {
return x . UniqueItems
}
return false
}
func ( x * JSONSchema ) GetMaxProperties ( ) uint64 {
if x != nil {
return x . MaxProperties
}
return 0
}
func ( x * JSONSchema ) GetMinProperties ( ) uint64 {
if x != nil {
return x . MinProperties
}
return 0
}
func ( x * JSONSchema ) GetRequired ( ) [ ] string {
if x != nil {
return x . Required
}
return nil
}
func ( x * JSONSchema ) GetArray ( ) [ ] string {
if x != nil {
return x . Array
}
return nil
}
func ( x * JSONSchema ) GetType ( ) [ ] JSONSchema_JSONSchemaSimpleTypes {
if x != nil {
return x . Type
}
return nil
}
func ( x * JSONSchema ) GetFormat ( ) string {
if x != nil {
return x . Format
}
return ""
}
func ( x * JSONSchema ) GetEnum ( ) [ ] string {
if x != nil {
return x . Enum
}
return nil
}
2024-02-24 00:34:55 +00:00
func ( x * JSONSchema ) GetFieldConfiguration ( ) * JSONSchema_FieldConfiguration {
if x != nil {
return x . FieldConfiguration
}
return nil
}
func ( x * JSONSchema ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
2022-07-07 20:11:50 +00:00
// `Tag` is a representation of OpenAPI v2 specification's Tag object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#tagObject
type Tag struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
2024-02-24 00:34:55 +00:00
// The name of the tag. Use it to allow override of the name of a
// global Tag object, then use that name to reference the tag throughout the
// OpenAPI file.
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" `
2022-07-07 20:11:50 +00:00
// A short description for the tag. GFM syntax can be used for rich text
// representation.
Description string ` protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" `
// Additional external documentation for this tag.
ExternalDocs * ExternalDocumentation ` protobuf:"bytes,3,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty" `
2024-02-24 00:34:55 +00:00
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,4,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
2022-07-07 20:11:50 +00:00
}
func ( x * Tag ) Reset ( ) {
* x = Tag { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 12 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Tag ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Tag ) ProtoMessage ( ) { }
func ( x * Tag ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 12 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Tag.ProtoReflect.Descriptor instead.
func ( * Tag ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 12 }
}
func ( x * Tag ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
2022-07-07 20:11:50 +00:00
}
func ( x * Tag ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Tag ) GetExternalDocs ( ) * ExternalDocumentation {
if x != nil {
return x . ExternalDocs
}
return nil
}
2024-02-24 00:34:55 +00:00
func ( x * Tag ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
2022-07-07 20:11:50 +00:00
// `SecurityDefinitions` is a representation of OpenAPI v2 specification's
// Security Definitions object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securityDefinitionsObject
//
// A declaration of the security schemes available to be used in the
// specification. This does not enforce the security schemes on the operations
// and only serves to provide the relevant details for each scheme.
type SecurityDefinitions struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// A single security scheme definition, mapping a "name" to the scheme it
// defines.
Security map [ string ] * SecurityScheme ` protobuf:"bytes,1,rep,name=security,proto3" json:"security,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
}
func ( x * SecurityDefinitions ) Reset ( ) {
* x = SecurityDefinitions { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 13 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * SecurityDefinitions ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * SecurityDefinitions ) ProtoMessage ( ) { }
func ( x * SecurityDefinitions ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 13 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use SecurityDefinitions.ProtoReflect.Descriptor instead.
func ( * SecurityDefinitions ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 13 }
2022-07-07 20:11:50 +00:00
}
func ( x * SecurityDefinitions ) GetSecurity ( ) map [ string ] * SecurityScheme {
if x != nil {
return x . Security
}
return nil
}
// `SecurityScheme` is a representation of OpenAPI v2 specification's
// Security Scheme object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securitySchemeObject
//
// Allows the definition of a security scheme that can be used by the
// operations. Supported schemes are basic authentication, an API key (either as
// a header or as a query parameter) and OAuth2's common flows (implicit,
// password, application and access code).
type SecurityScheme struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The type of the security scheme. Valid values are "basic",
// "apiKey" or "oauth2".
Type SecurityScheme_Type ` protobuf:"varint,1,opt,name=type,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme_Type" json:"type,omitempty" `
// A short description for security scheme.
Description string ` protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" `
// The name of the header or query parameter to be used.
// Valid for apiKey.
Name string ` protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty" `
// The location of the API key. Valid values are "query" or
// "header".
// Valid for apiKey.
In SecurityScheme_In ` protobuf:"varint,4,opt,name=in,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme_In" json:"in,omitempty" `
// The flow used by the OAuth2 security scheme. Valid values are
// "implicit", "password", "application" or "accessCode".
// Valid for oauth2.
Flow SecurityScheme_Flow ` protobuf:"varint,5,opt,name=flow,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme_Flow" json:"flow,omitempty" `
// The authorization URL to be used for this flow. This SHOULD be in
// the form of a URL.
// Valid for oauth2/implicit and oauth2/accessCode.
AuthorizationUrl string ` protobuf:"bytes,6,opt,name=authorization_url,json=authorizationUrl,proto3" json:"authorization_url,omitempty" `
// The token URL to be used for this flow. This SHOULD be in the
// form of a URL.
// Valid for oauth2/password, oauth2/application and oauth2/accessCode.
TokenUrl string ` protobuf:"bytes,7,opt,name=token_url,json=tokenUrl,proto3" json:"token_url,omitempty" `
// The available scopes for the OAuth2 security scheme.
// Valid for oauth2.
2024-02-24 00:34:55 +00:00
Scopes * Scopes ` protobuf:"bytes,8,opt,name=scopes,proto3" json:"scopes,omitempty" `
// Custom properties that start with "x-" such as "x-foo" used to describe
// extra functionality that is not covered by the standard OpenAPI Specification.
// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
2022-07-07 20:11:50 +00:00
Extensions map [ string ] * structpb . Value ` protobuf:"bytes,9,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
}
func ( x * SecurityScheme ) Reset ( ) {
* x = SecurityScheme { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 14 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * SecurityScheme ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * SecurityScheme ) ProtoMessage ( ) { }
func ( x * SecurityScheme ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 14 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use SecurityScheme.ProtoReflect.Descriptor instead.
func ( * SecurityScheme ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 14 }
2022-07-07 20:11:50 +00:00
}
func ( x * SecurityScheme ) GetType ( ) SecurityScheme_Type {
if x != nil {
return x . Type
}
return SecurityScheme_TYPE_INVALID
}
func ( x * SecurityScheme ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * SecurityScheme ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * SecurityScheme ) GetIn ( ) SecurityScheme_In {
if x != nil {
return x . In
}
return SecurityScheme_IN_INVALID
}
func ( x * SecurityScheme ) GetFlow ( ) SecurityScheme_Flow {
if x != nil {
return x . Flow
}
return SecurityScheme_FLOW_INVALID
}
func ( x * SecurityScheme ) GetAuthorizationUrl ( ) string {
if x != nil {
return x . AuthorizationUrl
}
return ""
}
func ( x * SecurityScheme ) GetTokenUrl ( ) string {
if x != nil {
return x . TokenUrl
}
return ""
}
func ( x * SecurityScheme ) GetScopes ( ) * Scopes {
if x != nil {
return x . Scopes
}
return nil
}
func ( x * SecurityScheme ) GetExtensions ( ) map [ string ] * structpb . Value {
if x != nil {
return x . Extensions
}
return nil
}
// `SecurityRequirement` is a representation of OpenAPI v2 specification's
// Security Requirement object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securityRequirementObject
//
// Lists the required security schemes to execute this operation. The object can
// have multiple security schemes declared in it which are all required (that
// is, there is a logical AND between the schemes).
//
// The name used for each property MUST correspond to a security scheme
// declared in the Security Definitions.
type SecurityRequirement struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Each name must correspond to a security scheme which is declared in
// the Security Definitions. If the security scheme is of type "oauth2",
// then the value is a list of scope names required for the execution.
// For other security scheme types, the array MUST be empty.
SecurityRequirement map [ string ] * SecurityRequirement_SecurityRequirementValue ` protobuf:"bytes,1,rep,name=security_requirement,json=securityRequirement,proto3" json:"security_requirement,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
}
func ( x * SecurityRequirement ) Reset ( ) {
* x = SecurityRequirement { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 15 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * SecurityRequirement ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * SecurityRequirement ) ProtoMessage ( ) { }
func ( x * SecurityRequirement ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 15 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use SecurityRequirement.ProtoReflect.Descriptor instead.
func ( * SecurityRequirement ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 15 }
2022-07-07 20:11:50 +00:00
}
func ( x * SecurityRequirement ) GetSecurityRequirement ( ) map [ string ] * SecurityRequirement_SecurityRequirementValue {
if x != nil {
return x . SecurityRequirement
}
return nil
}
// `Scopes` is a representation of OpenAPI v2 specification's Scopes object.
//
// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#scopesObject
//
// Lists the available scopes for an OAuth2 security scheme.
type Scopes struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Maps between a name of a scope to a short description of it (as the value
// of the property).
Scope map [ string ] string ` protobuf:"bytes,1,rep,name=scope,proto3" json:"scope,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
}
func ( x * Scopes ) Reset ( ) {
* x = Scopes { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 16 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Scopes ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Scopes ) ProtoMessage ( ) { }
func ( x * Scopes ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 16 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use Scopes.ProtoReflect.Descriptor instead.
func ( * Scopes ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 16 }
2022-07-07 20:11:50 +00:00
}
func ( x * Scopes ) GetScope ( ) map [ string ] string {
if x != nil {
return x . Scope
}
return nil
}
2024-02-24 00:34:55 +00:00
// 'FieldConfiguration' provides additional field level properties used when generating the OpenAPI v2 file.
// These properties are not defined by OpenAPIv2, but they are used to control the generation.
type JSONSchema_FieldConfiguration struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Alternative parameter name when used as path parameter. If set, this will
// be used as the complete parameter name when this field is used as a path
// parameter. Use this to avoid having auto generated path parameter names
// for overlapping paths.
PathParamName string ` protobuf:"bytes,47,opt,name=path_param_name,json=pathParamName,proto3" json:"path_param_name,omitempty" `
}
func ( x * JSONSchema_FieldConfiguration ) Reset ( ) {
* x = JSONSchema_FieldConfiguration { }
if protoimpl . UnsafeEnabled {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 25 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * JSONSchema_FieldConfiguration ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * JSONSchema_FieldConfiguration ) ProtoMessage ( ) { }
func ( x * JSONSchema_FieldConfiguration ) ProtoReflect ( ) protoreflect . Message {
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 25 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use JSONSchema_FieldConfiguration.ProtoReflect.Descriptor instead.
func ( * JSONSchema_FieldConfiguration ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 11 , 0 }
}
func ( x * JSONSchema_FieldConfiguration ) GetPathParamName ( ) string {
if x != nil {
return x . PathParamName
}
return ""
}
2022-07-07 20:11:50 +00:00
// If the security scheme is of type "oauth2", then the value is a list of
// scope names required for the execution. For other security scheme types,
// the array MUST be empty.
type SecurityRequirement_SecurityRequirementValue struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Scope [ ] string ` protobuf:"bytes,1,rep,name=scope,proto3" json:"scope,omitempty" `
}
func ( x * SecurityRequirement_SecurityRequirementValue ) Reset ( ) {
* x = SecurityRequirement_SecurityRequirementValue { }
if protoimpl . UnsafeEnabled {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 30 ]
2022-07-07 20:11:50 +00:00
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * SecurityRequirement_SecurityRequirementValue ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * SecurityRequirement_SecurityRequirementValue ) ProtoMessage ( ) { }
func ( x * SecurityRequirement_SecurityRequirementValue ) ProtoReflect ( ) protoreflect . Message {
2024-02-24 00:34:55 +00:00
mi := & file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 30 ]
2022-07-07 20:11:50 +00:00
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use SecurityRequirement_SecurityRequirementValue.ProtoReflect.Descriptor instead.
func ( * SecurityRequirement_SecurityRequirementValue ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2024-02-24 00:34:55 +00:00
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 15 , 0 }
2022-07-07 20:11:50 +00:00
}
func ( x * SecurityRequirement_SecurityRequirementValue ) GetScope ( ) [ ] string {
if x != nil {
return x . Scope
}
return nil
}
var File_protoc_gen_openapiv2_options_openapiv2_proto protoreflect . FileDescriptor
var file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc = [ ] byte {
0x0a , 0x2c , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x2d , 0x67 , 0x65 , 0x6e , 0x2d , 0x6f , 0x70 , 0x65 ,
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2f , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2f , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x12 , 0x29 ,
0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x1a , 0x1c , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c ,
0x65 , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2f , 0x73 , 0x74 , 0x72 , 0x75 , 0x63 ,
2024-02-24 00:34:55 +00:00
0x74 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xb3 , 0x08 , 0x0a , 0x07 , 0x53 , 0x77 , 0x61 , 0x67 ,
2022-07-07 20:11:50 +00:00
0x67 , 0x65 , 0x72 , 0x12 , 0x18 , 0x0a , 0x07 , 0x73 , 0x77 , 0x61 , 0x67 , 0x67 , 0x65 , 0x72 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x73 , 0x77 , 0x61 , 0x67 , 0x67 , 0x65 , 0x72 , 0x12 , 0x43 , 0x0a ,
0x04 , 0x69 , 0x6e , 0x66 , 0x6f , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2f , 0x2e , 0x67 , 0x72 ,
0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e ,
0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x49 , 0x6e , 0x66 , 0x6f , 0x52 , 0x04 , 0x69 , 0x6e ,
0x66 , 0x6f , 0x12 , 0x12 , 0x0a , 0x04 , 0x68 , 0x6f , 0x73 , 0x74 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x04 , 0x68 , 0x6f , 0x73 , 0x74 , 0x12 , 0x1b , 0x0a , 0x09 , 0x62 , 0x61 , 0x73 , 0x65 , 0x5f , 0x70 ,
0x61 , 0x74 , 0x68 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x08 , 0x62 , 0x61 , 0x73 , 0x65 , 0x50 ,
0x61 , 0x74 , 0x68 , 0x12 , 0x4b , 0x0a , 0x07 , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x73 , 0x18 , 0x05 ,
0x20 , 0x03 , 0x28 , 0x0e , 0x32 , 0x31 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 ,
0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 ,
0x2e , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x52 , 0x07 , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x73 ,
0x12 , 0x1a , 0x0a , 0x08 , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x73 , 0x18 , 0x06 , 0x20 , 0x03 ,
0x28 , 0x09 , 0x52 , 0x08 , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x73 , 0x12 , 0x1a , 0x0a , 0x08 ,
0x70 , 0x72 , 0x6f , 0x64 , 0x75 , 0x63 , 0x65 , 0x73 , 0x18 , 0x07 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x08 ,
0x70 , 0x72 , 0x6f , 0x64 , 0x75 , 0x63 , 0x65 , 0x73 , 0x12 , 0x5f , 0x0a , 0x09 , 0x72 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x41 , 0x2e , 0x67 , 0x72 ,
0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e ,
0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x77 , 0x61 , 0x67 , 0x67 , 0x65 , 0x72 , 0x2e ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x09 ,
0x72 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x73 , 0x12 , 0x71 , 0x0a , 0x14 , 0x73 , 0x65 , 0x63 ,
0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x5f , 0x64 , 0x65 , 0x66 , 0x69 , 0x6e , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x3e , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 ,
0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 ,
0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x44 , 0x65 , 0x66 , 0x69 ,
0x6e , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x52 , 0x13 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 ,
0x79 , 0x44 , 0x65 , 0x66 , 0x69 , 0x6e , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x5a , 0x0a , 0x08 ,
0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x18 , 0x0c , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x3e ,
0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 ,
0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 ,
0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 ,
0x69 , 0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x52 , 0x08 ,
2024-02-24 00:34:55 +00:00
0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x12 , 0x42 , 0x0a , 0x04 , 0x74 , 0x61 , 0x67 , 0x73 ,
0x18 , 0x0d , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x2e , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 ,
0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e ,
0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x2e , 0x54 , 0x61 , 0x67 , 0x52 , 0x04 , 0x74 , 0x61 , 0x67 , 0x73 , 0x12 , 0x65 , 0x0a , 0x0d ,
0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x0e , 0x20 ,
0x01 , 0x28 , 0x0b , 0x32 , 0x40 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 ,
0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e ,
0x45 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f , 0x63 , 0x75 , 0x6d , 0x65 , 0x6e , 0x74 ,
0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x0c , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 ,
0x6f , 0x63 , 0x73 , 0x12 , 0x62 , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x18 , 0x0f , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x42 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 ,
0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 ,
0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x77 , 0x61 , 0x67 , 0x67 , 0x65 , 0x72 , 0x2e , 0x45 , 0x78 , 0x74 , 0x65 ,
0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 ,
0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x1a , 0x71 , 0x0a , 0x0e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f ,
0x6e , 0x73 , 0x65 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x49 , 0x0a , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x33 , 0x2e , 0x67 , 0x72 , 0x70 ,
0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 ,
0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f ,
0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x52 ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x55 , 0x0a , 0x0f , 0x45 , 0x78 ,
0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a ,
0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 ,
0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 ,
0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 ,
0x2e , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 ,
0x01 , 0x4a , 0x04 , 0x08 , 0x08 , 0x10 , 0x09 , 0x4a , 0x04 , 0x08 , 0x09 , 0x10 , 0x0a , 0x22 , 0xd6 , 0x07 ,
0x0a , 0x09 , 0x4f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a , 0x04 , 0x74 ,
0x61 , 0x67 , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x04 , 0x74 , 0x61 , 0x67 , 0x73 , 0x12 ,
0x18 , 0x0a , 0x07 , 0x73 , 0x75 , 0x6d , 0x6d , 0x61 , 0x72 , 0x79 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x07 , 0x73 , 0x75 , 0x6d , 0x6d , 0x61 , 0x72 , 0x79 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 ,
0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b ,
0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x65 , 0x0a , 0x0d , 0x65 ,
0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x04 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x40 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 ,
0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 ,
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x45 ,
0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f , 0x63 , 0x75 , 0x6d , 0x65 , 0x6e , 0x74 , 0x61 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x0c , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f ,
0x63 , 0x73 , 0x12 , 0x21 , 0x0a , 0x0c , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x5f ,
0x69 , 0x64 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x49 , 0x64 , 0x12 , 0x1a , 0x0a , 0x08 , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 ,
0x73 , 0x18 , 0x06 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x08 , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 ,
0x73 , 0x12 , 0x1a , 0x0a , 0x08 , 0x70 , 0x72 , 0x6f , 0x64 , 0x75 , 0x63 , 0x65 , 0x73 , 0x18 , 0x07 , 0x20 ,
0x03 , 0x28 , 0x09 , 0x52 , 0x08 , 0x70 , 0x72 , 0x6f , 0x64 , 0x75 , 0x63 , 0x65 , 0x73 , 0x12 , 0x61 , 0x0a ,
0x09 , 0x72 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x73 , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x0b ,
0x32 , 0x43 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e ,
0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 ,
0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x4f , 0x70 , 0x65 ,
0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x2e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x73 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x09 , 0x72 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x73 ,
0x12 , 0x4b , 0x0a , 0x07 , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 ,
0x0e , 0x32 , 0x31 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 ,
0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e ,
0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x63 ,
0x68 , 0x65 , 0x6d , 0x65 , 0x52 , 0x07 , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x73 , 0x12 , 0x1e , 0x0a ,
0x0a , 0x64 , 0x65 , 0x70 , 0x72 , 0x65 , 0x63 , 0x61 , 0x74 , 0x65 , 0x64 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 ,
0x08 , 0x52 , 0x0a , 0x64 , 0x65 , 0x70 , 0x72 , 0x65 , 0x63 , 0x61 , 0x74 , 0x65 , 0x64 , 0x12 , 0x5a , 0x0a ,
0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x18 , 0x0c , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 ,
0x3e , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 ,
2022-07-07 20:11:50 +00:00
0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 ,
2024-02-24 00:34:55 +00:00
0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 ,
0x72 , 0x69 , 0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x52 ,
0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x12 , 0x64 , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 ,
0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x0d , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x44 , 0x2e ,
0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x4f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x2e , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e ,
0x74 , 0x72 , 0x79 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 ,
0x55 , 0x0a , 0x0a , 0x70 , 0x61 , 0x72 , 0x61 , 0x6d , 0x65 , 0x74 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0e , 0x20 ,
0x01 , 0x28 , 0x0b , 0x32 , 0x35 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 ,
0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e ,
0x50 , 0x61 , 0x72 , 0x61 , 0x6d , 0x65 , 0x74 , 0x65 , 0x72 , 0x73 , 0x52 , 0x0a , 0x70 , 0x61 , 0x72 , 0x61 ,
0x6d , 0x65 , 0x74 , 0x65 , 0x72 , 0x73 , 0x1a , 0x71 , 0x0a , 0x0e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e ,
0x73 , 0x65 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x49 , 0x0a , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x33 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 ,
0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f ,
0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x52 , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x55 , 0x0a , 0x0f , 0x45 , 0x78 , 0x74 ,
0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 ,
0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c ,
0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e ,
0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e ,
0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 ,
0x4a , 0x04 , 0x08 , 0x08 , 0x10 , 0x09 , 0x22 , 0x62 , 0x0a , 0x0a , 0x50 , 0x61 , 0x72 , 0x61 , 0x6d , 0x65 ,
0x74 , 0x65 , 0x72 , 0x73 , 0x12 , 0x54 , 0x0a , 0x07 , 0x68 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x73 , 0x18 ,
0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x3a , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 ,
0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f ,
0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x2e , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x50 , 0x61 , 0x72 , 0x61 , 0x6d , 0x65 , 0x74 , 0x65 ,
0x72 , 0x52 , 0x07 , 0x68 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x73 , 0x22 , 0xa3 , 0x02 , 0x0a , 0x0f , 0x48 ,
0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x50 , 0x61 , 0x72 , 0x61 , 0x6d , 0x65 , 0x74 , 0x65 , 0x72 , 0x12 , 0x12 ,
0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 ,
0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x53 , 0x0a , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 ,
0x28 , 0x0e , 0x32 , 0x3f , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 ,
0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 ,
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x48 ,
0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x50 , 0x61 , 0x72 , 0x61 , 0x6d , 0x65 , 0x74 , 0x65 , 0x72 , 0x2e , 0x54 ,
0x79 , 0x70 , 0x65 , 0x52 , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x12 , 0x16 , 0x0a , 0x06 , 0x66 , 0x6f , 0x72 ,
0x6d , 0x61 , 0x74 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x66 , 0x6f , 0x72 , 0x6d , 0x61 ,
0x74 , 0x12 , 0x1a , 0x0a , 0x08 , 0x72 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x64 , 0x18 , 0x05 , 0x20 ,
0x01 , 0x28 , 0x08 , 0x52 , 0x08 , 0x72 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x64 , 0x22 , 0x45 , 0x0a ,
0x04 , 0x54 , 0x79 , 0x70 , 0x65 , 0x12 , 0x0b , 0x0a , 0x07 , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e ,
0x10 , 0x00 , 0x12 , 0x0a , 0x0a , 0x06 , 0x53 , 0x54 , 0x52 , 0x49 , 0x4e , 0x47 , 0x10 , 0x01 , 0x12 , 0x0a ,
0x0a , 0x06 , 0x4e , 0x55 , 0x4d , 0x42 , 0x45 , 0x52 , 0x10 , 0x02 , 0x12 , 0x0b , 0x0a , 0x07 , 0x49 , 0x4e ,
0x54 , 0x45 , 0x47 , 0x45 , 0x52 , 0x10 , 0x03 , 0x12 , 0x0b , 0x0a , 0x07 , 0x42 , 0x4f , 0x4f , 0x4c , 0x45 ,
0x41 , 0x4e , 0x10 , 0x04 , 0x4a , 0x04 , 0x08 , 0x06 , 0x10 , 0x07 , 0x4a , 0x04 , 0x08 , 0x07 , 0x10 , 0x08 ,
0x22 , 0xd8 , 0x01 , 0x0a , 0x06 , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 ,
0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a ,
0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x74 , 0x79 , 0x70 ,
0x65 , 0x12 , 0x16 , 0x0a , 0x06 , 0x66 , 0x6f , 0x72 , 0x6d , 0x61 , 0x74 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x06 , 0x66 , 0x6f , 0x72 , 0x6d , 0x61 , 0x74 , 0x12 , 0x18 , 0x0a , 0x07 , 0x64 , 0x65 , 0x66 ,
0x61 , 0x75 , 0x6c , 0x74 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x64 , 0x65 , 0x66 , 0x61 ,
0x75 , 0x6c , 0x74 , 0x12 , 0x18 , 0x0a , 0x07 , 0x70 , 0x61 , 0x74 , 0x74 , 0x65 , 0x72 , 0x6e , 0x18 , 0x0d ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x70 , 0x61 , 0x74 , 0x74 , 0x65 , 0x72 , 0x6e , 0x4a , 0x04 , 0x08 ,
0x04 , 0x10 , 0x05 , 0x4a , 0x04 , 0x08 , 0x05 , 0x10 , 0x06 , 0x4a , 0x04 , 0x08 , 0x07 , 0x10 , 0x08 , 0x4a ,
0x04 , 0x08 , 0x08 , 0x10 , 0x09 , 0x4a , 0x04 , 0x08 , 0x09 , 0x10 , 0x0a , 0x4a , 0x04 , 0x08 , 0x0a , 0x10 ,
0x0b , 0x4a , 0x04 , 0x08 , 0x0b , 0x10 , 0x0c , 0x4a , 0x04 , 0x08 , 0x0c , 0x10 , 0x0d , 0x4a , 0x04 , 0x08 ,
0x0e , 0x10 , 0x0f , 0x4a , 0x04 , 0x08 , 0x0f , 0x10 , 0x10 , 0x4a , 0x04 , 0x08 , 0x10 , 0x10 , 0x11 , 0x4a ,
0x04 , 0x08 , 0x11 , 0x10 , 0x12 , 0x4a , 0x04 , 0x08 , 0x12 , 0x10 , 0x13 , 0x22 , 0x9a , 0x05 , 0x0a , 0x08 ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 ,
0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 ,
0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x49 , 0x0a , 0x06 , 0x73 , 0x63 ,
0x68 , 0x65 , 0x6d , 0x61 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x31 , 0x2e , 0x67 , 0x72 , 0x70 ,
0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 ,
0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f ,
0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x52 , 0x06 , 0x73 ,
0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x12 , 0x5a , 0x0a , 0x07 , 0x68 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x73 ,
0x18 , 0x03 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x40 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 ,
0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e ,
0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x2e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x2e , 0x48 , 0x65 , 0x61 , 0x64 ,
0x65 , 0x72 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x07 , 0x68 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 ,
0x73 , 0x12 , 0x5d , 0x0a , 0x08 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x73 , 0x18 , 0x04 , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x41 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 ,
2022-07-07 20:11:50 +00:00
0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e ,
2024-02-24 00:34:55 +00:00
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x2e , 0x45 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 ,
0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x08 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x73 ,
0x12 , 0x63 , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x05 ,
0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x43 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 ,
0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 ,
0x2e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x2e , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 ,
0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e ,
0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x1a , 0x6d , 0x0a , 0x0c , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x73 ,
2022-07-07 20:11:50 +00:00
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 ,
2024-02-24 00:34:55 +00:00
0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x47 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x31 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 ,
2022-07-07 20:11:50 +00:00
0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e ,
0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f ,
2024-02-24 00:34:55 +00:00
0x6e , 0x73 , 0x2e , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x3b , 0x0a , 0x0d , 0x45 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x73 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 ,
0x01 , 0x1a , 0x55 , 0x0a , 0x0f , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 ,
0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 ,
0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0xd6 , 0x03 , 0x0a , 0x04 , 0x49 , 0x6e , 0x66 ,
0x6f , 0x12 , 0x14 , 0x0a , 0x05 , 0x74 , 0x69 , 0x74 , 0x6c , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x05 , 0x74 , 0x69 , 0x74 , 0x6c , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 ,
0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x28 , 0x0a , 0x10 , 0x74 , 0x65 , 0x72 ,
0x6d , 0x73 , 0x5f , 0x6f , 0x66 , 0x5f , 0x73 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 , 0x18 , 0x03 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x0e , 0x74 , 0x65 , 0x72 , 0x6d , 0x73 , 0x4f , 0x66 , 0x53 , 0x65 , 0x72 , 0x76 ,
0x69 , 0x63 , 0x65 , 0x12 , 0x4c , 0x0a , 0x07 , 0x63 , 0x6f , 0x6e , 0x74 , 0x61 , 0x63 , 0x74 , 0x18 , 0x04 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x32 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 ,
2022-07-07 20:11:50 +00:00
0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 ,
2024-02-24 00:34:55 +00:00
0x2e , 0x43 , 0x6f , 0x6e , 0x74 , 0x61 , 0x63 , 0x74 , 0x52 , 0x07 , 0x63 , 0x6f , 0x6e , 0x74 , 0x61 , 0x63 ,
0x74 , 0x12 , 0x4c , 0x0a , 0x07 , 0x6c , 0x69 , 0x63 , 0x65 , 0x6e , 0x73 , 0x65 , 0x18 , 0x05 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x32 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 ,
2022-07-07 20:11:50 +00:00
0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 ,
2024-02-24 00:34:55 +00:00
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x4c ,
0x69 , 0x63 , 0x65 , 0x6e , 0x73 , 0x65 , 0x52 , 0x07 , 0x6c , 0x69 , 0x63 , 0x65 , 0x6e , 0x73 , 0x65 , 0x12 ,
0x18 , 0x0a , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x5f , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 ,
0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x07 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x3f , 0x2e ,
0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x49 , 0x6e , 0x66 , 0x6f , 0x2e , 0x45 ,
0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0a ,
0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x1a , 0x55 , 0x0a , 0x0f , 0x45 , 0x78 ,
0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a ,
0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 ,
0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 ,
0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 ,
0x2e , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 ,
0x01 , 0x22 , 0x45 , 0x0a , 0x07 , 0x43 , 0x6f , 0x6e , 0x74 , 0x61 , 0x63 , 0x74 , 0x12 , 0x12 , 0x0a , 0x04 ,
0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 ,
0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x72 , 0x6c , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x75 ,
0x72 , 0x6c , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x6d , 0x61 , 0x69 , 0x6c , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x05 , 0x65 , 0x6d , 0x61 , 0x69 , 0x6c , 0x22 , 0x2f , 0x0a , 0x07 , 0x4c , 0x69 , 0x63 , 0x65 ,
0x6e , 0x73 , 0x65 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x72 , 0x6c , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x75 , 0x72 , 0x6c , 0x22 , 0x4b , 0x0a , 0x15 , 0x45 , 0x78 , 0x74 ,
0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f , 0x63 , 0x75 , 0x6d , 0x65 , 0x6e , 0x74 , 0x61 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x72 , 0x6c , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x03 , 0x75 , 0x72 , 0x6c , 0x22 , 0xaa , 0x02 , 0x0a , 0x06 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d ,
0x61 , 0x12 , 0x56 , 0x0a , 0x0b , 0x6a , 0x73 , 0x6f , 0x6e , 0x5f , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x35 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 ,
0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e ,
0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x2e , 0x4a , 0x53 , 0x4f , 0x4e , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x52 , 0x0a , 0x6a ,
0x73 , 0x6f , 0x6e , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x12 , 0x24 , 0x0a , 0x0d , 0x64 , 0x69 , 0x73 ,
0x63 , 0x72 , 0x69 , 0x6d , 0x69 , 0x6e , 0x61 , 0x74 , 0x6f , 0x72 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x0d , 0x64 , 0x69 , 0x73 , 0x63 , 0x72 , 0x69 , 0x6d , 0x69 , 0x6e , 0x61 , 0x74 , 0x6f , 0x72 , 0x12 ,
0x1b , 0x0a , 0x09 , 0x72 , 0x65 , 0x61 , 0x64 , 0x5f , 0x6f , 0x6e , 0x6c , 0x79 , 0x18 , 0x03 , 0x20 , 0x01 ,
0x28 , 0x08 , 0x52 , 0x08 , 0x72 , 0x65 , 0x61 , 0x64 , 0x4f , 0x6e , 0x6c , 0x79 , 0x12 , 0x65 , 0x0a , 0x0d ,
0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x05 , 0x20 ,
0x01 , 0x28 , 0x0b , 0x32 , 0x40 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 ,
2022-07-07 20:11:50 +00:00
0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e ,
2024-02-24 00:34:55 +00:00
0x45 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f , 0x63 , 0x75 , 0x6d , 0x65 , 0x6e , 0x74 ,
0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x0c , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 ,
0x6f , 0x63 , 0x73 , 0x12 , 0x18 , 0x0a , 0x07 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x18 , 0x06 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x4a , 0x04 , 0x08 ,
0x04 , 0x10 , 0x05 , 0x22 , 0xd7 , 0x0a , 0x0a , 0x0a , 0x4a , 0x53 , 0x4f , 0x4e , 0x53 , 0x63 , 0x68 , 0x65 ,
0x6d , 0x61 , 0x12 , 0x10 , 0x0a , 0x03 , 0x72 , 0x65 , 0x66 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x03 , 0x72 , 0x65 , 0x66 , 0x12 , 0x14 , 0x0a , 0x05 , 0x74 , 0x69 , 0x74 , 0x6c , 0x65 , 0x18 , 0x05 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x74 , 0x69 , 0x74 , 0x6c , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x18 , 0x0a , 0x07 ,
0x64 , 0x65 , 0x66 , 0x61 , 0x75 , 0x6c , 0x74 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x64 ,
0x65 , 0x66 , 0x61 , 0x75 , 0x6c , 0x74 , 0x12 , 0x1b , 0x0a , 0x09 , 0x72 , 0x65 , 0x61 , 0x64 , 0x5f , 0x6f ,
0x6e , 0x6c , 0x79 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x08 , 0x72 , 0x65 , 0x61 , 0x64 , 0x4f ,
0x6e , 0x6c , 0x79 , 0x12 , 0x18 , 0x0a , 0x07 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x18 , 0x09 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 , 0x12 , 0x1f , 0x0a ,
0x0b , 0x6d , 0x75 , 0x6c , 0x74 , 0x69 , 0x70 , 0x6c , 0x65 , 0x5f , 0x6f , 0x66 , 0x18 , 0x0a , 0x20 , 0x01 ,
0x28 , 0x01 , 0x52 , 0x0a , 0x6d , 0x75 , 0x6c , 0x74 , 0x69 , 0x70 , 0x6c , 0x65 , 0x4f , 0x66 , 0x12 , 0x18 ,
0x0a , 0x07 , 0x6d , 0x61 , 0x78 , 0x69 , 0x6d , 0x75 , 0x6d , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x01 , 0x52 ,
0x07 , 0x6d , 0x61 , 0x78 , 0x69 , 0x6d , 0x75 , 0x6d , 0x12 , 0x2b , 0x0a , 0x11 , 0x65 , 0x78 , 0x63 , 0x6c ,
0x75 , 0x73 , 0x69 , 0x76 , 0x65 , 0x5f , 0x6d , 0x61 , 0x78 , 0x69 , 0x6d , 0x75 , 0x6d , 0x18 , 0x0c , 0x20 ,
0x01 , 0x28 , 0x08 , 0x52 , 0x10 , 0x65 , 0x78 , 0x63 , 0x6c , 0x75 , 0x73 , 0x69 , 0x76 , 0x65 , 0x4d , 0x61 ,
0x78 , 0x69 , 0x6d , 0x75 , 0x6d , 0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x69 , 0x6e , 0x69 , 0x6d , 0x75 , 0x6d ,
0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x01 , 0x52 , 0x07 , 0x6d , 0x69 , 0x6e , 0x69 , 0x6d , 0x75 , 0x6d , 0x12 ,
0x2b , 0x0a , 0x11 , 0x65 , 0x78 , 0x63 , 0x6c , 0x75 , 0x73 , 0x69 , 0x76 , 0x65 , 0x5f , 0x6d , 0x69 , 0x6e ,
0x69 , 0x6d , 0x75 , 0x6d , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x10 , 0x65 , 0x78 , 0x63 , 0x6c ,
0x75 , 0x73 , 0x69 , 0x76 , 0x65 , 0x4d , 0x69 , 0x6e , 0x69 , 0x6d , 0x75 , 0x6d , 0x12 , 0x1d , 0x0a , 0x0a ,
0x6d , 0x61 , 0x78 , 0x5f , 0x6c , 0x65 , 0x6e , 0x67 , 0x74 , 0x68 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x04 ,
0x52 , 0x09 , 0x6d , 0x61 , 0x78 , 0x4c , 0x65 , 0x6e , 0x67 , 0x74 , 0x68 , 0x12 , 0x1d , 0x0a , 0x0a , 0x6d ,
0x69 , 0x6e , 0x5f , 0x6c , 0x65 , 0x6e , 0x67 , 0x74 , 0x68 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 , 0x04 , 0x52 ,
0x09 , 0x6d , 0x69 , 0x6e , 0x4c , 0x65 , 0x6e , 0x67 , 0x74 , 0x68 , 0x12 , 0x18 , 0x0a , 0x07 , 0x70 , 0x61 ,
0x74 , 0x74 , 0x65 , 0x72 , 0x6e , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x70 , 0x61 , 0x74 ,
0x74 , 0x65 , 0x72 , 0x6e , 0x12 , 0x1b , 0x0a , 0x09 , 0x6d , 0x61 , 0x78 , 0x5f , 0x69 , 0x74 , 0x65 , 0x6d ,
0x73 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x04 , 0x52 , 0x08 , 0x6d , 0x61 , 0x78 , 0x49 , 0x74 , 0x65 , 0x6d ,
0x73 , 0x12 , 0x1b , 0x0a , 0x09 , 0x6d , 0x69 , 0x6e , 0x5f , 0x69 , 0x74 , 0x65 , 0x6d , 0x73 , 0x18 , 0x15 ,
0x20 , 0x01 , 0x28 , 0x04 , 0x52 , 0x08 , 0x6d , 0x69 , 0x6e , 0x49 , 0x74 , 0x65 , 0x6d , 0x73 , 0x12 , 0x21 ,
0x0a , 0x0c , 0x75 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x5f , 0x69 , 0x74 , 0x65 , 0x6d , 0x73 , 0x18 , 0x16 ,
0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0b , 0x75 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x49 , 0x74 , 0x65 , 0x6d ,
0x73 , 0x12 , 0x25 , 0x0a , 0x0e , 0x6d , 0x61 , 0x78 , 0x5f , 0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 ,
0x69 , 0x65 , 0x73 , 0x18 , 0x18 , 0x20 , 0x01 , 0x28 , 0x04 , 0x52 , 0x0d , 0x6d , 0x61 , 0x78 , 0x50 , 0x72 ,
0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x69 , 0x65 , 0x73 , 0x12 , 0x25 , 0x0a , 0x0e , 0x6d , 0x69 , 0x6e , 0x5f ,
0x70 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x69 , 0x65 , 0x73 , 0x18 , 0x19 , 0x20 , 0x01 , 0x28 , 0x04 ,
0x52 , 0x0d , 0x6d , 0x69 , 0x6e , 0x50 , 0x72 , 0x6f , 0x70 , 0x65 , 0x72 , 0x74 , 0x69 , 0x65 , 0x73 , 0x12 ,
0x1a , 0x0a , 0x08 , 0x72 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x64 , 0x18 , 0x1a , 0x20 , 0x03 , 0x28 ,
0x09 , 0x52 , 0x08 , 0x72 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x64 , 0x12 , 0x14 , 0x0a , 0x05 , 0x61 ,
0x72 , 0x72 , 0x61 , 0x79 , 0x18 , 0x22 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x05 , 0x61 , 0x72 , 0x72 , 0x61 ,
0x79 , 0x12 , 0x5f , 0x0a , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x23 , 0x20 , 0x03 , 0x28 , 0x0e , 0x32 ,
0x4b , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 ,
2022-07-07 20:11:50 +00:00
0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 ,
2024-02-24 00:34:55 +00:00
0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x4a , 0x53 , 0x4f , 0x4e ,
0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x2e , 0x4a , 0x53 , 0x4f , 0x4e , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d ,
0x61 , 0x53 , 0x69 , 0x6d , 0x70 , 0x6c , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x73 , 0x52 , 0x04 , 0x74 , 0x79 ,
0x70 , 0x65 , 0x12 , 0x16 , 0x0a , 0x06 , 0x66 , 0x6f , 0x72 , 0x6d , 0x61 , 0x74 , 0x18 , 0x24 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x06 , 0x66 , 0x6f , 0x72 , 0x6d , 0x61 , 0x74 , 0x12 , 0x12 , 0x0a , 0x04 , 0x65 , 0x6e ,
0x75 , 0x6d , 0x18 , 0x2e , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x04 , 0x65 , 0x6e , 0x75 , 0x6d , 0x12 , 0x7a ,
0x0a , 0x13 , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x5f , 0x63 , 0x6f , 0x6e , 0x66 , 0x69 , 0x67 , 0x75 , 0x72 ,
0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0xe9 , 0x07 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x48 , 0x2e , 0x67 ,
0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x4a , 0x53 , 0x4f , 0x4e , 0x53 , 0x63 , 0x68 ,
0x65 , 0x6d , 0x61 , 0x2e , 0x46 , 0x69 , 0x65 , 0x6c , 0x64 , 0x43 , 0x6f , 0x6e , 0x66 , 0x69 , 0x67 , 0x75 ,
0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x12 , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x43 , 0x6f , 0x6e ,
0x66 , 0x69 , 0x67 , 0x75 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x65 , 0x0a , 0x0a , 0x65 , 0x78 ,
0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x30 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x45 ,
0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 ,
0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 ,
0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x4a , 0x53 , 0x4f , 0x4e , 0x53 ,
0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x2e , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 ,
2022-07-07 20:11:50 +00:00
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e ,
2024-02-24 00:34:55 +00:00
0x73 , 0x1a , 0x3c , 0x0a , 0x12 , 0x46 , 0x69 , 0x65 , 0x6c , 0x64 , 0x43 , 0x6f , 0x6e , 0x66 , 0x69 , 0x67 ,
0x75 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x26 , 0x0a , 0x0f , 0x70 , 0x61 , 0x74 , 0x68 , 0x5f ,
0x70 , 0x61 , 0x72 , 0x61 , 0x6d , 0x5f , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x2f , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x0d , 0x70 , 0x61 , 0x74 , 0x68 , 0x50 , 0x61 , 0x72 , 0x61 , 0x6d , 0x4e , 0x61 , 0x6d , 0x65 , 0x1a ,
0x55 , 0x0a , 0x0f , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x45 , 0x6e , 0x74 ,
0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c ,
0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x77 , 0x0a , 0x15 , 0x4a , 0x53 , 0x4f , 0x4e , 0x53 , 0x63 ,
0x68 , 0x65 , 0x6d , 0x61 , 0x53 , 0x69 , 0x6d , 0x70 , 0x6c , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x73 , 0x12 ,
0x0b , 0x0a , 0x07 , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e , 0x10 , 0x00 , 0x12 , 0x09 , 0x0a , 0x05 ,
0x41 , 0x52 , 0x52 , 0x41 , 0x59 , 0x10 , 0x01 , 0x12 , 0x0b , 0x0a , 0x07 , 0x42 , 0x4f , 0x4f , 0x4c , 0x45 ,
0x41 , 0x4e , 0x10 , 0x02 , 0x12 , 0x0b , 0x0a , 0x07 , 0x49 , 0x4e , 0x54 , 0x45 , 0x47 , 0x45 , 0x52 , 0x10 ,
0x03 , 0x12 , 0x08 , 0x0a , 0x04 , 0x4e , 0x55 , 0x4c , 0x4c , 0x10 , 0x04 , 0x12 , 0x0a , 0x0a , 0x06 , 0x4e ,
0x55 , 0x4d , 0x42 , 0x45 , 0x52 , 0x10 , 0x05 , 0x12 , 0x0a , 0x0a , 0x06 , 0x4f , 0x42 , 0x4a , 0x45 , 0x43 ,
0x54 , 0x10 , 0x06 , 0x12 , 0x0a , 0x0a , 0x06 , 0x53 , 0x54 , 0x52 , 0x49 , 0x4e , 0x47 , 0x10 , 0x07 , 0x4a ,
0x04 , 0x08 , 0x01 , 0x10 , 0x02 , 0x4a , 0x04 , 0x08 , 0x02 , 0x10 , 0x03 , 0x4a , 0x04 , 0x08 , 0x04 , 0x10 ,
0x05 , 0x4a , 0x04 , 0x08 , 0x12 , 0x10 , 0x13 , 0x4a , 0x04 , 0x08 , 0x13 , 0x10 , 0x14 , 0x4a , 0x04 , 0x08 ,
0x17 , 0x10 , 0x18 , 0x4a , 0x04 , 0x08 , 0x1b , 0x10 , 0x1c , 0x4a , 0x04 , 0x08 , 0x1c , 0x10 , 0x1d , 0x4a ,
0x04 , 0x08 , 0x1d , 0x10 , 0x1e , 0x4a , 0x04 , 0x08 , 0x1e , 0x10 , 0x22 , 0x4a , 0x04 , 0x08 , 0x25 , 0x10 ,
0x2a , 0x4a , 0x04 , 0x08 , 0x2a , 0x10 , 0x2b , 0x4a , 0x04 , 0x08 , 0x2b , 0x10 , 0x2e , 0x22 , 0xd9 , 0x02 ,
0x0a , 0x03 , 0x54 , 0x61 , 0x67 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 ,
0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b ,
0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x65 , 0x0a , 0x0d , 0x65 ,
0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x03 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x40 , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 ,
0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 ,
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x45 ,
0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f , 0x63 , 0x75 , 0x6d , 0x65 , 0x6e , 0x74 , 0x61 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x0c , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x44 , 0x6f ,
0x63 , 0x73 , 0x12 , 0x5e , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 ,
0x18 , 0x04 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x3e , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 ,
0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e ,
0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x2e , 0x54 , 0x61 , 0x67 , 0x2e , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x1a , 0x55 , 0x0a , 0x0f , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 ,
2022-07-07 20:11:50 +00:00
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e ,
0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 ,
2024-02-24 00:34:55 +00:00
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0xf7 , 0x01 , 0x0a , 0x13 , 0x53 , 0x65 ,
0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x44 , 0x65 , 0x66 , 0x69 , 0x6e , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x12 , 0x68 , 0x0a , 0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x18 , 0x01 , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x4c , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 ,
2022-07-07 20:11:50 +00:00
0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e ,
2024-02-24 00:34:55 +00:00
0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x44 , 0x65 , 0x66 , 0x69 , 0x6e , 0x69 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x45 , 0x6e , 0x74 , 0x72 ,
0x79 , 0x52 , 0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x1a , 0x76 , 0x0a , 0x0d , 0x53 ,
0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 ,
0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x4f ,
0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x39 , 0x2e ,
0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 ,
0x74 , 0x79 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a ,
0x02 , 0x38 , 0x01 , 0x22 , 0xff , 0x06 , 0x0a , 0x0e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 ,
0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x12 , 0x52 , 0x0a , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x3e , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 ,
2022-07-07 20:11:50 +00:00
0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 ,
2024-02-24 00:34:55 +00:00
0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x2e ,
0x54 , 0x79 , 0x70 , 0x65 , 0x52 , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a , 0x04 ,
0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 ,
0x12 , 0x4c , 0x0a , 0x02 , 0x69 , 0x6e , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x3c , 0x2e , 0x67 ,
2022-07-07 20:11:50 +00:00
0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
2024-02-24 00:34:55 +00:00
0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 ,
0x79 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x2e , 0x49 , 0x6e , 0x52 , 0x02 , 0x69 , 0x6e , 0x12 , 0x52 ,
0x0a , 0x04 , 0x66 , 0x6c , 0x6f , 0x77 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x3e , 0x2e , 0x67 ,
0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 ,
0x79 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x2e , 0x46 , 0x6c , 0x6f , 0x77 , 0x52 , 0x04 , 0x66 , 0x6c ,
0x6f , 0x77 , 0x12 , 0x2b , 0x0a , 0x11 , 0x61 , 0x75 , 0x74 , 0x68 , 0x6f , 0x72 , 0x69 , 0x7a , 0x61 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x5f , 0x75 , 0x72 , 0x6c , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x10 , 0x61 ,
0x75 , 0x74 , 0x68 , 0x6f , 0x72 , 0x69 , 0x7a , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x55 , 0x72 , 0x6c , 0x12 ,
0x1b , 0x0a , 0x09 , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e , 0x5f , 0x75 , 0x72 , 0x6c , 0x18 , 0x07 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x08 , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e , 0x55 , 0x72 , 0x6c , 0x12 , 0x49 , 0x0a , 0x06 ,
0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x31 , 0x2e , 0x67 ,
0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x52 ,
0x06 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x12 , 0x69 , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e ,
0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x49 , 0x2e , 0x67 , 0x72 ,
0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e ,
0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 ,
0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x2e , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x1a , 0x55 , 0x0a , 0x0f , 0x45 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e ,
0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x4b , 0x0a , 0x04 , 0x54 , 0x79 , 0x70 ,
0x65 , 0x12 , 0x10 , 0x0a , 0x0c , 0x54 , 0x59 , 0x50 , 0x45 , 0x5f , 0x49 , 0x4e , 0x56 , 0x41 , 0x4c , 0x49 ,
0x44 , 0x10 , 0x00 , 0x12 , 0x0e , 0x0a , 0x0a , 0x54 , 0x59 , 0x50 , 0x45 , 0x5f , 0x42 , 0x41 , 0x53 , 0x49 ,
0x43 , 0x10 , 0x01 , 0x12 , 0x10 , 0x0a , 0x0c , 0x54 , 0x59 , 0x50 , 0x45 , 0x5f , 0x41 , 0x50 , 0x49 , 0x5f ,
0x4b , 0x45 , 0x59 , 0x10 , 0x02 , 0x12 , 0x0f , 0x0a , 0x0b , 0x54 , 0x59 , 0x50 , 0x45 , 0x5f , 0x4f , 0x41 ,
0x55 , 0x54 , 0x48 , 0x32 , 0x10 , 0x03 , 0x22 , 0x31 , 0x0a , 0x02 , 0x49 , 0x6e , 0x12 , 0x0e , 0x0a , 0x0a ,
0x49 , 0x4e , 0x5f , 0x49 , 0x4e , 0x56 , 0x41 , 0x4c , 0x49 , 0x44 , 0x10 , 0x00 , 0x12 , 0x0c , 0x0a , 0x08 ,
0x49 , 0x4e , 0x5f , 0x51 , 0x55 , 0x45 , 0x52 , 0x59 , 0x10 , 0x01 , 0x12 , 0x0d , 0x0a , 0x09 , 0x49 , 0x4e ,
0x5f , 0x48 , 0x45 , 0x41 , 0x44 , 0x45 , 0x52 , 0x10 , 0x02 , 0x22 , 0x6a , 0x0a , 0x04 , 0x46 , 0x6c , 0x6f ,
0x77 , 0x12 , 0x10 , 0x0a , 0x0c , 0x46 , 0x4c , 0x4f , 0x57 , 0x5f , 0x49 , 0x4e , 0x56 , 0x41 , 0x4c , 0x49 ,
0x44 , 0x10 , 0x00 , 0x12 , 0x11 , 0x0a , 0x0d , 0x46 , 0x4c , 0x4f , 0x57 , 0x5f , 0x49 , 0x4d , 0x50 , 0x4c ,
0x49 , 0x43 , 0x49 , 0x54 , 0x10 , 0x01 , 0x12 , 0x11 , 0x0a , 0x0d , 0x46 , 0x4c , 0x4f , 0x57 , 0x5f , 0x50 ,
0x41 , 0x53 , 0x53 , 0x57 , 0x4f , 0x52 , 0x44 , 0x10 , 0x02 , 0x12 , 0x14 , 0x0a , 0x10 , 0x46 , 0x4c , 0x4f ,
0x57 , 0x5f , 0x41 , 0x50 , 0x50 , 0x4c , 0x49 , 0x43 , 0x41 , 0x54 , 0x49 , 0x4f , 0x4e , 0x10 , 0x03 , 0x12 ,
0x14 , 0x0a , 0x10 , 0x46 , 0x4c , 0x4f , 0x57 , 0x5f , 0x41 , 0x43 , 0x43 , 0x45 , 0x53 , 0x53 , 0x5f , 0x43 ,
0x4f , 0x44 , 0x45 , 0x10 , 0x04 , 0x22 , 0xf6 , 0x02 , 0x0a , 0x13 , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 ,
0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x12 , 0x8a , 0x01 ,
0x0a , 0x14 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x5f , 0x72 , 0x65 , 0x71 , 0x75 , 0x69 ,
0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x57 , 0x2e , 0x67 ,
0x72 , 0x70 , 0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x63 , 0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
0x2e , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 ,
0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x2e , 0x53 , 0x65 , 0x63 ,
0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 ,
0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x13 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x1a , 0x30 , 0x0a , 0x18 , 0x53 , 0x65 ,
0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e ,
0x74 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x18 ,
0x01 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x05 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x1a , 0x9f , 0x01 , 0x0a ,
0x18 , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 ,
0x6d , 0x65 , 0x6e , 0x74 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x6d , 0x0a , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x57 , 0x2e , 0x67 , 0x72 , 0x70 ,
0x63 , 0x2e , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 ,
0x5f , 0x67 , 0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f ,
0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 ,
0x69 , 0x74 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x56 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x96 ,
0x01 , 0x0a , 0x06 , 0x53 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x12 , 0x52 , 0x0a , 0x05 , 0x73 , 0x63 , 0x6f ,
0x70 , 0x65 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x3c , 0x2e , 0x67 , 0x72 , 0x70 , 0x63 , 0x2e ,
0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x5f , 0x67 ,
0x65 , 0x6e , 0x5f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x6f , 0x70 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x73 , 0x2e , 0x53 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x2e , 0x53 , 0x63 , 0x6f , 0x70 ,
0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x05 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x1a , 0x38 , 0x0a ,
0x0a , 0x53 , 0x63 , 0x6f , 0x70 , 0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b ,
0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x2a , 0x3b , 0x0a , 0x06 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d ,
0x65 , 0x12 , 0x0b , 0x0a , 0x07 , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e , 0x10 , 0x00 , 0x12 , 0x08 ,
0x0a , 0x04 , 0x48 , 0x54 , 0x54 , 0x50 , 0x10 , 0x01 , 0x12 , 0x09 , 0x0a , 0x05 , 0x48 , 0x54 , 0x54 , 0x50 ,
0x53 , 0x10 , 0x02 , 0x12 , 0x06 , 0x0a , 0x02 , 0x57 , 0x53 , 0x10 , 0x03 , 0x12 , 0x07 , 0x0a , 0x03 , 0x57 ,
0x53 , 0x53 , 0x10 , 0x04 , 0x42 , 0x48 , 0x5a , 0x46 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 ,
0x6f , 0x6d , 0x2f , 0x67 , 0x72 , 0x70 , 0x63 , 0x2d , 0x65 , 0x63 , 0x6f , 0x73 , 0x79 , 0x73 , 0x74 , 0x65 ,
0x6d , 0x2f , 0x67 , 0x72 , 0x70 , 0x63 , 0x2d , 0x67 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x2f , 0x76 ,
0x32 , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x63 , 0x2d , 0x67 , 0x65 , 0x6e , 0x2d , 0x6f , 0x70 , 0x65 ,
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2f , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x62 , 0x06 ,
0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
2022-07-07 20:11:50 +00:00
}
var (
file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescOnce sync . Once
file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescData = file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc
)
func file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescGZIP ( ) [ ] byte {
file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescOnce . Do ( func ( ) {
file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescData = protoimpl . X . CompressGZIP ( file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescData )
} )
return file_protoc_gen_openapiv2_options_openapiv2_proto_rawDescData
}
2024-02-24 00:34:55 +00:00
var file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes = make ( [ ] protoimpl . EnumInfo , 6 )
var file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 33 )
2022-07-07 20:11:50 +00:00
var file_protoc_gen_openapiv2_options_openapiv2_proto_goTypes = [ ] interface { } {
( Scheme ) ( 0 ) , // 0: grpc.gateway.protoc_gen_openapiv2.options.Scheme
2024-02-24 00:34:55 +00:00
( HeaderParameter_Type ) ( 0 ) , // 1: grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type
( JSONSchema_JSONSchemaSimpleTypes ) ( 0 ) , // 2: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.JSONSchemaSimpleTypes
( SecurityScheme_Type ) ( 0 ) , // 3: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Type
( SecurityScheme_In ) ( 0 ) , // 4: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.In
( SecurityScheme_Flow ) ( 0 ) , // 5: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Flow
( * Swagger ) ( nil ) , // 6: grpc.gateway.protoc_gen_openapiv2.options.Swagger
( * Operation ) ( nil ) , // 7: grpc.gateway.protoc_gen_openapiv2.options.Operation
( * Parameters ) ( nil ) , // 8: grpc.gateway.protoc_gen_openapiv2.options.Parameters
( * HeaderParameter ) ( nil ) , // 9: grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter
( * Header ) ( nil ) , // 10: grpc.gateway.protoc_gen_openapiv2.options.Header
( * Response ) ( nil ) , // 11: grpc.gateway.protoc_gen_openapiv2.options.Response
( * Info ) ( nil ) , // 12: grpc.gateway.protoc_gen_openapiv2.options.Info
( * Contact ) ( nil ) , // 13: grpc.gateway.protoc_gen_openapiv2.options.Contact
( * License ) ( nil ) , // 14: grpc.gateway.protoc_gen_openapiv2.options.License
( * ExternalDocumentation ) ( nil ) , // 15: grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
( * Schema ) ( nil ) , // 16: grpc.gateway.protoc_gen_openapiv2.options.Schema
( * JSONSchema ) ( nil ) , // 17: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema
( * Tag ) ( nil ) , // 18: grpc.gateway.protoc_gen_openapiv2.options.Tag
( * SecurityDefinitions ) ( nil ) , // 19: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions
( * SecurityScheme ) ( nil ) , // 20: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme
( * SecurityRequirement ) ( nil ) , // 21: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement
( * Scopes ) ( nil ) , // 22: grpc.gateway.protoc_gen_openapiv2.options.Scopes
nil , // 23: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry
nil , // 24: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry
nil , // 25: grpc.gateway.protoc_gen_openapiv2.options.Operation.ResponsesEntry
nil , // 26: grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry
nil , // 27: grpc.gateway.protoc_gen_openapiv2.options.Response.HeadersEntry
nil , // 28: grpc.gateway.protoc_gen_openapiv2.options.Response.ExamplesEntry
nil , // 29: grpc.gateway.protoc_gen_openapiv2.options.Response.ExtensionsEntry
nil , // 30: grpc.gateway.protoc_gen_openapiv2.options.Info.ExtensionsEntry
( * JSONSchema_FieldConfiguration ) ( nil ) , // 31: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.FieldConfiguration
nil , // 32: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry
nil , // 33: grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry
nil , // 34: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.SecurityEntry
nil , // 35: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.ExtensionsEntry
( * SecurityRequirement_SecurityRequirementValue ) ( nil ) , // 36: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementValue
nil , // 37: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementEntry
nil , // 38: grpc.gateway.protoc_gen_openapiv2.options.Scopes.ScopeEntry
( * structpb . Value ) ( nil ) , // 39: google.protobuf.Value
2022-07-07 20:11:50 +00:00
}
var file_protoc_gen_openapiv2_options_openapiv2_proto_depIdxs = [ ] int32 {
2024-02-24 00:34:55 +00:00
12 , // 0: grpc.gateway.protoc_gen_openapiv2.options.Swagger.info:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Info
2022-07-07 20:11:50 +00:00
0 , // 1: grpc.gateway.protoc_gen_openapiv2.options.Swagger.schemes:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scheme
2024-02-24 00:34:55 +00:00
23 , // 2: grpc.gateway.protoc_gen_openapiv2.options.Swagger.responses:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry
19 , // 3: grpc.gateway.protoc_gen_openapiv2.options.Swagger.security_definitions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions
21 , // 4: grpc.gateway.protoc_gen_openapiv2.options.Swagger.security:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement
18 , // 5: grpc.gateway.protoc_gen_openapiv2.options.Swagger.tags:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Tag
15 , // 6: grpc.gateway.protoc_gen_openapiv2.options.Swagger.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
24 , // 7: grpc.gateway.protoc_gen_openapiv2.options.Swagger.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry
15 , // 8: grpc.gateway.protoc_gen_openapiv2.options.Operation.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
25 , // 9: grpc.gateway.protoc_gen_openapiv2.options.Operation.responses:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Operation.ResponsesEntry
0 , // 10: grpc.gateway.protoc_gen_openapiv2.options.Operation.schemes:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scheme
21 , // 11: grpc.gateway.protoc_gen_openapiv2.options.Operation.security:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement
26 , // 12: grpc.gateway.protoc_gen_openapiv2.options.Operation.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry
8 , // 13: grpc.gateway.protoc_gen_openapiv2.options.Operation.parameters:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Parameters
9 , // 14: grpc.gateway.protoc_gen_openapiv2.options.Parameters.headers:type_name -> grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter
1 , // 15: grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.type:type_name -> grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type
16 , // 16: grpc.gateway.protoc_gen_openapiv2.options.Response.schema:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Schema
27 , // 17: grpc.gateway.protoc_gen_openapiv2.options.Response.headers:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response.HeadersEntry
28 , // 18: grpc.gateway.protoc_gen_openapiv2.options.Response.examples:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response.ExamplesEntry
29 , // 19: grpc.gateway.protoc_gen_openapiv2.options.Response.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response.ExtensionsEntry
13 , // 20: grpc.gateway.protoc_gen_openapiv2.options.Info.contact:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Contact
14 , // 21: grpc.gateway.protoc_gen_openapiv2.options.Info.license:type_name -> grpc.gateway.protoc_gen_openapiv2.options.License
30 , // 22: grpc.gateway.protoc_gen_openapiv2.options.Info.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Info.ExtensionsEntry
17 , // 23: grpc.gateway.protoc_gen_openapiv2.options.Schema.json_schema:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema
15 , // 24: grpc.gateway.protoc_gen_openapiv2.options.Schema.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
2 , // 25: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.type:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.JSONSchemaSimpleTypes
31 , // 26: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.field_configuration:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.FieldConfiguration
32 , // 27: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry
15 , // 28: grpc.gateway.protoc_gen_openapiv2.options.Tag.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
33 , // 29: grpc.gateway.protoc_gen_openapiv2.options.Tag.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry
34 , // 30: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.security:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.SecurityEntry
3 , // 31: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.type:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Type
4 , // 32: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.in:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.In
5 , // 33: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.flow:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Flow
22 , // 34: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.scopes:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scopes
35 , // 35: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.ExtensionsEntry
37 , // 36: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.security_requirement:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementEntry
38 , // 37: grpc.gateway.protoc_gen_openapiv2.options.Scopes.scope:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scopes.ScopeEntry
11 , // 38: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response
39 , // 39: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry.value:type_name -> google.protobuf.Value
11 , // 40: grpc.gateway.protoc_gen_openapiv2.options.Operation.ResponsesEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response
39 , // 41: grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry.value:type_name -> google.protobuf.Value
10 , // 42: grpc.gateway.protoc_gen_openapiv2.options.Response.HeadersEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Header
39 , // 43: grpc.gateway.protoc_gen_openapiv2.options.Response.ExtensionsEntry.value:type_name -> google.protobuf.Value
39 , // 44: grpc.gateway.protoc_gen_openapiv2.options.Info.ExtensionsEntry.value:type_name -> google.protobuf.Value
39 , // 45: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry.value:type_name -> google.protobuf.Value
39 , // 46: grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry.value:type_name -> google.protobuf.Value
20 , // 47: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.SecurityEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme
39 , // 48: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.ExtensionsEntry.value:type_name -> google.protobuf.Value
36 , // 49: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementValue
50 , // [50:50] is the sub-list for method output_type
50 , // [50:50] is the sub-list for method input_type
50 , // [50:50] is the sub-list for extension type_name
50 , // [50:50] is the sub-list for extension extendee
0 , // [0:50] is the sub-list for field type_name
2022-07-07 20:11:50 +00:00
}
func init ( ) { file_protoc_gen_openapiv2_options_openapiv2_proto_init ( ) }
func file_protoc_gen_openapiv2_options_openapiv2_proto_init ( ) {
if File_protoc_gen_openapiv2_options_openapiv2_proto != nil {
return
}
if ! protoimpl . UnsafeEnabled {
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 0 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Swagger ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 1 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Operation ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Parameters ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * HeaderParameter ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Header ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 5 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Response ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 6 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Info ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 7 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Contact ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 8 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * License ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 9 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * ExternalDocumentation ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 10 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Schema ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 11 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * JSONSchema ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 12 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * Tag ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 13 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * SecurityDefinitions ) ; i {
2022-07-07 20:11:50 +00:00
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 14 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * SecurityScheme ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 15 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * SecurityRequirement ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 16 ] . Exporter = func ( v interface { } , i int ) interface { } {
2022-07-07 20:11:50 +00:00
switch v := v . ( * Scopes ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 25 ] . Exporter = func ( v interface { } , i int ) interface { } {
2024-02-24 00:34:55 +00:00
switch v := v . ( * JSONSchema_FieldConfiguration ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes [ 30 ] . Exporter = func ( v interface { } , i int ) interface { } {
2022-07-07 20:11:50 +00:00
switch v := v . ( * SecurityRequirement_SecurityRequirementValue ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
}
type x struct { }
out := protoimpl . TypeBuilder {
File : protoimpl . DescBuilder {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc ,
2024-02-24 00:34:55 +00:00
NumEnums : 6 ,
NumMessages : 33 ,
2022-07-07 20:11:50 +00:00
NumExtensions : 0 ,
NumServices : 0 ,
} ,
GoTypes : file_protoc_gen_openapiv2_options_openapiv2_proto_goTypes ,
DependencyIndexes : file_protoc_gen_openapiv2_options_openapiv2_proto_depIdxs ,
EnumInfos : file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes ,
MessageInfos : file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes ,
} . Build ( )
File_protoc_gen_openapiv2_options_openapiv2_proto = out . File
file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc = nil
file_protoc_gen_openapiv2_options_openapiv2_proto_goTypes = nil
file_protoc_gen_openapiv2_options_openapiv2_proto_depIdxs = nil
}