| // Code generated by protoc-gen-go. DO NOT EDIT. |
| // source: protoc-gen-swagger/options/openapiv2.proto |
| |
| package options |
| |
| import ( |
| fmt "fmt" |
| proto "github.com/golang/protobuf/proto" |
| any "github.com/golang/protobuf/ptypes/any" |
| _struct "github.com/golang/protobuf/ptypes/struct" |
| math "math" |
| ) |
| |
| // Reference imports to suppress errors if they are not otherwise used. |
| var _ = proto.Marshal |
| var _ = fmt.Errorf |
| var _ = math.Inf |
| |
| // This is a compile-time assertion to ensure that this generated file |
| // is compatible with the proto package it is being compiled against. |
| // A compilation error at this line likely means your copy of the |
| // proto package needs to be updated. |
| const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
| |
| type Swagger_SwaggerScheme int32 |
| |
| const ( |
| Swagger_UNKNOWN Swagger_SwaggerScheme = 0 |
| Swagger_HTTP Swagger_SwaggerScheme = 1 |
| Swagger_HTTPS Swagger_SwaggerScheme = 2 |
| Swagger_WS Swagger_SwaggerScheme = 3 |
| Swagger_WSS Swagger_SwaggerScheme = 4 |
| ) |
| |
| var Swagger_SwaggerScheme_name = map[int32]string{ |
| 0: "UNKNOWN", |
| 1: "HTTP", |
| 2: "HTTPS", |
| 3: "WS", |
| 4: "WSS", |
| } |
| |
| var Swagger_SwaggerScheme_value = map[string]int32{ |
| "UNKNOWN": 0, |
| "HTTP": 1, |
| "HTTPS": 2, |
| "WS": 3, |
| "WSS": 4, |
| } |
| |
| func (x Swagger_SwaggerScheme) String() string { |
| return proto.EnumName(Swagger_SwaggerScheme_name, int32(x)) |
| } |
| |
| func (Swagger_SwaggerScheme) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{0, 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 |
| ) |
| |
| var JSONSchema_JSONSchemaSimpleTypes_name = map[int32]string{ |
| 0: "UNKNOWN", |
| 1: "ARRAY", |
| 2: "BOOLEAN", |
| 3: "INTEGER", |
| 4: "NULL", |
| 5: "NUMBER", |
| 6: "OBJECT", |
| 7: "STRING", |
| } |
| |
| var 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) String() string { |
| return proto.EnumName(JSONSchema_JSONSchemaSimpleTypes_name, int32(x)) |
| } |
| |
| func (JSONSchema_JSONSchemaSimpleTypes) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{8, 0} |
| } |
| |
| // Required. 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 |
| ) |
| |
| var SecurityScheme_Type_name = map[int32]string{ |
| 0: "TYPE_INVALID", |
| 1: "TYPE_BASIC", |
| 2: "TYPE_API_KEY", |
| 3: "TYPE_OAUTH2", |
| } |
| |
| var SecurityScheme_Type_value = map[string]int32{ |
| "TYPE_INVALID": 0, |
| "TYPE_BASIC": 1, |
| "TYPE_API_KEY": 2, |
| "TYPE_OAUTH2": 3, |
| } |
| |
| func (x SecurityScheme_Type) String() string { |
| return proto.EnumName(SecurityScheme_Type_name, int32(x)) |
| } |
| |
| func (SecurityScheme_Type) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{11, 0} |
| } |
| |
| // Required. 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 |
| ) |
| |
| var SecurityScheme_In_name = map[int32]string{ |
| 0: "IN_INVALID", |
| 1: "IN_QUERY", |
| 2: "IN_HEADER", |
| } |
| |
| var SecurityScheme_In_value = map[string]int32{ |
| "IN_INVALID": 0, |
| "IN_QUERY": 1, |
| "IN_HEADER": 2, |
| } |
| |
| func (x SecurityScheme_In) String() string { |
| return proto.EnumName(SecurityScheme_In_name, int32(x)) |
| } |
| |
| func (SecurityScheme_In) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{11, 1} |
| } |
| |
| // Required. 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 |
| ) |
| |
| var SecurityScheme_Flow_name = map[int32]string{ |
| 0: "FLOW_INVALID", |
| 1: "FLOW_IMPLICIT", |
| 2: "FLOW_PASSWORD", |
| 3: "FLOW_APPLICATION", |
| 4: "FLOW_ACCESS_CODE", |
| } |
| |
| var 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) String() string { |
| return proto.EnumName(SecurityScheme_Flow_name, int32(x)) |
| } |
| |
| func (SecurityScheme_Flow) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{11, 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 |
| // |
| // TODO(ivucica): document fields |
| type Swagger struct { |
| Swagger string `protobuf:"bytes,1,opt,name=swagger,proto3" json:"swagger,omitempty"` |
| Info *Info `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"` |
| Host string `protobuf:"bytes,3,opt,name=host,proto3" json:"host,omitempty"` |
| // `base_path` is the common prefix path used on all API endpoints (ie. /api, /v1, etc.). By adding this, |
| // it allows you to remove this portion from the path endpoints in your Swagger file making them easier |
| // to read. Note that using `base_path` does not change the endpoint paths that are generated in the resulting |
| // Swagger file. If you wish to use `base_path` with relatively generated Swagger 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"` |
| Schemes []Swagger_SwaggerScheme `protobuf:"varint,5,rep,packed,name=schemes,proto3,enum=grpc.gateway.protoc_gen_swagger.options.Swagger_SwaggerScheme" json:"schemes,omitempty"` |
| Consumes []string `protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty"` |
| Produces []string `protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty"` |
| 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"` |
| SecurityDefinitions *SecurityDefinitions `protobuf:"bytes,11,opt,name=security_definitions,json=securityDefinitions,proto3" json:"security_definitions,omitempty"` |
| Security []*SecurityRequirement `protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty"` |
| ExternalDocs *ExternalDocumentation `protobuf:"bytes,14,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"` |
| Extensions map[string]*_struct.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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Swagger) Reset() { *m = Swagger{} } |
| func (m *Swagger) String() string { return proto.CompactTextString(m) } |
| func (*Swagger) ProtoMessage() {} |
| func (*Swagger) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{0} |
| } |
| |
| func (m *Swagger) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Swagger.Unmarshal(m, b) |
| } |
| func (m *Swagger) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Swagger.Marshal(b, m, deterministic) |
| } |
| func (m *Swagger) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Swagger.Merge(m, src) |
| } |
| func (m *Swagger) XXX_Size() int { |
| return xxx_messageInfo_Swagger.Size(m) |
| } |
| func (m *Swagger) XXX_DiscardUnknown() { |
| xxx_messageInfo_Swagger.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Swagger proto.InternalMessageInfo |
| |
| func (m *Swagger) GetSwagger() string { |
| if m != nil { |
| return m.Swagger |
| } |
| return "" |
| } |
| |
| func (m *Swagger) GetInfo() *Info { |
| if m != nil { |
| return m.Info |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetHost() string { |
| if m != nil { |
| return m.Host |
| } |
| return "" |
| } |
| |
| func (m *Swagger) GetBasePath() string { |
| if m != nil { |
| return m.BasePath |
| } |
| return "" |
| } |
| |
| func (m *Swagger) GetSchemes() []Swagger_SwaggerScheme { |
| if m != nil { |
| return m.Schemes |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetConsumes() []string { |
| if m != nil { |
| return m.Consumes |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetProduces() []string { |
| if m != nil { |
| return m.Produces |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetResponses() map[string]*Response { |
| if m != nil { |
| return m.Responses |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetSecurityDefinitions() *SecurityDefinitions { |
| if m != nil { |
| return m.SecurityDefinitions |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetSecurity() []*SecurityRequirement { |
| if m != nil { |
| return m.Security |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetExternalDocs() *ExternalDocumentation { |
| if m != nil { |
| return m.ExternalDocs |
| } |
| return nil |
| } |
| |
| func (m *Swagger) GetExtensions() map[string]*_struct.Value { |
| if m != nil { |
| return m.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 |
| // |
| // TODO(ivucica): document fields |
| type Operation struct { |
| Tags []string `protobuf:"bytes,1,rep,name=tags,proto3" json:"tags,omitempty"` |
| Summary string `protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty"` |
| Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` |
| ExternalDocs *ExternalDocumentation `protobuf:"bytes,4,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"` |
| OperationId string `protobuf:"bytes,5,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"` |
| Consumes []string `protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty"` |
| Produces []string `protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty"` |
| 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"` |
| Schemes []string `protobuf:"bytes,10,rep,name=schemes,proto3" json:"schemes,omitempty"` |
| Deprecated bool `protobuf:"varint,11,opt,name=deprecated,proto3" json:"deprecated,omitempty"` |
| Security []*SecurityRequirement `protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty"` |
| Extensions map[string]*_struct.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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Operation) Reset() { *m = Operation{} } |
| func (m *Operation) String() string { return proto.CompactTextString(m) } |
| func (*Operation) ProtoMessage() {} |
| func (*Operation) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{1} |
| } |
| |
| func (m *Operation) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Operation.Unmarshal(m, b) |
| } |
| func (m *Operation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Operation.Marshal(b, m, deterministic) |
| } |
| func (m *Operation) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Operation.Merge(m, src) |
| } |
| func (m *Operation) XXX_Size() int { |
| return xxx_messageInfo_Operation.Size(m) |
| } |
| func (m *Operation) XXX_DiscardUnknown() { |
| xxx_messageInfo_Operation.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Operation proto.InternalMessageInfo |
| |
| func (m *Operation) GetTags() []string { |
| if m != nil { |
| return m.Tags |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetSummary() string { |
| if m != nil { |
| return m.Summary |
| } |
| return "" |
| } |
| |
| func (m *Operation) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *Operation) GetExternalDocs() *ExternalDocumentation { |
| if m != nil { |
| return m.ExternalDocs |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetOperationId() string { |
| if m != nil { |
| return m.OperationId |
| } |
| return "" |
| } |
| |
| func (m *Operation) GetConsumes() []string { |
| if m != nil { |
| return m.Consumes |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetProduces() []string { |
| if m != nil { |
| return m.Produces |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetResponses() map[string]*Response { |
| if m != nil { |
| return m.Responses |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetSchemes() []string { |
| if m != nil { |
| return m.Schemes |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetDeprecated() bool { |
| if m != nil { |
| return m.Deprecated |
| } |
| return false |
| } |
| |
| func (m *Operation) GetSecurity() []*SecurityRequirement { |
| if m != nil { |
| return m.Security |
| } |
| return nil |
| } |
| |
| func (m *Operation) GetExtensions() map[string]*_struct.Value { |
| if m != nil { |
| return m.Extensions |
| } |
| return nil |
| } |
| |
| // `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 { |
| // `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"` |
| Extensions map[string]*_struct.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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Response) Reset() { *m = Response{} } |
| func (m *Response) String() string { return proto.CompactTextString(m) } |
| func (*Response) ProtoMessage() {} |
| func (*Response) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{2} |
| } |
| |
| func (m *Response) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Response.Unmarshal(m, b) |
| } |
| func (m *Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Response.Marshal(b, m, deterministic) |
| } |
| func (m *Response) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Response.Merge(m, src) |
| } |
| func (m *Response) XXX_Size() int { |
| return xxx_messageInfo_Response.Size(m) |
| } |
| func (m *Response) XXX_DiscardUnknown() { |
| xxx_messageInfo_Response.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Response proto.InternalMessageInfo |
| |
| func (m *Response) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *Response) GetSchema() *Schema { |
| if m != nil { |
| return m.Schema |
| } |
| return nil |
| } |
| |
| func (m *Response) GetExtensions() map[string]*_struct.Value { |
| if m != nil { |
| return m.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 |
| // |
| // TODO(ivucica): document fields |
| type Info struct { |
| Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` |
| Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` |
| TermsOfService string `protobuf:"bytes,3,opt,name=terms_of_service,json=termsOfService,proto3" json:"terms_of_service,omitempty"` |
| Contact *Contact `protobuf:"bytes,4,opt,name=contact,proto3" json:"contact,omitempty"` |
| License *License `protobuf:"bytes,5,opt,name=license,proto3" json:"license,omitempty"` |
| Version string `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"` |
| Extensions map[string]*_struct.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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Info) Reset() { *m = Info{} } |
| func (m *Info) String() string { return proto.CompactTextString(m) } |
| func (*Info) ProtoMessage() {} |
| func (*Info) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{3} |
| } |
| |
| func (m *Info) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Info.Unmarshal(m, b) |
| } |
| func (m *Info) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Info.Marshal(b, m, deterministic) |
| } |
| func (m *Info) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Info.Merge(m, src) |
| } |
| func (m *Info) XXX_Size() int { |
| return xxx_messageInfo_Info.Size(m) |
| } |
| func (m *Info) XXX_DiscardUnknown() { |
| xxx_messageInfo_Info.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Info proto.InternalMessageInfo |
| |
| func (m *Info) GetTitle() string { |
| if m != nil { |
| return m.Title |
| } |
| return "" |
| } |
| |
| func (m *Info) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *Info) GetTermsOfService() string { |
| if m != nil { |
| return m.TermsOfService |
| } |
| return "" |
| } |
| |
| func (m *Info) GetContact() *Contact { |
| if m != nil { |
| return m.Contact |
| } |
| return nil |
| } |
| |
| func (m *Info) GetLicense() *License { |
| if m != nil { |
| return m.License |
| } |
| return nil |
| } |
| |
| func (m *Info) GetVersion() string { |
| if m != nil { |
| return m.Version |
| } |
| return "" |
| } |
| |
| func (m *Info) GetExtensions() map[string]*_struct.Value { |
| if m != nil { |
| return m.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 |
| // |
| // TODO(ivucica): document fields |
| type Contact struct { |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` |
| Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Contact) Reset() { *m = Contact{} } |
| func (m *Contact) String() string { return proto.CompactTextString(m) } |
| func (*Contact) ProtoMessage() {} |
| func (*Contact) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{4} |
| } |
| |
| func (m *Contact) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Contact.Unmarshal(m, b) |
| } |
| func (m *Contact) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Contact.Marshal(b, m, deterministic) |
| } |
| func (m *Contact) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Contact.Merge(m, src) |
| } |
| func (m *Contact) XXX_Size() int { |
| return xxx_messageInfo_Contact.Size(m) |
| } |
| func (m *Contact) XXX_DiscardUnknown() { |
| xxx_messageInfo_Contact.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Contact proto.InternalMessageInfo |
| |
| func (m *Contact) GetName() string { |
| if m != nil { |
| return m.Name |
| } |
| return "" |
| } |
| |
| func (m *Contact) GetUrl() string { |
| if m != nil { |
| return m.Url |
| } |
| return "" |
| } |
| |
| func (m *Contact) GetEmail() string { |
| if m != nil { |
| return m.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 |
| // |
| type License struct { |
| // Required. 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. |
| Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *License) Reset() { *m = License{} } |
| func (m *License) String() string { return proto.CompactTextString(m) } |
| func (*License) ProtoMessage() {} |
| func (*License) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{5} |
| } |
| |
| func (m *License) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_License.Unmarshal(m, b) |
| } |
| func (m *License) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_License.Marshal(b, m, deterministic) |
| } |
| func (m *License) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_License.Merge(m, src) |
| } |
| func (m *License) XXX_Size() int { |
| return xxx_messageInfo_License.Size(m) |
| } |
| func (m *License) XXX_DiscardUnknown() { |
| xxx_messageInfo_License.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_License proto.InternalMessageInfo |
| |
| func (m *License) GetName() string { |
| if m != nil { |
| return m.Name |
| } |
| return "" |
| } |
| |
| func (m *License) GetUrl() string { |
| if m != nil { |
| return m.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 |
| // |
| // TODO(ivucica): document fields |
| type ExternalDocumentation struct { |
| Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"` |
| Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *ExternalDocumentation) Reset() { *m = ExternalDocumentation{} } |
| func (m *ExternalDocumentation) String() string { return proto.CompactTextString(m) } |
| func (*ExternalDocumentation) ProtoMessage() {} |
| func (*ExternalDocumentation) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{6} |
| } |
| |
| func (m *ExternalDocumentation) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_ExternalDocumentation.Unmarshal(m, b) |
| } |
| func (m *ExternalDocumentation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_ExternalDocumentation.Marshal(b, m, deterministic) |
| } |
| func (m *ExternalDocumentation) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_ExternalDocumentation.Merge(m, src) |
| } |
| func (m *ExternalDocumentation) XXX_Size() int { |
| return xxx_messageInfo_ExternalDocumentation.Size(m) |
| } |
| func (m *ExternalDocumentation) XXX_DiscardUnknown() { |
| xxx_messageInfo_ExternalDocumentation.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_ExternalDocumentation proto.InternalMessageInfo |
| |
| func (m *ExternalDocumentation) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *ExternalDocumentation) GetUrl() string { |
| if m != nil { |
| return m.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 |
| // |
| // TODO(ivucica): document fields |
| type Schema struct { |
| JsonSchema *JSONSchema `protobuf:"bytes,1,opt,name=json_schema,json=jsonSchema,proto3" json:"json_schema,omitempty"` |
| Discriminator string `protobuf:"bytes,2,opt,name=discriminator,proto3" json:"discriminator,omitempty"` |
| ReadOnly bool `protobuf:"varint,3,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"` |
| ExternalDocs *ExternalDocumentation `protobuf:"bytes,5,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"` |
| Example *any.Any `protobuf:"bytes,6,opt,name=example,proto3" json:"example,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Schema) Reset() { *m = Schema{} } |
| func (m *Schema) String() string { return proto.CompactTextString(m) } |
| func (*Schema) ProtoMessage() {} |
| func (*Schema) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{7} |
| } |
| |
| func (m *Schema) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Schema.Unmarshal(m, b) |
| } |
| func (m *Schema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Schema.Marshal(b, m, deterministic) |
| } |
| func (m *Schema) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Schema.Merge(m, src) |
| } |
| func (m *Schema) XXX_Size() int { |
| return xxx_messageInfo_Schema.Size(m) |
| } |
| func (m *Schema) XXX_DiscardUnknown() { |
| xxx_messageInfo_Schema.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Schema proto.InternalMessageInfo |
| |
| func (m *Schema) GetJsonSchema() *JSONSchema { |
| if m != nil { |
| return m.JsonSchema |
| } |
| return nil |
| } |
| |
| func (m *Schema) GetDiscriminator() string { |
| if m != nil { |
| return m.Discriminator |
| } |
| return "" |
| } |
| |
| func (m *Schema) GetReadOnly() bool { |
| if m != nil { |
| return m.ReadOnly |
| } |
| return false |
| } |
| |
| func (m *Schema) GetExternalDocs() *ExternalDocumentation { |
| if m != nil { |
| return m.ExternalDocs |
| } |
| return nil |
| } |
| |
| func (m *Schema) GetExample() *any.Any { |
| if m != nil { |
| return m.Example |
| } |
| return nil |
| } |
| |
| // `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 |
| // |
| // TODO(ivucica): document fields |
| type JSONSchema struct { |
| // 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"` |
| Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"` |
| 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"` |
| MultipleOf float64 `protobuf:"fixed64,10,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"` |
| 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 float64 `protobuf:"fixed64,13,opt,name=minimum,proto3" json:"minimum,omitempty"` |
| ExclusiveMinimum bool `protobuf:"varint,14,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"` |
| MaxLength uint64 `protobuf:"varint,15,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"` |
| MinLength uint64 `protobuf:"varint,16,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"` |
| Pattern string `protobuf:"bytes,17,opt,name=pattern,proto3" json:"pattern,omitempty"` |
| MaxItems uint64 `protobuf:"varint,20,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"` |
| MinItems uint64 `protobuf:"varint,21,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"` |
| UniqueItems bool `protobuf:"varint,22,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"` |
| MaxProperties uint64 `protobuf:"varint,24,opt,name=max_properties,json=maxProperties,proto3" json:"max_properties,omitempty"` |
| MinProperties uint64 `protobuf:"varint,25,opt,name=min_properties,json=minProperties,proto3" json:"min_properties,omitempty"` |
| Required []string `protobuf:"bytes,26,rep,name=required,proto3" json:"required,omitempty"` |
| // Items in 'array' must be unique. |
| Array []string `protobuf:"bytes,34,rep,name=array,proto3" json:"array,omitempty"` |
| Type []JSONSchema_JSONSchemaSimpleTypes `protobuf:"varint,35,rep,packed,name=type,proto3,enum=grpc.gateway.protoc_gen_swagger.options.JSONSchema_JSONSchemaSimpleTypes" json:"type,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *JSONSchema) Reset() { *m = JSONSchema{} } |
| func (m *JSONSchema) String() string { return proto.CompactTextString(m) } |
| func (*JSONSchema) ProtoMessage() {} |
| func (*JSONSchema) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{8} |
| } |
| |
| func (m *JSONSchema) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_JSONSchema.Unmarshal(m, b) |
| } |
| func (m *JSONSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_JSONSchema.Marshal(b, m, deterministic) |
| } |
| func (m *JSONSchema) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_JSONSchema.Merge(m, src) |
| } |
| func (m *JSONSchema) XXX_Size() int { |
| return xxx_messageInfo_JSONSchema.Size(m) |
| } |
| func (m *JSONSchema) XXX_DiscardUnknown() { |
| xxx_messageInfo_JSONSchema.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_JSONSchema proto.InternalMessageInfo |
| |
| func (m *JSONSchema) GetRef() string { |
| if m != nil { |
| return m.Ref |
| } |
| return "" |
| } |
| |
| func (m *JSONSchema) GetTitle() string { |
| if m != nil { |
| return m.Title |
| } |
| return "" |
| } |
| |
| func (m *JSONSchema) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *JSONSchema) GetDefault() string { |
| if m != nil { |
| return m.Default |
| } |
| return "" |
| } |
| |
| func (m *JSONSchema) GetReadOnly() bool { |
| if m != nil { |
| return m.ReadOnly |
| } |
| return false |
| } |
| |
| func (m *JSONSchema) GetMultipleOf() float64 { |
| if m != nil { |
| return m.MultipleOf |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetMaximum() float64 { |
| if m != nil { |
| return m.Maximum |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetExclusiveMaximum() bool { |
| if m != nil { |
| return m.ExclusiveMaximum |
| } |
| return false |
| } |
| |
| func (m *JSONSchema) GetMinimum() float64 { |
| if m != nil { |
| return m.Minimum |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetExclusiveMinimum() bool { |
| if m != nil { |
| return m.ExclusiveMinimum |
| } |
| return false |
| } |
| |
| func (m *JSONSchema) GetMaxLength() uint64 { |
| if m != nil { |
| return m.MaxLength |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetMinLength() uint64 { |
| if m != nil { |
| return m.MinLength |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetPattern() string { |
| if m != nil { |
| return m.Pattern |
| } |
| return "" |
| } |
| |
| func (m *JSONSchema) GetMaxItems() uint64 { |
| if m != nil { |
| return m.MaxItems |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetMinItems() uint64 { |
| if m != nil { |
| return m.MinItems |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetUniqueItems() bool { |
| if m != nil { |
| return m.UniqueItems |
| } |
| return false |
| } |
| |
| func (m *JSONSchema) GetMaxProperties() uint64 { |
| if m != nil { |
| return m.MaxProperties |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetMinProperties() uint64 { |
| if m != nil { |
| return m.MinProperties |
| } |
| return 0 |
| } |
| |
| func (m *JSONSchema) GetRequired() []string { |
| if m != nil { |
| return m.Required |
| } |
| return nil |
| } |
| |
| func (m *JSONSchema) GetArray() []string { |
| if m != nil { |
| return m.Array |
| } |
| return nil |
| } |
| |
| func (m *JSONSchema) GetType() []JSONSchema_JSONSchemaSimpleTypes { |
| if m != nil { |
| return m.Type |
| } |
| 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 |
| // |
| // TODO(ivucica): document fields |
| type Tag struct { |
| // TODO(ivucica): Description should be extracted from comments on the proto |
| // service object. |
| Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` |
| ExternalDocs *ExternalDocumentation `protobuf:"bytes,3,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Tag) Reset() { *m = Tag{} } |
| func (m *Tag) String() string { return proto.CompactTextString(m) } |
| func (*Tag) ProtoMessage() {} |
| func (*Tag) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{9} |
| } |
| |
| func (m *Tag) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Tag.Unmarshal(m, b) |
| } |
| func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Tag.Marshal(b, m, deterministic) |
| } |
| func (m *Tag) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Tag.Merge(m, src) |
| } |
| func (m *Tag) XXX_Size() int { |
| return xxx_messageInfo_Tag.Size(m) |
| } |
| func (m *Tag) XXX_DiscardUnknown() { |
| xxx_messageInfo_Tag.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Tag proto.InternalMessageInfo |
| |
| func (m *Tag) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *Tag) GetExternalDocs() *ExternalDocumentation { |
| if m != nil { |
| return m.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 { |
| // 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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *SecurityDefinitions) Reset() { *m = SecurityDefinitions{} } |
| func (m *SecurityDefinitions) String() string { return proto.CompactTextString(m) } |
| func (*SecurityDefinitions) ProtoMessage() {} |
| func (*SecurityDefinitions) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{10} |
| } |
| |
| func (m *SecurityDefinitions) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_SecurityDefinitions.Unmarshal(m, b) |
| } |
| func (m *SecurityDefinitions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_SecurityDefinitions.Marshal(b, m, deterministic) |
| } |
| func (m *SecurityDefinitions) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_SecurityDefinitions.Merge(m, src) |
| } |
| func (m *SecurityDefinitions) XXX_Size() int { |
| return xxx_messageInfo_SecurityDefinitions.Size(m) |
| } |
| func (m *SecurityDefinitions) XXX_DiscardUnknown() { |
| xxx_messageInfo_SecurityDefinitions.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_SecurityDefinitions proto.InternalMessageInfo |
| |
| func (m *SecurityDefinitions) GetSecurity() map[string]*SecurityScheme { |
| if m != nil { |
| return m.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 { |
| // Required. The type of the security scheme. Valid values are "basic", |
| // "apiKey" or "oauth2". |
| Type SecurityScheme_Type `protobuf:"varint,1,opt,name=type,proto3,enum=grpc.gateway.protoc_gen_swagger.options.SecurityScheme_Type" json:"type,omitempty"` |
| // A short description for security scheme. |
| Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` |
| // Required. 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"` |
| // Required. The location of the API key. Valid values are "query" or "header". |
| // |
| // Valid for apiKey. |
| In SecurityScheme_In `protobuf:"varint,4,opt,name=in,proto3,enum=grpc.gateway.protoc_gen_swagger.options.SecurityScheme_In" json:"in,omitempty"` |
| // Required. The flow used by the OAuth2 security scheme. Valid values are |
| // "implicit", "password", "application" or "accessCode". |
| // |
| // Valid for oauth2. |
| Flow SecurityScheme_Flow `protobuf:"varint,5,opt,name=flow,proto3,enum=grpc.gateway.protoc_gen_swagger.options.SecurityScheme_Flow" json:"flow,omitempty"` |
| // Required. 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"` |
| // Required. 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"` |
| // Required. The available scopes for the OAuth2 security scheme. |
| // |
| // Valid for oauth2. |
| Scopes *Scopes `protobuf:"bytes,8,opt,name=scopes,proto3" json:"scopes,omitempty"` |
| Extensions map[string]*_struct.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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *SecurityScheme) Reset() { *m = SecurityScheme{} } |
| func (m *SecurityScheme) String() string { return proto.CompactTextString(m) } |
| func (*SecurityScheme) ProtoMessage() {} |
| func (*SecurityScheme) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{11} |
| } |
| |
| func (m *SecurityScheme) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_SecurityScheme.Unmarshal(m, b) |
| } |
| func (m *SecurityScheme) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_SecurityScheme.Marshal(b, m, deterministic) |
| } |
| func (m *SecurityScheme) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_SecurityScheme.Merge(m, src) |
| } |
| func (m *SecurityScheme) XXX_Size() int { |
| return xxx_messageInfo_SecurityScheme.Size(m) |
| } |
| func (m *SecurityScheme) XXX_DiscardUnknown() { |
| xxx_messageInfo_SecurityScheme.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_SecurityScheme proto.InternalMessageInfo |
| |
| func (m *SecurityScheme) GetType() SecurityScheme_Type { |
| if m != nil { |
| return m.Type |
| } |
| return SecurityScheme_TYPE_INVALID |
| } |
| |
| func (m *SecurityScheme) GetDescription() string { |
| if m != nil { |
| return m.Description |
| } |
| return "" |
| } |
| |
| func (m *SecurityScheme) GetName() string { |
| if m != nil { |
| return m.Name |
| } |
| return "" |
| } |
| |
| func (m *SecurityScheme) GetIn() SecurityScheme_In { |
| if m != nil { |
| return m.In |
| } |
| return SecurityScheme_IN_INVALID |
| } |
| |
| func (m *SecurityScheme) GetFlow() SecurityScheme_Flow { |
| if m != nil { |
| return m.Flow |
| } |
| return SecurityScheme_FLOW_INVALID |
| } |
| |
| func (m *SecurityScheme) GetAuthorizationUrl() string { |
| if m != nil { |
| return m.AuthorizationUrl |
| } |
| return "" |
| } |
| |
| func (m *SecurityScheme) GetTokenUrl() string { |
| if m != nil { |
| return m.TokenUrl |
| } |
| return "" |
| } |
| |
| func (m *SecurityScheme) GetScopes() *Scopes { |
| if m != nil { |
| return m.Scopes |
| } |
| return nil |
| } |
| |
| func (m *SecurityScheme) GetExtensions() map[string]*_struct.Value { |
| if m != nil { |
| return m.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 { |
| // 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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *SecurityRequirement) Reset() { *m = SecurityRequirement{} } |
| func (m *SecurityRequirement) String() string { return proto.CompactTextString(m) } |
| func (*SecurityRequirement) ProtoMessage() {} |
| func (*SecurityRequirement) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{12} |
| } |
| |
| func (m *SecurityRequirement) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_SecurityRequirement.Unmarshal(m, b) |
| } |
| func (m *SecurityRequirement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_SecurityRequirement.Marshal(b, m, deterministic) |
| } |
| func (m *SecurityRequirement) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_SecurityRequirement.Merge(m, src) |
| } |
| func (m *SecurityRequirement) XXX_Size() int { |
| return xxx_messageInfo_SecurityRequirement.Size(m) |
| } |
| func (m *SecurityRequirement) XXX_DiscardUnknown() { |
| xxx_messageInfo_SecurityRequirement.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_SecurityRequirement proto.InternalMessageInfo |
| |
| func (m *SecurityRequirement) GetSecurityRequirement() map[string]*SecurityRequirement_SecurityRequirementValue { |
| if m != nil { |
| return m.SecurityRequirement |
| } |
| 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 { |
| Scope []string `protobuf:"bytes,1,rep,name=scope,proto3" json:"scope,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *SecurityRequirement_SecurityRequirementValue) Reset() { |
| *m = SecurityRequirement_SecurityRequirementValue{} |
| } |
| func (m *SecurityRequirement_SecurityRequirementValue) String() string { |
| return proto.CompactTextString(m) |
| } |
| func (*SecurityRequirement_SecurityRequirementValue) ProtoMessage() {} |
| func (*SecurityRequirement_SecurityRequirementValue) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{12, 0} |
| } |
| |
| func (m *SecurityRequirement_SecurityRequirementValue) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_SecurityRequirement_SecurityRequirementValue.Unmarshal(m, b) |
| } |
| func (m *SecurityRequirement_SecurityRequirementValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_SecurityRequirement_SecurityRequirementValue.Marshal(b, m, deterministic) |
| } |
| func (m *SecurityRequirement_SecurityRequirementValue) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_SecurityRequirement_SecurityRequirementValue.Merge(m, src) |
| } |
| func (m *SecurityRequirement_SecurityRequirementValue) XXX_Size() int { |
| return xxx_messageInfo_SecurityRequirement_SecurityRequirementValue.Size(m) |
| } |
| func (m *SecurityRequirement_SecurityRequirementValue) XXX_DiscardUnknown() { |
| xxx_messageInfo_SecurityRequirement_SecurityRequirementValue.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_SecurityRequirement_SecurityRequirementValue proto.InternalMessageInfo |
| |
| func (m *SecurityRequirement_SecurityRequirementValue) GetScope() []string { |
| if m != nil { |
| return m.Scope |
| } |
| 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 { |
| // 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"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Scopes) Reset() { *m = Scopes{} } |
| func (m *Scopes) String() string { return proto.CompactTextString(m) } |
| func (*Scopes) ProtoMessage() {} |
| func (*Scopes) Descriptor() ([]byte, []int) { |
| return fileDescriptor_ba35ad8af024fb48, []int{13} |
| } |
| |
| func (m *Scopes) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Scopes.Unmarshal(m, b) |
| } |
| func (m *Scopes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Scopes.Marshal(b, m, deterministic) |
| } |
| func (m *Scopes) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Scopes.Merge(m, src) |
| } |
| func (m *Scopes) XXX_Size() int { |
| return xxx_messageInfo_Scopes.Size(m) |
| } |
| func (m *Scopes) XXX_DiscardUnknown() { |
| xxx_messageInfo_Scopes.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Scopes proto.InternalMessageInfo |
| |
| func (m *Scopes) GetScope() map[string]string { |
| if m != nil { |
| return m.Scope |
| } |
| return nil |
| } |
| |
| func init() { |
| proto.RegisterEnum("grpc.gateway.protoc_gen_swagger.options.Swagger_SwaggerScheme", Swagger_SwaggerScheme_name, Swagger_SwaggerScheme_value) |
| proto.RegisterEnum("grpc.gateway.protoc_gen_swagger.options.JSONSchema_JSONSchemaSimpleTypes", JSONSchema_JSONSchemaSimpleTypes_name, JSONSchema_JSONSchemaSimpleTypes_value) |
| proto.RegisterEnum("grpc.gateway.protoc_gen_swagger.options.SecurityScheme_Type", SecurityScheme_Type_name, SecurityScheme_Type_value) |
| proto.RegisterEnum("grpc.gateway.protoc_gen_swagger.options.SecurityScheme_In", SecurityScheme_In_name, SecurityScheme_In_value) |
| proto.RegisterEnum("grpc.gateway.protoc_gen_swagger.options.SecurityScheme_Flow", SecurityScheme_Flow_name, SecurityScheme_Flow_value) |
| proto.RegisterType((*Swagger)(nil), "grpc.gateway.protoc_gen_swagger.options.Swagger") |
| proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Swagger.ExtensionsEntry") |
| proto.RegisterMapType((map[string]*Response)(nil), "grpc.gateway.protoc_gen_swagger.options.Swagger.ResponsesEntry") |
| proto.RegisterType((*Operation)(nil), "grpc.gateway.protoc_gen_swagger.options.Operation") |
| proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Operation.ExtensionsEntry") |
| proto.RegisterMapType((map[string]*Response)(nil), "grpc.gateway.protoc_gen_swagger.options.Operation.ResponsesEntry") |
| proto.RegisterType((*Response)(nil), "grpc.gateway.protoc_gen_swagger.options.Response") |
| proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Response.ExtensionsEntry") |
| proto.RegisterType((*Info)(nil), "grpc.gateway.protoc_gen_swagger.options.Info") |
| proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.Info.ExtensionsEntry") |
| proto.RegisterType((*Contact)(nil), "grpc.gateway.protoc_gen_swagger.options.Contact") |
| proto.RegisterType((*License)(nil), "grpc.gateway.protoc_gen_swagger.options.License") |
| proto.RegisterType((*ExternalDocumentation)(nil), "grpc.gateway.protoc_gen_swagger.options.ExternalDocumentation") |
| proto.RegisterType((*Schema)(nil), "grpc.gateway.protoc_gen_swagger.options.Schema") |
| proto.RegisterType((*JSONSchema)(nil), "grpc.gateway.protoc_gen_swagger.options.JSONSchema") |
| proto.RegisterType((*Tag)(nil), "grpc.gateway.protoc_gen_swagger.options.Tag") |
| proto.RegisterType((*SecurityDefinitions)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityDefinitions") |
| proto.RegisterMapType((map[string]*SecurityScheme)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityDefinitions.SecurityEntry") |
| proto.RegisterType((*SecurityScheme)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityScheme") |
| proto.RegisterMapType((map[string]*_struct.Value)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityScheme.ExtensionsEntry") |
| proto.RegisterType((*SecurityRequirement)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityRequirement") |
| proto.RegisterMapType((map[string]*SecurityRequirement_SecurityRequirementValue)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityRequirement.SecurityRequirementEntry") |
| proto.RegisterType((*SecurityRequirement_SecurityRequirementValue)(nil), "grpc.gateway.protoc_gen_swagger.options.SecurityRequirement.SecurityRequirementValue") |
| proto.RegisterType((*Scopes)(nil), "grpc.gateway.protoc_gen_swagger.options.Scopes") |
| proto.RegisterMapType((map[string]string)(nil), "grpc.gateway.protoc_gen_swagger.options.Scopes.ScopeEntry") |
| } |
| |
| func init() { |
| proto.RegisterFile("protoc-gen-swagger/options/openapiv2.proto", fileDescriptor_ba35ad8af024fb48) |
| } |
| |
| var fileDescriptor_ba35ad8af024fb48 = []byte{ |
| // 1884 bytes of a gzipped FileDescriptorProto |
| 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0x5b, 0x73, 0xdb, 0xc6, |
| 0xf5, 0x0f, 0x48, 0x90, 0x04, 0x0f, 0x45, 0x7a, 0xbd, 0x96, 0xf3, 0x47, 0x18, 0xdb, 0x7f, 0x85, |
| 0x4d, 0xa7, 0x1a, 0xbb, 0xa6, 0x12, 0xe5, 0xa1, 0x99, 0x4c, 0x6f, 0x94, 0xc4, 0xc8, 0x80, 0x65, |
| 0x92, 0x05, 0xa9, 0x28, 0xee, 0x8c, 0x07, 0x85, 0xc0, 0x25, 0x85, 0x18, 0x17, 0x06, 0x17, 0x49, |
| 0xec, 0x27, 0xe8, 0x73, 0xa7, 0xaf, 0xf9, 0x1e, 0x9d, 0x69, 0x9f, 0xfa, 0x09, 0xfa, 0x59, 0xda, |
| 0xe9, 0x7b, 0x67, 0x2f, 0x20, 0x41, 0x91, 0xf1, 0x90, 0x72, 0x3c, 0x79, 0xe8, 0x13, 0xf7, 0xdc, |
| 0x7e, 0xbb, 0x7b, 0xce, 0x9e, 0x0b, 0x08, 0x8f, 0x27, 0x61, 0x10, 0x07, 0xf6, 0xd3, 0x31, 0xf1, |
| 0x9f, 0x46, 0x57, 0xd6, 0x78, 0x4c, 0xc2, 0xbd, 0x60, 0x12, 0x3b, 0x81, 0x1f, 0xed, 0x05, 0x13, |
| 0xe2, 0x5b, 0x13, 0xe7, 0x72, 0xbf, 0xc9, 0x94, 0xf0, 0xcf, 0xc6, 0xe1, 0xc4, 0x6e, 0x8e, 0xad, |
| 0x98, 0x5c, 0x59, 0x53, 0xce, 0xb3, 0xcd, 0x31, 0xf1, 0x4d, 0x61, 0xd8, 0x14, 0x86, 0xf5, 0x0f, |
| 0xc6, 0x41, 0x30, 0x76, 0xc9, 0x1e, 0x53, 0x39, 0x4f, 0x46, 0x7b, 0x96, 0x2f, 0xf4, 0xeb, 0x0f, |
| 0x6e, 0x8a, 0xa2, 0x38, 0x4c, 0xec, 0x98, 0x4b, 0x1b, 0x7f, 0x55, 0xa0, 0xd4, 0xe7, 0x60, 0x58, |
| 0x85, 0x92, 0xc0, 0x55, 0xa5, 0x1d, 0x69, 0xb7, 0x6c, 0xa4, 0x24, 0x6e, 0x81, 0xec, 0xf8, 0xa3, |
| 0x40, 0xcd, 0xed, 0x48, 0xbb, 0x95, 0xfd, 0xa7, 0xcd, 0x35, 0x8f, 0xd5, 0xd4, 0xfc, 0x51, 0x60, |
| 0x30, 0x53, 0x8c, 0x41, 0xbe, 0x08, 0xa2, 0x58, 0xcd, 0x33, 0x64, 0xb6, 0xc6, 0x1f, 0x42, 0xf9, |
| 0xdc, 0x8a, 0x88, 0x39, 0xb1, 0xe2, 0x0b, 0x55, 0x66, 0x02, 0x85, 0x32, 0x7a, 0x56, 0x7c, 0x81, |
| 0xbf, 0x86, 0x52, 0x64, 0x5f, 0x10, 0x8f, 0x44, 0x6a, 0x61, 0x27, 0xbf, 0x5b, 0xdb, 0xff, 0xf5, |
| 0xda, 0xdb, 0x8a, 0x0b, 0xa5, 0xbf, 0x7d, 0x06, 0x63, 0xa4, 0x70, 0xb8, 0x0e, 0x8a, 0x1d, 0xf8, |
| 0x51, 0x42, 0xa1, 0x8b, 0x3b, 0x79, 0xba, 0x6b, 0x4a, 0x53, 0xd9, 0x24, 0x0c, 0x86, 0x89, 0x4d, |
| 0x22, 0xb5, 0xc4, 0x65, 0x29, 0x8d, 0x5f, 0x41, 0x39, 0x24, 0xd1, 0x24, 0xf0, 0x23, 0x12, 0xa9, |
| 0xb0, 0x93, 0xdf, 0xad, 0xec, 0xff, 0x66, 0xe3, 0x33, 0x19, 0x29, 0x42, 0xdb, 0x8f, 0xc3, 0xa9, |
| 0x31, 0x47, 0xc4, 0x01, 0x6c, 0x47, 0xc4, 0x4e, 0x42, 0x27, 0x9e, 0x9a, 0x43, 0x32, 0x72, 0x7c, |
| 0x87, 0x59, 0xaa, 0x15, 0xe6, 0xf4, 0x5f, 0xae, 0xbf, 0x93, 0x00, 0x39, 0x9a, 0x63, 0x18, 0xf7, |
| 0xa2, 0x65, 0x26, 0xfe, 0x1a, 0x94, 0x94, 0xad, 0x6e, 0xb1, 0xeb, 0x6c, 0xbe, 0x89, 0x41, 0xbe, |
| 0x4d, 0x9c, 0x90, 0x78, 0xc4, 0x8f, 0x8d, 0x19, 0x1a, 0xb6, 0xa1, 0x4a, 0xae, 0x63, 0x12, 0xfa, |
| 0x96, 0x6b, 0x0e, 0x03, 0x3b, 0x52, 0x6b, 0xec, 0x0e, 0xeb, 0x47, 0xb0, 0x2d, 0xac, 0x8f, 0x02, |
| 0x3b, 0xa1, 0xd8, 0x16, 0x65, 0x1b, 0x5b, 0x64, 0xce, 0x8e, 0xf0, 0x1f, 0x00, 0x28, 0xed, 0x47, |
| 0xcc, 0x4b, 0x77, 0xd8, 0x05, 0x7e, 0xbb, 0x71, 0x3c, 0xda, 0x33, 0x08, 0x1e, 0x90, 0x0c, 0x66, |
| 0x3d, 0x80, 0xda, 0x62, 0xb8, 0x30, 0x82, 0xfc, 0x6b, 0x32, 0x15, 0xe9, 0x41, 0x97, 0xf8, 0x18, |
| 0x0a, 0x97, 0x96, 0x9b, 0x10, 0x91, 0x1b, 0x9f, 0xae, 0x7d, 0x80, 0x14, 0xd9, 0xe0, 0xf6, 0x5f, |
| 0xe4, 0x3e, 0x97, 0xea, 0xa7, 0x70, 0xe7, 0xc6, 0x79, 0x56, 0xec, 0xf8, 0xf3, 0xc5, 0x1d, 0xdf, |
| 0x6f, 0xf2, 0x04, 0x6f, 0xa6, 0x09, 0xde, 0xfc, 0x8a, 0x4a, 0x33, 0xb0, 0x8d, 0x03, 0xa8, 0x2e, |
| 0xa4, 0x02, 0xae, 0x40, 0xe9, 0xb4, 0xf3, 0xbc, 0xd3, 0x3d, 0xeb, 0xa0, 0xf7, 0xb0, 0x02, 0xf2, |
| 0xb3, 0xc1, 0xa0, 0x87, 0x24, 0x5c, 0x86, 0x02, 0x5d, 0xf5, 0x51, 0x0e, 0x17, 0x21, 0x77, 0xd6, |
| 0x47, 0x79, 0x5c, 0x82, 0xfc, 0x59, 0xbf, 0x8f, 0x64, 0x5d, 0x56, 0x14, 0x54, 0xd6, 0x65, 0xa5, |
| 0x8c, 0x40, 0x97, 0x95, 0x2a, 0xaa, 0x35, 0xfe, 0x51, 0x84, 0x72, 0x77, 0x42, 0x42, 0x16, 0x1b, |
| 0x9a, 0xdf, 0xb1, 0x35, 0x8e, 0x54, 0x89, 0x25, 0x0d, 0x5b, 0xb3, 0x82, 0x92, 0x78, 0x9e, 0x15, |
| 0x4e, 0xd9, 0x59, 0x69, 0x41, 0xe1, 0x24, 0xde, 0x81, 0xca, 0x90, 0x44, 0x76, 0xe8, 0x30, 0x67, |
| 0x88, 0xa2, 0x90, 0x65, 0x2d, 0x3f, 0x21, 0xf9, 0x1d, 0x3c, 0xa1, 0x8f, 0x60, 0x2b, 0x48, 0x6f, |
| 0x60, 0x3a, 0x43, 0xb5, 0xc0, 0xcf, 0x31, 0xe3, 0x69, 0xc3, 0x5b, 0x17, 0x0b, 0x33, 0x5b, 0x2c, |
| 0xca, 0xec, 0x71, 0xb6, 0xd6, 0x3e, 0xfb, 0xcc, 0xad, 0x6f, 0x28, 0x17, 0xea, 0xbc, 0x3e, 0x02, |
| 0xdb, 0x7b, 0x56, 0xdf, 0x1e, 0x01, 0x0c, 0xc9, 0x24, 0x24, 0xb6, 0x15, 0x93, 0x21, 0x2b, 0x1f, |
| 0x8a, 0x91, 0xe1, 0xbc, 0xc3, 0xbc, 0x3f, 0x5f, 0x48, 0xc9, 0x2a, 0xc3, 0x3e, 0xb8, 0xc5, 0xad, |
| 0xff, 0x07, 0x92, 0x92, 0x27, 0x54, 0xe3, 0x6f, 0x39, 0x50, 0xd2, 0x4d, 0x6f, 0x66, 0x85, 0xb4, |
| 0x9c, 0x15, 0xc7, 0x50, 0x64, 0x51, 0xb6, 0xc4, 0x3e, 0x7b, 0xeb, 0x07, 0x8e, 0x99, 0x19, 0xc2, |
| 0x1c, 0x5b, 0x0b, 0x91, 0x2a, 0x6c, 0xf8, 0x3e, 0xd3, 0x13, 0xbf, 0x31, 0x50, 0xef, 0xcc, 0x6f, |
| 0x79, 0x56, 0x8e, 0x64, 0x54, 0x68, 0xfc, 0x33, 0x0f, 0x32, 0x9d, 0x31, 0xf0, 0x36, 0x14, 0x62, |
| 0x27, 0x76, 0x89, 0x80, 0xe6, 0xc4, 0x4d, 0x7f, 0xe6, 0x96, 0xfd, 0xb9, 0x0b, 0x28, 0x26, 0xa1, |
| 0x17, 0x99, 0xc1, 0xc8, 0x8c, 0x48, 0x78, 0xe9, 0xd8, 0x44, 0x14, 0xa3, 0x1a, 0xe3, 0x77, 0x47, |
| 0x7d, 0xce, 0xc5, 0x3a, 0x94, 0xec, 0xc0, 0x8f, 0x2d, 0x3b, 0x16, 0x95, 0xe8, 0x93, 0xb5, 0xbd, |
| 0x75, 0xc8, 0xed, 0x8c, 0x14, 0x80, 0x62, 0xb9, 0x8e, 0x4d, 0xfc, 0x88, 0xb0, 0x8a, 0xb3, 0x09, |
| 0xd6, 0x09, 0xb7, 0x33, 0x52, 0x00, 0x5a, 0x06, 0x2e, 0x49, 0x48, 0x7d, 0xac, 0x16, 0x79, 0x8d, |
| 0x15, 0x24, 0x7e, 0xb5, 0x10, 0xe2, 0x12, 0x0b, 0xf1, 0xaf, 0x36, 0x1a, 0xdd, 0x7e, 0x84, 0xf0, |
| 0x36, 0xda, 0x50, 0x12, 0xfe, 0xa2, 0x2d, 0xc5, 0xb7, 0xbc, 0x34, 0xa6, 0x6c, 0x4d, 0xb7, 0x48, |
| 0x42, 0x57, 0x84, 0x92, 0x2e, 0x69, 0xe8, 0x89, 0x67, 0x39, 0xae, 0x88, 0x1b, 0x27, 0x1a, 0x7b, |
| 0x50, 0x12, 0xae, 0x5a, 0x0f, 0xa6, 0xf1, 0x1c, 0xee, 0xaf, 0xec, 0x18, 0x6b, 0x24, 0xe5, 0x32, |
| 0xd8, 0xdf, 0x73, 0x50, 0xe4, 0x09, 0x87, 0x07, 0x50, 0xf9, 0x26, 0x0a, 0x7c, 0x53, 0xa4, 0xad, |
| 0xc4, 0xfc, 0xf0, 0xd9, 0xda, 0x61, 0xd0, 0xfb, 0xdd, 0x8e, 0x48, 0x5d, 0xa0, 0x38, 0x02, 0xf5, |
| 0x63, 0xa8, 0x0e, 0x1d, 0x7a, 0x02, 0xcf, 0xf1, 0xad, 0x38, 0x08, 0xc5, 0xe6, 0x8b, 0x4c, 0x3a, |
| 0x5f, 0x87, 0xc4, 0x1a, 0x9a, 0x81, 0xef, 0x4e, 0x99, 0x7b, 0x14, 0x43, 0xa1, 0x8c, 0xae, 0xef, |
| 0xae, 0x98, 0xd1, 0x0a, 0xef, 0xa0, 0xc1, 0x36, 0xa1, 0x44, 0xae, 0x2d, 0x6f, 0xe2, 0x12, 0xf6, |
| 0x3a, 0x2b, 0xfb, 0xdb, 0x4b, 0x2f, 0xa0, 0xe5, 0x4f, 0x8d, 0x54, 0x49, 0xa4, 0xf5, 0x77, 0x25, |
| 0x80, 0xf9, 0xc5, 0xa9, 0x7f, 0x43, 0x32, 0x12, 0xf1, 0xa5, 0xcb, 0x79, 0xba, 0x17, 0xde, 0x90, |
| 0xee, 0xc5, 0xe5, 0x48, 0xa9, 0x50, 0x1a, 0x92, 0x91, 0x95, 0xb8, 0xb1, 0x5a, 0xe2, 0xc9, 0x22, |
| 0xc8, 0x45, 0x57, 0x29, 0x37, 0x5c, 0xf5, 0xff, 0x50, 0xf1, 0x12, 0x37, 0x76, 0x26, 0x2e, 0x31, |
| 0x83, 0x91, 0x0a, 0x3b, 0xd2, 0xae, 0x64, 0x40, 0xca, 0xea, 0x8e, 0x28, 0xae, 0x67, 0x5d, 0x3b, |
| 0x5e, 0xe2, 0xb1, 0x76, 0x2b, 0x19, 0x29, 0x89, 0x9f, 0xc0, 0x5d, 0x72, 0x6d, 0xbb, 0x49, 0xe4, |
| 0x5c, 0x12, 0x33, 0xd5, 0xd9, 0x62, 0xf8, 0x68, 0x26, 0x78, 0x21, 0x94, 0x29, 0x8c, 0xe3, 0x33, |
| 0x95, 0xaa, 0x80, 0xe1, 0xe4, 0x0d, 0x18, 0xa1, 0x53, 0xbb, 0x09, 0x23, 0x94, 0x1f, 0x02, 0x78, |
| 0xd6, 0xb5, 0xe9, 0x12, 0x7f, 0x1c, 0x5f, 0xa8, 0x77, 0x76, 0xa4, 0x5d, 0xd9, 0x28, 0x7b, 0xd6, |
| 0xf5, 0x09, 0x63, 0x30, 0xb1, 0xe3, 0xa7, 0x62, 0x24, 0xc4, 0x8e, 0x2f, 0xc4, 0x2a, 0x94, 0x26, |
| 0x56, 0x4c, 0x63, 0xa8, 0xde, 0xe5, 0x3e, 0x12, 0x24, 0xf5, 0x11, 0xc5, 0x75, 0x62, 0xe2, 0x45, |
| 0xea, 0x36, 0xb3, 0x53, 0x3c, 0xeb, 0x5a, 0xa3, 0x34, 0x13, 0x3a, 0xbe, 0x10, 0xde, 0x17, 0x42, |
| 0xc7, 0xe7, 0xc2, 0x8f, 0x60, 0x2b, 0xf1, 0x9d, 0x6f, 0x13, 0x22, 0xe4, 0xef, 0xb3, 0x93, 0x57, |
| 0x38, 0x8f, 0xab, 0xfc, 0x14, 0x6a, 0x14, 0x7c, 0x12, 0xd2, 0xe1, 0x2b, 0x76, 0x48, 0xa4, 0xaa, |
| 0x0c, 0xa4, 0xea, 0x59, 0xd7, 0xbd, 0x19, 0x93, 0xa9, 0x39, 0x7e, 0x56, 0xed, 0x03, 0xa1, 0xe6, |
| 0xf8, 0x19, 0xb5, 0x3a, 0x28, 0x21, 0x9f, 0x50, 0x86, 0x6a, 0x9d, 0x4f, 0x66, 0x29, 0x4d, 0x1f, |
| 0x8f, 0x15, 0x86, 0xd6, 0x54, 0x6d, 0x30, 0x01, 0x27, 0xf0, 0x2b, 0x90, 0xe3, 0xe9, 0x84, 0xa8, |
| 0x3f, 0x61, 0xdf, 0x9a, 0xda, 0x2d, 0x12, 0x34, 0xb3, 0xec, 0x3b, 0xf4, 0x35, 0x0f, 0xa6, 0x13, |
| 0x12, 0x19, 0x0c, 0xb6, 0x71, 0x05, 0xf7, 0x57, 0x8a, 0x17, 0x47, 0xf1, 0x32, 0x14, 0x5a, 0x86, |
| 0xd1, 0x7a, 0x89, 0x24, 0xca, 0x3f, 0xe8, 0x76, 0x4f, 0xda, 0xad, 0x0e, 0xca, 0x51, 0x42, 0xeb, |
| 0x0c, 0xda, 0xc7, 0x6d, 0x03, 0xe5, 0xe9, 0xbc, 0xde, 0x39, 0x3d, 0x39, 0x41, 0x32, 0x06, 0x28, |
| 0x76, 0x4e, 0x5f, 0x1c, 0xb4, 0x0d, 0x54, 0xa0, 0xeb, 0xee, 0x81, 0xde, 0x3e, 0x1c, 0xa0, 0x22, |
| 0x5d, 0xf7, 0x07, 0x86, 0xd6, 0x39, 0x46, 0x25, 0x5d, 0x56, 0x24, 0x94, 0xd3, 0x65, 0x25, 0x87, |
| 0xf2, 0x3c, 0xbb, 0x66, 0x33, 0x3c, 0x46, 0xf7, 0x74, 0x59, 0xb9, 0x87, 0xb6, 0x75, 0x59, 0xf9, |
| 0x3f, 0xa4, 0xea, 0xb2, 0xf2, 0x21, 0x7a, 0xa0, 0xcb, 0xca, 0x03, 0xf4, 0x50, 0x97, 0x95, 0x87, |
| 0xe8, 0x91, 0x2e, 0x2b, 0x8f, 0x50, 0x43, 0x97, 0x95, 0x8f, 0xd1, 0x63, 0x5d, 0x56, 0x1e, 0xa3, |
| 0x27, 0xba, 0xac, 0x3c, 0x41, 0xcd, 0xc6, 0x9f, 0x25, 0xc8, 0x0f, 0xac, 0xf1, 0x1a, 0xfd, 0x75, |
| 0xa9, 0xc8, 0xe4, 0x7f, 0xf8, 0x22, 0xc3, 0xaf, 0xd8, 0xf8, 0xb7, 0x04, 0xf7, 0x56, 0x7c, 0xfa, |
| 0xe2, 0x51, 0x66, 0xda, 0x95, 0x58, 0x13, 0xd4, 0xdf, 0xe6, 0x53, 0x7a, 0xc6, 0xe3, 0x1d, 0x71, |
| 0x86, 0x5d, 0x8f, 0xa1, 0xba, 0x20, 0x5a, 0xd1, 0x0d, 0x5f, 0x2c, 0x76, 0xc3, 0x5f, 0x6c, 0x7c, |
| 0x0e, 0xf1, 0x4f, 0x46, 0xa6, 0x5d, 0xfe, 0xa7, 0x08, 0xb5, 0x45, 0x29, 0xee, 0x89, 0x97, 0x4c, |
| 0x37, 0xae, 0xdd, 0x62, 0xb4, 0xe7, 0x30, 0x4d, 0xfa, 0x3c, 0xf9, 0xe3, 0x5d, 0x23, 0xce, 0x69, |
| 0x8f, 0xcd, 0x67, 0x7a, 0xac, 0x0e, 0x39, 0xc7, 0x67, 0xc3, 0x52, 0x6d, 0xff, 0x8b, 0xdb, 0x9e, |
| 0x42, 0xf3, 0x8d, 0x9c, 0xe3, 0xd3, 0x3b, 0x8d, 0xdc, 0xe0, 0x8a, 0xd5, 0xfb, 0xb7, 0xb8, 0xd3, |
| 0x97, 0x6e, 0x70, 0x65, 0x30, 0x24, 0x5a, 0x51, 0xad, 0x24, 0xbe, 0x08, 0x42, 0xe7, 0x8f, 0xfc, |
| 0xf3, 0x8f, 0xb6, 0x70, 0xde, 0x32, 0xd0, 0x82, 0xe0, 0x34, 0x74, 0x69, 0x71, 0x8b, 0x83, 0xd7, |
| 0x84, 0x2b, 0xf1, 0xce, 0xa1, 0x30, 0x06, 0x15, 0xb2, 0x99, 0x3c, 0x98, 0x90, 0x88, 0xf5, 0x8d, |
| 0xcd, 0x66, 0x72, 0x6a, 0x66, 0x08, 0x73, 0x3c, 0x5e, 0x18, 0xd8, 0xf8, 0x37, 0xe3, 0xf1, 0x6d, |
| 0xaf, 0xfa, 0x23, 0x8c, 0x6e, 0xcf, 0x41, 0xa6, 0x8f, 0x06, 0x23, 0xd8, 0x1a, 0xbc, 0xec, 0xb5, |
| 0x4d, 0xad, 0xf3, 0x55, 0xeb, 0x44, 0x3b, 0x42, 0xef, 0xe1, 0x1a, 0x00, 0xe3, 0x1c, 0xb4, 0xfa, |
| 0xda, 0x21, 0x92, 0x66, 0x1a, 0xad, 0x9e, 0x66, 0x3e, 0x6f, 0xbf, 0x44, 0x39, 0x7c, 0x07, 0x2a, |
| 0x8c, 0xd3, 0x6d, 0x9d, 0x0e, 0x9e, 0xed, 0xa3, 0x7c, 0xe3, 0x53, 0xc8, 0x69, 0x3e, 0x35, 0xd4, |
| 0x3a, 0x19, 0xa0, 0x2d, 0x50, 0xb4, 0x8e, 0xf9, 0xbb, 0xd3, 0xb6, 0x41, 0x6b, 0x64, 0x15, 0xca, |
| 0x5a, 0xc7, 0x7c, 0xd6, 0x6e, 0x1d, 0xb5, 0x0d, 0x94, 0x6b, 0x7c, 0x03, 0x32, 0x0d, 0x30, 0x45, |
| 0xff, 0xf2, 0xa4, 0x7b, 0x96, 0x31, 0xbb, 0x0b, 0x55, 0xce, 0x79, 0xd1, 0x3b, 0xd1, 0x0e, 0xb5, |
| 0x01, 0x92, 0x66, 0xac, 0x5e, 0xab, 0xdf, 0x3f, 0xeb, 0x1a, 0x47, 0x28, 0x87, 0xb7, 0x01, 0x31, |
| 0x56, 0xab, 0x47, 0xb5, 0x5a, 0x03, 0xad, 0xdb, 0x41, 0xf9, 0x39, 0xf7, 0xf0, 0xb0, 0xdd, 0xef, |
| 0x9b, 0x87, 0xdd, 0xa3, 0x36, 0x92, 0x1b, 0xff, 0xca, 0xcd, 0xab, 0x4d, 0xe6, 0x5b, 0x18, 0xff, |
| 0x49, 0xca, 0xfc, 0x8b, 0x17, 0xce, 0x05, 0xa2, 0xf4, 0x9c, 0xbe, 0xcd, 0x87, 0xf6, 0x2a, 0x1e, |
| 0x0f, 0xee, 0xec, 0xef, 0xbd, 0x8c, 0xa4, 0xfe, 0x09, 0xa8, 0x2b, 0x0c, 0x58, 0xd4, 0x68, 0x0f, |
| 0x64, 0x8f, 0x4e, 0xfc, 0x5d, 0xc3, 0x89, 0xfa, 0x77, 0xd2, 0x4a, 0x93, 0xef, 0x7b, 0x21, 0xaf, |
| 0x17, 0x5f, 0xc8, 0x0f, 0x7e, 0xb7, 0xa5, 0x07, 0xf6, 0x17, 0x89, 0x8e, 0xd5, 0x2c, 0x57, 0x7a, |
| 0xd9, 0x0b, 0x54, 0x36, 0xa9, 0x2f, 0xcc, 0x9e, 0xff, 0x70, 0xe7, 0x89, 0xcb, 0x7f, 0x0e, 0x30, |
| 0x67, 0xae, 0xb8, 0xed, 0x76, 0xf6, 0xb6, 0xe5, 0xcc, 0xb1, 0x0e, 0x0e, 0x7f, 0xdf, 0x1a, 0x3b, |
| 0xf1, 0x45, 0x72, 0xde, 0xb4, 0x03, 0x6f, 0x8f, 0x1e, 0xe4, 0x29, 0xb1, 0x83, 0x68, 0x1a, 0xc5, |
| 0x44, 0x90, 0xe2, 0x5c, 0x7b, 0xdf, 0xff, 0xd7, 0xff, 0x79, 0x91, 0xc9, 0x3e, 0xfb, 0x6f, 0x00, |
| 0x00, 0x00, 0xff, 0xff, 0x29, 0x5a, 0xd3, 0x93, 0x1f, 0x18, 0x00, 0x00, |
| } |