grpc 1.54.0 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (970) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +66 -37
  3. data/include/grpc/impl/grpc_types.h +2 -0
  4. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
  5. data/src/core/ext/filters/client_channel/backend_metric.cc +2 -1
  6. data/src/core/ext/filters/client_channel/client_channel.cc +13 -17
  7. data/src/core/ext/filters/client_channel/client_channel.h +20 -16
  8. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +1 -1
  9. data/src/core/ext/filters/client_channel/client_channel_internal.h +8 -40
  10. data/src/core/ext/filters/client_channel/client_channel_service_config.cc +2 -2
  11. data/src/core/ext/filters/client_channel/config_selector.h +5 -17
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +1 -1
  13. data/src/core/ext/filters/client_channel/http_proxy.cc +34 -1
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +2 -2
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +1 -1
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
  17. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +5 -5
  18. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +3 -3
  19. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +45 -46
  20. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +2 -3
  21. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +3 -3
  22. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +3 -3
  23. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +4 -4
  24. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +3 -3
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +9 -9
  26. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +4 -4
  27. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +5 -4
  28. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +19 -118
  29. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.h +30 -0
  30. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +60 -0
  31. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.h +27 -0
  32. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +524 -0
  33. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h +35 -0
  34. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +97 -0
  35. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.h +32 -0
  36. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +2 -13
  37. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.h +24 -0
  38. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +3 -2
  39. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +7 -34
  40. data/src/core/ext/filters/client_channel/retry_filter.cc +23 -55
  41. data/src/core/ext/filters/client_channel/retry_service_config.cc +8 -8
  42. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
  43. data/src/core/ext/filters/http/message_compress/compression_filter.cc +2 -2
  44. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +68 -69
  45. data/src/core/ext/gcp/metadata_query.cc +5 -10
  46. data/src/core/ext/gcp/metadata_query.h +10 -5
  47. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +12 -8
  48. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +5 -1
  49. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +78 -23
  50. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +21 -0
  51. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +70 -0
  52. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +1 -7
  53. data/src/core/ext/transport/chttp2/transport/frame_ping.h +0 -3
  54. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +118 -222
  55. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +296 -113
  56. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -0
  57. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
  58. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +451 -277
  59. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -1
  60. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +15 -12
  61. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +9 -1
  62. data/src/core/ext/transport/chttp2/transport/internal.h +3 -4
  63. data/src/core/ext/transport/chttp2/transport/writing.cc +14 -3
  64. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +87 -52
  65. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +414 -181
  66. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -60
  67. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +481 -224
  68. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +90 -55
  69. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +415 -188
  70. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +357 -210
  71. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1572 -729
  72. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +30 -17
  73. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +144 -47
  74. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +34 -21
  75. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +160 -62
  76. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +27 -14
  77. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +78 -38
  78. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +20 -11
  79. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +48 -26
  80. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +20 -11
  81. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +48 -26
  82. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +109 -62
  83. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +566 -244
  84. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +21 -12
  85. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +45 -30
  86. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +22 -19
  87. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +82 -29
  88. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +23 -16
  89. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +45 -30
  90. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +230 -143
  91. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +733 -404
  92. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +417 -264
  93. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1839 -899
  94. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -41
  95. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +286 -148
  96. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +531 -334
  97. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2017 -1131
  98. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +21 -12
  99. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +45 -30
  100. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +89 -52
  101. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +347 -232
  102. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +264 -165
  103. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +888 -476
  104. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +139 -80
  105. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +527 -274
  106. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +22 -13
  107. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +50 -36
  108. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +380 -221
  109. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1168 -611
  110. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +166 -94
  111. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +666 -292
  112. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +18 -11
  113. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +37 -26
  114. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +21 -12
  115. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +45 -30
  116. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +30 -17
  117. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +144 -47
  118. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +274 -167
  119. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +789 -440
  120. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +228 -137
  121. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1100 -501
  122. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +22 -13
  123. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +60 -37
  124. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +350 -211
  125. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1072 -646
  126. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +33 -18
  127. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +117 -51
  128. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +34 -19
  129. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +118 -56
  130. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +38 -21
  131. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +148 -64
  132. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +31 -18
  133. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +143 -65
  134. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +22 -13
  135. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +51 -37
  136. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +78 -43
  137. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +265 -127
  138. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +145 -88
  139. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +438 -241
  140. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +115 -62
  141. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +559 -227
  142. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +18 -11
  143. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +35 -26
  144. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +175 -118
  145. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +857 -442
  146. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +172 -95
  147. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +864 -374
  148. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +48 -27
  149. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +159 -110
  150. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +39 -18
  151. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +74 -56
  152. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +28 -15
  153. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +71 -45
  154. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +131 -74
  155. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +489 -249
  156. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +135 -80
  157. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +505 -245
  158. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +248 -139
  159. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +933 -433
  160. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +80 -49
  161. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +616 -201
  162. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1283 -776
  163. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5422 -2519
  164. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +49 -28
  165. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +164 -84
  166. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +228 -141
  167. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +738 -399
  168. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +20 -11
  169. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +48 -26
  170. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +21 -12
  171. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +45 -30
  172. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +32 -19
  173. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +70 -49
  174. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +27 -14
  175. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +110 -43
  176. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +46 -25
  177. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +259 -100
  178. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +21 -12
  179. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +45 -30
  180. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +18 -11
  181. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +35 -26
  182. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +42 -23
  183. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +108 -70
  184. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +7 -4
  185. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +21 -16
  186. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +43 -24
  187. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +110 -75
  188. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +30 -17
  189. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +95 -50
  190. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +16 -9
  191. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +73 -23
  192. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +60 -37
  193. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +150 -108
  194. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +74 -43
  195. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +357 -167
  196. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +44 -25
  197. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +114 -80
  198. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +41 -20
  199. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +245 -82
  200. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +32 -19
  201. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +73 -51
  202. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +474 -296
  203. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2121 -1076
  204. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +18 -11
  205. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +35 -26
  206. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +34 -21
  207. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +112 -78
  208. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +72 -45
  209. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +193 -138
  210. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +34 -21
  211. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +119 -78
  212. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +18 -11
  213. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +35 -26
  214. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +7 -4
  215. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +15 -10
  216. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +184 -96
  217. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +907 -360
  218. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +56 -33
  219. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +150 -101
  220. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +188 -111
  221. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +816 -419
  222. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +32 -19
  223. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +109 -53
  224. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +10 -7
  225. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +18 -14
  226. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +300 -177
  227. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +1284 -522
  228. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +42 -23
  229. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +188 -75
  230. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +130 -83
  231. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +510 -238
  232. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +22 -13
  233. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +55 -34
  234. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +39 -26
  235. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +124 -68
  236. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +21 -12
  237. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +47 -30
  238. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +52 -29
  239. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +92 -62
  240. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +37 -20
  241. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +133 -63
  242. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +22 -13
  243. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +91 -40
  244. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +21 -12
  245. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +50 -32
  246. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +18 -11
  247. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +37 -26
  248. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +46 -27
  249. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +101 -70
  250. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +13 -10
  251. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +25 -22
  252. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +40 -23
  253. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +161 -75
  254. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +31 -18
  255. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +114 -56
  256. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +46 -29
  257. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +139 -91
  258. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +65 -42
  259. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +200 -121
  260. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +80 -45
  261. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +208 -131
  262. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +34 -21
  263. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +74 -53
  264. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +7 -4
  265. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +13 -8
  266. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +16 -9
  267. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +28 -18
  268. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +28 -15
  269. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +55 -34
  270. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +43 -22
  271. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +91 -53
  272. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +35 -20
  273. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +92 -57
  274. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +7 -4
  275. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +13 -8
  276. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +20 -11
  277. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +48 -26
  278. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +23 -14
  279. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +61 -41
  280. data/src/core/ext/upb-generated/google/api/annotations.upb.c +14 -11
  281. data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -20
  282. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +255 -154
  283. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +934 -450
  284. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +299 -180
  285. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +946 -483
  286. data/src/core/ext/upb-generated/google/api/http.upb.c +68 -35
  287. data/src/core/ext/upb-generated/google/api/http.upb.h +284 -120
  288. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +22 -13
  289. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +95 -37
  290. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -10
  291. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +38 -22
  292. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +1018 -424
  293. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +3851 -1412
  294. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -10
  295. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +38 -22
  296. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +10 -7
  297. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +18 -14
  298. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +62 -39
  299. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +207 -102
  300. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -10
  301. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +38 -22
  302. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +90 -51
  303. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +157 -107
  304. data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -13
  305. data/src/core/ext/upb-generated/google/rpc/status.upb.h +95 -37
  306. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +59 -34
  307. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +154 -92
  308. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +43 -24
  309. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +118 -60
  310. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +250 -145
  311. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +919 -415
  312. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +34 -19
  313. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +76 -51
  314. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +25 -14
  315. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +45 -30
  316. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +144 -81
  317. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +405 -217
  318. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +51 -26
  319. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +153 -61
  320. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +173 -102
  321. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +855 -298
  322. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +68 -49
  323. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +155 -104
  324. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +26 -17
  325. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +55 -34
  326. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +12 -9
  327. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +31 -14
  328. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +26 -17
  329. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +55 -34
  330. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +23 -16
  331. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +45 -30
  332. data/src/core/ext/upb-generated/validate/validate.upb.c +845 -455
  333. data/src/core/ext/upb-generated/validate/validate.upb.h +4347 -1908
  334. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +68 -49
  335. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +155 -104
  336. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +26 -17
  337. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +55 -34
  338. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +12 -9
  339. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +31 -14
  340. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +65 -44
  341. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +137 -91
  342. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +23 -16
  343. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +45 -30
  344. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +16 -9
  345. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +28 -18
  346. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +21 -12
  347. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +45 -30
  348. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +37 -22
  349. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +96 -63
  350. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +26 -17
  351. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +52 -29
  352. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +21 -12
  353. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +45 -30
  354. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +23 -14
  355. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +62 -42
  356. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +44 -25
  357. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +169 -79
  358. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +27 -14
  359. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +65 -38
  360. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +69 -38
  361. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +167 -76
  362. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +21 -12
  363. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +89 -34
  364. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +18 -11
  365. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +35 -26
  366. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +32 -19
  367. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +150 -54
  368. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +10 -7
  369. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +18 -14
  370. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +34 -21
  371. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +161 -63
  372. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +162 -101
  373. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +501 -293
  374. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +85 -52
  375. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +430 -164
  376. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +24 -15
  377. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +53 -37
  378. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +40 -23
  379. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +161 -75
  380. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +37 -22
  381. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +92 -66
  382. data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +43 -22
  383. data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +91 -53
  384. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +21 -12
  385. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +45 -30
  386. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +1 -1
  387. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +6 -5
  388. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +1 -1
  389. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +6 -5
  390. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +1 -1
  391. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +6 -5
  392. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +1 -1
  393. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +6 -5
  394. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +1 -1
  395. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +6 -5
  396. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +1 -1
  397. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +6 -5
  398. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +1 -1
  399. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +6 -5
  400. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +1 -1
  401. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +6 -5
  402. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +1 -1
  403. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +6 -5
  404. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +1 -1
  405. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +6 -5
  406. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +1 -1
  407. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +6 -5
  408. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +1 -1
  409. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +6 -5
  410. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +1 -1
  411. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +6 -5
  412. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +1 -1
  413. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +6 -5
  414. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +252 -253
  415. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +6 -5
  416. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +1 -1
  417. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +6 -5
  418. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +1 -1
  419. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +6 -5
  420. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +1 -1
  421. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +6 -5
  422. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +1 -1
  423. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +6 -5
  424. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +1 -1
  425. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +6 -5
  426. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +1 -1
  427. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +6 -5
  428. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +1 -1
  429. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +6 -5
  430. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +1 -1
  431. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +6 -5
  432. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +13 -12
  433. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +11 -5
  434. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +1 -1
  435. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +6 -5
  436. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +1 -1
  437. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +6 -5
  438. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +1 -1
  439. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +6 -5
  440. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +1 -1
  441. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +6 -5
  442. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +1 -1
  443. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +6 -5
  444. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +1 -1
  445. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +6 -5
  446. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +44 -44
  447. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +6 -5
  448. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +1 -1
  449. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +6 -5
  450. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +1 -1
  451. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +6 -5
  452. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +1 -1
  453. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +6 -5
  454. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +1 -1
  455. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +6 -5
  456. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +1 -1
  457. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +6 -5
  458. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +1 -1
  459. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +6 -5
  460. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +1 -1
  461. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +6 -5
  462. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +1 -1
  463. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +6 -5
  464. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +1 -1
  465. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +6 -5
  466. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +1 -1
  467. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +6 -5
  468. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +1 -1
  469. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +6 -5
  470. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +1 -1
  471. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +6 -5
  472. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +1 -1
  473. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +6 -5
  474. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +1 -1
  475. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +6 -5
  476. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +1 -1
  477. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +6 -5
  478. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +1 -1
  479. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +6 -5
  480. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +134 -128
  481. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +11 -5
  482. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +1 -1
  483. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +6 -5
  484. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +1 -1
  485. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +6 -5
  486. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +1 -1
  487. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +6 -5
  488. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +1 -1
  489. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +6 -5
  490. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +1 -1
  491. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +6 -5
  492. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +1 -1
  493. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +6 -5
  494. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +1 -1
  495. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +6 -5
  496. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +1 -1
  497. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +6 -5
  498. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +1 -1
  499. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +6 -5
  500. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +1 -1
  501. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +6 -5
  502. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +1 -1
  503. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +6 -5
  504. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +1 -1
  505. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +6 -5
  506. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +1 -1
  507. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +6 -5
  508. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +1 -1
  509. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +6 -5
  510. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +1 -1
  511. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +6 -5
  512. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +1 -1
  513. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +6 -5
  514. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +1 -1
  515. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +6 -5
  516. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +1 -1
  517. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +6 -5
  518. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +1 -1
  519. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +6 -5
  520. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +1 -1
  521. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +6 -5
  522. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +1 -1
  523. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +6 -5
  524. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +379 -376
  525. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +6 -5
  526. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +1 -1
  527. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +6 -5
  528. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +1 -1
  529. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +6 -5
  530. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +138 -136
  531. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +6 -5
  532. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +1 -1
  533. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +6 -5
  534. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +1 -1
  535. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +6 -5
  536. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +1 -1
  537. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +6 -5
  538. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +1 -1
  539. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +6 -5
  540. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +1 -1
  541. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +6 -5
  542. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +1 -1
  543. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +6 -5
  544. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +12 -13
  545. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +6 -5
  546. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +1 -1
  547. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +6 -5
  548. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +1 -1
  549. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +6 -5
  550. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +1 -1
  551. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +6 -5
  552. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +1 -1
  553. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +6 -5
  554. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +1 -1
  555. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +6 -5
  556. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +1 -1
  557. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +6 -5
  558. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +1 -1
  559. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +6 -5
  560. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +1 -1
  561. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +6 -5
  562. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +1 -1
  563. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +6 -5
  564. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +1 -1
  565. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +6 -5
  566. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +1 -1
  567. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +6 -5
  568. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +1 -1
  569. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +6 -5
  570. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +1 -1
  571. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +6 -5
  572. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +1 -1
  573. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +6 -5
  574. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +1 -1
  575. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +6 -5
  576. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +1 -1
  577. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +6 -5
  578. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +1 -1
  579. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +6 -5
  580. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +1 -1
  581. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +6 -5
  582. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +1 -1
  583. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +6 -5
  584. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +1 -1
  585. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +6 -5
  586. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +1 -1
  587. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +6 -5
  588. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +1 -1
  589. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +6 -5
  590. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +1 -1
  591. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +6 -5
  592. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +1 -1
  593. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +6 -5
  594. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +1 -1
  595. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +6 -5
  596. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +1 -1
  597. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +6 -5
  598. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +1 -1
  599. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +6 -5
  600. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +1 -1
  601. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +6 -5
  602. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +1 -1
  603. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +6 -5
  604. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +1 -1
  605. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +6 -5
  606. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +329 -273
  607. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +11 -5
  608. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +1 -1
  609. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +6 -5
  610. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +1 -1
  611. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +6 -5
  612. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +1 -1
  613. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +6 -5
  614. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +1 -1
  615. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +6 -5
  616. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +1 -1
  617. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +6 -5
  618. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +1 -1
  619. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +6 -5
  620. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +1 -1
  621. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +6 -5
  622. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +1 -1
  623. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +6 -5
  624. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +1 -1
  625. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +6 -5
  626. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +1 -1
  627. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +6 -5
  628. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +1 -1
  629. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +6 -5
  630. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +1 -1
  631. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +6 -5
  632. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +1 -1
  633. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +6 -5
  634. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +1 -1
  635. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +6 -5
  636. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +1 -1
  637. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +6 -5
  638. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +1 -1
  639. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +6 -5
  640. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +1 -1
  641. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +6 -5
  642. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +1 -1
  643. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +6 -5
  644. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +1 -1
  645. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +6 -5
  646. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +1 -1
  647. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +6 -5
  648. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +1 -1
  649. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +6 -5
  650. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +1 -1
  651. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +6 -5
  652. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +1 -1
  653. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +6 -5
  654. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +1 -1
  655. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +6 -5
  656. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +1 -1
  657. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +6 -5
  658. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +1 -1
  659. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +6 -5
  660. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +1 -1
  661. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +6 -5
  662. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +1 -1
  663. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +6 -5
  664. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +1 -1
  665. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +6 -5
  666. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +1 -1
  667. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +6 -5
  668. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +1 -1
  669. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +6 -5
  670. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +1 -1
  671. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +6 -5
  672. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +1 -1
  673. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +6 -5
  674. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +1 -1
  675. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +6 -5
  676. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +1 -1
  677. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +6 -5
  678. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +1 -1
  679. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +6 -5
  680. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +1 -1
  681. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +6 -5
  682. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +1 -1
  683. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +6 -5
  684. data/src/core/ext/xds/certificate_provider_store.cc +4 -4
  685. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +7 -7
  686. data/src/core/ext/xds/upb_utils.h +1 -1
  687. data/src/core/ext/xds/xds_api.cc +34 -14
  688. data/src/core/ext/xds/xds_api.h +2 -2
  689. data/src/core/ext/xds/xds_bootstrap.cc +3 -3
  690. data/src/core/ext/xds/xds_bootstrap_grpc.cc +15 -15
  691. data/src/core/ext/xds/xds_client.cc +24 -3
  692. data/src/core/ext/xds/xds_client.h +1 -1
  693. data/src/core/ext/xds/xds_cluster.cc +26 -34
  694. data/src/core/ext/xds/xds_cluster.h +1 -2
  695. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +4 -3
  696. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
  697. data/src/core/ext/xds/xds_common_types.cc +5 -4
  698. data/src/core/ext/xds/xds_endpoint.cc +5 -2
  699. data/src/core/ext/xds/xds_endpoint.h +1 -1
  700. data/src/core/ext/xds/xds_http_fault_filter.cc +2 -2
  701. data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
  702. data/src/core/ext/xds/xds_http_filters.h +3 -2
  703. data/src/core/ext/xds/xds_http_rbac_filter.cc +6 -8
  704. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
  705. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +2 -2
  706. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
  707. data/src/core/ext/xds/xds_lb_policy_registry.cc +4 -22
  708. data/src/core/ext/xds/xds_listener.cc +10 -4
  709. data/src/core/ext/xds/xds_listener.h +1 -1
  710. data/src/core/ext/xds/xds_resource_type.h +2 -2
  711. data/src/core/ext/xds/xds_route_config.cc +8 -5
  712. data/src/core/ext/xds/xds_route_config.h +1 -1
  713. data/src/core/lib/channel/channelz.cc +5 -4
  714. data/src/core/lib/channel/channelz_registry.cc +7 -6
  715. data/src/core/lib/channel/connected_channel.cc +82 -27
  716. data/src/core/lib/channel/promise_based_filter.cc +2 -8
  717. data/src/core/lib/debug/trace.cc +16 -7
  718. data/src/core/lib/debug/trace.h +12 -4
  719. data/src/core/lib/event_engine/event_engine.cc +4 -4
  720. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +8 -26
  721. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +6 -1
  722. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +3 -0
  723. data/src/core/lib/event_engine/shim.cc +2 -0
  724. data/src/core/lib/event_engine/trace.cc +1 -0
  725. data/src/core/lib/event_engine/trace.h +6 -0
  726. data/src/core/lib/experiments/experiments.cc +3 -0
  727. data/src/core/lib/experiments/experiments.h +4 -1
  728. data/src/core/lib/gpr/posix/time.cc +5 -0
  729. data/src/core/lib/gprpp/status_helper.cc +2 -2
  730. data/src/core/lib/gprpp/validation_errors.cc +8 -3
  731. data/src/core/lib/gprpp/validation_errors.h +16 -9
  732. data/src/core/lib/iomgr/buffer_list.h +0 -1
  733. data/src/core/lib/iomgr/socket_utils_posix.cc +3 -0
  734. data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
  735. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -0
  736. data/src/core/lib/iomgr/timer_generic.cc +17 -16
  737. data/src/core/lib/json/json.h +61 -113
  738. data/src/core/lib/json/json_object_loader.cc +20 -20
  739. data/src/core/lib/json/json_object_loader.h +8 -3
  740. data/src/core/lib/json/json_reader.cc +58 -38
  741. data/src/core/lib/json/json_reader.h +34 -0
  742. data/src/core/lib/json/json_util.cc +6 -6
  743. data/src/core/lib/json/json_util.h +5 -4
  744. data/src/core/lib/json/json_writer.cc +19 -19
  745. data/src/core/lib/json/json_writer.h +33 -0
  746. data/src/core/lib/load_balancing/lb_policy_registry.cc +7 -7
  747. data/src/core/lib/promise/pipe.h +7 -0
  748. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +35 -37
  749. data/src/core/lib/security/credentials/external/external_account_credentials.cc +60 -62
  750. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +22 -21
  751. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +28 -27
  752. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +4 -2
  753. data/src/core/lib/security/credentials/jwt/json_token.cc +6 -4
  754. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -5
  755. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +39 -38
  756. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +17 -16
  757. data/src/core/lib/security/util/json_util.cc +5 -5
  758. data/src/core/lib/service_config/service_config_impl.cc +11 -5
  759. data/src/core/lib/slice/slice.h +2 -0
  760. data/src/core/lib/surface/call.cc +71 -26
  761. data/src/core/lib/surface/call.h +1 -5
  762. data/src/core/lib/surface/completion_queue.cc +2 -1
  763. data/src/core/lib/surface/server.cc +47 -19
  764. data/src/core/lib/surface/validate_metadata.cc +43 -42
  765. data/src/core/lib/surface/validate_metadata.h +9 -0
  766. data/src/core/lib/surface/version.cc +2 -2
  767. data/src/core/lib/transport/batch_builder.h +9 -1
  768. data/src/core/lib/transport/metadata_batch.h +71 -20
  769. data/src/core/lib/transport/metadata_compression_traits.h +67 -0
  770. data/src/core/lib/transport/parsed_metadata.h +16 -6
  771. data/src/core/lib/transport/simple_slice_based_metadata.h +48 -0
  772. data/src/core/lib/transport/transport.h +3 -0
  773. data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -4
  774. data/src/ruby/lib/grpc/version.rb +1 -1
  775. data/third_party/abseil-cpp/absl/base/config.h +1 -1
  776. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +33 -47
  777. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +7 -4
  778. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +32 -2
  779. data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +11 -12
  780. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +826 -0
  781. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +10 -12
  782. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +8 -10
  783. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +2 -1
  784. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +2 -1
  785. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +18 -14
  786. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +17 -21
  787. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +7 -3
  788. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +3 -4
  789. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +1 -72
  790. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +4 -2
  791. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +4 -3
  792. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +7 -3
  793. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +4 -2
  794. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +1 -1
  795. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +8 -8
  796. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +128 -0
  797. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +8 -1
  798. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +1 -1
  799. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +8 -12
  800. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1 -10
  801. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +9 -2
  802. data/third_party/boringssl-with-bazel/src/ssl/internal.h +17 -17
  803. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +8 -4
  804. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
  805. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +72 -5
  806. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +19 -21
  807. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
  808. data/third_party/upb/upb/{table_internal.h → alloc.h} +6 -6
  809. data/third_party/upb/upb/arena.h +4 -193
  810. data/third_party/upb/upb/array.h +4 -51
  811. data/third_party/upb/upb/base/descriptor_constants.h +104 -0
  812. data/third_party/upb/upb/base/log2.h +57 -0
  813. data/third_party/upb/upb/{status.c → base/status.c} +2 -7
  814. data/third_party/upb/upb/base/status.h +66 -0
  815. data/third_party/upb/upb/base/string_view.h +75 -0
  816. data/third_party/upb/upb/{array.c → collections/array.c} +67 -36
  817. data/third_party/upb/upb/collections/array.h +85 -0
  818. data/third_party/upb/upb/collections/array_internal.h +135 -0
  819. data/third_party/upb/upb/{map.c → collections/map.c} +53 -26
  820. data/third_party/upb/upb/collections/map.h +135 -0
  821. data/third_party/upb/upb/collections/map_gencode_util.h +78 -0
  822. data/third_party/upb/upb/collections/map_internal.h +170 -0
  823. data/third_party/upb/upb/collections/map_sorter.c +166 -0
  824. data/third_party/upb/upb/collections/map_sorter_internal.h +109 -0
  825. data/third_party/upb/upb/{message_value.h → collections/message_value.h} +12 -13
  826. data/third_party/upb/upb/decode.h +3 -62
  827. data/third_party/upb/upb/def.h +4 -384
  828. data/third_party/upb/upb/def.hpp +3 -411
  829. data/third_party/upb/upb/encode.h +3 -48
  830. data/third_party/upb/upb/extension_registry.h +3 -52
  831. data/third_party/upb/upb/{table.c → hash/common.c} +52 -110
  832. data/third_party/upb/upb/hash/common.h +199 -0
  833. data/third_party/upb/upb/hash/int_table.h +102 -0
  834. data/third_party/upb/upb/hash/str_table.h +161 -0
  835. data/third_party/upb/upb/{json_decode.c → json/decode.c} +63 -98
  836. data/third_party/upb/upb/json/decode.h +52 -0
  837. data/third_party/upb/upb/{json_encode.c → json/encode.c} +69 -45
  838. data/third_party/upb/upb/json/encode.h +70 -0
  839. data/third_party/upb/upb/json_decode.h +4 -15
  840. data/third_party/upb/upb/json_encode.h +4 -33
  841. data/third_party/upb/upb/lex/atoi.c +68 -0
  842. data/third_party/upb/upb/lex/atoi.h +53 -0
  843. data/third_party/upb/upb/{upb.c → lex/round_trip.c} +2 -11
  844. data/third_party/upb/upb/{internal/upb.h → lex/round_trip.h} +17 -30
  845. data/third_party/upb/upb/lex/strtod.c +97 -0
  846. data/third_party/upb/upb/lex/strtod.h +46 -0
  847. data/third_party/upb/upb/lex/unicode.c +57 -0
  848. data/third_party/upb/upb/lex/unicode.h +77 -0
  849. data/third_party/upb/upb/map.h +4 -85
  850. data/third_party/upb/upb/mem/alloc.c +47 -0
  851. data/third_party/upb/upb/mem/alloc.h +98 -0
  852. data/third_party/upb/upb/mem/arena.c +367 -0
  853. data/third_party/upb/upb/mem/arena.h +160 -0
  854. data/third_party/upb/upb/mem/arena_internal.h +114 -0
  855. data/third_party/upb/upb/message/accessors.c +68 -0
  856. data/third_party/upb/upb/message/accessors.h +379 -0
  857. data/third_party/upb/upb/message/accessors_internal.h +325 -0
  858. data/third_party/upb/upb/message/extension_internal.h +83 -0
  859. data/third_party/upb/upb/message/internal.h +135 -0
  860. data/third_party/upb/upb/message/message.c +180 -0
  861. data/third_party/upb/upb/message/message.h +69 -0
  862. data/third_party/upb/upb/mini_table/common.c +128 -0
  863. data/third_party/upb/upb/mini_table/common.h +170 -0
  864. data/third_party/upb/upb/mini_table/common_internal.h +111 -0
  865. data/third_party/upb/upb/{mini_table.c → mini_table/decode.c} +513 -533
  866. data/third_party/upb/upb/mini_table/decode.h +179 -0
  867. data/third_party/upb/upb/mini_table/encode.c +300 -0
  868. data/third_party/upb/upb/mini_table/encode_internal.h +111 -0
  869. data/third_party/upb/upb/{mini_table.hpp → mini_table/encode_internal.hpp} +32 -8
  870. data/third_party/upb/upb/mini_table/enum_internal.h +88 -0
  871. data/third_party/upb/upb/mini_table/extension_internal.h +47 -0
  872. data/third_party/upb/upb/{extension_registry.c → mini_table/extension_registry.c} +27 -24
  873. data/third_party/upb/upb/mini_table/extension_registry.h +104 -0
  874. data/third_party/upb/upb/mini_table/field_internal.h +192 -0
  875. data/third_party/upb/upb/mini_table/file_internal.h +47 -0
  876. data/third_party/upb/upb/mini_table/message_internal.h +136 -0
  877. data/third_party/upb/upb/mini_table/sub_internal.h +38 -0
  878. data/third_party/upb/upb/mini_table/types.h +40 -0
  879. data/third_party/upb/upb/mini_table.h +4 -157
  880. data/third_party/upb/upb/msg.h +3 -38
  881. data/third_party/upb/upb/port/atomic.h +101 -0
  882. data/third_party/upb/upb/{port_def.inc → port/def.inc} +94 -27
  883. data/third_party/upb/upb/{port_undef.inc → port/undef.inc} +13 -3
  884. data/third_party/upb/upb/{internal → port}/vsnprintf_compat.h +5 -7
  885. data/third_party/upb/upb/reflection/common.h +67 -0
  886. data/third_party/upb/upb/reflection/def.h +42 -0
  887. data/third_party/upb/upb/reflection/def.hpp +610 -0
  888. data/third_party/upb/upb/reflection/def_builder.c +357 -0
  889. data/third_party/upb/upb/reflection/def_builder_internal.h +157 -0
  890. data/third_party/upb/upb/reflection/def_pool.c +462 -0
  891. data/third_party/upb/upb/reflection/def_pool.h +108 -0
  892. data/third_party/upb/upb/reflection/def_pool_internal.h +77 -0
  893. data/third_party/upb/upb/reflection/def_type.c +50 -0
  894. data/third_party/upb/upb/reflection/def_type.h +81 -0
  895. data/third_party/upb/upb/reflection/desc_state.c +53 -0
  896. data/third_party/upb/upb/reflection/desc_state_internal.h +64 -0
  897. data/third_party/upb/upb/reflection/enum_def.c +310 -0
  898. data/third_party/upb/upb/reflection/enum_def.h +80 -0
  899. data/third_party/upb/upb/reflection/enum_def_internal.h +56 -0
  900. data/third_party/upb/upb/reflection/enum_reserved_range.c +84 -0
  901. data/third_party/upb/upb/reflection/enum_reserved_range.h +51 -0
  902. data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +55 -0
  903. data/third_party/upb/upb/reflection/enum_value_def.c +144 -0
  904. data/third_party/upb/upb/reflection/enum_value_def.h +57 -0
  905. data/third_party/upb/upb/reflection/enum_value_def_internal.h +57 -0
  906. data/third_party/upb/upb/reflection/extension_range.c +93 -0
  907. data/third_party/upb/upb/reflection/extension_range.h +55 -0
  908. data/third_party/upb/upb/reflection/extension_range_internal.h +54 -0
  909. data/third_party/upb/upb/reflection/field_def.c +930 -0
  910. data/third_party/upb/upb/reflection/field_def.h +91 -0
  911. data/third_party/upb/upb/reflection/field_def_internal.h +76 -0
  912. data/third_party/upb/upb/reflection/file_def.c +370 -0
  913. data/third_party/upb/upb/reflection/file_def.h +77 -0
  914. data/third_party/upb/upb/reflection/file_def_internal.h +57 -0
  915. data/third_party/upb/upb/reflection/message.c +233 -0
  916. data/third_party/upb/upb/reflection/message.h +102 -0
  917. data/third_party/upb/upb/reflection/message.hpp +37 -0
  918. data/third_party/upb/upb/reflection/message_def.c +718 -0
  919. data/third_party/upb/upb/reflection/message_def.h +174 -0
  920. data/third_party/upb/upb/reflection/message_def_internal.h +63 -0
  921. data/third_party/upb/upb/reflection/message_reserved_range.c +81 -0
  922. data/third_party/upb/upb/reflection/message_reserved_range.h +51 -0
  923. data/third_party/upb/upb/reflection/message_reserved_range_internal.h +55 -0
  924. data/third_party/upb/upb/reflection/method_def.c +124 -0
  925. data/third_party/upb/upb/reflection/method_def.h +59 -0
  926. data/third_party/upb/upb/reflection/method_def_internal.h +53 -0
  927. data/third_party/upb/upb/reflection/oneof_def.c +226 -0
  928. data/third_party/upb/upb/reflection/oneof_def.h +66 -0
  929. data/third_party/upb/upb/reflection/oneof_def_internal.h +57 -0
  930. data/third_party/upb/upb/reflection/service_def.c +128 -0
  931. data/third_party/upb/upb/reflection/service_def.h +60 -0
  932. data/third_party/upb/upb/reflection/service_def_internal.h +53 -0
  933. data/third_party/upb/upb/reflection.h +4 -78
  934. data/third_party/upb/upb/reflection.hpp +3 -7
  935. data/third_party/upb/upb/status.h +4 -34
  936. data/third_party/upb/upb/{collections.h → string_view.h} +7 -7
  937. data/third_party/upb/upb/{text_encode.c → text/encode.c} +74 -70
  938. data/third_party/upb/upb/text/encode.h +69 -0
  939. data/third_party/upb/upb/text_encode.h +4 -32
  940. data/third_party/upb/upb/upb.h +6 -151
  941. data/third_party/upb/upb/upb.hpp +10 -18
  942. data/third_party/upb/upb/wire/common.h +44 -0
  943. data/third_party/upb/upb/wire/common_internal.h +50 -0
  944. data/third_party/upb/upb/wire/decode.c +1343 -0
  945. data/third_party/upb/upb/wire/decode.h +108 -0
  946. data/third_party/upb/upb/{decode_fast.c → wire/decode_fast.c} +184 -225
  947. data/third_party/upb/upb/{decode_fast.h → wire/decode_fast.h} +21 -7
  948. data/third_party/upb/upb/{internal/decode.h → wire/decode_internal.h} +44 -92
  949. data/third_party/upb/upb/{encode.c → wire/encode.c} +114 -95
  950. data/third_party/upb/upb/wire/encode.h +92 -0
  951. data/third_party/upb/upb/wire/eps_copy_input_stream.c +39 -0
  952. data/third_party/upb/upb/wire/eps_copy_input_stream.h +425 -0
  953. data/third_party/upb/upb/wire/reader.c +67 -0
  954. data/third_party/upb/upb/wire/reader.h +227 -0
  955. data/third_party/upb/upb/wire/swap_internal.h +63 -0
  956. data/third_party/upb/upb/wire/types.h +41 -0
  957. data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-neon.c +1 -1
  958. data/third_party/{upb/third_party/utf8_range → utf8_range}/utf8_range.h +12 -0
  959. metadata +155 -40
  960. data/src/core/ext/transport/chttp2/transport/context_list.cc +0 -71
  961. data/src/core/ext/transport/chttp2/transport/context_list.h +0 -54
  962. data/third_party/upb/upb/arena.c +0 -277
  963. data/third_party/upb/upb/decode.c +0 -1221
  964. data/third_party/upb/upb/def.c +0 -3269
  965. data/third_party/upb/upb/internal/table.h +0 -385
  966. data/third_party/upb/upb/msg.c +0 -368
  967. data/third_party/upb/upb/msg_internal.h +0 -837
  968. data/third_party/upb/upb/reflection.c +0 -323
  969. /data/third_party/{upb/third_party/utf8_range → utf8_range}/naive.c +0 -0
  970. /data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-sse.c +0 -0
