extension.pb.go 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: extension.proto
  3. /*
  4. Package openapiextension_v1 is a generated protocol buffer package.
  5. It is generated from these files:
  6. extension.proto
  7. It has these top-level messages:
  8. Version
  9. ExtensionHandlerRequest
  10. ExtensionHandlerResponse
  11. Wrapper
  12. */
  13. package openapiextension_v1
  14. import proto "github.com/golang/protobuf/proto"
  15. import fmt "fmt"
  16. import math "math"
  17. import google_protobuf "github.com/golang/protobuf/ptypes/any"
  18. // Reference imports to suppress errors if they are not otherwise used.
  19. var _ = proto.Marshal
  20. var _ = fmt.Errorf
  21. var _ = math.Inf
  22. // This is a compile-time assertion to ensure that this generated file
  23. // is compatible with the proto package it is being compiled against.
  24. // A compilation error at this line likely means your copy of the
  25. // proto package needs to be updated.
  26. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  27. // The version number of OpenAPI compiler.
  28. type Version struct {
  29. Major int32 `protobuf:"varint,1,opt,name=major" json:"major,omitempty"`
  30. Minor int32 `protobuf:"varint,2,opt,name=minor" json:"minor,omitempty"`
  31. Patch int32 `protobuf:"varint,3,opt,name=patch" json:"patch,omitempty"`
  32. // A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should
  33. // be empty for mainline stable releases.
  34. Suffix string `protobuf:"bytes,4,opt,name=suffix" json:"suffix,omitempty"`
  35. }
  36. func (m *Version) Reset() { *m = Version{} }
  37. func (m *Version) String() string { return proto.CompactTextString(m) }
  38. func (*Version) ProtoMessage() {}
  39. func (*Version) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  40. func (m *Version) GetMajor() int32 {
  41. if m != nil {
  42. return m.Major
  43. }
  44. return 0
  45. }
  46. func (m *Version) GetMinor() int32 {
  47. if m != nil {
  48. return m.Minor
  49. }
  50. return 0
  51. }
  52. func (m *Version) GetPatch() int32 {
  53. if m != nil {
  54. return m.Patch
  55. }
  56. return 0
  57. }
  58. func (m *Version) GetSuffix() string {
  59. if m != nil {
  60. return m.Suffix
  61. }
  62. return ""
  63. }
  64. // An encoded Request is written to the ExtensionHandler's stdin.
  65. type ExtensionHandlerRequest struct {
  66. // The OpenAPI descriptions that were explicitly listed on the command line.
  67. // The specifications will appear in the order they are specified to gnostic.
  68. Wrapper *Wrapper `protobuf:"bytes,1,opt,name=wrapper" json:"wrapper,omitempty"`
  69. // The version number of openapi compiler.
  70. CompilerVersion *Version `protobuf:"bytes,3,opt,name=compiler_version,json=compilerVersion" json:"compiler_version,omitempty"`
  71. }
  72. func (m *ExtensionHandlerRequest) Reset() { *m = ExtensionHandlerRequest{} }
  73. func (m *ExtensionHandlerRequest) String() string { return proto.CompactTextString(m) }
  74. func (*ExtensionHandlerRequest) ProtoMessage() {}
  75. func (*ExtensionHandlerRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  76. func (m *ExtensionHandlerRequest) GetWrapper() *Wrapper {
  77. if m != nil {
  78. return m.Wrapper
  79. }
  80. return nil
  81. }
  82. func (m *ExtensionHandlerRequest) GetCompilerVersion() *Version {
  83. if m != nil {
  84. return m.CompilerVersion
  85. }
  86. return nil
  87. }
  88. // The extensions writes an encoded ExtensionHandlerResponse to stdout.
  89. type ExtensionHandlerResponse struct {
  90. // true if the extension is handled by the extension handler; false otherwise
  91. Handled bool `protobuf:"varint,1,opt,name=handled" json:"handled,omitempty"`
  92. // Error message. If non-empty, the extension handling failed.
  93. // The extension handler process should exit with status code zero
  94. // even if it reports an error in this way.
  95. //
  96. // This should be used to indicate errors which prevent the extension from
  97. // operating as intended. Errors which indicate a problem in gnostic
  98. // itself -- such as the input Document being unparseable -- should be
  99. // reported by writing a message to stderr and exiting with a non-zero
  100. // status code.
  101. Error []string `protobuf:"bytes,2,rep,name=error" json:"error,omitempty"`
  102. // text output
  103. Value *google_protobuf.Any `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
  104. }
  105. func (m *ExtensionHandlerResponse) Reset() { *m = ExtensionHandlerResponse{} }
  106. func (m *ExtensionHandlerResponse) String() string { return proto.CompactTextString(m) }
  107. func (*ExtensionHandlerResponse) ProtoMessage() {}
  108. func (*ExtensionHandlerResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  109. func (m *ExtensionHandlerResponse) GetHandled() bool {
  110. if m != nil {
  111. return m.Handled
  112. }
  113. return false
  114. }
  115. func (m *ExtensionHandlerResponse) GetError() []string {
  116. if m != nil {
  117. return m.Error
  118. }
  119. return nil
  120. }
  121. func (m *ExtensionHandlerResponse) GetValue() *google_protobuf.Any {
  122. if m != nil {
  123. return m.Value
  124. }
  125. return nil
  126. }
  127. type Wrapper struct {
  128. // version of the OpenAPI specification in which this extension was written.
  129. Version string `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
  130. // Name of the extension
  131. ExtensionName string `protobuf:"bytes,2,opt,name=extension_name,json=extensionName" json:"extension_name,omitempty"`
  132. // Must be a valid yaml for the proto
  133. Yaml string `protobuf:"bytes,3,opt,name=yaml" json:"yaml,omitempty"`
  134. }
  135. func (m *Wrapper) Reset() { *m = Wrapper{} }
  136. func (m *Wrapper) String() string { return proto.CompactTextString(m) }
  137. func (*Wrapper) ProtoMessage() {}
  138. func (*Wrapper) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  139. func (m *Wrapper) GetVersion() string {
  140. if m != nil {
  141. return m.Version
  142. }
  143. return ""
  144. }
  145. func (m *Wrapper) GetExtensionName() string {
  146. if m != nil {
  147. return m.ExtensionName
  148. }
  149. return ""
  150. }
  151. func (m *Wrapper) GetYaml() string {
  152. if m != nil {
  153. return m.Yaml
  154. }
  155. return ""
  156. }
  157. func init() {
  158. proto.RegisterType((*Version)(nil), "openapiextension.v1.Version")
  159. proto.RegisterType((*ExtensionHandlerRequest)(nil), "openapiextension.v1.ExtensionHandlerRequest")
  160. proto.RegisterType((*ExtensionHandlerResponse)(nil), "openapiextension.v1.ExtensionHandlerResponse")
  161. proto.RegisterType((*Wrapper)(nil), "openapiextension.v1.Wrapper")
  162. }
  163. func init() { proto.RegisterFile("extension.proto", fileDescriptor0) }
  164. var fileDescriptor0 = []byte{
  165. // 357 bytes of a gzipped FileDescriptorProto
  166. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0x4d, 0x4b, 0xc3, 0x40,
  167. 0x18, 0x84, 0x49, 0xbf, 0x62, 0x56, 0x6c, 0x65, 0x2d, 0x1a, 0xc5, 0x43, 0x09, 0x08, 0x45, 0x64,
  168. 0x4b, 0x15, 0xbc, 0xb7, 0x50, 0xd4, 0x8b, 0x2d, 0x7b, 0xa8, 0x37, 0xcb, 0x36, 0x7d, 0x9b, 0x46,
  169. 0x92, 0xdd, 0x75, 0xf3, 0x61, 0xfb, 0x57, 0x3c, 0xfa, 0x4b, 0x25, 0xbb, 0x49, 0x3d, 0xa8, 0xb7,
  170. 0xcc, 0xc3, 0x24, 0xef, 0xcc, 0x04, 0x75, 0x60, 0x9b, 0x02, 0x4f, 0x42, 0xc1, 0x89, 0x54, 0x22,
  171. 0x15, 0xf8, 0x44, 0x48, 0xe0, 0x4c, 0x86, 0x3f, 0x3c, 0x1f, 0x5e, 0x9c, 0x07, 0x42, 0x04, 0x11,
  172. 0x0c, 0xb4, 0x65, 0x99, 0xad, 0x07, 0x8c, 0xef, 0x8c, 0xdf, 0xf3, 0x91, 0x3d, 0x07, 0x55, 0x18,
  173. 0x71, 0x17, 0x35, 0x63, 0xf6, 0x26, 0x94, 0x6b, 0xf5, 0xac, 0x7e, 0x93, 0x1a, 0xa1, 0x69, 0xc8,
  174. 0x85, 0x72, 0x6b, 0x25, 0x2d, 0x44, 0x41, 0x25, 0x4b, 0xfd, 0x8d, 0x5b, 0x37, 0x54, 0x0b, 0x7c,
  175. 0x8a, 0x5a, 0x49, 0xb6, 0x5e, 0x87, 0x5b, 0xb7, 0xd1, 0xb3, 0xfa, 0x0e, 0x2d, 0x95, 0xf7, 0x69,
  176. 0xa1, 0xb3, 0x49, 0x15, 0xe8, 0x91, 0xf1, 0x55, 0x04, 0x8a, 0xc2, 0x7b, 0x06, 0x49, 0x8a, 0xef,
  177. 0x91, 0xfd, 0xa1, 0x98, 0x94, 0x60, 0xee, 0x1e, 0xde, 0x5e, 0x92, 0x3f, 0x2a, 0x90, 0x17, 0xe3,
  178. 0xa1, 0x95, 0x19, 0x3f, 0xa0, 0x63, 0x5f, 0xc4, 0x32, 0x8c, 0x40, 0x2d, 0x72, 0xd3, 0x40, 0x87,
  179. 0xf9, 0xef, 0x03, 0x65, 0x4b, 0xda, 0xa9, 0xde, 0x2a, 0x81, 0x97, 0x23, 0xf7, 0x77, 0xb6, 0x44,
  180. 0x0a, 0x9e, 0x00, 0x76, 0x91, 0xbd, 0xd1, 0x68, 0xa5, 0xc3, 0x1d, 0xd0, 0x4a, 0x16, 0x03, 0x80,
  181. 0x52, 0x7a, 0x96, 0x7a, 0xdf, 0xa1, 0x46, 0xe0, 0x6b, 0xd4, 0xcc, 0x59, 0x94, 0x41, 0x99, 0xa4,
  182. 0x4b, 0xcc, 0xf0, 0xa4, 0x1a, 0x9e, 0x8c, 0xf8, 0x8e, 0x1a, 0x8b, 0xf7, 0x8a, 0xec, 0xb2, 0x54,
  183. 0x71, 0xa6, 0xaa, 0x60, 0xe9, 0xe1, 0x2a, 0x89, 0xaf, 0x50, 0x7b, 0xdf, 0x62, 0xc1, 0x59, 0x0c,
  184. 0xfa, 0x37, 0x38, 0xf4, 0x68, 0x4f, 0x9f, 0x59, 0x0c, 0x18, 0xa3, 0xc6, 0x8e, 0xc5, 0x91, 0x3e,
  185. 0xeb, 0x50, 0xfd, 0x3c, 0xbe, 0x41, 0x6d, 0xa1, 0x02, 0x12, 0x70, 0x91, 0xa4, 0xa1, 0x4f, 0xf2,
  186. 0xe1, 0x18, 0x4f, 0x25, 0xf0, 0xd1, 0xec, 0x69, 0x5f, 0x77, 0x3e, 0x9c, 0x59, 0x5f, 0xb5, 0xfa,
  187. 0x74, 0x34, 0x59, 0xb6, 0x74, 0xc4, 0xbb, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x84, 0x5c, 0x6b,
  188. 0x80, 0x51, 0x02, 0x00, 0x00,
  189. }