github.com/hxx258456/ccgo@v0.0.5-0.20230213014102-48b35f46f66f/go-control-plane/envoy/type/http_status.pb.go (about)

     1  // Code generated by protoc-gen-go. DO NOT EDIT.
     2  // versions:
     3  // 	protoc-gen-go v1.25.0
     4  // 	protoc        v3.16.0
     5  // source: envoy/type/http_status.proto
     6  
     7  package envoy_type
     8  
     9  import (
    10  	_ "github.com/cncf/xds/go/udpa/annotations"
    11  	_ "github.com/envoyproxy/protoc-gen-validate/validate"
    12  	proto "github.com/golang/protobuf/proto"
    13  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    14  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    15  	reflect "reflect"
    16  	sync "sync"
    17  )
    18  
    19  const (
    20  	// Verify that this generated code is sufficiently up-to-date.
    21  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    22  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    23  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    24  )
    25  
    26  // This is a compile-time assertion that a sufficiently up-to-date version
    27  // of the legacy proto package is being used.
    28  const _ = proto.ProtoPackageIsVersion4
    29  
    30  // HTTP response codes supported in Envoy.
    31  // For more details: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
    32  type StatusCode int32
    33  
    34  const (
    35  	// Empty - This code not part of the HTTP status code specification, but it is needed for proto
    36  	// `enum` type.
    37  	StatusCode_Empty                         StatusCode = 0
    38  	StatusCode_Continue                      StatusCode = 100
    39  	StatusCode_OK                            StatusCode = 200
    40  	StatusCode_Created                       StatusCode = 201
    41  	StatusCode_Accepted                      StatusCode = 202
    42  	StatusCode_NonAuthoritativeInformation   StatusCode = 203
    43  	StatusCode_NoContent                     StatusCode = 204
    44  	StatusCode_ResetContent                  StatusCode = 205
    45  	StatusCode_PartialContent                StatusCode = 206
    46  	StatusCode_MultiStatus                   StatusCode = 207
    47  	StatusCode_AlreadyReported               StatusCode = 208
    48  	StatusCode_IMUsed                        StatusCode = 226
    49  	StatusCode_MultipleChoices               StatusCode = 300
    50  	StatusCode_MovedPermanently              StatusCode = 301
    51  	StatusCode_Found                         StatusCode = 302
    52  	StatusCode_SeeOther                      StatusCode = 303
    53  	StatusCode_NotModified                   StatusCode = 304
    54  	StatusCode_UseProxy                      StatusCode = 305
    55  	StatusCode_TemporaryRedirect             StatusCode = 307
    56  	StatusCode_PermanentRedirect             StatusCode = 308
    57  	StatusCode_BadRequest                    StatusCode = 400
    58  	StatusCode_Unauthorized                  StatusCode = 401
    59  	StatusCode_PaymentRequired               StatusCode = 402
    60  	StatusCode_Forbidden                     StatusCode = 403
    61  	StatusCode_NotFound                      StatusCode = 404
    62  	StatusCode_MethodNotAllowed              StatusCode = 405
    63  	StatusCode_NotAcceptable                 StatusCode = 406
    64  	StatusCode_ProxyAuthenticationRequired   StatusCode = 407
    65  	StatusCode_RequestTimeout                StatusCode = 408
    66  	StatusCode_Conflict                      StatusCode = 409
    67  	StatusCode_Gone                          StatusCode = 410
    68  	StatusCode_LengthRequired                StatusCode = 411
    69  	StatusCode_PreconditionFailed            StatusCode = 412
    70  	StatusCode_PayloadTooLarge               StatusCode = 413
    71  	StatusCode_URITooLong                    StatusCode = 414
    72  	StatusCode_UnsupportedMediaType          StatusCode = 415
    73  	StatusCode_RangeNotSatisfiable           StatusCode = 416
    74  	StatusCode_ExpectationFailed             StatusCode = 417
    75  	StatusCode_MisdirectedRequest            StatusCode = 421
    76  	StatusCode_UnprocessableEntity           StatusCode = 422
    77  	StatusCode_Locked                        StatusCode = 423
    78  	StatusCode_FailedDependency              StatusCode = 424
    79  	StatusCode_UpgradeRequired               StatusCode = 426
    80  	StatusCode_PreconditionRequired          StatusCode = 428
    81  	StatusCode_TooManyRequests               StatusCode = 429
    82  	StatusCode_RequestHeaderFieldsTooLarge   StatusCode = 431
    83  	StatusCode_InternalServerError           StatusCode = 500
    84  	StatusCode_NotImplemented                StatusCode = 501
    85  	StatusCode_BadGateway                    StatusCode = 502
    86  	StatusCode_ServiceUnavailable            StatusCode = 503
    87  	StatusCode_GatewayTimeout                StatusCode = 504
    88  	StatusCode_HTTPVersionNotSupported       StatusCode = 505
    89  	StatusCode_VariantAlsoNegotiates         StatusCode = 506
    90  	StatusCode_InsufficientStorage           StatusCode = 507
    91  	StatusCode_LoopDetected                  StatusCode = 508
    92  	StatusCode_NotExtended                   StatusCode = 510
    93  	StatusCode_NetworkAuthenticationRequired StatusCode = 511
    94  )
    95  
    96  // Enum value maps for StatusCode.
    97  var (
    98  	StatusCode_name = map[int32]string{
    99  		0:   "Empty",
   100  		100: "Continue",
   101  		200: "OK",
   102  		201: "Created",
   103  		202: "Accepted",
   104  		203: "NonAuthoritativeInformation",
   105  		204: "NoContent",
   106  		205: "ResetContent",
   107  		206: "PartialContent",
   108  		207: "MultiStatus",
   109  		208: "AlreadyReported",
   110  		226: "IMUsed",
   111  		300: "MultipleChoices",
   112  		301: "MovedPermanently",
   113  		302: "Found",
   114  		303: "SeeOther",
   115  		304: "NotModified",
   116  		305: "UseProxy",
   117  		307: "TemporaryRedirect",
   118  		308: "PermanentRedirect",
   119  		400: "BadRequest",
   120  		401: "Unauthorized",
   121  		402: "PaymentRequired",
   122  		403: "Forbidden",
   123  		404: "NotFound",
   124  		405: "MethodNotAllowed",
   125  		406: "NotAcceptable",
   126  		407: "ProxyAuthenticationRequired",
   127  		408: "RequestTimeout",
   128  		409: "Conflict",
   129  		410: "Gone",
   130  		411: "LengthRequired",
   131  		412: "PreconditionFailed",
   132  		413: "PayloadTooLarge",
   133  		414: "URITooLong",
   134  		415: "UnsupportedMediaType",
   135  		416: "RangeNotSatisfiable",
   136  		417: "ExpectationFailed",
   137  		421: "MisdirectedRequest",
   138  		422: "UnprocessableEntity",
   139  		423: "Locked",
   140  		424: "FailedDependency",
   141  		426: "UpgradeRequired",
   142  		428: "PreconditionRequired",
   143  		429: "TooManyRequests",
   144  		431: "RequestHeaderFieldsTooLarge",
   145  		500: "InternalServerError",
   146  		501: "NotImplemented",
   147  		502: "BadGateway",
   148  		503: "ServiceUnavailable",
   149  		504: "GatewayTimeout",
   150  		505: "HTTPVersionNotSupported",
   151  		506: "VariantAlsoNegotiates",
   152  		507: "InsufficientStorage",
   153  		508: "LoopDetected",
   154  		510: "NotExtended",
   155  		511: "NetworkAuthenticationRequired",
   156  	}
   157  	StatusCode_value = map[string]int32{
   158  		"Empty":                         0,
   159  		"Continue":                      100,
   160  		"OK":                            200,
   161  		"Created":                       201,
   162  		"Accepted":                      202,
   163  		"NonAuthoritativeInformation":   203,
   164  		"NoContent":                     204,
   165  		"ResetContent":                  205,
   166  		"PartialContent":                206,
   167  		"MultiStatus":                   207,
   168  		"AlreadyReported":               208,
   169  		"IMUsed":                        226,
   170  		"MultipleChoices":               300,
   171  		"MovedPermanently":              301,
   172  		"Found":                         302,
   173  		"SeeOther":                      303,
   174  		"NotModified":                   304,
   175  		"UseProxy":                      305,
   176  		"TemporaryRedirect":             307,
   177  		"PermanentRedirect":             308,
   178  		"BadRequest":                    400,
   179  		"Unauthorized":                  401,
   180  		"PaymentRequired":               402,
   181  		"Forbidden":                     403,
   182  		"NotFound":                      404,
   183  		"MethodNotAllowed":              405,
   184  		"NotAcceptable":                 406,
   185  		"ProxyAuthenticationRequired":   407,
   186  		"RequestTimeout":                408,
   187  		"Conflict":                      409,
   188  		"Gone":                          410,
   189  		"LengthRequired":                411,
   190  		"PreconditionFailed":            412,
   191  		"PayloadTooLarge":               413,
   192  		"URITooLong":                    414,
   193  		"UnsupportedMediaType":          415,
   194  		"RangeNotSatisfiable":           416,
   195  		"ExpectationFailed":             417,
   196  		"MisdirectedRequest":            421,
   197  		"UnprocessableEntity":           422,
   198  		"Locked":                        423,
   199  		"FailedDependency":              424,
   200  		"UpgradeRequired":               426,
   201  		"PreconditionRequired":          428,
   202  		"TooManyRequests":               429,
   203  		"RequestHeaderFieldsTooLarge":   431,
   204  		"InternalServerError":           500,
   205  		"NotImplemented":                501,
   206  		"BadGateway":                    502,
   207  		"ServiceUnavailable":            503,
   208  		"GatewayTimeout":                504,
   209  		"HTTPVersionNotSupported":       505,
   210  		"VariantAlsoNegotiates":         506,
   211  		"InsufficientStorage":           507,
   212  		"LoopDetected":                  508,
   213  		"NotExtended":                   510,
   214  		"NetworkAuthenticationRequired": 511,
   215  	}
   216  )
   217  
   218  func (x StatusCode) Enum() *StatusCode {
   219  	p := new(StatusCode)
   220  	*p = x
   221  	return p
   222  }
   223  
   224  func (x StatusCode) String() string {
   225  	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
   226  }
   227  
   228  func (StatusCode) Descriptor() protoreflect.EnumDescriptor {
   229  	return file_envoy_type_http_status_proto_enumTypes[0].Descriptor()
   230  }
   231  
   232  func (StatusCode) Type() protoreflect.EnumType {
   233  	return &file_envoy_type_http_status_proto_enumTypes[0]
   234  }
   235  
   236  func (x StatusCode) Number() protoreflect.EnumNumber {
   237  	return protoreflect.EnumNumber(x)
   238  }
   239  
   240  // Deprecated: Use StatusCode.Descriptor instead.
   241  func (StatusCode) EnumDescriptor() ([]byte, []int) {
   242  	return file_envoy_type_http_status_proto_rawDescGZIP(), []int{0}
   243  }
   244  
   245  // HTTP status.
   246  type HttpStatus struct {
   247  	state         protoimpl.MessageState
   248  	sizeCache     protoimpl.SizeCache
   249  	unknownFields protoimpl.UnknownFields
   250  
   251  	// Supplies HTTP response code.
   252  	Code StatusCode `protobuf:"varint,1,opt,name=code,proto3,enum=envoy.type.StatusCode" json:"code,omitempty"`
   253  }
   254  
   255  func (x *HttpStatus) Reset() {
   256  	*x = HttpStatus{}
   257  	if protoimpl.UnsafeEnabled {
   258  		mi := &file_envoy_type_http_status_proto_msgTypes[0]
   259  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   260  		ms.StoreMessageInfo(mi)
   261  	}
   262  }
   263  
   264  func (x *HttpStatus) String() string {
   265  	return protoimpl.X.MessageStringOf(x)
   266  }
   267  
   268  func (*HttpStatus) ProtoMessage() {}
   269  
   270  func (x *HttpStatus) ProtoReflect() protoreflect.Message {
   271  	mi := &file_envoy_type_http_status_proto_msgTypes[0]
   272  	if protoimpl.UnsafeEnabled && x != nil {
   273  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   274  		if ms.LoadMessageInfo() == nil {
   275  			ms.StoreMessageInfo(mi)
   276  		}
   277  		return ms
   278  	}
   279  	return mi.MessageOf(x)
   280  }
   281  
   282  // Deprecated: Use HttpStatus.ProtoReflect.Descriptor instead.
   283  func (*HttpStatus) Descriptor() ([]byte, []int) {
   284  	return file_envoy_type_http_status_proto_rawDescGZIP(), []int{0}
   285  }
   286  
   287  func (x *HttpStatus) GetCode() StatusCode {
   288  	if x != nil {
   289  		return x.Code
   290  	}
   291  	return StatusCode_Empty
   292  }
   293  
   294  var File_envoy_type_http_status_proto protoreflect.FileDescriptor
   295  
   296  var file_envoy_type_http_status_proto_rawDesc = []byte{
   297  	0x0a, 0x1c, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x2f, 0x68, 0x74, 0x74,
   298  	0x70, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
   299  	0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x1d, 0x75, 0x64, 0x70, 0x61,
   300  	0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 0x61,
   301  	0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69, 0x64,
   302  	0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f,
   303  	0x74, 0x6f, 0x22, 0x44, 0x0a, 0x0a, 0x48, 0x74, 0x74, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
   304  	0x12, 0x36, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16,
   305  	0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74,
   306  	0x75, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x82, 0x01, 0x04, 0x10, 0x01,
   307  	0x20, 0x00, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x2a, 0xb5, 0x09, 0x0a, 0x0a, 0x53, 0x74, 0x61,
   308  	0x74, 0x75, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79,
   309  	0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x10, 0x64,
   310  	0x12, 0x07, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0xc8, 0x01, 0x12, 0x0c, 0x0a, 0x07, 0x43, 0x72, 0x65,
   311  	0x61, 0x74, 0x65, 0x64, 0x10, 0xc9, 0x01, 0x12, 0x0d, 0x0a, 0x08, 0x41, 0x63, 0x63, 0x65, 0x70,
   312  	0x74, 0x65, 0x64, 0x10, 0xca, 0x01, 0x12, 0x20, 0x0a, 0x1b, 0x4e, 0x6f, 0x6e, 0x41, 0x75, 0x74,
   313  	0x68, 0x6f, 0x72, 0x69, 0x74, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
   314  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x10, 0xcb, 0x01, 0x12, 0x0e, 0x0a, 0x09, 0x4e, 0x6f, 0x43, 0x6f,
   315  	0x6e, 0x74, 0x65, 0x6e, 0x74, 0x10, 0xcc, 0x01, 0x12, 0x11, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x65,
   316  	0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x10, 0xcd, 0x01, 0x12, 0x13, 0x0a, 0x0e, 0x50,
   317  	0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x10, 0xce, 0x01,
   318  	0x12, 0x10, 0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x10,
   319  	0xcf, 0x01, 0x12, 0x14, 0x0a, 0x0f, 0x41, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x52, 0x65, 0x70,
   320  	0x6f, 0x72, 0x74, 0x65, 0x64, 0x10, 0xd0, 0x01, 0x12, 0x0b, 0x0a, 0x06, 0x49, 0x4d, 0x55, 0x73,
   321  	0x65, 0x64, 0x10, 0xe2, 0x01, 0x12, 0x14, 0x0a, 0x0f, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c,
   322  	0x65, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x73, 0x10, 0xac, 0x02, 0x12, 0x15, 0x0a, 0x10, 0x4d,
   323  	0x6f, 0x76, 0x65, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x10,
   324  	0xad, 0x02, 0x12, 0x0a, 0x0a, 0x05, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x10, 0xae, 0x02, 0x12, 0x0d,
   325  	0x0a, 0x08, 0x53, 0x65, 0x65, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x10, 0xaf, 0x02, 0x12, 0x10, 0x0a,
   326  	0x0b, 0x4e, 0x6f, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x10, 0xb0, 0x02, 0x12,
   327  	0x0d, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x10, 0xb1, 0x02, 0x12, 0x16,
   328  	0x0a, 0x11, 0x54, 0x65, 0x6d, 0x70, 0x6f, 0x72, 0x61, 0x72, 0x79, 0x52, 0x65, 0x64, 0x69, 0x72,
   329  	0x65, 0x63, 0x74, 0x10, 0xb3, 0x02, 0x12, 0x16, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x6d, 0x61, 0x6e,
   330  	0x65, 0x6e, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x10, 0xb4, 0x02, 0x12, 0x0f,
   331  	0x0a, 0x0a, 0x42, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x10, 0x90, 0x03, 0x12,
   332  	0x11, 0x0a, 0x0c, 0x55, 0x6e, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x10,
   333  	0x91, 0x03, 0x12, 0x14, 0x0a, 0x0f, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71,
   334  	0x75, 0x69, 0x72, 0x65, 0x64, 0x10, 0x92, 0x03, 0x12, 0x0e, 0x0a, 0x09, 0x46, 0x6f, 0x72, 0x62,
   335  	0x69, 0x64, 0x64, 0x65, 0x6e, 0x10, 0x93, 0x03, 0x12, 0x0d, 0x0a, 0x08, 0x4e, 0x6f, 0x74, 0x46,
   336  	0x6f, 0x75, 0x6e, 0x64, 0x10, 0x94, 0x03, 0x12, 0x15, 0x0a, 0x10, 0x4d, 0x65, 0x74, 0x68, 0x6f,
   337  	0x64, 0x4e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x10, 0x95, 0x03, 0x12, 0x12,
   338  	0x0a, 0x0d, 0x4e, 0x6f, 0x74, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x10,
   339  	0x96, 0x03, 0x12, 0x20, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x41, 0x75, 0x74, 0x68, 0x65,
   340  	0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
   341  	0x64, 0x10, 0x97, 0x03, 0x12, 0x13, 0x0a, 0x0e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54,
   342  	0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x10, 0x98, 0x03, 0x12, 0x0d, 0x0a, 0x08, 0x43, 0x6f, 0x6e,
   343  	0x66, 0x6c, 0x69, 0x63, 0x74, 0x10, 0x99, 0x03, 0x12, 0x09, 0x0a, 0x04, 0x47, 0x6f, 0x6e, 0x65,
   344  	0x10, 0x9a, 0x03, 0x12, 0x13, 0x0a, 0x0e, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x52, 0x65, 0x71,
   345  	0x75, 0x69, 0x72, 0x65, 0x64, 0x10, 0x9b, 0x03, 0x12, 0x17, 0x0a, 0x12, 0x50, 0x72, 0x65, 0x63,
   346  	0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x10, 0x9c,
   347  	0x03, 0x12, 0x14, 0x0a, 0x0f, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x54, 0x6f, 0x6f, 0x4c,
   348  	0x61, 0x72, 0x67, 0x65, 0x10, 0x9d, 0x03, 0x12, 0x0f, 0x0a, 0x0a, 0x55, 0x52, 0x49, 0x54, 0x6f,
   349  	0x6f, 0x4c, 0x6f, 0x6e, 0x67, 0x10, 0x9e, 0x03, 0x12, 0x19, 0x0a, 0x14, 0x55, 0x6e, 0x73, 0x75,
   350  	0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x54, 0x79, 0x70, 0x65,
   351  	0x10, 0x9f, 0x03, 0x12, 0x18, 0x0a, 0x13, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x4e, 0x6f, 0x74, 0x53,
   352  	0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x10, 0xa0, 0x03, 0x12, 0x16, 0x0a,
   353  	0x11, 0x45, 0x78, 0x70, 0x65, 0x63, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x61, 0x69, 0x6c,
   354  	0x65, 0x64, 0x10, 0xa1, 0x03, 0x12, 0x17, 0x0a, 0x12, 0x4d, 0x69, 0x73, 0x64, 0x69, 0x72, 0x65,
   355  	0x63, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x10, 0xa5, 0x03, 0x12, 0x18,
   356  	0x0a, 0x13, 0x55, 0x6e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x45,
   357  	0x6e, 0x74, 0x69, 0x74, 0x79, 0x10, 0xa6, 0x03, 0x12, 0x0b, 0x0a, 0x06, 0x4c, 0x6f, 0x63, 0x6b,
   358  	0x65, 0x64, 0x10, 0xa7, 0x03, 0x12, 0x15, 0x0a, 0x10, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44,
   359  	0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x79, 0x10, 0xa8, 0x03, 0x12, 0x14, 0x0a, 0x0f,
   360  	0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x10,
   361  	0xaa, 0x03, 0x12, 0x19, 0x0a, 0x14, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
   362  	0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x10, 0xac, 0x03, 0x12, 0x14, 0x0a,
   363  	0x0f, 0x54, 0x6f, 0x6f, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73,
   364  	0x10, 0xad, 0x03, 0x12, 0x20, 0x0a, 0x1b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65,
   365  	0x61, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x54, 0x6f, 0x6f, 0x4c, 0x61, 0x72,
   366  	0x67, 0x65, 0x10, 0xaf, 0x03, 0x12, 0x18, 0x0a, 0x13, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
   367  	0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0xf4, 0x03, 0x12,
   368  	0x13, 0x0a, 0x0e, 0x4e, 0x6f, 0x74, 0x49, 0x6d, 0x70, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x65,
   369  	0x64, 0x10, 0xf5, 0x03, 0x12, 0x0f, 0x0a, 0x0a, 0x42, 0x61, 0x64, 0x47, 0x61, 0x74, 0x65, 0x77,
   370  	0x61, 0x79, 0x10, 0xf6, 0x03, 0x12, 0x17, 0x0a, 0x12, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
   371  	0x55, 0x6e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x10, 0xf7, 0x03, 0x12, 0x13,
   372  	0x0a, 0x0e, 0x47, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74,
   373  	0x10, 0xf8, 0x03, 0x12, 0x1c, 0x0a, 0x17, 0x48, 0x54, 0x54, 0x50, 0x56, 0x65, 0x72, 0x73, 0x69,
   374  	0x6f, 0x6e, 0x4e, 0x6f, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x10, 0xf9,
   375  	0x03, 0x12, 0x1a, 0x0a, 0x15, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, 0x41, 0x6c, 0x73, 0x6f,
   376  	0x4e, 0x65, 0x67, 0x6f, 0x74, 0x69, 0x61, 0x74, 0x65, 0x73, 0x10, 0xfa, 0x03, 0x12, 0x18, 0x0a,
   377  	0x13, 0x49, 0x6e, 0x73, 0x75, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x6f,
   378  	0x72, 0x61, 0x67, 0x65, 0x10, 0xfb, 0x03, 0x12, 0x11, 0x0a, 0x0c, 0x4c, 0x6f, 0x6f, 0x70, 0x44,
   379  	0x65, 0x74, 0x65, 0x63, 0x74, 0x65, 0x64, 0x10, 0xfc, 0x03, 0x12, 0x10, 0x0a, 0x0b, 0x4e, 0x6f,
   380  	0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x10, 0xfe, 0x03, 0x12, 0x22, 0x0a, 0x1d,
   381  	0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63,
   382  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x10, 0xff, 0x03,
   383  	0x42, 0x35, 0x0a, 0x18, 0x69, 0x6f, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x70, 0x72, 0x6f, 0x78,
   384  	0x79, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x48, 0x74,
   385  	0x74, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0xba,
   386  	0x80, 0xc8, 0xd1, 0x06, 0x02, 0x10, 0x01, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   387  }
   388  
   389  var (
   390  	file_envoy_type_http_status_proto_rawDescOnce sync.Once
   391  	file_envoy_type_http_status_proto_rawDescData = file_envoy_type_http_status_proto_rawDesc
   392  )
   393  
   394  func file_envoy_type_http_status_proto_rawDescGZIP() []byte {
   395  	file_envoy_type_http_status_proto_rawDescOnce.Do(func() {
   396  		file_envoy_type_http_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_envoy_type_http_status_proto_rawDescData)
   397  	})
   398  	return file_envoy_type_http_status_proto_rawDescData
   399  }
   400  
   401  var file_envoy_type_http_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
   402  var file_envoy_type_http_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
   403  var file_envoy_type_http_status_proto_goTypes = []interface{}{
   404  	(StatusCode)(0),    // 0: envoy.type.StatusCode
   405  	(*HttpStatus)(nil), // 1: envoy.type.HttpStatus
   406  }
   407  var file_envoy_type_http_status_proto_depIdxs = []int32{
   408  	0, // 0: envoy.type.HttpStatus.code:type_name -> envoy.type.StatusCode
   409  	1, // [1:1] is the sub-list for method output_type
   410  	1, // [1:1] is the sub-list for method input_type
   411  	1, // [1:1] is the sub-list for extension type_name
   412  	1, // [1:1] is the sub-list for extension extendee
   413  	0, // [0:1] is the sub-list for field type_name
   414  }
   415  
   416  func init() { file_envoy_type_http_status_proto_init() }
   417  func file_envoy_type_http_status_proto_init() {
   418  	if File_envoy_type_http_status_proto != nil {
   419  		return
   420  	}
   421  	if !protoimpl.UnsafeEnabled {
   422  		file_envoy_type_http_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   423  			switch v := v.(*HttpStatus); i {
   424  			case 0:
   425  				return &v.state
   426  			case 1:
   427  				return &v.sizeCache
   428  			case 2:
   429  				return &v.unknownFields
   430  			default:
   431  				return nil
   432  			}
   433  		}
   434  	}
   435  	type x struct{}
   436  	out := protoimpl.TypeBuilder{
   437  		File: protoimpl.DescBuilder{
   438  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   439  			RawDescriptor: file_envoy_type_http_status_proto_rawDesc,
   440  			NumEnums:      1,
   441  			NumMessages:   1,
   442  			NumExtensions: 0,
   443  			NumServices:   0,
   444  		},
   445  		GoTypes:           file_envoy_type_http_status_proto_goTypes,
   446  		DependencyIndexes: file_envoy_type_http_status_proto_depIdxs,
   447  		EnumInfos:         file_envoy_type_http_status_proto_enumTypes,
   448  		MessageInfos:      file_envoy_type_http_status_proto_msgTypes,
   449  	}.Build()
   450  	File_envoy_type_http_status_proto = out.File
   451  	file_envoy_type_http_status_proto_rawDesc = nil
   452  	file_envoy_type_http_status_proto_goTypes = nil
   453  	file_envoy_type_http_status_proto_depIdxs = nil
   454  }