@@ -7,7 +7,9 @@
7
7
  * regenerated. */
8
8
 
9
9
  #include <stddef.h>
10
- #include "upb/msg_internal.h"
10
+ #include "upb/collections/array_internal.h"
11
+ #include "upb/message/internal.h"
12
+ #include "upb/mini_table/enum_internal.h"
11
13
  #include "envoy/config/route/v3/route_components.upb.h"
12
14
  #include "envoy/config/core/v3/base.upb.h"
13
15
  #include "envoy/config/core/v3/extension.upb.h"
@@ -30,1103 +32,1608 @@
30
32
  #include "udpa/annotations/versioning.upb.h"
31
33
  #include "validate/validate.upb.h"
32
34
 
33
- #include "upb/port_def.inc"
34
-
35
- static const upb_MiniTable_Sub envoy_config_route_v3_VirtualHost_submsgs[13] = {
36
- {.submsg = &envoy_config_route_v3_Route_msginit},
37
- {.submsg = &envoy_config_route_v3_VirtualCluster_msginit},
38
- {.submsg = &envoy_config_route_v3_RateLimit_msginit},
39
- {.submsg = &envoy_config_core_v3_HeaderValueOption_msginit},
40
- {.submsg = &envoy_config_route_v3_CorsPolicy_msginit},
41
- {.submsg = &envoy_config_core_v3_HeaderValueOption_msginit},
42
- {.submsg = &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msginit},
43
- {.submsg = &envoy_config_route_v3_RetryPolicy_msginit},
44
- {.submsg = &envoy_config_route_v3_HedgePolicy_msginit},
45
- {.submsg = &google_protobuf_UInt32Value_msginit},
46
- {.submsg = &google_protobuf_Any_msginit},
47
- {.submsg = &xds_type_matcher_v3_Matcher_msginit},
48
- {.submsg = &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msginit},
49
- };
50
-
51
- static const upb_MiniTable_Field envoy_config_route_v3_VirtualHost__fields[21] = {
52
- {1, UPB_SIZE(12, 16), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
53
- {2, UPB_SIZE(20, 32), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
54
- {3, UPB_SIZE(24, 40), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
55
- {4, UPB_SIZE(4, 4), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
56
- {5, UPB_SIZE(28, 48), UPB_SIZE(0, 0), 1, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
57
- {6, UPB_SIZE(32, 56), UPB_SIZE(0, 0), 2, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
58
- {7, UPB_SIZE(36, 64), UPB_SIZE(0, 0), 3, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
59
- {8, UPB_SIZE(40, 72), UPB_SIZE(1, 1), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
60
- {10, UPB_SIZE(44, 80), UPB_SIZE(0, 0), 5, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
61
- {11, UPB_SIZE(48, 88), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
62
- {13, UPB_SIZE(52, 96), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
63
- {14, UPB_SIZE(8, 8), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
64
- {15, UPB_SIZE(56, 104), UPB_SIZE(0, 0), 6, 11, kUpb_FieldMode_Map | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
65
- {16, UPB_SIZE(60, 112), UPB_SIZE(2, 2), 7, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
66
- {17, UPB_SIZE(64, 120), UPB_SIZE(3, 3), 8, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
67
- {18, UPB_SIZE(68, 128), UPB_SIZE(4, 4), 9, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
68
- {19, UPB_SIZE(9, 9), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
69
- {20, UPB_SIZE(72, 136), UPB_SIZE(5, 5), 10, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
70
- {21, UPB_SIZE(76, 144), UPB_SIZE(6, 6), 11, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
71
- {22, UPB_SIZE(80, 152), UPB_SIZE(0, 0), 12, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
72
- {23, UPB_SIZE(10, 10), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
73
- };
74
-
75
- const upb_MiniTable envoy_config_route_v3_VirtualHost_msginit = {
35
+ // Must be last.
36
+ #include "upb/port/def.inc"
37
+
38
+ static const upb_MiniTableSub envoy_config_route_v3_VirtualHost_submsgs[13] = {
39
+ {.submsg = &envoy_config_route_v3_Route_msg_init},
40
+ {.submsg = &envoy_config_route_v3_VirtualCluster_msg_init},
41
+ {.submsg = &envoy_config_route_v3_RateLimit_msg_init},
42
+ {.submsg = &envoy_config_core_v3_HeaderValueOption_msg_init},
43
+ {.submsg = &envoy_config_route_v3_CorsPolicy_msg_init},
44
+ {.submsg = &envoy_config_core_v3_HeaderValueOption_msg_init},
45
+ {.submsg = &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msg_init},
46
+ {.submsg = &envoy_config_route_v3_RetryPolicy_msg_init},
47
+ {.submsg = &envoy_config_route_v3_HedgePolicy_msg_init},
48
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
49
+ {.submsg = &google_protobuf_Any_msg_init},
50
+ {.submsg = &xds_type_matcher_v3_Matcher_msg_init},
51
+ {.submsg = &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msg_init},
52
+ };
53
+
54
+ static const upb_MiniTableField envoy_config_route_v3_VirtualHost__fields[21] = {
55
+ {1, UPB_SIZE(84, 16), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
56
+ {2, UPB_SIZE(4, 32), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
57
+ {3, UPB_SIZE(8, 40), 0, 0, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
58
+ {4, UPB_SIZE(12, 4), 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
59
+ {5, UPB_SIZE(16, 48), 0, 1, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
60
+ {6, UPB_SIZE(20, 56), 0, 2, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
61
+ {7, UPB_SIZE(24, 64), 0, 3, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
62
+ {8, UPB_SIZE(28, 72), 1, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
63
+ {10, UPB_SIZE(32, 80), 0, 5, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
64
+ {11, UPB_SIZE(36, 88), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
65
+ {13, UPB_SIZE(40, 96), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
66
+ {14, UPB_SIZE(44, 8), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
67
+ {15, UPB_SIZE(48, 104), 0, 6, 11, kUpb_FieldMode_Map | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
68
+ {16, UPB_SIZE(52, 112), 2, 7, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
69
+ {17, UPB_SIZE(56, 120), 3, 8, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
70
+ {18, UPB_SIZE(60, 128), 4, 9, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
71
+ {19, UPB_SIZE(64, 9), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
72
+ {20, UPB_SIZE(68, 136), 5, 10, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
73
+ {21, UPB_SIZE(72, 144), 6, 11, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
74
+ {22, UPB_SIZE(76, 152), 0, 12, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
75
+ {23, UPB_SIZE(80, 10), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
76
+ };
77
+
78
+ const upb_MiniTable envoy_config_route_v3_VirtualHost_msg_init = {
76
79
  &envoy_config_route_v3_VirtualHost_submsgs[0],
77
80
  &envoy_config_route_v3_VirtualHost__fields[0],
78
- UPB_SIZE(88, 160), 21, kUpb_ExtMode_NonExtendable, 8, 255, 0,
79
- };
80
-
81
- static const upb_MiniTable_Sub envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_submsgs[1] = {
82
- {.submsg = &google_protobuf_Any_msginit},
83
- };
84
-
85
- static const upb_MiniTable_Field envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry__fields[2] = {
86
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 12, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
87
- {2, UPB_SIZE(8, 16), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
88
- };
89
-
90
- const upb_MiniTable envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msginit = {
81
+ UPB_SIZE(96, 160), 21, kUpb_ExtMode_NonExtendable, 8, UPB_FASTTABLE_MASK(248), 0,
82
+ UPB_FASTTABLE_INIT({
83
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
84
+ {0x001000003f00000a, &upb_pss_1bt},
85
+ {0x002000003f000012, &upb_prs_1bt},
86
+ {0x002800003f00001a, &upb_prm_1bt_max192b},
87
+ {0x000400003f000020, &upb_psv4_1bt},
88
+ {0x003000003f01002a, &upb_prm_1bt_max64b},
89
+ {0x003800003f020032, &upb_prm_1bt_max64b},
90
+ {0x004000003f03003a, &upb_prm_1bt_maxmaxb},
91
+ {0x0048000001040042, &upb_psm_1bt_max128b},
92
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
93
+ {0x005000003f050052, &upb_prm_1bt_maxmaxb},
94
+ {0x005800003f00005a, &upb_prs_1bt},
95
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
96
+ {0x006000003f00006a, &upb_prs_1bt},
97
+ {0x000800003f000070, &upb_psb1_1bt},
98
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
99
+ {0x0070000002070182, &upb_psm_2bt_max128b},
100
+ {0x007800000308018a, &upb_psm_2bt_max64b},
101
+ {0x0080000004090192, &upb_psm_2bt_maxmaxb},
102
+ {0x000900003f000198, &upb_psb1_2bt},
103
+ {0x00880000050a01a2, &upb_psm_2bt_maxmaxb},
104
+ {0x00900000060b01aa, &upb_psm_2bt_maxmaxb},
105
+ {0x009800003f0c01b2, &upb_prm_2bt_max64b},
106
+ {0x000a00003f0001b8, &upb_psb1_2bt},
107
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
108
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
109
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
110
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
111
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
112
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
113
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
114
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
115
+ })
116
+ };
117
+
118
+ static const upb_MiniTableSub envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_submsgs[1] = {
119
+ {.submsg = &google_protobuf_Any_msg_init},
120
+ };
121
+
122
+ static const upb_MiniTableField envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry__fields[2] = {
123
+ {1, 8, 0, kUpb_NoSub, 12, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
124
+ {2, UPB_SIZE(16, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
125
+ };
126
+
127
+ const upb_MiniTable envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msg_init = {
91
128
  &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_submsgs[0],
92
129
  &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry__fields[0],
93
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
130
+ UPB_SIZE(24, 40), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
131
+ UPB_FASTTABLE_INIT({
132
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
133
+ {0x000800003f00000a, &upb_pss_1bt},
134
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
135
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
136
+ })
94
137
  };
95
138
 
96
- static const upb_MiniTable_Sub envoy_config_route_v3_FilterAction_submsgs[1] = {
97
- {.submsg = &google_protobuf_Any_msginit},
139
+ static const upb_MiniTableSub envoy_config_route_v3_FilterAction_submsgs[1] = {
140
+ {.submsg = &google_protobuf_Any_msg_init},
98
141
  };
99
142
 
100
- static const upb_MiniTable_Field envoy_config_route_v3_FilterAction__fields[1] = {
101
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
143
+ static const upb_MiniTableField envoy_config_route_v3_FilterAction__fields[1] = {
144
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
102
145
  };
103
146
 
104
- const upb_MiniTable envoy_config_route_v3_FilterAction_msginit = {
147
+ const upb_MiniTable envoy_config_route_v3_FilterAction_msg_init = {
105
148
  &envoy_config_route_v3_FilterAction_submsgs[0],
106
149
  &envoy_config_route_v3_FilterAction__fields[0],
107
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
150
+ UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
151
+ UPB_FASTTABLE_INIT({
152
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
153
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
154
+ })
108
155
  };
109
156
 
110
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteList_submsgs[1] = {
111
- {.submsg = &envoy_config_route_v3_Route_msginit},
157
+ static const upb_MiniTableSub envoy_config_route_v3_RouteList_submsgs[1] = {
158
+ {.submsg = &envoy_config_route_v3_Route_msg_init},
112
159
  };
113
160
 
114
- static const upb_MiniTable_Field envoy_config_route_v3_RouteList__fields[1] = {
115
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
161
+ static const upb_MiniTableField envoy_config_route_v3_RouteList__fields[1] = {
162
+ {1, 0, 0, 0, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
116
163
  };
117
164
 
118
- const upb_MiniTable envoy_config_route_v3_RouteList_msginit = {
165
+ const upb_MiniTable envoy_config_route_v3_RouteList_msg_init = {
119
166
  &envoy_config_route_v3_RouteList_submsgs[0],
120
167
  &envoy_config_route_v3_RouteList__fields[0],
121
- UPB_SIZE(8, 8), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
122
- };
123
-
124
- static const upb_MiniTable_Sub envoy_config_route_v3_Route_submsgs[13] = {
125
- {.submsg = &envoy_config_route_v3_RouteMatch_msginit},
126
- {.submsg = &envoy_config_route_v3_RouteAction_msginit},
127
- {.submsg = &envoy_config_route_v3_RedirectAction_msginit},
128
- {.submsg = &envoy_config_core_v3_Metadata_msginit},
129
- {.submsg = &envoy_config_route_v3_Decorator_msginit},
130
- {.submsg = &envoy_config_route_v3_DirectResponseAction_msginit},
131
- {.submsg = &envoy_config_core_v3_HeaderValueOption_msginit},
132
- {.submsg = &envoy_config_core_v3_HeaderValueOption_msginit},
133
- {.submsg = &envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msginit},
134
- {.submsg = &envoy_config_route_v3_Tracing_msginit},
135
- {.submsg = &google_protobuf_UInt32Value_msginit},
136
- {.submsg = &envoy_config_route_v3_FilterAction_msginit},
137
- {.submsg = &envoy_config_route_v3_NonForwardingAction_msginit},
138
- };
139
-
140
- static const upb_MiniTable_Field envoy_config_route_v3_Route__fields[17] = {
141
- {1, UPB_SIZE(8, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
142
- {2, UPB_SIZE(64, 120), UPB_SIZE(-5, -5), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
143
- {3, UPB_SIZE(64, 120), UPB_SIZE(-5, -5), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
144
- {4, UPB_SIZE(12, 16), UPB_SIZE(2, 2), 3, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
145
- {5, UPB_SIZE(16, 24), UPB_SIZE(3, 3), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
146
- {7, UPB_SIZE(64, 120), UPB_SIZE(-5, -5), 5, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
147
- {9, UPB_SIZE(20, 32), UPB_SIZE(0, 0), 6, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
148
- {10, UPB_SIZE(24, 40), UPB_SIZE(0, 0), 7, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
149
- {11, UPB_SIZE(28, 48), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
150
- {12, UPB_SIZE(32, 56), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
151
- {13, UPB_SIZE(36, 64), UPB_SIZE(0, 0), 8, 11, kUpb_FieldMode_Map | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
152
- {14, UPB_SIZE(40, 72), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
153
- {15, UPB_SIZE(48, 88), UPB_SIZE(4, 4), 9, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
154
- {16, UPB_SIZE(52, 96), UPB_SIZE(5, 5), 10, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
155
- {17, UPB_SIZE(64, 120), UPB_SIZE(-5, -5), 11, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
156
- {18, UPB_SIZE(64, 120), UPB_SIZE(-5, -5), 12, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
157
- {19, UPB_SIZE(56, 104), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
158
- };
159
-
160
- const upb_MiniTable envoy_config_route_v3_Route_msginit = {
168
+ 8, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
169
+ UPB_FASTTABLE_INIT({
170
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
171
+ {0x000000003f00000a, &upb_prm_1bt_max192b},
172
+ })
173
+ };
174
+
175
+ static const upb_MiniTableSub envoy_config_route_v3_Route_submsgs[13] = {
176
+ {.submsg = &envoy_config_route_v3_RouteMatch_msg_init},
177
+ {.submsg = &envoy_config_route_v3_RouteAction_msg_init},
178
+ {.submsg = &envoy_config_route_v3_RedirectAction_msg_init},
179
+ {.submsg = &envoy_config_core_v3_Metadata_msg_init},
180
+ {.submsg = &envoy_config_route_v3_Decorator_msg_init},
181
+ {.submsg = &envoy_config_route_v3_DirectResponseAction_msg_init},
182
+ {.submsg = &envoy_config_core_v3_HeaderValueOption_msg_init},
183
+ {.submsg = &envoy_config_core_v3_HeaderValueOption_msg_init},
184
+ {.submsg = &envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msg_init},
185
+ {.submsg = &envoy_config_route_v3_Tracing_msg_init},
186
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
187
+ {.submsg = &envoy_config_route_v3_FilterAction_msg_init},
188
+ {.submsg = &envoy_config_route_v3_NonForwardingAction_msg_init},
189
+ };
190
+
191
+ static const upb_MiniTableField envoy_config_route_v3_Route__fields[17] = {
192
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
193
+ {2, UPB_SIZE(48, 120), UPB_SIZE(-45, -5), 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
194
+ {3, UPB_SIZE(48, 120), UPB_SIZE(-45, -5), 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
195
+ {4, UPB_SIZE(8, 16), 2, 3, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
196
+ {5, UPB_SIZE(12, 24), 3, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
197
+ {7, UPB_SIZE(48, 120), UPB_SIZE(-45, -5), 5, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
198
+ {9, UPB_SIZE(16, 32), 0, 6, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
199
+ {10, UPB_SIZE(20, 40), 0, 7, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
200
+ {11, UPB_SIZE(24, 48), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
201
+ {12, UPB_SIZE(28, 56), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
202
+ {13, UPB_SIZE(32, 64), 0, 8, 11, kUpb_FieldMode_Map | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
203
+ {14, UPB_SIZE(52, 72), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
204
+ {15, UPB_SIZE(36, 88), 4, 9, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
205
+ {16, UPB_SIZE(40, 96), 5, 10, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
206
+ {17, UPB_SIZE(48, 120), UPB_SIZE(-45, -5), 11, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
207
+ {18, UPB_SIZE(48, 120), UPB_SIZE(-45, -5), 12, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
208
+ {19, UPB_SIZE(60, 104), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
209
+ };
210
+
211
+ const upb_MiniTable envoy_config_route_v3_Route_msg_init = {
161
212
  &envoy_config_route_v3_Route_submsgs[0],
162
213
  &envoy_config_route_v3_Route__fields[0],
163
- UPB_SIZE(72, 128), 17, kUpb_ExtMode_NonExtendable, 5, 255, 0,
164
- };
165
-
166
- static const upb_MiniTable_Sub envoy_config_route_v3_Route_TypedPerFilterConfigEntry_submsgs[1] = {
167
- {.submsg = &google_protobuf_Any_msginit},
168
- };
169
-
170
- static const upb_MiniTable_Field envoy_config_route_v3_Route_TypedPerFilterConfigEntry__fields[2] = {
171
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 12, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
172
- {2, UPB_SIZE(8, 16), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
173
- };
174
-
175
- const upb_MiniTable envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msginit = {
214
+ UPB_SIZE(72, 128), 17, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(248), 0,
215
+ UPB_FASTTABLE_INIT({
216
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
217
+ {0x000800000100000a, &upb_psm_1bt_max128b},
218
+ {0x0078000402010012, &upb_pom_1bt_max256b},
219
+ {0x007800040302001a, &upb_pom_1bt_max128b},
220
+ {0x0010000002030022, &upb_psm_1bt_maxmaxb},
221
+ {0x001800000304002a, &upb_psm_1bt_max64b},
222
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
223
+ {0x007800040705003a, &upb_pom_1bt_max64b},
224
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
225
+ {0x002000003f06004a, &upb_prm_1bt_maxmaxb},
226
+ {0x002800003f070052, &upb_prm_1bt_maxmaxb},
227
+ {0x003000003f00005a, &upb_prs_1bt},
228
+ {0x003800003f000062, &upb_prs_1bt},
229
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
230
+ {0x004800003f000072, &upb_pss_1bt},
231
+ {0x005800000409007a, &upb_psm_1bt_max64b},
232
+ {0x00600000050a0182, &upb_psm_2bt_maxmaxb},
233
+ {0x00780004110b018a, &upb_pom_2bt_max64b},
234
+ {0x00780004120c0192, &upb_pom_2bt_max64b},
235
+ {0x006800003f00019a, &upb_pss_2bt},
236
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
237
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
238
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
239
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
240
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
241
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
242
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
243
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
244
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
245
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
246
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
247
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
248
+ })
249
+ };
250
+
251
+ static const upb_MiniTableSub envoy_config_route_v3_Route_TypedPerFilterConfigEntry_submsgs[1] = {
252
+ {.submsg = &google_protobuf_Any_msg_init},
253
+ };
254
+
255
+ static const upb_MiniTableField envoy_config_route_v3_Route_TypedPerFilterConfigEntry__fields[2] = {
256
+ {1, 8, 0, kUpb_NoSub, 12, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
257
+ {2, UPB_SIZE(16, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
258
+ };
259
+
260
+ const upb_MiniTable envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msg_init = {
176
261
  &envoy_config_route_v3_Route_TypedPerFilterConfigEntry_submsgs[0],
177
262
  &envoy_config_route_v3_Route_TypedPerFilterConfigEntry__fields[0],
178
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
263
+ UPB_SIZE(24, 40), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
264
+ UPB_FASTTABLE_INIT({
265
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
266
+ {0x000800003f00000a, &upb_pss_1bt},
267
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
268
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
269
+ })
179
270
  };
180
271
 
181
- static const upb_MiniTable_Sub envoy_config_route_v3_WeightedCluster_submsgs[2] = {
182
- {.submsg = &envoy_config_route_v3_WeightedCluster_ClusterWeight_msginit},
183
- {.submsg = &google_protobuf_UInt32Value_msginit},
272
+ static const upb_MiniTableSub envoy_config_route_v3_WeightedCluster_submsgs[2] = {
273
+ {.submsg = &envoy_config_route_v3_WeightedCluster_ClusterWeight_msg_init},
274
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
184
275
  };
185
276
 
186
- static const upb_MiniTable_Field envoy_config_route_v3_WeightedCluster__fields[4] = {
187
- {1, UPB_SIZE(16, 24), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
188
- {2, UPB_SIZE(20, 32), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
189
- {3, UPB_SIZE(28, 48), UPB_SIZE(1, 1), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
190
- {4, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
277
+ static const upb_MiniTableField envoy_config_route_v3_WeightedCluster__fields[4] = {
278
+ {1, UPB_SIZE(4, 24), 0, 0, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
279
+ {2, UPB_SIZE(24, 32), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
280
+ {3, UPB_SIZE(8, 48), 1, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
281
+ {4, UPB_SIZE(16, 8), UPB_SIZE(-13, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
191
282
  };
192
283
 
193
- const upb_MiniTable envoy_config_route_v3_WeightedCluster_msginit = {
284
+ const upb_MiniTable envoy_config_route_v3_WeightedCluster_msg_init = {
194
285
  &envoy_config_route_v3_WeightedCluster_submsgs[0],
195
286
  &envoy_config_route_v3_WeightedCluster__fields[0],
196
- UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, 255, 0,
197
- };
198
-
199
- static const upb_MiniTable_Sub envoy_config_route_v3_WeightedCluster_ClusterWeight_submsgs[5] = {
200
- {.submsg = &google_protobuf_UInt32Value_msginit},
201
- {.submsg = &envoy_config_core_v3_Metadata_msginit},
202
- {.submsg = &envoy_config_core_v3_HeaderValueOption_msginit},
203
- {.submsg = &envoy_config_core_v3_HeaderValueOption_msginit},
204
- {.submsg = &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit},
205
- };
206
-
207
- static const upb_MiniTable_Field envoy_config_route_v3_WeightedCluster_ClusterWeight__fields[10] = {
208
- {1, UPB_SIZE(16, 24), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
209
- {2, UPB_SIZE(24, 40), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
210
- {3, UPB_SIZE(28, 48), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
211
- {4, UPB_SIZE(32, 56), UPB_SIZE(0, 0), 2, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
212
- {5, UPB_SIZE(36, 64), UPB_SIZE(0, 0), 3, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
213
- {6, UPB_SIZE(40, 72), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
214
- {9, UPB_SIZE(44, 80), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
215
- {10, UPB_SIZE(48, 88), UPB_SIZE(0, 0), 4, 11, kUpb_FieldMode_Map | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
216
- {11, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
217
- {12, UPB_SIZE(52, 96), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
218
- };
219
-
220
- const upb_MiniTable envoy_config_route_v3_WeightedCluster_ClusterWeight_msginit = {
287
+ UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
288
+ UPB_FASTTABLE_INIT({
289
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
290
+ {0x001800003f00000a, &upb_prm_1bt_max128b},
291
+ {0x002000003f000012, &upb_pss_1bt},
292
+ {0x003000000101001a, &upb_psm_1bt_maxmaxb},
293
+ {0x0008000404000022, &upb_pos_1bt},
294
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
295
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
296
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
297
+ })
298
+ };
299
+
300
+ static const upb_MiniTableSub envoy_config_route_v3_WeightedCluster_ClusterWeight_submsgs[5] = {
301
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
302
+ {.submsg = &envoy_config_core_v3_Metadata_msg_init},
303
+ {.submsg = &envoy_config_core_v3_HeaderValueOption_msg_init},
304
+ {.submsg = &envoy_config_core_v3_HeaderValueOption_msg_init},
305
+ {.submsg = &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msg_init},
306
+ };
307
+
308
+ static const upb_MiniTableField envoy_config_route_v3_WeightedCluster_ClusterWeight__fields[10] = {
309
+ {1, UPB_SIZE(44, 24), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
310
+ {2, UPB_SIZE(4, 40), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
311
+ {3, UPB_SIZE(8, 48), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
312
+ {4, UPB_SIZE(12, 56), 0, 2, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
313
+ {5, UPB_SIZE(16, 64), 0, 3, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
314
+ {6, UPB_SIZE(20, 72), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
315
+ {9, UPB_SIZE(24, 80), 0, kUpb_NoSub, 9, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
316
+ {10, UPB_SIZE(28, 88), 0, 4, 11, kUpb_FieldMode_Map | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
317
+ {11, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
318
+ {12, UPB_SIZE(52, 96), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
319
+ };
320
+
321
+ const upb_MiniTable envoy_config_route_v3_WeightedCluster_ClusterWeight_msg_init = {
221
322
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_submsgs[0],
222
323
  &envoy_config_route_v3_WeightedCluster_ClusterWeight__fields[0],
223
- UPB_SIZE(64, 112), 10, kUpb_ExtMode_NonExtendable, 6, 255, 0,
224
- };
225
-
226
- static const upb_MiniTable_Sub envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[1] = {
227
- {.submsg = &google_protobuf_Any_msginit},
228
- };
229
-
230
- static const upb_MiniTable_Field envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry__fields[2] = {
231
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 12, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
232
- {2, UPB_SIZE(8, 16), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
233
- };
234
-
235
- const upb_MiniTable envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit = {
324
+ UPB_SIZE(64, 112), 10, kUpb_ExtMode_NonExtendable, 6, UPB_FASTTABLE_MASK(120), 0,
325
+ UPB_FASTTABLE_INIT({
326
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
327
+ {0x001800003f00000a, &upb_pss_1bt},
328
+ {0x0028000001000012, &upb_psm_1bt_maxmaxb},
329
+ {0x003000000201001a, &upb_psm_1bt_maxmaxb},
330
+ {0x003800003f020022, &upb_prm_1bt_maxmaxb},
331
+ {0x004000003f03002a, &upb_prm_1bt_maxmaxb},
332
+ {0x004800003f000032, &upb_prs_1bt},
333
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
334
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
335
+ {0x005000003f00004a, &upb_prs_1bt},
336
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
337
+ {0x000800040b00005a, &upb_pos_1bt},
338
+ {0x006000003f000062, &upb_pss_1bt},
339
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
340
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
341
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
342
+ })
343
+ };
344
+
345
+ static const upb_MiniTableSub envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[1] = {
346
+ {.submsg = &google_protobuf_Any_msg_init},
347
+ };
348
+
349
+ static const upb_MiniTableField envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry__fields[2] = {
350
+ {1, 8, 0, kUpb_NoSub, 12, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
351
+ {2, UPB_SIZE(16, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
352
+ };
353
+
354
+ const upb_MiniTable envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msg_init = {
236
355
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[0],
237
356
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry__fields[0],
238
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
357
+ UPB_SIZE(24, 40), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
358
+ UPB_FASTTABLE_INIT({
359
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
360
+ {0x000800003f00000a, &upb_pss_1bt},
361
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
362
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
363
+ })
239
364
  };
240
365
 
241
- static const upb_MiniTable_Sub envoy_config_route_v3_ClusterSpecifierPlugin_submsgs[1] = {
242
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
366
+ static const upb_MiniTableSub envoy_config_route_v3_ClusterSpecifierPlugin_submsgs[1] = {
367
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
243
368
  };
244
369
 
245
- static const upb_MiniTable_Field envoy_config_route_v3_ClusterSpecifierPlugin__fields[2] = {
246
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
247
- {2, UPB_SIZE(1, 1), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
370
+ static const upb_MiniTableField envoy_config_route_v3_ClusterSpecifierPlugin__fields[2] = {
371
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
372
+ {2, UPB_SIZE(8, 1), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
248
373
  };
249
374
 
250
- const upb_MiniTable envoy_config_route_v3_ClusterSpecifierPlugin_msginit = {
375
+ const upb_MiniTable envoy_config_route_v3_ClusterSpecifierPlugin_msg_init = {
251
376
  &envoy_config_route_v3_ClusterSpecifierPlugin_submsgs[0],
252
377
  &envoy_config_route_v3_ClusterSpecifierPlugin__fields[0],
253
- UPB_SIZE(8, 16), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
254
- };
255
-
256
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteMatch_submsgs[10] = {
257
- {.submsg = &google_protobuf_BoolValue_msginit},
258
- {.submsg = &envoy_config_route_v3_HeaderMatcher_msginit},
259
- {.submsg = &envoy_config_route_v3_QueryParameterMatcher_msginit},
260
- {.submsg = &envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msginit},
261
- {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msginit},
262
- {.submsg = &envoy_type_matcher_v3_RegexMatcher_msginit},
263
- {.submsg = &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msginit},
264
- {.submsg = &envoy_config_route_v3_RouteMatch_ConnectMatcher_msginit},
265
- {.submsg = &envoy_type_matcher_v3_MetadataMatcher_msginit},
266
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
267
- };
268
-
269
- static const upb_MiniTable_Field envoy_config_route_v3_RouteMatch__fields[13] = {
270
- {1, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
271
- {2, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
272
- {4, UPB_SIZE(16, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
273
- {6, UPB_SIZE(20, 32), UPB_SIZE(0, 0), 1, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
274
- {7, UPB_SIZE(24, 40), UPB_SIZE(0, 0), 2, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
275
- {8, UPB_SIZE(28, 48), UPB_SIZE(2, 2), 3, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
276
- {9, UPB_SIZE(32, 56), UPB_SIZE(3, 3), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
277
- {10, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 5, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
278
- {11, UPB_SIZE(36, 64), UPB_SIZE(4, 4), 6, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
279
- {12, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 7, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
280
- {13, UPB_SIZE(40, 72), UPB_SIZE(0, 0), 8, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
281
- {14, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
282
- {15, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 9, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
283
- };
284
-
285
- const upb_MiniTable envoy_config_route_v3_RouteMatch_msginit = {
378
+ 16, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
379
+ UPB_FASTTABLE_INIT({
380
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
381
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
382
+ {0x000100003f000010, &upb_psb1_1bt},
383
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
384
+ })
385
+ };
386
+
387
+ static const upb_MiniTableSub envoy_config_route_v3_RouteMatch_submsgs[10] = {
388
+ {.submsg = &google_protobuf_BoolValue_msg_init},
389
+ {.submsg = &envoy_config_route_v3_HeaderMatcher_msg_init},
390
+ {.submsg = &envoy_config_route_v3_QueryParameterMatcher_msg_init},
391
+ {.submsg = &envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msg_init},
392
+ {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msg_init},
393
+ {.submsg = &envoy_type_matcher_v3_RegexMatcher_msg_init},
394
+ {.submsg = &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msg_init},
395
+ {.submsg = &envoy_config_route_v3_RouteMatch_ConnectMatcher_msg_init},
396
+ {.submsg = &envoy_type_matcher_v3_MetadataMatcher_msg_init},
397
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
398
+ };
399
+
400
+ static const upb_MiniTableField envoy_config_route_v3_RouteMatch__fields[13] = {
401
+ {1, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
402
+ {2, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
403
+ {4, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
404
+ {6, UPB_SIZE(8, 32), 0, 1, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
405
+ {7, UPB_SIZE(12, 40), 0, 2, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
406
+ {8, UPB_SIZE(16, 48), 2, 3, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
407
+ {9, UPB_SIZE(20, 56), 3, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
408
+ {10, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), 5, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
409
+ {11, UPB_SIZE(24, 64), 4, 6, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
410
+ {12, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), 7, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
411
+ {13, UPB_SIZE(28, 72), 0, 8, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
412
+ {14, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
413
+ {15, UPB_SIZE(36, 8), UPB_SIZE(-33, -5), 9, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
414
+ };
415
+
416
+ const upb_MiniTable envoy_config_route_v3_RouteMatch_msg_init = {
286
417
  &envoy_config_route_v3_RouteMatch_submsgs[0],
287
418
  &envoy_config_route_v3_RouteMatch__fields[0],
288
- UPB_SIZE(48, 80), 13, kUpb_ExtMode_NonExtendable, 2, 255, 0,
289
- };
290
-
291
- const upb_MiniTable envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msginit = {
419
+ UPB_SIZE(48, 80), 13, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(120), 0,
420
+ UPB_FASTTABLE_INIT({
421
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
422
+ {0x000800040100000a, &upb_pos_1bt},
423
+ {0x0008000402000012, &upb_pos_1bt},
424
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
425
+ {0x0018000001000022, &upb_psm_1bt_maxmaxb},
426
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
427
+ {0x002000003f010032, &upb_prm_1bt_max64b},
428
+ {0x002800003f02003a, &upb_prm_1bt_max64b},
429
+ {0x0030000002030042, &upb_psm_1bt_max64b},
430
+ {0x003800000304004a, &upb_psm_1bt_maxmaxb},
431
+ {0x000800040a050052, &upb_pom_1bt_maxmaxb},
432
+ {0x004000000406005a, &upb_psm_1bt_max64b},
433
+ {0x000800040c070062, &upb_pom_1bt_max64b},
434
+ {0x004800003f08006a, &upb_prm_1bt_maxmaxb},
435
+ {0x000800040e000072, &upb_pos_1bt},
436
+ {0x000800040f09007a, &upb_pom_1bt_maxmaxb},
437
+ })
438
+ };
439
+
440
+ const upb_MiniTable envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msg_init = {
292
441
  NULL,
293
442
  NULL,
294
- UPB_SIZE(0, 0), 0, kUpb_ExtMode_NonExtendable, 0, 255, 0,
443
+ 0, 0, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(255), 0,
295
444
  };
296
445
 
297
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_submsgs[2] = {
298
- {.submsg = &google_protobuf_BoolValue_msginit},
299
- {.submsg = &google_protobuf_BoolValue_msginit},
446
+ static const upb_MiniTableSub envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_submsgs[2] = {
447
+ {.submsg = &google_protobuf_BoolValue_msg_init},
448
+ {.submsg = &google_protobuf_BoolValue_msg_init},
300
449
  };
301
450
 
302
- static const upb_MiniTable_Field envoy_config_route_v3_RouteMatch_TlsContextMatchOptions__fields[2] = {
303
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
304
- {2, UPB_SIZE(8, 16), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
451
+ static const upb_MiniTableField envoy_config_route_v3_RouteMatch_TlsContextMatchOptions__fields[2] = {
452
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
453
+ {2, UPB_SIZE(8, 16), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
305
454
  };
306
455
 
307
- const upb_MiniTable envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msginit = {
456
+ const upb_MiniTable envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msg_init = {
308
457
  &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_submsgs[0],
309
458
  &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions__fields[0],
310
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
459
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
460
+ UPB_FASTTABLE_INIT({
461
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
462
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
463
+ {0x0010000002010012, &upb_psm_1bt_maxmaxb},
464
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
465
+ })
311
466
  };
312
467
 
313
- const upb_MiniTable envoy_config_route_v3_RouteMatch_ConnectMatcher_msginit = {
468
+ const upb_MiniTable envoy_config_route_v3_RouteMatch_ConnectMatcher_msg_init = {
314
469
  NULL,
315
470
  NULL,
316
- UPB_SIZE(0, 0), 0, kUpb_ExtMode_NonExtendable, 0, 255, 0,
471
+ 0, 0, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(255), 0,
317
472
  };
318
473
 
319
- static const upb_MiniTable_Sub envoy_config_route_v3_CorsPolicy_submsgs[5] = {
320
- {.submsg = &google_protobuf_BoolValue_msginit},
321
- {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msginit},
322
- {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msginit},
323
- {.submsg = &envoy_type_matcher_v3_StringMatcher_msginit},
324
- {.submsg = &google_protobuf_BoolValue_msginit},
474
+ static const upb_MiniTableSub envoy_config_route_v3_CorsPolicy_submsgs[5] = {
475
+ {.submsg = &google_protobuf_BoolValue_msg_init},
476
+ {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msg_init},
477
+ {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msg_init},
478
+ {.submsg = &envoy_type_matcher_v3_StringMatcher_msg_init},
479
+ {.submsg = &google_protobuf_BoolValue_msg_init},
325
480
  };
326
481
 
327
- static const upb_MiniTable_Field envoy_config_route_v3_CorsPolicy__fields[9] = {
328
- {2, UPB_SIZE(8, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
329
- {3, UPB_SIZE(16, 24), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
330
- {4, UPB_SIZE(24, 40), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
331
- {5, UPB_SIZE(32, 56), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
332
- {6, UPB_SIZE(40, 72), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
333
- {9, UPB_SIZE(56, 104), UPB_SIZE(-5, -5), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
334
- {10, UPB_SIZE(44, 80), UPB_SIZE(2, 2), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
335
- {11, UPB_SIZE(48, 88), UPB_SIZE(0, 0), 3, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
336
- {12, UPB_SIZE(52, 96), UPB_SIZE(3, 3), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
482
+ static const upb_MiniTableField envoy_config_route_v3_CorsPolicy__fields[9] = {
483
+ {2, UPB_SIZE(28, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
484
+ {3, UPB_SIZE(36, 24), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
485
+ {4, UPB_SIZE(44, 40), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
486
+ {5, UPB_SIZE(52, 56), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
487
+ {6, UPB_SIZE(4, 72), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
488
+ {9, UPB_SIZE(24, 104), UPB_SIZE(-9, -5), 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
489
+ {10, UPB_SIZE(12, 80), 2, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
490
+ {11, UPB_SIZE(16, 88), 0, 3, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
491
+ {12, UPB_SIZE(20, 96), 3, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
337
492
  };
338
493
 
339
- const upb_MiniTable envoy_config_route_v3_CorsPolicy_msginit = {
494
+ const upb_MiniTable envoy_config_route_v3_CorsPolicy_msg_init = {
340
495
  &envoy_config_route_v3_CorsPolicy_submsgs[0],
341
496
  &envoy_config_route_v3_CorsPolicy__fields[0],
342
- UPB_SIZE(64, 112), 9, kUpb_ExtMode_NonExtendable, 0, 255, 0,
343
- };
344
-
345
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_submsgs[24] = {
346
- {.submsg = &envoy_config_route_v3_WeightedCluster_msginit},
347
- {.submsg = &envoy_config_core_v3_Metadata_msginit},
348
- {.submsg = &google_protobuf_BoolValue_msginit},
349
- {.submsg = &google_protobuf_Duration_msginit},
350
- {.submsg = &envoy_config_route_v3_RetryPolicy_msginit},
351
- {.submsg = &envoy_config_route_v3_RateLimit_msginit},
352
- {.submsg = &google_protobuf_BoolValue_msginit},
353
- {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_msginit},
354
- {.submsg = &envoy_config_route_v3_CorsPolicy_msginit},
355
- {.submsg = &google_protobuf_Duration_msginit},
356
- {.submsg = &google_protobuf_Duration_msginit},
357
- {.submsg = &envoy_config_route_v3_RouteAction_UpgradeConfig_msginit},
358
- {.submsg = &envoy_config_route_v3_HedgePolicy_msginit},
359
- {.submsg = &google_protobuf_Duration_msginit},
360
- {.submsg = &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msginit},
361
- {.submsg = &google_protobuf_UInt32Value_msginit},
362
- {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msginit},
363
- {.submsg = &google_protobuf_Any_msginit},
364
- {.submsg = &envoy_config_route_v3_InternalRedirectPolicy_msginit},
365
- {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msginit},
366
- {.submsg = &envoy_config_route_v3_RouteAction_MaxStreamDuration_msginit},
367
- {.submsg = &envoy_config_route_v3_ClusterSpecifierPlugin_msginit},
368
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
369
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
370
- };
371
-
372
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction__fields[34] = {
373
- {1, UPB_SIZE(36, 48), UPB_SIZE(-25, -25), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
374
- {2, UPB_SIZE(36, 48), UPB_SIZE(-25, -25), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
375
- {3, UPB_SIZE(36, 48), UPB_SIZE(-25, -25), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
376
- {4, UPB_SIZE(44, 64), UPB_SIZE(1, 1), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
377
- {5, UPB_SIZE(48, 72), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
378
- {6, UPB_SIZE(28, 32), UPB_SIZE(-17, -17), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
379
- {7, UPB_SIZE(28, 32), UPB_SIZE(-17, -17), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
380
- {8, UPB_SIZE(56, 88), UPB_SIZE(2, 2), 3, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
381
- {9, UPB_SIZE(60, 96), UPB_SIZE(3, 3), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
382
- {11, UPB_SIZE(4, 4), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
383
- {13, UPB_SIZE(64, 104), UPB_SIZE(0, 0), 5, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
384
- {14, UPB_SIZE(68, 112), UPB_SIZE(4, 4), 6, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
385
- {15, UPB_SIZE(72, 120), UPB_SIZE(0, 0), 7, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
386
- {17, UPB_SIZE(76, 128), UPB_SIZE(5, 5), 8, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
387
- {20, UPB_SIZE(8, 8), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
388
- {23, UPB_SIZE(80, 136), UPB_SIZE(6, 6), 9, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
389
- {24, UPB_SIZE(84, 144), UPB_SIZE(7, 7), 10, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
390
- {25, UPB_SIZE(88, 152), UPB_SIZE(0, 0), 11, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
391
- {26, UPB_SIZE(12, 12), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
392
- {27, UPB_SIZE(92, 160), UPB_SIZE(8, 8), 12, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
393
- {28, UPB_SIZE(96, 168), UPB_SIZE(9, 9), 13, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
394
- {29, UPB_SIZE(28, 32), UPB_SIZE(-17, -17), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
395
- {30, UPB_SIZE(100, 176), UPB_SIZE(0, 0), 14, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
396
- {31, UPB_SIZE(104, 184), UPB_SIZE(10, 10), 15, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
397
- {32, UPB_SIZE(108, 192), UPB_SIZE(11, 11), 16, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
398
- {33, UPB_SIZE(112, 200), UPB_SIZE(12, 12), 17, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
399
- {34, UPB_SIZE(116, 208), UPB_SIZE(13, 13), 18, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
400
- {35, UPB_SIZE(28, 32), UPB_SIZE(-17, -17), 19, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
401
- {36, UPB_SIZE(120, 216), UPB_SIZE(14, 14), 20, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
402
- {37, UPB_SIZE(36, 48), UPB_SIZE(-25, -25), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
403
- {38, UPB_SIZE(20, 20), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
404
- {39, UPB_SIZE(36, 48), UPB_SIZE(-25, -25), 21, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
405
- {40, UPB_SIZE(124, 224), UPB_SIZE(15, 15), 22, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
406
- {41, UPB_SIZE(128, 232), UPB_SIZE(16, 16), 23, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
407
- };
408
-
409
- const upb_MiniTable envoy_config_route_v3_RouteAction_msginit = {
497
+ UPB_SIZE(64, 112), 9, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(120), 0,
498
+ UPB_FASTTABLE_INIT({
499
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
500
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
501
+ {0x000800003f000012, &upb_pss_1bt},
502
+ {0x001800003f00001a, &upb_pss_1bt},
503
+ {0x002800003f000022, &upb_pss_1bt},
504
+ {0x003800003f00002a, &upb_pss_1bt},
505
+ {0x0048000001000032, &upb_psm_1bt_maxmaxb},
506
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
507
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
508
+ {0x006800040901004a, &upb_pom_1bt_maxmaxb},
509
+ {0x0050000002020052, &upb_psm_1bt_maxmaxb},
510
+ {0x005800003f03005a, &upb_prm_1bt_maxmaxb},
511
+ {0x0060000003040062, &upb_psm_1bt_maxmaxb},
512
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
513
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
514
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
515
+ })
516
+ };
517
+
518
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_submsgs[24] = {
519
+ {.submsg = &envoy_config_route_v3_WeightedCluster_msg_init},
520
+ {.submsg = &envoy_config_core_v3_Metadata_msg_init},
521
+ {.submsg = &google_protobuf_BoolValue_msg_init},
522
+ {.submsg = &google_protobuf_Duration_msg_init},
523
+ {.submsg = &envoy_config_route_v3_RetryPolicy_msg_init},
524
+ {.submsg = &envoy_config_route_v3_RateLimit_msg_init},
525
+ {.submsg = &google_protobuf_BoolValue_msg_init},
526
+ {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_msg_init},
527
+ {.submsg = &envoy_config_route_v3_CorsPolicy_msg_init},
528
+ {.submsg = &google_protobuf_Duration_msg_init},
529
+ {.submsg = &google_protobuf_Duration_msg_init},
530
+ {.submsg = &envoy_config_route_v3_RouteAction_UpgradeConfig_msg_init},
531
+ {.submsg = &envoy_config_route_v3_HedgePolicy_msg_init},
532
+ {.submsg = &google_protobuf_Duration_msg_init},
533
+ {.submsg = &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msg_init},
534
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
535
+ {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msg_init},
536
+ {.submsg = &google_protobuf_Any_msg_init},
537
+ {.submsg = &envoy_config_route_v3_InternalRedirectPolicy_msg_init},
538
+ {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msg_init},
539
+ {.submsg = &envoy_config_route_v3_RouteAction_MaxStreamDuration_msg_init},
540
+ {.submsg = &envoy_config_route_v3_ClusterSpecifierPlugin_msg_init},
541
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
542
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
543
+ };
544
+
545
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction__fields[34] = {
546
+ {1, UPB_SIZE(116, 48), UPB_SIZE(-97, -25), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
547
+ {2, UPB_SIZE(116, 48), UPB_SIZE(-97, -25), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
548
+ {3, UPB_SIZE(116, 48), UPB_SIZE(-97, -25), 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
549
+ {4, UPB_SIZE(4, 64), 1, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
550
+ {5, UPB_SIZE(124, 72), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
551
+ {6, UPB_SIZE(108, 32), UPB_SIZE(-85, -17), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
552
+ {7, UPB_SIZE(108, 32), UPB_SIZE(-85, -17), 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
553
+ {8, UPB_SIZE(8, 88), 2, 3, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
554
+ {9, UPB_SIZE(12, 96), 3, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
555
+ {11, UPB_SIZE(16, 4), 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
556
+ {13, UPB_SIZE(20, 104), 0, 5, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
557
+ {14, UPB_SIZE(24, 112), 4, 6, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
558
+ {15, UPB_SIZE(28, 120), 0, 7, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
559
+ {17, UPB_SIZE(32, 128), 5, 8, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
560
+ {20, UPB_SIZE(36, 8), 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
561
+ {23, UPB_SIZE(40, 136), 6, 9, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
562
+ {24, UPB_SIZE(44, 144), 7, 10, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
563
+ {25, UPB_SIZE(48, 152), 0, 11, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
564
+ {26, UPB_SIZE(52, 12), 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
565
+ {27, UPB_SIZE(56, 160), 8, 12, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
566
+ {28, UPB_SIZE(60, 168), 9, 13, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
567
+ {29, UPB_SIZE(108, 32), UPB_SIZE(-85, -17), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
568
+ {30, UPB_SIZE(64, 176), 0, 14, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
569
+ {31, UPB_SIZE(68, 184), 10, 15, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
570
+ {32, UPB_SIZE(72, 192), 11, 16, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
571
+ {33, UPB_SIZE(76, 200), 12, 17, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
572
+ {34, UPB_SIZE(80, 208), 13, 18, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
573
+ {35, UPB_SIZE(108, 32), UPB_SIZE(-85, -17), 19, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
574
+ {36, UPB_SIZE(88, 216), 14, 20, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
575
+ {37, UPB_SIZE(116, 48), UPB_SIZE(-97, -25), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
576
+ {38, UPB_SIZE(92, 20), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
577
+ {39, UPB_SIZE(116, 48), UPB_SIZE(-97, -25), 21, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
578
+ {40, UPB_SIZE(100, 224), 15, 22, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
579
+ {41, UPB_SIZE(104, 232), 16, 23, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
580
+ };
581
+
582
+ const upb_MiniTable envoy_config_route_v3_RouteAction_msg_init = {
410
583
  &envoy_config_route_v3_RouteAction_submsgs[0],
411
584
  &envoy_config_route_v3_RouteAction__fields[0],
412
- UPB_SIZE(136, 240), 34, kUpb_ExtMode_NonExtendable, 9, 255, 0,
413
- };
414
-
415
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_RequestMirrorPolicy_submsgs[2] = {
416
- {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msginit},
417
- {.submsg = &google_protobuf_BoolValue_msginit},
418
- };
419
-
420
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_RequestMirrorPolicy__fields[4] = {
421
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
422
- {3, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
423
- {4, UPB_SIZE(16, 32), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
424
- {5, UPB_SIZE(20, 40), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
425
- };
426
-
427
- const upb_MiniTable envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msginit = {
585
+ UPB_SIZE(136, 240), 34, kUpb_ExtMode_NonExtendable, 9, UPB_FASTTABLE_MASK(248), 0,
586
+ UPB_FASTTABLE_INIT({
587
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
588
+ {0x003000180100000a, &upb_pos_1bt},
589
+ {0x0030001802000012, &upb_pos_1bt},
590
+ {0x003000180300001a, &upb_pom_1bt_max64b},
591
+ {0x0040000001010022, &upb_psm_1bt_maxmaxb},
592
+ {0x004800003f00002a, &upb_pss_1bt},
593
+ {0x0020001006000032, &upb_pos_1bt},
594
+ {0x002000100702003a, &upb_pom_1bt_maxmaxb},
595
+ {0x0058000002030042, &upb_psm_1bt_maxmaxb},
596
+ {0x006000000304004a, &upb_psm_1bt_max128b},
597
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
598
+ {0x000400003f000058, &upb_psv4_1bt},
599
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
600
+ {0x006800003f05006a, &upb_prm_1bt_max64b},
601
+ {0x0070000004060072, &upb_psm_1bt_maxmaxb},
602
+ {0x007800003f07007a, &upb_prm_1bt_max64b},
603
+ {0x00c000000b100282, &upb_psm_2bt_maxmaxb},
604
+ {0x008000000508018a, &upb_psm_2bt_max128b},
605
+ {0x00d000000d120292, &upb_psm_2bt_max64b},
606
+ {0x002000102313029a, &upb_pom_2bt_maxmaxb},
607
+ {0x000800003f0001a0, &upb_psv4_2bt},
608
+ {0x00300018250002aa, &upb_pos_2bt},
609
+ {0x001400003f0002b0, &upb_psb1_2bt},
610
+ {0x00880000060901ba, &upb_psm_2bt_maxmaxb},
611
+ {0x00900000070a01c2, &upb_psm_2bt_maxmaxb},
612
+ {0x009800003f0b01ca, &upb_prm_2bt_max64b},
613
+ {0x000c00003f0001d0, &upb_psv4_2bt},
614
+ {0x00a00000080c01da, &upb_psm_2bt_max64b},
615
+ {0x00a80000090d01e2, &upb_psm_2bt_maxmaxb},
616
+ {0x002000101d0001ea, &upb_pos_2bt},
617
+ {0x00b000003f0e01f2, &upb_prm_2bt_max64b},
618
+ {0x00b800000a0f01fa, &upb_psm_2bt_maxmaxb},
619
+ })
620
+ };
621
+
622
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_RequestMirrorPolicy_submsgs[2] = {
623
+ {.submsg = &envoy_config_core_v3_RuntimeFractionalPercent_msg_init},
624
+ {.submsg = &google_protobuf_BoolValue_msg_init},
625
+ };
626
+
627
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_RequestMirrorPolicy__fields[4] = {
628
+ {1, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
629
+ {3, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
630
+ {4, UPB_SIZE(8, 32), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
631
+ {5, UPB_SIZE(20, 40), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
632
+ };
633
+
634
+ const upb_MiniTable envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msg_init = {
428
635
  &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_submsgs[0],
429
636
  &envoy_config_route_v3_RouteAction_RequestMirrorPolicy__fields[0],
430
- UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 1, 255, 0,
431
- };
432
-
433
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_HashPolicy_submsgs[5] = {
434
- {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_Header_msginit},
435
- {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msginit},
436
- {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msginit},
437
- {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msginit},
438
- {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msginit},
439
- };
440
-
441
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_HashPolicy__fields[6] = {
442
- {1, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
443
- {2, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
444
- {3, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
445
- {4, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
446
- {5, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 3, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
447
- {6, UPB_SIZE(8, 8), UPB_SIZE(-5, -5), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
448
- };
449
-
450
- const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_msginit = {
637
+ UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(56), 0,
638
+ UPB_FASTTABLE_INIT({
639
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
640
+ {0x000800003f00000a, &upb_pss_1bt},
641
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
642
+ {0x001800000100001a, &upb_psm_1bt_maxmaxb},
643
+ {0x0020000002010022, &upb_psm_1bt_maxmaxb},
644
+ {0x002800003f00002a, &upb_pss_1bt},
645
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
646
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
647
+ })
648
+ };
649
+
650
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_HashPolicy_submsgs[5] = {
651
+ {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_Header_msg_init},
652
+ {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msg_init},
653
+ {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msg_init},
654
+ {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msg_init},
655
+ {.submsg = &envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msg_init},
656
+ };
657
+
658
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy__fields[6] = {
659
+ {1, 8, -5, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
660
+ {2, 8, -5, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
661
+ {3, 8, -5, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
662
+ {4, 0, 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
663
+ {5, 8, -5, 3, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
664
+ {6, 8, -5, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
665
+ };
666
+
667
+ const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_msg_init = {
451
668
  &envoy_config_route_v3_RouteAction_HashPolicy_submsgs[0],
452
669
  &envoy_config_route_v3_RouteAction_HashPolicy__fields[0],
453
- UPB_SIZE(16, 16), 6, kUpb_ExtMode_NonExtendable, 6, 255, 0,
670
+ 16, 6, kUpb_ExtMode_NonExtendable, 6, UPB_FASTTABLE_MASK(56), 0,
671
+ UPB_FASTTABLE_INIT({
672
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
673
+ {0x000800040100000a, &upb_pom_1bt_max64b},
674
+ {0x0008000402010012, &upb_pom_1bt_max64b},
675
+ {0x000800040302001a, &upb_pom_1bt_max64b},
676
+ {0x000000003f000020, &upb_psb1_1bt},
677
+ {0x000800040503002a, &upb_pom_1bt_max64b},
678
+ {0x0008000406040032, &upb_pom_1bt_max64b},
679
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
680
+ })
454
681
  };
455
682
 
456
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_HashPolicy_Header_submsgs[1] = {
457
- {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msginit},
683
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_HashPolicy_Header_submsgs[1] = {
684
+ {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msg_init},
458
685
  };
459
686
 
460
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_HashPolicy_Header__fields[2] = {
461
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
462
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
687
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy_Header__fields[2] = {
688
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
689
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
463
690
  };
464
691
 
465
- const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_Header_msginit = {
692
+ const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_Header_msg_init = {
466
693
  &envoy_config_route_v3_RouteAction_HashPolicy_Header_submsgs[0],
467
694
  &envoy_config_route_v3_RouteAction_HashPolicy_Header__fields[0],
468
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
695
+ UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
696
+ UPB_FASTTABLE_INIT({
697
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
698
+ {0x000800003f00000a, &upb_pss_1bt},
699
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
700
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
701
+ })
469
702
  };
470
703
 
471
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_HashPolicy_Cookie_submsgs[1] = {
472
- {.submsg = &google_protobuf_Duration_msginit},
704
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_HashPolicy_Cookie_submsgs[1] = {
705
+ {.submsg = &google_protobuf_Duration_msg_init},
473
706
  };
474
707
 
475
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_HashPolicy_Cookie__fields[3] = {
476
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
477
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
478
- {3, UPB_SIZE(16, 32), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
708
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy_Cookie__fields[3] = {
709
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
710
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
711
+ {3, UPB_SIZE(16, 32), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
479
712
  };
480
713
 
481
- const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msginit = {
714
+ const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msg_init = {
482
715
  &envoy_config_route_v3_RouteAction_HashPolicy_Cookie_submsgs[0],
483
716
  &envoy_config_route_v3_RouteAction_HashPolicy_Cookie__fields[0],
484
- UPB_SIZE(24, 48), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
717
+ UPB_SIZE(24, 48), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
718
+ UPB_FASTTABLE_INIT({
719
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
720
+ {0x000800003f00000a, &upb_pss_1bt},
721
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
722
+ {0x002000003f00001a, &upb_pss_1bt},
723
+ })
485
724
  };
486
725
 
487
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties__fields[1] = {
488
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
726
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties__fields[1] = {
727
+ {1, 0, 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
489
728
  };
490
729
 
491
- const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msginit = {
730
+ const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msg_init = {
492
731
  NULL,
493
732
  &envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties__fields[0],
494
- UPB_SIZE(8, 8), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
733
+ 8, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
734
+ UPB_FASTTABLE_INIT({
735
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
736
+ {0x000000003f000008, &upb_psb1_1bt},
737
+ })
495
738
  };
496
739
 
497
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter__fields[1] = {
498
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
740
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter__fields[1] = {
741
+ {1, 0, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
499
742
  };
500
743
 
501
- const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msginit = {
744
+ const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msg_init = {
502
745
  NULL,
503
746
  &envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter__fields[0],
504
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
747
+ UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
748
+ UPB_FASTTABLE_INIT({
749
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
750
+ {0x000000003f00000a, &upb_pss_1bt},
751
+ })
505
752
  };
506
753
 
507
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_HashPolicy_FilterState__fields[1] = {
508
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
754
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_HashPolicy_FilterState__fields[1] = {
755
+ {1, 0, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
509
756
  };
510
757
 
511
- const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msginit = {
758
+ const upb_MiniTable envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msg_init = {
512
759
  NULL,
513
760
  &envoy_config_route_v3_RouteAction_HashPolicy_FilterState__fields[0],
514
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
761
+ UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
762
+ UPB_FASTTABLE_INIT({
763
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
764
+ {0x000000003f00000a, &upb_pss_1bt},
765
+ })
515
766
  };
516
767
 
517
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_UpgradeConfig_submsgs[2] = {
518
- {.submsg = &google_protobuf_BoolValue_msginit},
519
- {.submsg = &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msginit},
768
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_UpgradeConfig_submsgs[2] = {
769
+ {.submsg = &google_protobuf_BoolValue_msg_init},
770
+ {.submsg = &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msg_init},
520
771
  };
521
772
 
522
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_UpgradeConfig__fields[3] = {
523
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
524
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
525
- {3, UPB_SIZE(16, 32), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
773
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_UpgradeConfig__fields[3] = {
774
+ {1, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
775
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
776
+ {3, UPB_SIZE(8, 32), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
526
777
  };
527
778
 
528
- const upb_MiniTable envoy_config_route_v3_RouteAction_UpgradeConfig_msginit = {
779
+ const upb_MiniTable envoy_config_route_v3_RouteAction_UpgradeConfig_msg_init = {
529
780
  &envoy_config_route_v3_RouteAction_UpgradeConfig_submsgs[0],
530
781
  &envoy_config_route_v3_RouteAction_UpgradeConfig__fields[0],
531
- UPB_SIZE(24, 40), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
782
+ UPB_SIZE(24, 40), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
783
+ UPB_FASTTABLE_INIT({
784
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
785
+ {0x000800003f00000a, &upb_pss_1bt},
786
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
787
+ {0x002000000201001a, &upb_psm_1bt_max64b},
788
+ })
532
789
  };
533
790
 
534
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_submsgs[1] = {
535
- {.submsg = &envoy_config_core_v3_ProxyProtocolConfig_msginit},
791
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_submsgs[1] = {
792
+ {.submsg = &envoy_config_core_v3_ProxyProtocolConfig_msg_init},
536
793
  };
537
794
 
538
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[2] = {
539
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
540
- {2, UPB_SIZE(1, 1), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
795
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[2] = {
796
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
797
+ {2, UPB_SIZE(8, 1), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
541
798
  };
542
799
 
543
- const upb_MiniTable envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msginit = {
800
+ const upb_MiniTable envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msg_init = {
544
801
  &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_submsgs[0],
545
802
  &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[0],
546
- UPB_SIZE(8, 16), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
803
+ 16, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
804
+ UPB_FASTTABLE_INIT({
805
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
806
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
807
+ {0x000100003f000010, &upb_psb1_1bt},
808
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
809
+ })
547
810
  };
548
811
 
549
- static const upb_MiniTable_Sub envoy_config_route_v3_RouteAction_MaxStreamDuration_submsgs[3] = {
550
- {.submsg = &google_protobuf_Duration_msginit},
551
- {.submsg = &google_protobuf_Duration_msginit},
552
- {.submsg = &google_protobuf_Duration_msginit},
812
+ static const upb_MiniTableSub envoy_config_route_v3_RouteAction_MaxStreamDuration_submsgs[3] = {
813
+ {.submsg = &google_protobuf_Duration_msg_init},
814
+ {.submsg = &google_protobuf_Duration_msg_init},
815
+ {.submsg = &google_protobuf_Duration_msg_init},
553
816
  };
554
817
 
555
- static const upb_MiniTable_Field envoy_config_route_v3_RouteAction_MaxStreamDuration__fields[3] = {
556
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
557
- {2, UPB_SIZE(8, 16), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
558
- {3, UPB_SIZE(12, 24), UPB_SIZE(3, 3), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
818
+ static const upb_MiniTableField envoy_config_route_v3_RouteAction_MaxStreamDuration__fields[3] = {
819
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
820
+ {2, UPB_SIZE(8, 16), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
821
+ {3, UPB_SIZE(12, 24), 3, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
559
822
  };
560
823
 
561
- const upb_MiniTable envoy_config_route_v3_RouteAction_MaxStreamDuration_msginit = {
824
+ const upb_MiniTable envoy_config_route_v3_RouteAction_MaxStreamDuration_msg_init = {
562
825
  &envoy_config_route_v3_RouteAction_MaxStreamDuration_submsgs[0],
563
826
  &envoy_config_route_v3_RouteAction_MaxStreamDuration__fields[0],
564
- UPB_SIZE(16, 32), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
565
- };
566
-
567
- static const upb_MiniTable_Sub envoy_config_route_v3_RetryPolicy_submsgs[10] = {
568
- {.submsg = &google_protobuf_UInt32Value_msginit},
569
- {.submsg = &google_protobuf_Duration_msginit},
570
- {.submsg = &envoy_config_route_v3_RetryPolicy_RetryPriority_msginit},
571
- {.submsg = &envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msginit},
572
- {.submsg = &envoy_config_route_v3_RetryPolicy_RetryBackOff_msginit},
573
- {.submsg = &envoy_config_route_v3_HeaderMatcher_msginit},
574
- {.submsg = &envoy_config_route_v3_HeaderMatcher_msginit},
575
- {.submsg = &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msginit},
576
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
577
- {.submsg = &google_protobuf_Duration_msginit},
578
- };
579
-
580
- static const upb_MiniTable_Field envoy_config_route_v3_RetryPolicy__fields[13] = {
581
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
582
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
583
- {3, UPB_SIZE(16, 32), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
584
- {4, UPB_SIZE(20, 40), UPB_SIZE(3, 3), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
585
- {5, UPB_SIZE(24, 48), UPB_SIZE(0, 0), 3, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
586
- {6, UPB_SIZE(56, 112), UPB_SIZE(0, 0), kUpb_NoSub, 3, kUpb_FieldMode_Scalar | (kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)},
587
- {7, UPB_SIZE(28, 56), UPB_SIZE(0, 0), kUpb_NoSub, 13, kUpb_FieldMode_Array | kUpb_LabelFlags_IsPacked | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
588
- {8, UPB_SIZE(32, 64), UPB_SIZE(4, 4), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
589
- {9, UPB_SIZE(36, 72), UPB_SIZE(0, 0), 5, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
590
- {10, UPB_SIZE(40, 80), UPB_SIZE(0, 0), 6, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
591
- {11, UPB_SIZE(44, 88), UPB_SIZE(5, 5), 7, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
592
- {12, UPB_SIZE(48, 96), UPB_SIZE(0, 0), 8, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
593
- {13, UPB_SIZE(52, 104), UPB_SIZE(6, 6), 9, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
594
- };
595
-
596
- const upb_MiniTable envoy_config_route_v3_RetryPolicy_msginit = {
827
+ UPB_SIZE(16, 32), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
828
+ UPB_FASTTABLE_INIT({
829
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
830
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
831
+ {0x0010000002010012, &upb_psm_1bt_maxmaxb},
832
+ {0x001800000302001a, &upb_psm_1bt_maxmaxb},
833
+ })
834
+ };
835
+
836
+ static const upb_MiniTableSub envoy_config_route_v3_RetryPolicy_submsgs[10] = {
837
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
838
+ {.submsg = &google_protobuf_Duration_msg_init},
839
+ {.submsg = &envoy_config_route_v3_RetryPolicy_RetryPriority_msg_init},
840
+ {.submsg = &envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msg_init},
841
+ {.submsg = &envoy_config_route_v3_RetryPolicy_RetryBackOff_msg_init},
842
+ {.submsg = &envoy_config_route_v3_HeaderMatcher_msg_init},
843
+ {.submsg = &envoy_config_route_v3_HeaderMatcher_msg_init},
844
+ {.submsg = &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msg_init},
845
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
846
+ {.submsg = &google_protobuf_Duration_msg_init},
847
+ };
848
+
849
+ static const upb_MiniTableField envoy_config_route_v3_RetryPolicy__fields[13] = {
850
+ {1, UPB_SIZE(48, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
851
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
852
+ {3, UPB_SIZE(8, 32), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
853
+ {4, UPB_SIZE(12, 40), 3, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
854
+ {5, UPB_SIZE(16, 48), 0, 3, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
855
+ {6, 56, 0, kUpb_NoSub, 3, kUpb_FieldMode_Scalar | (kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)},
856
+ {7, UPB_SIZE(20, 64), 0, kUpb_NoSub, 13, kUpb_FieldMode_Array | kUpb_LabelFlags_IsPacked | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
857
+ {8, UPB_SIZE(24, 72), 4, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
858
+ {9, UPB_SIZE(28, 80), 0, 5, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
859
+ {10, UPB_SIZE(32, 88), 0, 6, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
860
+ {11, UPB_SIZE(36, 96), 5, 7, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
861
+ {12, UPB_SIZE(40, 104), 0, 8, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
862
+ {13, UPB_SIZE(44, 112), 6, 9, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
863
+ };
864
+
865
+ const upb_MiniTable envoy_config_route_v3_RetryPolicy_msg_init = {
597
866
  &envoy_config_route_v3_RetryPolicy_submsgs[0],
598
867
  &envoy_config_route_v3_RetryPolicy__fields[0],
599
- UPB_SIZE(64, 120), 13, kUpb_ExtMode_NonExtendable, 13, 255, 0,
600
- };
601
-
602
- static const upb_MiniTable_Sub envoy_config_route_v3_RetryPolicy_RetryPriority_submsgs[1] = {
603
- {.submsg = &google_protobuf_Any_msginit},
604
- };
605
-
606
- static const upb_MiniTable_Field envoy_config_route_v3_RetryPolicy_RetryPriority__fields[2] = {
607
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
608
- {3, UPB_SIZE(12, 24), UPB_SIZE(-1, -1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
609
- };
610
-
611
- const upb_MiniTable envoy_config_route_v3_RetryPolicy_RetryPriority_msginit = {
868
+ UPB_SIZE(64, 120), 13, kUpb_ExtMode_NonExtendable, 13, UPB_FASTTABLE_MASK(120), 0,
869
+ UPB_FASTTABLE_INIT({
870
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
871
+ {0x000800003f00000a, &upb_pss_1bt},
872
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
873
+ {0x002000000201001a, &upb_psm_1bt_maxmaxb},
874
+ {0x0028000003020022, &upb_psm_1bt_max64b},
875
+ {0x003000003f03002a, &upb_prm_1bt_max64b},
876
+ {0x003800003f000030, &upb_psv8_1bt},
877
+ {0x004000003f00003a, &upb_ppv4_1bt},
878
+ {0x0048000004040042, &upb_psm_1bt_max64b},
879
+ {0x005000003f05004a, &upb_prm_1bt_max64b},
880
+ {0x005800003f060052, &upb_prm_1bt_max64b},
881
+ {0x006000000507005a, &upb_psm_1bt_max64b},
882
+ {0x006800003f080062, &upb_prm_1bt_maxmaxb},
883
+ {0x007000000609006a, &upb_psm_1bt_maxmaxb},
884
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
885
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
886
+ })
887
+ };
888
+
889
+ static const upb_MiniTableSub envoy_config_route_v3_RetryPolicy_RetryPriority_submsgs[1] = {
890
+ {.submsg = &google_protobuf_Any_msg_init},
891
+ };
892
+
893
+ static const upb_MiniTableField envoy_config_route_v3_RetryPolicy_RetryPriority__fields[2] = {
894
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
895
+ {3, UPB_SIZE(4, 24), -1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
896
+ };
897
+
898
+ const upb_MiniTable envoy_config_route_v3_RetryPolicy_RetryPriority_msg_init = {
612
899
  &envoy_config_route_v3_RetryPolicy_RetryPriority_submsgs[0],
613
900
  &envoy_config_route_v3_RetryPolicy_RetryPriority__fields[0],
614
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 1, 255, 0,
901
+ UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(24), 0,
902
+ UPB_FASTTABLE_INIT({
903
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
904
+ {0x000800003f00000a, &upb_pss_1bt},
905
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
906
+ {0x001800000300001a, &upb_pom_1bt_maxmaxb},
907
+ })
615
908
  };
616
909
 
617
- static const upb_MiniTable_Sub envoy_config_route_v3_RetryPolicy_RetryHostPredicate_submsgs[1] = {
618
- {.submsg = &google_protobuf_Any_msginit},
910
+ static const upb_MiniTableSub envoy_config_route_v3_RetryPolicy_RetryHostPredicate_submsgs[1] = {
911
+ {.submsg = &google_protobuf_Any_msg_init},
619
912
  };
620
913
 
621
- static const upb_MiniTable_Field envoy_config_route_v3_RetryPolicy_RetryHostPredicate__fields[2] = {
622
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
623
- {3, UPB_SIZE(12, 24), UPB_SIZE(-1, -1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
914
+ static const upb_MiniTableField envoy_config_route_v3_RetryPolicy_RetryHostPredicate__fields[2] = {
915
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
916
+ {3, UPB_SIZE(4, 24), -1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
624
917
  };
625
918
 
626
- const upb_MiniTable envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msginit = {
919
+ const upb_MiniTable envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msg_init = {
627
920
  &envoy_config_route_v3_RetryPolicy_RetryHostPredicate_submsgs[0],
628
921
  &envoy_config_route_v3_RetryPolicy_RetryHostPredicate__fields[0],
629
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 1, 255, 0,
922
+ UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(24), 0,
923
+ UPB_FASTTABLE_INIT({
924
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
925
+ {0x000800003f00000a, &upb_pss_1bt},
926
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
927
+ {0x001800000300001a, &upb_pom_1bt_maxmaxb},
928
+ })
630
929
  };
631
930
 
632
- static const upb_MiniTable_Sub envoy_config_route_v3_RetryPolicy_RetryBackOff_submsgs[2] = {
633
- {.submsg = &google_protobuf_Duration_msginit},
634
- {.submsg = &google_protobuf_Duration_msginit},
931
+ static const upb_MiniTableSub envoy_config_route_v3_RetryPolicy_RetryBackOff_submsgs[2] = {
932
+ {.submsg = &google_protobuf_Duration_msg_init},
933
+ {.submsg = &google_protobuf_Duration_msg_init},
635
934
  };
636
935
 
637
- static const upb_MiniTable_Field envoy_config_route_v3_RetryPolicy_RetryBackOff__fields[2] = {
638
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
639
- {2, UPB_SIZE(8, 16), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
936
+ static const upb_MiniTableField envoy_config_route_v3_RetryPolicy_RetryBackOff__fields[2] = {
937
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
938
+ {2, UPB_SIZE(8, 16), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
640
939
  };
641
940
 
642
- const upb_MiniTable envoy_config_route_v3_RetryPolicy_RetryBackOff_msginit = {
941
+ const upb_MiniTable envoy_config_route_v3_RetryPolicy_RetryBackOff_msg_init = {
643
942
  &envoy_config_route_v3_RetryPolicy_RetryBackOff_submsgs[0],
644
943
  &envoy_config_route_v3_RetryPolicy_RetryBackOff__fields[0],
645
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
944
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
945
+ UPB_FASTTABLE_INIT({
946
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
947
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
948
+ {0x0010000002010012, &upb_psm_1bt_maxmaxb},
949
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
950
+ })
646
951
  };
647
952
 
648
- static const upb_MiniTable_Field envoy_config_route_v3_RetryPolicy_ResetHeader__fields[2] = {
649
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
650
- {2, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
953
+ static const upb_MiniTableField envoy_config_route_v3_RetryPolicy_ResetHeader__fields[2] = {
954
+ {1, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
955
+ {2, 0, 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
651
956
  };
652
957
 
653
- const upb_MiniTable envoy_config_route_v3_RetryPolicy_ResetHeader_msginit = {
958
+ const upb_MiniTable envoy_config_route_v3_RetryPolicy_ResetHeader_msg_init = {
654
959
  NULL,
655
960
  &envoy_config_route_v3_RetryPolicy_ResetHeader__fields[0],
656
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
961
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
962
+ UPB_FASTTABLE_INIT({
963
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
964
+ {0x000800003f00000a, &upb_pss_1bt},
965
+ {0x000000003f000010, &upb_psv4_1bt},
966
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
967
+ })
657
968
  };
658
969
 
659
- static const upb_MiniTable_Sub envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_submsgs[2] = {
660
- {.submsg = &envoy_config_route_v3_RetryPolicy_ResetHeader_msginit},
661
- {.submsg = &google_protobuf_Duration_msginit},
970
+ static const upb_MiniTableSub envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_submsgs[2] = {
971
+ {.submsg = &envoy_config_route_v3_RetryPolicy_ResetHeader_msg_init},
972
+ {.submsg = &google_protobuf_Duration_msg_init},
662
973
  };
663
974
 
664
- static const upb_MiniTable_Field envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff__fields[2] = {
665
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
666
- {2, UPB_SIZE(8, 16), UPB_SIZE(1, 1), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
975
+ static const upb_MiniTableField envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff__fields[2] = {
976
+ {1, UPB_SIZE(4, 8), 0, 0, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
977
+ {2, UPB_SIZE(8, 16), 1, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
667
978
  };
668
979
 
669
- const upb_MiniTable envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msginit = {
980
+ const upb_MiniTable envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msg_init = {
670
981
  &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_submsgs[0],
671
982
  &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff__fields[0],
672
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
983
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
984
+ UPB_FASTTABLE_INIT({
985
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
986
+ {0x000800003f00000a, &upb_prm_1bt_max64b},
987
+ {0x0010000001010012, &upb_psm_1bt_maxmaxb},
988
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
989
+ })
673
990
  };
674
991
 
675
- static const upb_MiniTable_Sub envoy_config_route_v3_HedgePolicy_submsgs[2] = {
676
- {.submsg = &google_protobuf_UInt32Value_msginit},
677
- {.submsg = &envoy_type_v3_FractionalPercent_msginit},
992
+ static const upb_MiniTableSub envoy_config_route_v3_HedgePolicy_submsgs[2] = {
993
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
994
+ {.submsg = &envoy_type_v3_FractionalPercent_msg_init},
678
995
  };
679
996
 
680
- static const upb_MiniTable_Field envoy_config_route_v3_HedgePolicy__fields[3] = {
681
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
682
- {2, UPB_SIZE(8, 16), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
683
- {3, UPB_SIZE(1, 1), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
997
+ static const upb_MiniTableField envoy_config_route_v3_HedgePolicy__fields[3] = {
998
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
999
+ {2, UPB_SIZE(8, 16), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1000
+ {3, UPB_SIZE(12, 1), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
684
1001
  };
685
1002
 
686
- const upb_MiniTable envoy_config_route_v3_HedgePolicy_msginit = {
1003
+ const upb_MiniTable envoy_config_route_v3_HedgePolicy_msg_init = {
687
1004
  &envoy_config_route_v3_HedgePolicy_submsgs[0],
688
1005
  &envoy_config_route_v3_HedgePolicy__fields[0],
689
- UPB_SIZE(16, 24), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
1006
+ UPB_SIZE(16, 24), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
1007
+ UPB_FASTTABLE_INIT({
1008
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1009
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1010
+ {0x0010000002010012, &upb_psm_1bt_maxmaxb},
1011
+ {0x000100003f000018, &upb_psb1_1bt},
1012
+ })
690
1013
  };
691
1014
 
692
- static const upb_MiniTable_Sub envoy_config_route_v3_RedirectAction_submsgs[1] = {
693
- {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msginit},
1015
+ static const upb_MiniTableSub envoy_config_route_v3_RedirectAction_submsgs[1] = {
1016
+ {.submsg = &envoy_type_matcher_v3_RegexMatchAndSubstitute_msg_init},
694
1017
  };
695
1018
 
696
- static const upb_MiniTable_Field envoy_config_route_v3_RedirectAction__fields[9] = {
697
- {1, UPB_SIZE(36, 56), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
698
- {2, UPB_SIZE(28, 40), UPB_SIZE(-17, -17), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
699
- {3, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
700
- {4, UPB_SIZE(20, 24), UPB_SIZE(-9, -9), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
701
- {5, UPB_SIZE(28, 40), UPB_SIZE(-17, -17), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
702
- {6, UPB_SIZE(4, 4), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
703
- {7, UPB_SIZE(20, 24), UPB_SIZE(-9, -9), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
704
- {8, UPB_SIZE(12, 12), UPB_SIZE(0, 0), kUpb_NoSub, 13, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
705
- {9, UPB_SIZE(28, 40), UPB_SIZE(-17, -17), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1019
+ static const upb_MiniTableField envoy_config_route_v3_RedirectAction__fields[9] = {
1020
+ {1, UPB_SIZE(36, 56), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1021
+ {2, UPB_SIZE(28, 40), -17, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1022
+ {3, 0, 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
1023
+ {4, UPB_SIZE(20, 24), -9, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1024
+ {5, UPB_SIZE(28, 40), -17, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1025
+ {6, 4, 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1026
+ {7, UPB_SIZE(20, 24), -9, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1027
+ {8, 12, 0, kUpb_NoSub, 13, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
1028
+ {9, UPB_SIZE(28, 40), -17, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
706
1029
  };
707
1030
 
708
- const upb_MiniTable envoy_config_route_v3_RedirectAction_msginit = {
1031
+ const upb_MiniTable envoy_config_route_v3_RedirectAction_msg_init = {
709
1032
  &envoy_config_route_v3_RedirectAction_submsgs[0],
710
1033
  &envoy_config_route_v3_RedirectAction__fields[0],
711
- UPB_SIZE(48, 72), 9, kUpb_ExtMode_NonExtendable, 9, 255, 0,
712
- };
713
-
714
- static const upb_MiniTable_Sub envoy_config_route_v3_DirectResponseAction_submsgs[1] = {
715
- {.submsg = &envoy_config_core_v3_DataSource_msginit},
716
- };
717
-
718
- static const upb_MiniTable_Field envoy_config_route_v3_DirectResponseAction__fields[2] = {
719
- {1, UPB_SIZE(4, 4), UPB_SIZE(0, 0), kUpb_NoSub, 13, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
720
- {2, UPB_SIZE(8, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
721
- };
722
-
723
- const upb_MiniTable envoy_config_route_v3_DirectResponseAction_msginit = {
1034
+ UPB_SIZE(48, 72), 9, kUpb_ExtMode_NonExtendable, 9, UPB_FASTTABLE_MASK(120), 0,
1035
+ UPB_FASTTABLE_INIT({
1036
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1037
+ {0x003800003f00000a, &upb_pss_1bt},
1038
+ {0x0028001002000012, &upb_pos_1bt},
1039
+ {0x000000003f000018, &upb_psv4_1bt},
1040
+ {0x0018000804000020, &upb_pob1_1bt},
1041
+ {0x002800100500002a, &upb_pos_1bt},
1042
+ {0x000400003f000030, &upb_psb1_1bt},
1043
+ {0x001800080700003a, &upb_pos_1bt},
1044
+ {0x000c00003f000040, &upb_psv4_1bt},
1045
+ {0x002800100900004a, &upb_pom_1bt_maxmaxb},
1046
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1047
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1048
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1049
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1050
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1051
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1052
+ })
1053
+ };
1054
+
1055
+ static const upb_MiniTableSub envoy_config_route_v3_DirectResponseAction_submsgs[1] = {
1056
+ {.submsg = &envoy_config_core_v3_DataSource_msg_init},
1057
+ };
1058
+
1059
+ static const upb_MiniTableField envoy_config_route_v3_DirectResponseAction__fields[2] = {
1060
+ {1, 4, 0, kUpb_NoSub, 13, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
1061
+ {2, 8, 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1062
+ };
1063
+
1064
+ const upb_MiniTable envoy_config_route_v3_DirectResponseAction_msg_init = {
724
1065
  &envoy_config_route_v3_DirectResponseAction_submsgs[0],
725
1066
  &envoy_config_route_v3_DirectResponseAction__fields[0],
726
- UPB_SIZE(16, 16), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
1067
+ 16, 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
1068
+ UPB_FASTTABLE_INIT({
1069
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1070
+ {0x000400003f000008, &upb_psv4_1bt},
1071
+ {0x0008000001000012, &upb_psm_1bt_maxmaxb},
1072
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1073
+ })
727
1074
  };
728
1075
 
729
- const upb_MiniTable envoy_config_route_v3_NonForwardingAction_msginit = {
1076
+ const upb_MiniTable envoy_config_route_v3_NonForwardingAction_msg_init = {
730
1077
  NULL,
731
1078
  NULL,
732
- UPB_SIZE(0, 0), 0, kUpb_ExtMode_NonExtendable, 0, 255, 0,
1079
+ 0, 0, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(255), 0,
733
1080
  };
734
1081
 
735
- static const upb_MiniTable_Sub envoy_config_route_v3_Decorator_submsgs[1] = {
736
- {.submsg = &google_protobuf_BoolValue_msginit},
1082
+ static const upb_MiniTableSub envoy_config_route_v3_Decorator_submsgs[1] = {
1083
+ {.submsg = &google_protobuf_BoolValue_msg_init},
737
1084
  };
738
1085
 
739
- static const upb_MiniTable_Field envoy_config_route_v3_Decorator__fields[2] = {
740
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
741
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1086
+ static const upb_MiniTableField envoy_config_route_v3_Decorator__fields[2] = {
1087
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1088
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
742
1089
  };
743
1090
 
744
- const upb_MiniTable envoy_config_route_v3_Decorator_msginit = {
1091
+ const upb_MiniTable envoy_config_route_v3_Decorator_msg_init = {
745
1092
  &envoy_config_route_v3_Decorator_submsgs[0],
746
1093
  &envoy_config_route_v3_Decorator__fields[0],
747
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
1094
+ UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
1095
+ UPB_FASTTABLE_INIT({
1096
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1097
+ {0x000800003f00000a, &upb_pss_1bt},
1098
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
1099
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1100
+ })
748
1101
  };
749
1102
 
750
- static const upb_MiniTable_Sub envoy_config_route_v3_Tracing_submsgs[4] = {
751
- {.submsg = &envoy_type_v3_FractionalPercent_msginit},
752
- {.submsg = &envoy_type_v3_FractionalPercent_msginit},
753
- {.submsg = &envoy_type_v3_FractionalPercent_msginit},
754
- {.submsg = &envoy_type_tracing_v3_CustomTag_msginit},
1103
+ static const upb_MiniTableSub envoy_config_route_v3_Tracing_submsgs[4] = {
1104
+ {.submsg = &envoy_type_v3_FractionalPercent_msg_init},
1105
+ {.submsg = &envoy_type_v3_FractionalPercent_msg_init},
1106
+ {.submsg = &envoy_type_v3_FractionalPercent_msg_init},
1107
+ {.submsg = &envoy_type_tracing_v3_CustomTag_msg_init},
755
1108
  };
756
1109
 
757
- static const upb_MiniTable_Field envoy_config_route_v3_Tracing__fields[4] = {
758
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
759
- {2, UPB_SIZE(8, 16), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
760
- {3, UPB_SIZE(12, 24), UPB_SIZE(3, 3), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
761
- {4, UPB_SIZE(16, 32), UPB_SIZE(0, 0), 3, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1110
+ static const upb_MiniTableField envoy_config_route_v3_Tracing__fields[4] = {
1111
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1112
+ {2, UPB_SIZE(8, 16), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1113
+ {3, UPB_SIZE(12, 24), 3, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1114
+ {4, UPB_SIZE(16, 32), 0, 3, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
762
1115
  };
763
1116
 
764
- const upb_MiniTable envoy_config_route_v3_Tracing_msginit = {
1117
+ const upb_MiniTable envoy_config_route_v3_Tracing_msg_init = {
765
1118
  &envoy_config_route_v3_Tracing_submsgs[0],
766
1119
  &envoy_config_route_v3_Tracing__fields[0],
767
- UPB_SIZE(24, 40), 4, kUpb_ExtMode_NonExtendable, 4, 255, 0,
1120
+ UPB_SIZE(24, 40), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
1121
+ UPB_FASTTABLE_INIT({
1122
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1123
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1124
+ {0x0010000002010012, &upb_psm_1bt_maxmaxb},
1125
+ {0x001800000302001a, &upb_psm_1bt_maxmaxb},
1126
+ {0x002000003f030022, &upb_prm_1bt_maxmaxb},
1127
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1128
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1129
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1130
+ })
768
1131
  };
769
1132
 
770
- static const upb_MiniTable_Sub envoy_config_route_v3_VirtualCluster_submsgs[1] = {
771
- {.submsg = &envoy_config_route_v3_HeaderMatcher_msginit},
1133
+ static const upb_MiniTableSub envoy_config_route_v3_VirtualCluster_submsgs[1] = {
1134
+ {.submsg = &envoy_config_route_v3_HeaderMatcher_msg_init},
772
1135
  };
773
1136
 
774
- static const upb_MiniTable_Field envoy_config_route_v3_VirtualCluster__fields[2] = {
775
- {2, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
776
- {4, UPB_SIZE(8, 16), UPB_SIZE(0, 0), 0, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1137
+ static const upb_MiniTableField envoy_config_route_v3_VirtualCluster__fields[2] = {
1138
+ {2, UPB_SIZE(4, 0), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1139
+ {4, UPB_SIZE(0, 16), 0, 0, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
777
1140
  };
778
1141
 
779
- const upb_MiniTable envoy_config_route_v3_VirtualCluster_msginit = {
1142
+ const upb_MiniTable envoy_config_route_v3_VirtualCluster_msg_init = {
780
1143
  &envoy_config_route_v3_VirtualCluster_submsgs[0],
781
1144
  &envoy_config_route_v3_VirtualCluster__fields[0],
782
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 0, 255, 0,
1145
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(56), 0,
1146
+ UPB_FASTTABLE_INIT({
1147
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1148
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1149
+ {0x000000003f000012, &upb_pss_1bt},
1150
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1151
+ {0x001000003f000022, &upb_prm_1bt_max64b},
1152
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1153
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1154
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1155
+ })
783
1156
  };
784
1157
 
785
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_submsgs[3] = {
786
- {.submsg = &google_protobuf_UInt32Value_msginit},
787
- {.submsg = &envoy_config_route_v3_RateLimit_Action_msginit},
788
- {.submsg = &envoy_config_route_v3_RateLimit_Override_msginit},
1158
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_submsgs[3] = {
1159
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
1160
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_msg_init},
1161
+ {.submsg = &envoy_config_route_v3_RateLimit_Override_msg_init},
789
1162
  };
790
1163
 
791
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit__fields[4] = {
792
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
793
- {2, UPB_SIZE(8, 16), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
794
- {3, UPB_SIZE(16, 32), UPB_SIZE(0, 0), 1, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
795
- {4, UPB_SIZE(20, 40), UPB_SIZE(2, 2), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1164
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit__fields[4] = {
1165
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1166
+ {2, 16, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1167
+ {3, UPB_SIZE(8, 32), 0, 1, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1168
+ {4, UPB_SIZE(12, 40), 2, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
796
1169
  };
797
1170
 
798
- const upb_MiniTable envoy_config_route_v3_RateLimit_msginit = {
1171
+ const upb_MiniTable envoy_config_route_v3_RateLimit_msg_init = {
799
1172
  &envoy_config_route_v3_RateLimit_submsgs[0],
800
1173
  &envoy_config_route_v3_RateLimit__fields[0],
801
- UPB_SIZE(24, 48), 4, kUpb_ExtMode_NonExtendable, 4, 255, 0,
802
- };
803
-
804
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Action_submsgs[11] = {
805
- {.submsg = &envoy_config_route_v3_RateLimit_Action_SourceCluster_msginit},
806
- {.submsg = &envoy_config_route_v3_RateLimit_Action_DestinationCluster_msginit},
807
- {.submsg = &envoy_config_route_v3_RateLimit_Action_RequestHeaders_msginit},
808
- {.submsg = &envoy_config_route_v3_RateLimit_Action_RemoteAddress_msginit},
809
- {.submsg = &envoy_config_route_v3_RateLimit_Action_GenericKey_msginit},
810
- {.submsg = &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msginit},
811
- {.submsg = &envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msginit},
812
- {.submsg = &envoy_config_route_v3_RateLimit_Action_MetaData_msginit},
813
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
814
- {.submsg = &envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_msginit},
815
- {.submsg = &envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_msginit},
816
- };
817
-
818
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action__fields[11] = {
819
- {1, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
820
- {2, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
821
- {3, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
822
- {4, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 3, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
823
- {5, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 4, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
824
- {6, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 5, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
825
- {7, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 6, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
826
- {8, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 7, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
827
- {9, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 8, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
828
- {10, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 9, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
829
- {11, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 10, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
830
- };
831
-
832
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_msginit = {
1174
+ UPB_SIZE(24, 48), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
1175
+ UPB_FASTTABLE_INIT({
1176
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1177
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1178
+ {0x001000003f000012, &upb_pss_1bt},
1179
+ {0x002000003f01001a, &upb_prm_1bt_max64b},
1180
+ {0x0028000002020022, &upb_psm_1bt_max64b},
1181
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1182
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1183
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1184
+ })
1185
+ };
1186
+
1187
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Action_submsgs[11] = {
1188
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_SourceCluster_msg_init},
1189
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_DestinationCluster_msg_init},
1190
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_RequestHeaders_msg_init},
1191
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_RemoteAddress_msg_init},
1192
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_GenericKey_msg_init},
1193
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msg_init},
1194
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msg_init},
1195
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_MetaData_msg_init},
1196
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
1197
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_msg_init},
1198
+ {.submsg = &envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_msg_init},
1199
+ };
1200
+
1201
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action__fields[11] = {
1202
+ {1, UPB_SIZE(4, 8), -1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1203
+ {2, UPB_SIZE(4, 8), -1, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1204
+ {3, UPB_SIZE(4, 8), -1, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1205
+ {4, UPB_SIZE(4, 8), -1, 3, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1206
+ {5, UPB_SIZE(4, 8), -1, 4, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1207
+ {6, UPB_SIZE(4, 8), -1, 5, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1208
+ {7, UPB_SIZE(4, 8), -1, 6, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1209
+ {8, UPB_SIZE(4, 8), -1, 7, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1210
+ {9, UPB_SIZE(4, 8), -1, 8, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1211
+ {10, UPB_SIZE(4, 8), -1, 9, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1212
+ {11, UPB_SIZE(4, 8), -1, 10, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1213
+ };
1214
+
1215
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_msg_init = {
833
1216
  &envoy_config_route_v3_RateLimit_Action_submsgs[0],
834
1217
  &envoy_config_route_v3_RateLimit_Action__fields[0],
835
- UPB_SIZE(8, 16), 11, kUpb_ExtMode_NonExtendable, 11, 255, 0,
836
- };
837
-
838
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_SourceCluster_msginit = {
1218
+ UPB_SIZE(8, 16), 11, kUpb_ExtMode_NonExtendable, 11, UPB_FASTTABLE_MASK(120), 0,
1219
+ UPB_FASTTABLE_INIT({
1220
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1221
+ {0x000800000100000a, &upb_pom_1bt_max64b},
1222
+ {0x0008000002010012, &upb_pom_1bt_max64b},
1223
+ {0x000800000302001a, &upb_pom_1bt_max64b},
1224
+ {0x0008000004030022, &upb_pom_1bt_max64b},
1225
+ {0x000800000504002a, &upb_pom_1bt_max64b},
1226
+ {0x0008000006050032, &upb_pom_1bt_max64b},
1227
+ {0x000800000706003a, &upb_pom_1bt_max64b},
1228
+ {0x0008000008070042, &upb_pom_1bt_max64b},
1229
+ {0x000800000908004a, &upb_pom_1bt_maxmaxb},
1230
+ {0x000800000a090052, &upb_pom_1bt_max64b},
1231
+ {0x000800000b0a005a, &upb_pom_1bt_max64b},
1232
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1233
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1234
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1235
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1236
+ })
1237
+ };
1238
+
1239
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_SourceCluster_msg_init = {
839
1240
  NULL,
840
1241
  NULL,
841
- UPB_SIZE(0, 0), 0, kUpb_ExtMode_NonExtendable, 0, 255, 0,
1242
+ 0, 0, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(255), 0,
842
1243
  };
843
1244
 
844
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_DestinationCluster_msginit = {
1245
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_DestinationCluster_msg_init = {
845
1246
  NULL,
846
1247
  NULL,
847
- UPB_SIZE(0, 0), 0, kUpb_ExtMode_NonExtendable, 0, 255, 0,
1248
+ 0, 0, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(255), 0,
848
1249
  };
849
1250
 
850
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_RequestHeaders__fields[3] = {
851
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
852
- {2, UPB_SIZE(12, 24), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
853
- {3, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1251
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_RequestHeaders__fields[3] = {
1252
+ {1, UPB_SIZE(4, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1253
+ {2, UPB_SIZE(12, 24), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1254
+ {3, 0, 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
854
1255
  };
855
1256
 
856
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_RequestHeaders_msginit = {
1257
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_RequestHeaders_msg_init = {
857
1258
  NULL,
858
1259
  &envoy_config_route_v3_RateLimit_Action_RequestHeaders__fields[0],
859
- UPB_SIZE(24, 40), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
1260
+ UPB_SIZE(24, 40), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
1261
+ UPB_FASTTABLE_INIT({
1262
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1263
+ {0x000800003f00000a, &upb_pss_1bt},
1264
+ {0x001800003f000012, &upb_pss_1bt},
1265
+ {0x000000003f000018, &upb_psb1_1bt},
1266
+ })
860
1267
  };
861
1268
 
862
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_RemoteAddress_msginit = {
1269
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_RemoteAddress_msg_init = {
863
1270
  NULL,
864
1271
  NULL,
865
- UPB_SIZE(0, 0), 0, kUpb_ExtMode_NonExtendable, 0, 255, 0,
1272
+ 0, 0, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(255), 0,
866
1273
  };
867
1274
 
868
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_submsgs[2] = {
869
- {.submsg = &google_protobuf_UInt32Value_msginit},
870
- {.submsg = &google_protobuf_UInt32Value_msginit},
1275
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_submsgs[2] = {
1276
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
1277
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
871
1278
  };
872
1279
 
873
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress__fields[2] = {
874
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
875
- {2, UPB_SIZE(8, 16), UPB_SIZE(2, 2), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1280
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress__fields[2] = {
1281
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1282
+ {2, UPB_SIZE(8, 16), 2, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
876
1283
  };
877
1284
 
878
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_msginit = {
1285
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_msg_init = {
879
1286
  &envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_submsgs[0],
880
1287
  &envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress__fields[0],
881
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
1288
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
1289
+ UPB_FASTTABLE_INIT({
1290
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1291
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1292
+ {0x0010000002010012, &upb_psm_1bt_maxmaxb},
1293
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1294
+ })
882
1295
  };
883
1296
 
884
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_GenericKey__fields[2] = {
885
- {1, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
886
- {2, UPB_SIZE(8, 16), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1297
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_GenericKey__fields[2] = {
1298
+ {1, 0, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1299
+ {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
887
1300
  };
888
1301
 
889
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_GenericKey_msginit = {
1302
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_GenericKey_msg_init = {
890
1303
  NULL,
891
1304
  &envoy_config_route_v3_RateLimit_Action_GenericKey__fields[0],
892
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, 255, 0,
1305
+ UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
1306
+ UPB_FASTTABLE_INIT({
1307
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1308
+ {0x000000003f00000a, &upb_pss_1bt},
1309
+ {0x001000003f000012, &upb_pss_1bt},
1310
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1311
+ })
893
1312
  };
894
1313
 
895
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_submsgs[2] = {
896
- {.submsg = &google_protobuf_BoolValue_msginit},
897
- {.submsg = &envoy_config_route_v3_HeaderMatcher_msginit},
1314
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_submsgs[2] = {
1315
+ {.submsg = &google_protobuf_BoolValue_msg_init},
1316
+ {.submsg = &envoy_config_route_v3_HeaderMatcher_msg_init},
898
1317
  };
899
1318
 
900
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_HeaderValueMatch__fields[4] = {
901
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
902
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
903
- {3, UPB_SIZE(16, 32), UPB_SIZE(0, 0), 1, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
904
- {4, UPB_SIZE(20, 40), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1319
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_HeaderValueMatch__fields[4] = {
1320
+ {1, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1321
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1322
+ {3, UPB_SIZE(8, 32), 0, 1, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1323
+ {4, UPB_SIZE(20, 40), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
905
1324
  };
906
1325
 
907
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msginit = {
1326
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msg_init = {
908
1327
  &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_submsgs[0],
909
1328
  &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch__fields[0],
910
- UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, 255, 0,
1329
+ UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
1330
+ UPB_FASTTABLE_INIT({
1331
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1332
+ {0x000800003f00000a, &upb_pss_1bt},
1333
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
1334
+ {0x002000003f01001a, &upb_prm_1bt_max64b},
1335
+ {0x002800003f000022, &upb_pss_1bt},
1336
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1337
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1338
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1339
+ })
911
1340
  };
912
1341
 
913
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Action_DynamicMetaData_submsgs[1] = {
914
- {.submsg = &envoy_type_metadata_v3_MetadataKey_msginit},
1342
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Action_DynamicMetaData_submsgs[1] = {
1343
+ {.submsg = &envoy_type_metadata_v3_MetadataKey_msg_init},
915
1344
  };
916
1345
 
917
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_DynamicMetaData__fields[3] = {
918
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
919
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
920
- {3, UPB_SIZE(16, 32), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1346
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_DynamicMetaData__fields[3] = {
1347
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1348
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1349
+ {3, UPB_SIZE(16, 32), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
921
1350
  };
922
1351
 
923
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msginit = {
1352
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msg_init = {
924
1353
  &envoy_config_route_v3_RateLimit_Action_DynamicMetaData_submsgs[0],
925
1354
  &envoy_config_route_v3_RateLimit_Action_DynamicMetaData__fields[0],
926
- UPB_SIZE(24, 48), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
1355
+ UPB_SIZE(24, 48), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
1356
+ UPB_FASTTABLE_INIT({
1357
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1358
+ {0x000800003f00000a, &upb_pss_1bt},
1359
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
1360
+ {0x002000003f00001a, &upb_pss_1bt},
1361
+ })
927
1362
  };
928
1363
 
929
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Action_MetaData_submsgs[1] = {
930
- {.submsg = &envoy_type_metadata_v3_MetadataKey_msginit},
1364
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Action_MetaData_submsgs[1] = {
1365
+ {.submsg = &envoy_type_metadata_v3_MetadataKey_msg_init},
931
1366
  };
932
1367
 
933
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_MetaData__fields[5] = {
934
- {1, UPB_SIZE(12, 16), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
935
- {2, UPB_SIZE(20, 32), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
936
- {3, UPB_SIZE(24, 40), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
937
- {4, UPB_SIZE(4, 4), UPB_SIZE(0, 0), kUpb_NoSub, 5, kUpb_FieldMode_Scalar | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
938
- {5, UPB_SIZE(8, 8), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1368
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_MetaData__fields[5] = {
1369
+ {1, 16, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1370
+ {2, UPB_SIZE(4, 32), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1371
+ {3, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1372
+ {4, UPB_SIZE(8, 4), 0, kUpb_NoSub, 5, kUpb_FieldMode_Scalar | kUpb_LabelFlags_IsAlternate | (kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
1373
+ {5, UPB_SIZE(12, 8), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
939
1374
  };
940
1375
 
941
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_MetaData_msginit = {
1376
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_MetaData_msg_init = {
942
1377
  &envoy_config_route_v3_RateLimit_Action_MetaData_submsgs[0],
943
1378
  &envoy_config_route_v3_RateLimit_Action_MetaData__fields[0],
944
- UPB_SIZE(32, 56), 5, kUpb_ExtMode_NonExtendable, 5, 255, 0,
1379
+ UPB_SIZE(32, 56), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
1380
+ UPB_FASTTABLE_INIT({
1381
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1382
+ {0x001000003f00000a, &upb_pss_1bt},
1383
+ {0x0020000001000012, &upb_psm_1bt_maxmaxb},
1384
+ {0x002800003f00001a, &upb_pss_1bt},
1385
+ {0x000400003f000020, &upb_psv4_1bt},
1386
+ {0x000800003f000028, &upb_psb1_1bt},
1387
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1388
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1389
+ })
945
1390
  };
946
1391
 
947
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_submsgs[2] = {
948
- {.submsg = &google_protobuf_BoolValue_msginit},
949
- {.submsg = &envoy_config_route_v3_QueryParameterMatcher_msginit},
1392
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_submsgs[2] = {
1393
+ {.submsg = &google_protobuf_BoolValue_msg_init},
1394
+ {.submsg = &envoy_config_route_v3_QueryParameterMatcher_msg_init},
950
1395
  };
951
1396
 
952
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch__fields[4] = {
953
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
954
- {2, UPB_SIZE(12, 24), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
955
- {3, UPB_SIZE(16, 32), UPB_SIZE(0, 0), 1, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
956
- {4, UPB_SIZE(20, 40), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1397
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch__fields[4] = {
1398
+ {1, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1399
+ {2, UPB_SIZE(4, 24), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1400
+ {3, UPB_SIZE(8, 32), 0, 1, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1401
+ {4, UPB_SIZE(20, 40), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
957
1402
  };
958
1403
 
959
- const upb_MiniTable envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_msginit = {
1404
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_msg_init = {
960
1405
  &envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_submsgs[0],
961
1406
  &envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch__fields[0],
962
- UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, 255, 0,
1407
+ UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
1408
+ UPB_FASTTABLE_INIT({
1409
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1410
+ {0x000800003f00000a, &upb_pss_1bt},
1411
+ {0x0018000001000012, &upb_psm_1bt_maxmaxb},
1412
+ {0x002000003f01001a, &upb_prm_1bt_max64b},
1413
+ {0x002800003f000022, &upb_pss_1bt},
1414
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1415
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1416
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1417
+ })
963
1418
  };
964
1419
 
965
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Override_submsgs[1] = {
966
- {.submsg = &envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msginit},
1420
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Override_submsgs[1] = {
1421
+ {.submsg = &envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msg_init},
967
1422
  };
968
1423
 
969
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Override__fields[1] = {
970
- {1, UPB_SIZE(4, 8), UPB_SIZE(-1, -1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1424
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Override__fields[1] = {
1425
+ {1, UPB_SIZE(4, 8), -1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
971
1426
  };
972
1427
 
973
- const upb_MiniTable envoy_config_route_v3_RateLimit_Override_msginit = {
1428
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Override_msg_init = {
974
1429
  &envoy_config_route_v3_RateLimit_Override_submsgs[0],
975
1430
  &envoy_config_route_v3_RateLimit_Override__fields[0],
976
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
1431
+ UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
1432
+ UPB_FASTTABLE_INIT({
1433
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1434
+ {0x000800000100000a, &upb_pom_1bt_max64b},
1435
+ })
977
1436
  };
978
1437
 
979
- static const upb_MiniTable_Sub envoy_config_route_v3_RateLimit_Override_DynamicMetadata_submsgs[1] = {
980
- {.submsg = &envoy_type_metadata_v3_MetadataKey_msginit},
1438
+ static const upb_MiniTableSub envoy_config_route_v3_RateLimit_Override_DynamicMetadata_submsgs[1] = {
1439
+ {.submsg = &envoy_type_metadata_v3_MetadataKey_msg_init},
981
1440
  };
982
1441
 
983
- static const upb_MiniTable_Field envoy_config_route_v3_RateLimit_Override_DynamicMetadata__fields[1] = {
984
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1442
+ static const upb_MiniTableField envoy_config_route_v3_RateLimit_Override_DynamicMetadata__fields[1] = {
1443
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
985
1444
  };
986
1445
 
987
- const upb_MiniTable envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msginit = {
1446
+ const upb_MiniTable envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msg_init = {
988
1447
  &envoy_config_route_v3_RateLimit_Override_DynamicMetadata_submsgs[0],
989
1448
  &envoy_config_route_v3_RateLimit_Override_DynamicMetadata__fields[0],
990
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, 255, 0,
991
- };
992
-
993
- static const upb_MiniTable_Sub envoy_config_route_v3_HeaderMatcher_submsgs[3] = {
994
- {.submsg = &envoy_type_v3_Int64Range_msginit},
995
- {.submsg = &envoy_type_matcher_v3_RegexMatcher_msginit},
996
- {.submsg = &envoy_type_matcher_v3_StringMatcher_msginit},
997
- };
998
-
999
- static const upb_MiniTable_Field envoy_config_route_v3_HeaderMatcher__fields[11] = {
1000
- {1, UPB_SIZE(20, 32), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1001
- {4, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1002
- {6, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1003
- {7, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1004
- {8, UPB_SIZE(0, 0), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1005
- {9, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1006
- {10, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1007
- {11, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), 1, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1008
- {12, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1009
- {13, UPB_SIZE(12, 16), UPB_SIZE(-5, -5), 2, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1010
- {14, UPB_SIZE(8, 8), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1011
- };
1012
-
1013
- const upb_MiniTable envoy_config_route_v3_HeaderMatcher_msginit = {
1449
+ UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
1450
+ UPB_FASTTABLE_INIT({
1451
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1452
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1453
+ })
1454
+ };
1455
+
1456
+ static const upb_MiniTableSub envoy_config_route_v3_HeaderMatcher_submsgs[3] = {
1457
+ {.submsg = &envoy_type_v3_Int64Range_msg_init},
1458
+ {.submsg = &envoy_type_matcher_v3_RegexMatcher_msg_init},
1459
+ {.submsg = &envoy_type_matcher_v3_StringMatcher_msg_init},
1460
+ };
1461
+
1462
+ static const upb_MiniTableField envoy_config_route_v3_HeaderMatcher__fields[11] = {
1463
+ {1, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1464
+ {4, UPB_SIZE(12, 16), -5, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1465
+ {6, UPB_SIZE(12, 16), -5, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1466
+ {7, UPB_SIZE(12, 16), -5, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1467
+ {8, 0, 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1468
+ {9, UPB_SIZE(12, 16), -5, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1469
+ {10, UPB_SIZE(12, 16), -5, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1470
+ {11, UPB_SIZE(12, 16), -5, 1, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1471
+ {12, UPB_SIZE(12, 16), -5, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1472
+ {13, UPB_SIZE(12, 16), -5, 2, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1473
+ {14, 8, 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1474
+ };
1475
+
1476
+ const upb_MiniTable envoy_config_route_v3_HeaderMatcher_msg_init = {
1014
1477
  &envoy_config_route_v3_HeaderMatcher_submsgs[0],
1015
1478
  &envoy_config_route_v3_HeaderMatcher__fields[0],
1016
- UPB_SIZE(32, 48), 11, kUpb_ExtMode_NonExtendable, 1, 255, 0,
1017
- };
1018
-
1019
- static const upb_MiniTable_Sub envoy_config_route_v3_QueryParameterMatcher_submsgs[1] = {
1020
- {.submsg = &envoy_type_matcher_v3_StringMatcher_msginit},
1021
- };
1022
-
1023
- static const upb_MiniTable_Field envoy_config_route_v3_QueryParameterMatcher__fields[3] = {
1024
- {1, UPB_SIZE(4, 8), UPB_SIZE(0, 0), kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1025
- {5, UPB_SIZE(12, 24), UPB_SIZE(-1, -1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1026
- {6, UPB_SIZE(12, 24), UPB_SIZE(-1, -1), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1027
- };
1028
-
1029
- const upb_MiniTable envoy_config_route_v3_QueryParameterMatcher_msginit = {
1479
+ UPB_SIZE(32, 48), 11, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(120), 0,
1480
+ UPB_FASTTABLE_INIT({
1481
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1482
+ {0x002000003f00000a, &upb_pss_1bt},
1483
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1484
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1485
+ {0x0010000404000022, &upb_pos_1bt},
1486
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1487
+ {0x0010000406000032, &upb_pom_1bt_maxmaxb},
1488
+ {0x0010000407000038, &upb_pob1_1bt},
1489
+ {0x000000003f000040, &upb_psb1_1bt},
1490
+ {0x001000040900004a, &upb_pos_1bt},
1491
+ {0x001000040a000052, &upb_pos_1bt},
1492
+ {0x001000040b01005a, &upb_pom_1bt_maxmaxb},
1493
+ {0x001000040c000062, &upb_pos_1bt},
1494
+ {0x001000040d02006a, &upb_pom_1bt_maxmaxb},
1495
+ {0x000800003f000070, &upb_psb1_1bt},
1496
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1497
+ })
1498
+ };
1499
+
1500
+ static const upb_MiniTableSub envoy_config_route_v3_QueryParameterMatcher_submsgs[1] = {
1501
+ {.submsg = &envoy_type_matcher_v3_StringMatcher_msg_init},
1502
+ };
1503
+
1504
+ static const upb_MiniTableField envoy_config_route_v3_QueryParameterMatcher__fields[3] = {
1505
+ {1, 8, 0, kUpb_NoSub, 9, kUpb_FieldMode_Scalar | (kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
1506
+ {5, UPB_SIZE(4, 24), -1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1507
+ {6, UPB_SIZE(4, 24), -1, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1508
+ };
1509
+
1510
+ const upb_MiniTable envoy_config_route_v3_QueryParameterMatcher_msg_init = {
1030
1511
  &envoy_config_route_v3_QueryParameterMatcher_submsgs[0],
1031
1512
  &envoy_config_route_v3_QueryParameterMatcher__fields[0],
1032
- UPB_SIZE(16, 32), 3, kUpb_ExtMode_NonExtendable, 1, 255, 0,
1513
+ UPB_SIZE(16, 32), 3, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(56), 0,
1514
+ UPB_FASTTABLE_INIT({
1515
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1516
+ {0x000800003f00000a, &upb_pss_1bt},
1517
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1518
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1519
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1520
+ {0x001800000500002a, &upb_pom_1bt_maxmaxb},
1521
+ {0x0018000006000030, &upb_pob1_1bt},
1522
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1523
+ })
1033
1524
  };
1034
1525
 
1035
- static const upb_MiniTable_Sub envoy_config_route_v3_InternalRedirectPolicy_submsgs[2] = {
1036
- {.submsg = &google_protobuf_UInt32Value_msginit},
1037
- {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msginit},
1526
+ static const upb_MiniTableSub envoy_config_route_v3_InternalRedirectPolicy_submsgs[2] = {
1527
+ {.submsg = &google_protobuf_UInt32Value_msg_init},
1528
+ {.submsg = &envoy_config_core_v3_TypedExtensionConfig_msg_init},
1038
1529
  };
1039
1530
 
1040
- static const upb_MiniTable_Field envoy_config_route_v3_InternalRedirectPolicy__fields[4] = {
1041
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1042
- {2, UPB_SIZE(8, 16), UPB_SIZE(0, 0), kUpb_NoSub, 13, kUpb_FieldMode_Array | kUpb_LabelFlags_IsPacked | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1043
- {3, UPB_SIZE(12, 24), UPB_SIZE(0, 0), 1, 11, kUpb_FieldMode_Array | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1044
- {4, UPB_SIZE(1, 1), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1531
+ static const upb_MiniTableField envoy_config_route_v3_InternalRedirectPolicy__fields[4] = {
1532
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1533
+ {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 13, kUpb_FieldMode_Array | kUpb_LabelFlags_IsPacked | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1534
+ {3, UPB_SIZE(12, 24), 0, 1, 11, kUpb_FieldMode_Array | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1535
+ {4, UPB_SIZE(16, 1), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1045
1536
  };
1046
1537
 
1047
- const upb_MiniTable envoy_config_route_v3_InternalRedirectPolicy_msginit = {
1538
+ const upb_MiniTable envoy_config_route_v3_InternalRedirectPolicy_msg_init = {
1048
1539
  &envoy_config_route_v3_InternalRedirectPolicy_submsgs[0],
1049
1540
  &envoy_config_route_v3_InternalRedirectPolicy__fields[0],
1050
- UPB_SIZE(16, 32), 4, kUpb_ExtMode_NonExtendable, 4, 255, 0,
1541
+ UPB_SIZE(24, 32), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
1542
+ UPB_FASTTABLE_INIT({
1543
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1544
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1545
+ {0x001000003f000012, &upb_ppv4_1bt},
1546
+ {0x001800003f01001a, &upb_prm_1bt_maxmaxb},
1547
+ {0x000100003f000020, &upb_psb1_1bt},
1548
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1549
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1550
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1551
+ })
1051
1552
  };
1052
1553
 
1053
- static const upb_MiniTable_Sub envoy_config_route_v3_FilterConfig_submsgs[1] = {
1054
- {.submsg = &google_protobuf_Any_msginit},
1554
+ static const upb_MiniTableSub envoy_config_route_v3_FilterConfig_submsgs[1] = {
1555
+ {.submsg = &google_protobuf_Any_msg_init},
1055
1556
  };
1056
1557
 
1057
- static const upb_MiniTable_Field envoy_config_route_v3_FilterConfig__fields[3] = {
1058
- {1, UPB_SIZE(4, 8), UPB_SIZE(1, 1), 0, 11, kUpb_FieldMode_Scalar | (kUpb_FieldRep_Pointer << kUpb_FieldRep_Shift)},
1059
- {2, UPB_SIZE(1, 1), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1060
- {3, UPB_SIZE(2, 2), UPB_SIZE(0, 0), kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1558
+ static const upb_MiniTableField envoy_config_route_v3_FilterConfig__fields[3] = {
1559
+ {1, UPB_SIZE(4, 8), 1, 0, 11, kUpb_FieldMode_Scalar | (UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
1560
+ {2, UPB_SIZE(8, 1), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1561
+ {3, UPB_SIZE(9, 2), 0, kUpb_NoSub, 8, kUpb_FieldMode_Scalar | (kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
1061
1562
  };
1062
1563
 
1063
- const upb_MiniTable envoy_config_route_v3_FilterConfig_msginit = {
1564
+ const upb_MiniTable envoy_config_route_v3_FilterConfig_msg_init = {
1064
1565
  &envoy_config_route_v3_FilterConfig_submsgs[0],
1065
1566
  &envoy_config_route_v3_FilterConfig__fields[0],
1066
- UPB_SIZE(8, 16), 3, kUpb_ExtMode_NonExtendable, 3, 255, 0,
1567
+ 16, 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
1568
+ UPB_FASTTABLE_INIT({
1569
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
1570
+ {0x000800000100000a, &upb_psm_1bt_maxmaxb},
1571
+ {0x000100003f000010, &upb_psb1_1bt},
1572
+ {0x000200003f000018, &upb_psb1_1bt},
1573
+ })
1067
1574
  };
1068
1575
 
1069
1576
  static const upb_MiniTable *messages_layout[57] = {
1070
- &envoy_config_route_v3_VirtualHost_msginit,
1071
- &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msginit,
1072
- &envoy_config_route_v3_FilterAction_msginit,
1073
- &envoy_config_route_v3_RouteList_msginit,
1074
- &envoy_config_route_v3_Route_msginit,
1075
- &envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msginit,
1076
- &envoy_config_route_v3_WeightedCluster_msginit,
1077
- &envoy_config_route_v3_WeightedCluster_ClusterWeight_msginit,
1078
- &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit,
1079
- &envoy_config_route_v3_ClusterSpecifierPlugin_msginit,
1080
- &envoy_config_route_v3_RouteMatch_msginit,
1081
- &envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msginit,
1082
- &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msginit,
1083
- &envoy_config_route_v3_RouteMatch_ConnectMatcher_msginit,
1084
- &envoy_config_route_v3_CorsPolicy_msginit,
1085
- &envoy_config_route_v3_RouteAction_msginit,
1086
- &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msginit,
1087
- &envoy_config_route_v3_RouteAction_HashPolicy_msginit,
1088
- &envoy_config_route_v3_RouteAction_HashPolicy_Header_msginit,
1089
- &envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msginit,
1090
- &envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msginit,
1091
- &envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msginit,
1092
- &envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msginit,
1093
- &envoy_config_route_v3_RouteAction_UpgradeConfig_msginit,
1094
- &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msginit,
1095
- &envoy_config_route_v3_RouteAction_MaxStreamDuration_msginit,
1096
- &envoy_config_route_v3_RetryPolicy_msginit,
1097
- &envoy_config_route_v3_RetryPolicy_RetryPriority_msginit,
1098
- &envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msginit,
1099
- &envoy_config_route_v3_RetryPolicy_RetryBackOff_msginit,
1100
- &envoy_config_route_v3_RetryPolicy_ResetHeader_msginit,
1101
- &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msginit,
1102
- &envoy_config_route_v3_HedgePolicy_msginit,
1103
- &envoy_config_route_v3_RedirectAction_msginit,
1104
- &envoy_config_route_v3_DirectResponseAction_msginit,
1105
- &envoy_config_route_v3_NonForwardingAction_msginit,
1106
- &envoy_config_route_v3_Decorator_msginit,
1107
- &envoy_config_route_v3_Tracing_msginit,
1108
- &envoy_config_route_v3_VirtualCluster_msginit,
1109
- &envoy_config_route_v3_RateLimit_msginit,
1110
- &envoy_config_route_v3_RateLimit_Action_msginit,
1111
- &envoy_config_route_v3_RateLimit_Action_SourceCluster_msginit,
1112
- &envoy_config_route_v3_RateLimit_Action_DestinationCluster_msginit,
1113
- &envoy_config_route_v3_RateLimit_Action_RequestHeaders_msginit,
1114
- &envoy_config_route_v3_RateLimit_Action_RemoteAddress_msginit,
1115
- &envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_msginit,
1116
- &envoy_config_route_v3_RateLimit_Action_GenericKey_msginit,
1117
- &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msginit,
1118
- &envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msginit,
1119
- &envoy_config_route_v3_RateLimit_Action_MetaData_msginit,
1120
- &envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_msginit,
1121
- &envoy_config_route_v3_RateLimit_Override_msginit,
1122
- &envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msginit,
1123
- &envoy_config_route_v3_HeaderMatcher_msginit,
1124
- &envoy_config_route_v3_QueryParameterMatcher_msginit,
1125
- &envoy_config_route_v3_InternalRedirectPolicy_msginit,
1126
- &envoy_config_route_v3_FilterConfig_msginit,
1127
- };
1128
-
1129
- const upb_MiniTable_File envoy_config_route_v3_route_components_proto_upb_file_layout = {
1577
+ &envoy_config_route_v3_VirtualHost_msg_init,
1578
+ &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msg_init,
1579
+ &envoy_config_route_v3_FilterAction_msg_init,
1580
+ &envoy_config_route_v3_RouteList_msg_init,
1581
+ &envoy_config_route_v3_Route_msg_init,
1582
+ &envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msg_init,
1583
+ &envoy_config_route_v3_WeightedCluster_msg_init,
1584
+ &envoy_config_route_v3_WeightedCluster_ClusterWeight_msg_init,
1585
+ &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msg_init,
1586
+ &envoy_config_route_v3_ClusterSpecifierPlugin_msg_init,
1587
+ &envoy_config_route_v3_RouteMatch_msg_init,
1588
+ &envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msg_init,
1589
+ &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msg_init,
1590
+ &envoy_config_route_v3_RouteMatch_ConnectMatcher_msg_init,
1591
+ &envoy_config_route_v3_CorsPolicy_msg_init,
1592
+ &envoy_config_route_v3_RouteAction_msg_init,
1593
+ &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msg_init,
1594
+ &envoy_config_route_v3_RouteAction_HashPolicy_msg_init,
1595
+ &envoy_config_route_v3_RouteAction_HashPolicy_Header_msg_init,
1596
+ &envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msg_init,
1597
+ &envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msg_init,
1598
+ &envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msg_init,
1599
+ &envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msg_init,
1600
+ &envoy_config_route_v3_RouteAction_UpgradeConfig_msg_init,
1601
+ &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msg_init,
1602
+ &envoy_config_route_v3_RouteAction_MaxStreamDuration_msg_init,
1603
+ &envoy_config_route_v3_RetryPolicy_msg_init,
1604
+ &envoy_config_route_v3_RetryPolicy_RetryPriority_msg_init,
1605
+ &envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msg_init,
1606
+ &envoy_config_route_v3_RetryPolicy_RetryBackOff_msg_init,
1607
+ &envoy_config_route_v3_RetryPolicy_ResetHeader_msg_init,
1608
+ &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msg_init,
1609
+ &envoy_config_route_v3_HedgePolicy_msg_init,
1610
+ &envoy_config_route_v3_RedirectAction_msg_init,
1611
+ &envoy_config_route_v3_DirectResponseAction_msg_init,
1612
+ &envoy_config_route_v3_NonForwardingAction_msg_init,
1613
+ &envoy_config_route_v3_Decorator_msg_init,
1614
+ &envoy_config_route_v3_Tracing_msg_init,
1615
+ &envoy_config_route_v3_VirtualCluster_msg_init,
1616
+ &envoy_config_route_v3_RateLimit_msg_init,
1617
+ &envoy_config_route_v3_RateLimit_Action_msg_init,
1618
+ &envoy_config_route_v3_RateLimit_Action_SourceCluster_msg_init,
1619
+ &envoy_config_route_v3_RateLimit_Action_DestinationCluster_msg_init,
1620
+ &envoy_config_route_v3_RateLimit_Action_RequestHeaders_msg_init,
1621
+ &envoy_config_route_v3_RateLimit_Action_RemoteAddress_msg_init,
1622
+ &envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_msg_init,
1623
+ &envoy_config_route_v3_RateLimit_Action_GenericKey_msg_init,
1624
+ &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msg_init,
1625
+ &envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msg_init,
1626
+ &envoy_config_route_v3_RateLimit_Action_MetaData_msg_init,
1627
+ &envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_msg_init,
1628
+ &envoy_config_route_v3_RateLimit_Override_msg_init,
1629
+ &envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msg_init,
1630
+ &envoy_config_route_v3_HeaderMatcher_msg_init,
1631
+ &envoy_config_route_v3_QueryParameterMatcher_msg_init,
1632
+ &envoy_config_route_v3_InternalRedirectPolicy_msg_init,
1633
+ &envoy_config_route_v3_FilterConfig_msg_init,
1634
+ };
1635
+
1636
+ const upb_MiniTableFile envoy_config_route_v3_route_components_proto_upb_file_layout = {
1130
1637
  messages_layout,
1131
1638
  NULL,
1132
1639
  NULL,
@@ -1135,5 +1642,5 @@ const upb_MiniTable_File envoy_config_route_v3_route_components_proto_upb_file_l
1135
1642
  0,
1136
1643
  };
1137
1644
 
1138
- #include "upb/port_undef.inc"
1645
+ #include "upb/port/undef.inc"
1139
1646