2021-02-27 19:34:26 +03:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
2021-05-08 00:04:52 +03:00
// protoc-gen-go v1.26.0
// protoc v3.15.6
2021-02-27 19:34:26 +03:00
// source: openapiv2/openapiv2.proto
package openapiv2
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
2021-05-08 00:04:52 +03:00
structpb "google.golang.org/protobuf/types/known/structpb"
2021-02-27 19:34:26 +03:00
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_openapiv2_openapiv2_proto_enumTypes [ 0 ] . Descriptor ( )
}
func ( Scheme ) Type ( ) protoreflect . EnumType {
return & file_openapiv2_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_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 0 }
}
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 {
return file_openapiv2_openapiv2_proto_enumTypes [ 1 ] . Descriptor ( )
}
func ( JSONSchema_JSONSchemaSimpleTypes ) Type ( ) protoreflect . EnumType {
return & file_openapiv2_openapiv2_proto_enumTypes [ 1 ]
}
func ( x JSONSchema_JSONSchemaSimpleTypes ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use JSONSchema_JSONSchemaSimpleTypes.Descriptor instead.
func ( JSONSchema_JSONSchemaSimpleTypes ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 9 , 0 }
}
// 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 {
return file_openapiv2_openapiv2_proto_enumTypes [ 2 ] . Descriptor ( )
}
func ( SecurityScheme_Type ) Type ( ) protoreflect . EnumType {
return & file_openapiv2_openapiv2_proto_enumTypes [ 2 ]
}
func ( x SecurityScheme_Type ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use SecurityScheme_Type.Descriptor instead.
func ( SecurityScheme_Type ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 12 , 0 }
}
// 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 {
return file_openapiv2_openapiv2_proto_enumTypes [ 3 ] . Descriptor ( )
}
func ( SecurityScheme_In ) Type ( ) protoreflect . EnumType {
return & file_openapiv2_openapiv2_proto_enumTypes [ 3 ]
}
func ( x SecurityScheme_In ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use SecurityScheme_In.Descriptor instead.
func ( SecurityScheme_In ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 12 , 1 }
}
// 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 {
return file_openapiv2_openapiv2_proto_enumTypes [ 4 ] . Descriptor ( )
}
func ( SecurityScheme_Flow ) Type ( ) protoreflect . EnumType {
return & file_openapiv2_openapiv2_proto_enumTypes [ 4 ]
}
func ( x SecurityScheme_Flow ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use SecurityScheme_Flow.Descriptor instead.
func ( SecurityScheme_Flow ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 12 , 2 }
}
// `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:
//
// 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/master/LICENSE.txt";
// };
// };
// schemes: HTTPS;
// consumes: "application/json";
// produces: "application/json";
// };
//
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=micro.openapiv2.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" `
// Additional external documentation.
2021-05-08 00:04:52 +03:00
ExternalDocs * ExternalDocumentation ` protobuf:"bytes,14,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty" `
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" `
2021-02-27 19:34:26 +03:00
}
func ( x * Swagger ) Reset ( ) {
* x = Swagger { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_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_openapiv2_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_openapiv2_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
}
func ( x * Swagger ) GetExternalDocs ( ) * ExternalDocumentation {
if x != nil {
return x . ExternalDocs
}
return nil
}
2021-05-08 00:04:52 +03:00
func ( x * Swagger ) GetExtensions ( ) map [ string ] * structpb . Value {
2021-02-27 19:34:26 +03:00
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:
//
// service EchoService {
// rpc Echo(SimpleMessage) returns (SimpleMessage) {
// option (google.api.http) = {
// get: "/v1/example/echo/{id}"
// };
//
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
// summary: "Get a message.";
// operation_id: "getMessage";
// tags: "echo";
// responses: {
// key: "200"
// value: {
// description: "OK";
// }
// }
// };
// }
// }
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=micro.openapiv2.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.
2021-05-08 00:04:52 +03:00
Security [ ] * SecurityRequirement ` protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty" `
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" `
2021-02-27 19:34:26 +03:00
}
func ( x * Operation ) Reset ( ) {
* x = Operation { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_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_openapiv2_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_openapiv2_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
}
2021-05-08 00:04:52 +03:00
func ( x * Operation ) GetExtensions ( ) map [ string ] * structpb . Value {
2021-02-27 19:34:26 +03:00
if x != nil {
return x . Extensions
}
return nil
}
// `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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 2 ]
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 {
mi := & file_openapiv2_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 Header.ProtoReflect.Descriptor instead.
func ( * Header ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
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
2021-05-08 00:04:52 +03: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" `
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" `
2021-02-27 19:34:26 +03:00
}
func ( x * Response ) Reset ( ) {
* x = Response { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 3 ]
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 {
mi := & file_openapiv2_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 Response.ProtoReflect.Descriptor instead.
func ( * Response ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
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
}
2021-05-08 00:04:52 +03:00
func ( x * Response ) GetExtensions ( ) map [ string ] * structpb . Value {
2021-02-27 19:34:26 +03:00
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:
//
// 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/master/LICENSE.txt";
// };
// };
// ...
// };
//
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).
2021-05-08 00:04:52 +03:00
Version string ` protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty" `
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" `
2021-02-27 19:34:26 +03:00
}
func ( x * Info ) Reset ( ) {
* x = Info { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 4 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 4 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 4 }
}
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 ""
}
2021-05-08 00:04:52 +03:00
func ( x * Info ) GetExtensions ( ) map [ string ] * structpb . Value {
2021-02-27 19:34:26 +03:00
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:
//
// 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";
// };
// ...
// };
// ...
// };
//
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 5 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 5 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 5 }
}
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:
//
// 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/master/LICENSE.txt";
// };
// ...
// };
// ...
// };
//
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 6 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 6 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 6 }
}
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:
//
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
// ...
// external_docs: {
// description: "More about gRPC-Gateway";
// url: "https://github.com/grpc-ecosystem/grpc-gateway";
// }
// ...
// };
//
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 7 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 7 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 7 }
}
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 8 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 8 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 8 }
}
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:
//
// message SimpleMessage {
// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
// json_schema: {
// title: "SimpleMessage"
// description: "A simple message."
// required: ["id"]
// }
// };
//
// // Id represents the message identifier.
// string id = 1; [
// (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
// {description: "The unique identifier of the simple message."
// }];
// }
//
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:
// `ref: ".google.protobuf.Timestamp"`.
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=micro.openapiv2.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" `
}
func ( x * JSONSchema ) Reset ( ) {
* x = JSONSchema { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 9 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 9 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 9 }
}
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
}
// `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
// 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" `
}
func ( x * Tag ) Reset ( ) {
* x = Tag { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 10 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 10 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 10 }
}
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
}
// `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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 11 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 11 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 11 }
}
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=micro.openapiv2.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=micro.openapiv2.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=micro.openapiv2.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.
2021-05-08 00:04:52 +03:00
Scopes * Scopes ` protobuf:"bytes,8,opt,name=scopes,proto3" json:"scopes,omitempty" `
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" `
2021-02-27 19:34:26 +03:00
}
func ( x * SecurityScheme ) Reset ( ) {
* x = SecurityScheme { }
if protoimpl . UnsafeEnabled {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 12 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 12 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 12 }
}
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
}
2021-05-08 00:04:52 +03:00
func ( x * SecurityScheme ) GetExtensions ( ) map [ string ] * structpb . Value {
2021-02-27 19:34:26 +03:00
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 13 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 13 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 13 }
}
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 14 ]
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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 14 ]
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 ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 14 }
}
func ( x * Scopes ) GetScope ( ) map [ string ] string {
if x != nil {
return x . Scope
}
return nil
}
// 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 {
mi := & file_openapiv2_openapiv2_proto_msgTypes [ 25 ]
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 {
mi := & file_openapiv2_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 SecurityRequirement_SecurityRequirementValue.ProtoReflect.Descriptor instead.
func ( * SecurityRequirement_SecurityRequirementValue ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_openapiv2_openapiv2_proto_rawDescGZIP ( ) , [ ] int { 13 , 0 }
}
func ( x * SecurityRequirement_SecurityRequirementValue ) GetScope ( ) [ ] string {
if x != nil {
return x . Scope
}
return nil
}
var File_openapiv2_openapiv2_proto protoreflect . FileDescriptor
var file_openapiv2_openapiv2_proto_rawDesc = [ ] byte {
0x0a , 0x19 , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2f , 0x6f , 0x70 , 0x65 , 0x6e ,
0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x12 , 0x0f , 0x6d , 0x69 , 0x63 ,
0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x1a , 0x1c , 0x67 , 0x6f ,
0x6f , 0x67 , 0x6c , 0x65 , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2f , 0x73 , 0x74 ,
0x72 , 0x75 , 0x63 , 0x74 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xa5 , 0x06 , 0x0a , 0x07 , 0x53 ,
0x77 , 0x61 , 0x67 , 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 , 0x29 , 0x0a , 0x04 , 0x69 , 0x6e , 0x66 , 0x6f , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 ,
0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
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 , 0x31 , 0x0a , 0x07 ,
0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x73 , 0x18 , 0x05 , 0x20 , 0x03 , 0x28 , 0x0e , 0x32 , 0x17 , 0x2e ,
0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x45 , 0x0a , 0x09 , 0x72 , 0x65 , 0x73 , 0x70 , 0x6f ,
0x6e , 0x73 , 0x65 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x27 , 0x2e , 0x6d , 0x69 , 0x63 ,
0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x57 ,
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 , 0x24 , 0x2e , 0x6d ,
0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x40 , 0x0a , 0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 ,
0x69 , 0x74 , 0x79 , 0x18 , 0x0c , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x24 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 ,
0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x4b , 0x0a , 0x0d , 0x65 , 0x78 , 0x74 ,
0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x0b ,
0x32 , 0x26 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 ,
0x76 , 0x32 , 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 , 0x48 , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 ,
0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x0f , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x28 , 0x2e , 0x6d , 0x69 , 0x63 ,
0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x57 , 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 , 0x2f , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x0b , 0x32 , 0x19 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e ,
0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x4a , 0x04 , 0x08 , 0x0d ,
0x10 , 0x0e , 0x22 , 0xe3 , 0x05 , 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 , 0x4b , 0x0a , 0x0d , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 ,
0x73 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x26 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e ,
0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x47 , 0x0a , 0x09 , 0x72 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x73 , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x29 , 0x2e , 0x6d , 0x69 ,
0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x31 , 0x0a , 0x07 , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 ,
0x28 , 0x0e , 0x32 , 0x17 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 ,
0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x40 , 0x0a , 0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 ,
0x18 , 0x0c , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x24 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x4a , 0x0a , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 ,
0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x0d , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x6d , 0x69 , 0x63 ,
0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x1a , 0x57 , 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 , 0x2f , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x19 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 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 , 0x98 , 0x04 , 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 , 0x2f , 0x0a , 0x06 , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x17 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 ,
0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x52 , 0x06 , 0x73 , 0x63 , 0x68 ,
0x65 , 0x6d , 0x61 , 0x12 , 0x40 , 0x0a , 0x07 , 0x68 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x73 , 0x18 , 0x03 ,
0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x26 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 ,
0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x43 , 0x0a , 0x08 , 0x65 , 0x78 , 0x61 , 0x6d , 0x70 , 0x6c , 0x65 ,
0x73 , 0x18 , 0x04 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x27 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e ,
0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 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 , 0x49 , 0x0a , 0x0a , 0x65 , 0x78 ,
0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x05 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x29 ,
0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
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 , 0x53 , 0x0a , 0x0c , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 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 , 0x2d , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x17 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x88 ,
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 , 0x32 , 0x0a , 0x07 , 0x63 , 0x6f , 0x6e ,
0x74 , 0x61 , 0x63 , 0x74 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x18 , 0x2e , 0x6d , 0x69 , 0x63 ,
0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x43 , 0x6f , 0x6e ,
0x74 , 0x61 , 0x63 , 0x74 , 0x52 , 0x07 , 0x63 , 0x6f , 0x6e , 0x74 , 0x61 , 0x63 , 0x74 , 0x12 , 0x32 , 0x0a ,
0x07 , 0x6c , 0x69 , 0x63 , 0x65 , 0x6e , 0x73 , 0x65 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x18 ,
0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
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 , 0x45 , 0x0a , 0x0a , 0x65 ,
0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x07 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 ,
0x25 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 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 , 0xf6 ,
0x01 , 0x0a , 0x06 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x12 , 0x3c , 0x0a , 0x0b , 0x6a , 0x73 , 0x6f ,
0x6e , 0x5f , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1b ,
0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
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 , 0x4b , 0x0a , 0x0d , 0x65 , 0x78 ,
0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x26 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 ,
0x69 , 0x76 , 0x32 , 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 , 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 , 0xc5 , 0x07 , 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 , 0x45 , 0x0a , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x23 , 0x20 ,
0x03 , 0x28 , 0x0e , 0x32 , 0x31 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e ,
0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 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 ,
0x7a , 0x0a , 0x03 , 0x54 , 0x61 , 0x67 , 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 , 0x4b , 0x0a , 0x0d , 0x65 , 0x78 , 0x74 , 0x65 ,
0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x64 , 0x6f , 0x63 , 0x73 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 ,
0x26 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 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 , 0x4a , 0x04 , 0x08 , 0x01 , 0x10 , 0x02 , 0x22 , 0xc3 , 0x01 , 0x0a , 0x13 ,
0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x44 , 0x65 , 0x66 , 0x69 , 0x6e , 0x69 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x12 , 0x4e , 0x0a , 0x08 , 0x73 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x18 ,
0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x32 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 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 , 0x5c , 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 , 0x35 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1f , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 ,
0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0xfd , 0x05 , 0x0a , 0x0e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x53 , 0x63 ,
0x68 , 0x65 , 0x6d , 0x65 , 0x12 , 0x38 , 0x0a , 0x04 , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x0e , 0x32 , 0x24 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 ,
0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x32 , 0x0a , 0x02 , 0x69 , 0x6e , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0e ,
0x32 , 0x22 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 ,
0x76 , 0x32 , 0x2e , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x53 , 0x63 , 0x68 , 0x65 , 0x6d ,
0x65 , 0x2e , 0x49 , 0x6e , 0x52 , 0x02 , 0x69 , 0x6e , 0x12 , 0x38 , 0x0a , 0x04 , 0x66 , 0x6c , 0x6f , 0x77 ,
0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x24 , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f ,
0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x2f , 0x0a , 0x06 ,
0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x17 , 0x2e , 0x6d ,
0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x2e , 0x53 ,
0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x52 , 0x06 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x12 , 0x4f , 0x0a ,
0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x6e , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 ,
0x0b , 0x32 , 0x2f , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 ,
0x69 , 0x76 , 0x32 , 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 , 0xc1 , 0x02 , 0x0a , 0x13 , 0x53 , 0x65 , 0x63 , 0x75 , 0x72 , 0x69 , 0x74 , 0x79 , 0x52 , 0x65 ,
0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x12 , 0x70 , 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 , 0x3d , 0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e ,
0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x85 , 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 , 0x53 , 0x0a , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x3d , 0x2e , 0x6d , 0x69 ,
0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 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 , 0x7c , 0x0a , 0x06 , 0x53 , 0x63 , 0x6f , 0x70 , 0x65 , 0x73 , 0x12 ,
0x38 , 0x0a , 0x05 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x22 ,
0x2e , 0x6d , 0x69 , 0x63 , 0x72 , 0x6f , 0x2e , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 ,
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 , 0x39 , 0x5a , 0x37 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x75 ,
0x6e , 0x69 , 0x73 , 0x74 , 0x61 , 0x63 , 0x6b , 0x2d , 0x6f , 0x72 , 0x67 , 0x2f , 0x6d , 0x69 , 0x63 , 0x72 ,
0x6f , 0x2d , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x2f , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 ,
0x32 , 0x3b , 0x6f , 0x70 , 0x65 , 0x6e , 0x61 , 0x70 , 0x69 , 0x76 , 0x32 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x33 ,
}
var (
file_openapiv2_openapiv2_proto_rawDescOnce sync . Once
file_openapiv2_openapiv2_proto_rawDescData = file_openapiv2_openapiv2_proto_rawDesc
)
func file_openapiv2_openapiv2_proto_rawDescGZIP ( ) [ ] byte {
file_openapiv2_openapiv2_proto_rawDescOnce . Do ( func ( ) {
file_openapiv2_openapiv2_proto_rawDescData = protoimpl . X . CompressGZIP ( file_openapiv2_openapiv2_proto_rawDescData )
} )
return file_openapiv2_openapiv2_proto_rawDescData
}
var file_openapiv2_openapiv2_proto_enumTypes = make ( [ ] protoimpl . EnumInfo , 5 )
var file_openapiv2_openapiv2_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 28 )
var file_openapiv2_openapiv2_proto_goTypes = [ ] interface { } {
( Scheme ) ( 0 ) , // 0: micro.openapiv2.Scheme
( JSONSchema_JSONSchemaSimpleTypes ) ( 0 ) , // 1: micro.openapiv2.JSONSchema.JSONSchemaSimpleTypes
( SecurityScheme_Type ) ( 0 ) , // 2: micro.openapiv2.SecurityScheme.Type
( SecurityScheme_In ) ( 0 ) , // 3: micro.openapiv2.SecurityScheme.In
( SecurityScheme_Flow ) ( 0 ) , // 4: micro.openapiv2.SecurityScheme.Flow
( * Swagger ) ( nil ) , // 5: micro.openapiv2.Swagger
( * Operation ) ( nil ) , // 6: micro.openapiv2.Operation
( * Header ) ( nil ) , // 7: micro.openapiv2.Header
( * Response ) ( nil ) , // 8: micro.openapiv2.Response
( * Info ) ( nil ) , // 9: micro.openapiv2.Info
( * Contact ) ( nil ) , // 10: micro.openapiv2.Contact
( * License ) ( nil ) , // 11: micro.openapiv2.License
( * ExternalDocumentation ) ( nil ) , // 12: micro.openapiv2.ExternalDocumentation
( * Schema ) ( nil ) , // 13: micro.openapiv2.Schema
( * JSONSchema ) ( nil ) , // 14: micro.openapiv2.JSONSchema
( * Tag ) ( nil ) , // 15: micro.openapiv2.Tag
( * SecurityDefinitions ) ( nil ) , // 16: micro.openapiv2.SecurityDefinitions
( * SecurityScheme ) ( nil ) , // 17: micro.openapiv2.SecurityScheme
( * SecurityRequirement ) ( nil ) , // 18: micro.openapiv2.SecurityRequirement
( * Scopes ) ( nil ) , // 19: micro.openapiv2.Scopes
nil , // 20: micro.openapiv2.Swagger.ResponsesEntry
nil , // 21: micro.openapiv2.Swagger.ExtensionsEntry
nil , // 22: micro.openapiv2.Operation.ResponsesEntry
nil , // 23: micro.openapiv2.Operation.ExtensionsEntry
nil , // 24: micro.openapiv2.Response.HeadersEntry
nil , // 25: micro.openapiv2.Response.ExamplesEntry
nil , // 26: micro.openapiv2.Response.ExtensionsEntry
nil , // 27: micro.openapiv2.Info.ExtensionsEntry
nil , // 28: micro.openapiv2.SecurityDefinitions.SecurityEntry
nil , // 29: micro.openapiv2.SecurityScheme.ExtensionsEntry
( * SecurityRequirement_SecurityRequirementValue ) ( nil ) , // 30: micro.openapiv2.SecurityRequirement.SecurityRequirementValue
2021-05-08 00:04:52 +03:00
nil , // 31: micro.openapiv2.SecurityRequirement.SecurityRequirementEntry
nil , // 32: micro.openapiv2.Scopes.ScopeEntry
( * structpb . Value ) ( nil ) , // 33: google.protobuf.Value
2021-02-27 19:34:26 +03:00
}
var file_openapiv2_openapiv2_proto_depIdxs = [ ] int32 {
9 , // 0: micro.openapiv2.Swagger.info:type_name -> micro.openapiv2.Info
0 , // 1: micro.openapiv2.Swagger.schemes:type_name -> micro.openapiv2.Scheme
20 , // 2: micro.openapiv2.Swagger.responses:type_name -> micro.openapiv2.Swagger.ResponsesEntry
16 , // 3: micro.openapiv2.Swagger.security_definitions:type_name -> micro.openapiv2.SecurityDefinitions
18 , // 4: micro.openapiv2.Swagger.security:type_name -> micro.openapiv2.SecurityRequirement
12 , // 5: micro.openapiv2.Swagger.external_docs:type_name -> micro.openapiv2.ExternalDocumentation
21 , // 6: micro.openapiv2.Swagger.extensions:type_name -> micro.openapiv2.Swagger.ExtensionsEntry
12 , // 7: micro.openapiv2.Operation.external_docs:type_name -> micro.openapiv2.ExternalDocumentation
22 , // 8: micro.openapiv2.Operation.responses:type_name -> micro.openapiv2.Operation.ResponsesEntry
0 , // 9: micro.openapiv2.Operation.schemes:type_name -> micro.openapiv2.Scheme
18 , // 10: micro.openapiv2.Operation.security:type_name -> micro.openapiv2.SecurityRequirement
23 , // 11: micro.openapiv2.Operation.extensions:type_name -> micro.openapiv2.Operation.ExtensionsEntry
13 , // 12: micro.openapiv2.Response.schema:type_name -> micro.openapiv2.Schema
24 , // 13: micro.openapiv2.Response.headers:type_name -> micro.openapiv2.Response.HeadersEntry
25 , // 14: micro.openapiv2.Response.examples:type_name -> micro.openapiv2.Response.ExamplesEntry
26 , // 15: micro.openapiv2.Response.extensions:type_name -> micro.openapiv2.Response.ExtensionsEntry
10 , // 16: micro.openapiv2.Info.contact:type_name -> micro.openapiv2.Contact
11 , // 17: micro.openapiv2.Info.license:type_name -> micro.openapiv2.License
27 , // 18: micro.openapiv2.Info.extensions:type_name -> micro.openapiv2.Info.ExtensionsEntry
14 , // 19: micro.openapiv2.Schema.json_schema:type_name -> micro.openapiv2.JSONSchema
12 , // 20: micro.openapiv2.Schema.external_docs:type_name -> micro.openapiv2.ExternalDocumentation
1 , // 21: micro.openapiv2.JSONSchema.type:type_name -> micro.openapiv2.JSONSchema.JSONSchemaSimpleTypes
12 , // 22: micro.openapiv2.Tag.external_docs:type_name -> micro.openapiv2.ExternalDocumentation
28 , // 23: micro.openapiv2.SecurityDefinitions.security:type_name -> micro.openapiv2.SecurityDefinitions.SecurityEntry
2 , // 24: micro.openapiv2.SecurityScheme.type:type_name -> micro.openapiv2.SecurityScheme.Type
3 , // 25: micro.openapiv2.SecurityScheme.in:type_name -> micro.openapiv2.SecurityScheme.In
4 , // 26: micro.openapiv2.SecurityScheme.flow:type_name -> micro.openapiv2.SecurityScheme.Flow
19 , // 27: micro.openapiv2.SecurityScheme.scopes:type_name -> micro.openapiv2.Scopes
29 , // 28: micro.openapiv2.SecurityScheme.extensions:type_name -> micro.openapiv2.SecurityScheme.ExtensionsEntry
31 , // 29: micro.openapiv2.SecurityRequirement.security_requirement:type_name -> micro.openapiv2.SecurityRequirement.SecurityRequirementEntry
32 , // 30: micro.openapiv2.Scopes.scope:type_name -> micro.openapiv2.Scopes.ScopeEntry
8 , // 31: micro.openapiv2.Swagger.ResponsesEntry.value:type_name -> micro.openapiv2.Response
33 , // 32: micro.openapiv2.Swagger.ExtensionsEntry.value:type_name -> google.protobuf.Value
8 , // 33: micro.openapiv2.Operation.ResponsesEntry.value:type_name -> micro.openapiv2.Response
33 , // 34: micro.openapiv2.Operation.ExtensionsEntry.value:type_name -> google.protobuf.Value
7 , // 35: micro.openapiv2.Response.HeadersEntry.value:type_name -> micro.openapiv2.Header
33 , // 36: micro.openapiv2.Response.ExtensionsEntry.value:type_name -> google.protobuf.Value
33 , // 37: micro.openapiv2.Info.ExtensionsEntry.value:type_name -> google.protobuf.Value
17 , // 38: micro.openapiv2.SecurityDefinitions.SecurityEntry.value:type_name -> micro.openapiv2.SecurityScheme
33 , // 39: micro.openapiv2.SecurityScheme.ExtensionsEntry.value:type_name -> google.protobuf.Value
30 , // 40: micro.openapiv2.SecurityRequirement.SecurityRequirementEntry.value:type_name -> micro.openapiv2.SecurityRequirement.SecurityRequirementValue
41 , // [41:41] is the sub-list for method output_type
41 , // [41:41] is the sub-list for method input_type
41 , // [41:41] is the sub-list for extension type_name
41 , // [41:41] is the sub-list for extension extendee
0 , // [0:41] is the sub-list for field type_name
}
func init ( ) { file_openapiv2_openapiv2_proto_init ( ) }
func file_openapiv2_openapiv2_proto_init ( ) {
if File_openapiv2_openapiv2_proto != nil {
return
}
if ! protoimpl . UnsafeEnabled {
file_openapiv2_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_openapiv2_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_openapiv2_openapiv2_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Header ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Response ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Info ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 5 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Contact ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 6 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * License ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 7 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ExternalDocumentation ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 8 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Schema ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 9 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * JSONSchema ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 10 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Tag ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 11 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * SecurityDefinitions ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 12 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * SecurityScheme ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 13 ] . 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_openapiv2_openapiv2_proto_msgTypes [ 14 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Scopes ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_openapiv2_openapiv2_proto_msgTypes [ 25 ] . Exporter = func ( v interface { } , i int ) interface { } {
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_openapiv2_openapiv2_proto_rawDesc ,
NumEnums : 5 ,
NumMessages : 28 ,
NumExtensions : 0 ,
NumServices : 0 ,
} ,
GoTypes : file_openapiv2_openapiv2_proto_goTypes ,
DependencyIndexes : file_openapiv2_openapiv2_proto_depIdxs ,
EnumInfos : file_openapiv2_openapiv2_proto_enumTypes ,
MessageInfos : file_openapiv2_openapiv2_proto_msgTypes ,
} . Build ( )
File_openapiv2_openapiv2_proto = out . File
file_openapiv2_openapiv2_proto_rawDesc = nil
file_openapiv2_openapiv2_proto_goTypes = nil
file_openapiv2_openapiv2_proto_depIdxs = nil
}