grpc 1.42.0 → 1.46.3

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 (1531) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +425 -234
  3. data/include/grpc/event_engine/event_engine.h +37 -13
  4. data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -31
  5. data/include/grpc/event_engine/memory_allocator.h +27 -11
  6. data/include/grpc/event_engine/memory_request.h +57 -0
  7. data/include/grpc/grpc.h +40 -14
  8. data/include/grpc/grpc_posix.h +20 -19
  9. data/include/grpc/grpc_security.h +312 -195
  10. data/include/grpc/grpc_security_constants.h +1 -14
  11. data/include/grpc/impl/codegen/compression_types.h +0 -2
  12. data/include/grpc/impl/codegen/grpc_types.h +24 -21
  13. data/include/grpc/impl/codegen/port_platform.h +7 -3
  14. data/include/grpc/impl/codegen/slice.h +4 -1
  15. data/include/grpc/slice.h +0 -11
  16. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +309 -0
  17. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +122 -0
  18. data/src/core/ext/filters/{client_idle → channel_idle}/idle_filter_state.cc +1 -1
  19. data/src/core/ext/filters/{client_idle → channel_idle}/idle_filter_state.h +5 -5
  20. data/src/core/ext/filters/client_channel/backend_metric.cc +9 -10
  21. data/src/core/ext/filters/client_channel/backend_metric.h +4 -3
  22. data/src/core/ext/filters/client_channel/backup_poller.cc +12 -8
  23. data/src/core/ext/filters/client_channel/channel_connectivity.cc +5 -5
  24. data/src/core/ext/filters/client_channel/client_channel.cc +367 -243
  25. data/src/core/ext/filters/client_channel/client_channel.h +45 -41
  26. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +6 -13
  27. data/src/core/ext/filters/client_channel/config_selector.h +4 -4
  28. data/src/core/ext/filters/client_channel/connector.h +1 -1
  29. data/src/core/ext/filters/client_channel/dynamic_filters.cc +5 -6
  30. data/src/core/ext/filters/client_channel/dynamic_filters.h +2 -2
  31. data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +2 -22
  32. data/src/core/ext/filters/client_channel/global_subchannel_pool.h +3 -15
  33. data/src/core/ext/filters/client_channel/health/health_check_client.cc +126 -582
  34. data/src/core/ext/filters/client_channel/health/health_check_client.h +24 -160
  35. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +22 -27
  36. data/src/core/ext/filters/client_channel/http_proxy.cc +88 -110
  37. data/src/core/ext/filters/client_channel/http_proxy.h +17 -0
  38. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
  39. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
  40. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +4 -7
  41. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +100 -81
  42. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +0 -7
  43. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
  44. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +1 -2
  45. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -2
  46. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +15 -15
  47. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -4
  48. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +50 -32
  49. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +199 -150
  50. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +123 -76
  51. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +162 -122
  52. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +62 -61
  53. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +16 -11
  54. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +98 -63
  55. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +104 -145
  56. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
  57. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +147 -70
  58. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +19 -10
  59. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +323 -470
  60. data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
  61. data/src/core/ext/filters/client_channel/lb_policy.h +94 -62
  62. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +10 -16
  63. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +287 -313
  64. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +22 -12
  65. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +19 -15
  66. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +31 -50
  67. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +136 -226
  68. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +25 -32
  69. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  70. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +92 -255
  71. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +18 -17
  72. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
  73. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +84 -68
  74. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +201 -0
  75. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +106 -0
  76. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +40 -39
  77. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +476 -412
  78. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +8 -11
  79. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +13 -7
  80. data/src/core/ext/filters/client_channel/retry_filter.cc +253 -171
  81. data/src/core/ext/filters/client_channel/retry_service_config.cc +16 -18
  82. data/src/core/ext/filters/client_channel/retry_service_config.h +18 -12
  83. data/src/core/ext/filters/client_channel/retry_throttle.cc +9 -23
  84. data/src/core/ext/filters/client_channel/retry_throttle.h +11 -5
  85. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +8 -7
  86. data/src/core/ext/filters/client_channel/subchannel.cc +52 -59
  87. data/src/core/ext/filters/client_channel/subchannel.h +7 -7
  88. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +544 -0
  89. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +214 -0
  90. data/src/core/ext/filters/deadline/deadline_filter.cc +15 -14
  91. data/src/core/ext/filters/deadline/deadline_filter.h +3 -2
  92. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +155 -400
  93. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +24 -1
  94. data/src/core/ext/filters/fault_injection/service_config_parser.cc +11 -13
  95. data/src/core/ext/filters/fault_injection/service_config_parser.h +10 -4
  96. data/src/core/ext/filters/http/client/http_client_filter.cc +81 -544
  97. data/src/core/ext/filters/http/client/http_client_filter.h +21 -4
  98. data/src/core/ext/filters/http/client_authority_filter.cc +31 -95
  99. data/src/core/ext/filters/http/client_authority_filter.h +24 -5
  100. data/src/core/ext/filters/http/http_filters_plugin.cc +22 -22
  101. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +43 -140
  102. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +15 -27
  103. data/src/core/ext/filters/http/server/http_server_filter.cc +36 -251
  104. data/src/core/ext/filters/message_size/message_size_filter.cc +27 -35
  105. data/src/core/ext/filters/message_size/message_size_filter.h +10 -3
  106. data/src/core/ext/filters/rbac/rbac_filter.cc +162 -0
  107. data/src/core/ext/filters/rbac/rbac_filter.h +76 -0
  108. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +606 -0
  109. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +75 -0
  110. data/src/core/ext/filters/server_config_selector/server_config_selector.cc +61 -0
  111. data/src/core/ext/filters/server_config_selector/server_config_selector.h +71 -0
  112. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +143 -0
  113. data/src/core/ext/{transport/chttp2/transport/hpack_utils.h → filters/server_config_selector/server_config_selector_filter.h} +9 -7
  114. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +239 -20
  115. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +0 -2
  116. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +286 -108
  117. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +327 -303
  118. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +9 -4
  119. data/src/core/ext/transport/chttp2/transport/context_list.cc +2 -3
  120. data/src/core/ext/transport/chttp2/transport/context_list.h +2 -3
  121. data/src/core/ext/transport/chttp2/transport/flow_control.cc +10 -10
  122. data/src/core/ext/transport/chttp2/transport/flow_control.h +5 -5
  123. data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
  124. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +4 -4
  125. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +5 -0
  126. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +2 -0
  127. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +361 -240
  128. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +87 -145
  129. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +1 -1
  130. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
  131. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +74 -149
  132. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -1
  133. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +94 -1
  134. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -24
  135. data/src/core/ext/transport/chttp2/transport/internal.h +16 -43
  136. data/src/core/ext/transport/chttp2/transport/parsing.cc +11 -9
  137. data/src/core/ext/transport/chttp2/transport/writing.cc +81 -136
  138. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
  139. data/src/core/ext/transport/inproc/inproc_transport.cc +42 -81
  140. data/src/core/ext/transport/inproc/inproc_transport.h +1 -4
  141. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +117 -0
  142. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +482 -0
  143. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -0
  144. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +553 -0
  145. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +247 -209
  146. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +1249 -684
  147. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +56 -0
  148. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +151 -0
  149. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +62 -0
  150. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +160 -0
  151. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +46 -0
  152. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +124 -0
  153. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +43 -0
  154. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +102 -0
  155. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +43 -0
  156. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +97 -0
  157. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +106 -0
  158. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +605 -0
  159. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +48 -0
  160. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +103 -0
  161. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +43 -0
  162. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +51 -0
  163. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +30 -4
  164. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +50 -17
  165. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +143 -116
  166. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +670 -385
  167. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +239 -199
  168. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1270 -663
  169. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +49 -28
  170. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +201 -90
  171. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +320 -271
  172. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1671 -826
  173. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +20 -7
  174. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +43 -23
  175. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +60 -27
  176. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +273 -98
  177. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +299 -0
  178. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +1381 -0
  179. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +74 -53
  180. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +355 -189
  181. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +21 -7
  182. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +46 -24
  183. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +213 -176
  184. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1069 -581
  185. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +105 -45
  186. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +526 -166
  187. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +19 -6
  188. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +39 -23
  189. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +16 -22
  190. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +42 -100
  191. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +58 -0
  192. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +151 -0
  193. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +145 -117
  194. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +769 -409
  195. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +141 -92
  196. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +737 -348
  197. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +21 -8
  198. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +58 -30
  199. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +203 -125
  200. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +993 -396
  201. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +17 -4
  202. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +29 -16
  203. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +27 -13
  204. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +84 -48
  205. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +22 -9
  206. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +76 -33
  207. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +26 -13
  208. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +94 -48
  209. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +21 -8
  210. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +47 -25
  211. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +51 -35
  212. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +195 -108
  213. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +74 -55
  214. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +350 -189
  215. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +70 -53
  216. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +358 -187
  217. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +19 -6
  218. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +35 -20
  219. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +98 -71
  220. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +504 -258
  221. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +104 -79
  222. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +561 -300
  223. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +31 -16
  224. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +105 -48
  225. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +24 -10
  226. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +66 -39
  227. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +53 -0
  228. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +136 -0
  229. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +82 -61
  230. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +414 -234
  231. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +86 -65
  232. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +407 -236
  233. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +127 -103
  234. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +563 -293
  235. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +53 -34
  236. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +272 -141
  237. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +663 -572
  238. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +3643 -1900
  239. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +38 -19
  240. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +149 -71
  241. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +222 -0
  242. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +1052 -0
  243. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +44 -0
  244. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +88 -0
  245. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +49 -0
  246. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +103 -0
  247. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +27 -13
  248. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +78 -45
  249. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +52 -0
  250. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +134 -0
  251. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +63 -0
  252. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +250 -0
  253. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +47 -0
  254. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +94 -0
  255. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +69 -0
  256. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +213 -0
  257. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +32 -0
  258. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +42 -0
  259. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +71 -0
  260. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +218 -0
  261. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +54 -0
  262. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +146 -0
  263. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +17 -4
  264. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +35 -23
  265. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +45 -28
  266. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +188 -111
  267. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +51 -36
  268. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +261 -131
  269. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +64 -0
  270. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +183 -0
  271. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +26 -13
  272. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +87 -42
  273. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +283 -223
  274. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1554 -733
  275. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +9 -0
  276. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +6 -3
  277. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +105 -60
  278. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +555 -234
  279. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +41 -26
  280. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +157 -86
  281. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +126 -83
  282. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +623 -262
  283. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +62 -0
  284. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +160 -0
  285. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +15 -2
  286. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +22 -14
  287. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +91 -72
  288. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +475 -255
  289. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +31 -17
  290. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +108 -61
  291. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +73 -56
  292. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +348 -185
  293. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +48 -0
  294. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +112 -0
  295. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +34 -18
  296. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +124 -80
  297. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +74 -0
  298. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +214 -0
  299. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +28 -14
  300. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +100 -56
  301. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +21 -8
  302. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +51 -30
  303. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +20 -7
  304. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +49 -26
  305. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +19 -6
  306. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +39 -23
  307. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +35 -20
  308. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +118 -68
  309. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +31 -17
  310. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +124 -64
  311. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +26 -12
  312. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +86 -52
  313. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +37 -22
  314. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +151 -82
  315. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +50 -31
  316. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +230 -144
  317. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +53 -36
  318. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +236 -130
  319. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +66 -0
  320. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +201 -0
  321. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +9 -0
  322. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +3 -0
  323. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +42 -0
  324. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +139 -0
  325. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +23 -9
  326. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +63 -35
  327. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +30 -15
  328. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +99 -51
  329. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +26 -0
  330. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +41 -0
  331. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +19 -6
  332. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +41 -18
  333. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +51 -0
  334. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +127 -0
  335. data/src/core/ext/upb-generated/google/api/annotations.upb.c +22 -0
  336. data/src/core/ext/upb-generated/google/api/annotations.upb.h +23 -0
  337. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +154 -125
  338. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +721 -381
  339. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +158 -126
  340. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +796 -401
  341. data/src/core/ext/upb-generated/google/api/http.upb.c +43 -28
  342. data/src/core/ext/upb-generated/google/api/http.upb.h +217 -114
  343. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +46 -0
  344. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +111 -0
  345. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +18 -5
  346. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +39 -21
  347. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +373 -282
  348. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +2077 -1029
  349. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +18 -5
  350. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +37 -19
  351. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +15 -2
  352. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +22 -14
  353. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +47 -31
  354. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +178 -92
  355. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +18 -5
  356. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +37 -19
  357. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +57 -36
  358. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +241 -148
  359. data/src/core/ext/upb-generated/google/rpc/status.upb.c +21 -8
  360. data/src/core/ext/upb-generated/google/rpc/status.upb.h +53 -29
  361. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +84 -0
  362. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +319 -0
  363. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +32 -18
  364. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +104 -47
  365. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +135 -107
  366. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +686 -358
  367. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +27 -12
  368. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +77 -40
  369. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +22 -8
  370. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +57 -34
  371. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +81 -61
  372. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +399 -237
  373. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +34 -19
  374. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +116 -62
  375. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +175 -0
  376. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +764 -0
  377. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +75 -13
  378. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +194 -56
  379. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +31 -5
  380. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +55 -17
  381. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +21 -0
  382. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +16 -0
  383. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +31 -5
  384. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +57 -19
  385. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +30 -4
  386. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +50 -17
  387. data/src/core/ext/upb-generated/validate/validate.upb.c +406 -310
  388. data/src/core/ext/upb-generated/validate/validate.upb.h +2730 -1164
  389. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +110 -0
  390. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +278 -0
  391. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +55 -0
  392. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +108 -0
  393. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +38 -0
  394. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +46 -0
  395. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +64 -17
  396. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +175 -67
  397. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +53 -0
  398. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +99 -0
  399. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +17 -4
  400. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +31 -18
  401. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +30 -16
  402. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +99 -54
  403. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +25 -11
  404. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +54 -29
  405. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +46 -0
  406. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +103 -0
  407. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +22 -9
  408. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +56 -29
  409. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +33 -19
  410. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +131 -69
  411. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +22 -9
  412. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +59 -29
  413. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +36 -21
  414. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +102 -45
  415. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +207 -0
  416. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +878 -0
  417. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +52 -0
  418. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +143 -0
  419. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +65 -0
  420. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +218 -0
  421. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +20 -7
  422. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +43 -23
  423. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +84 -0
  424. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +55 -0
  425. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +127 -0
  426. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +50 -0
  427. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +16 -61
  428. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +67 -67
  429. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +43 -0
  430. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +40 -0
  431. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +53 -0
  432. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +40 -0
  433. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +49 -0
  434. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +35 -0
  435. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +46 -0
  436. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +35 -0
  437. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +46 -0
  438. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +35 -0
  439. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +142 -0
  440. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +40 -0
  441. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +51 -0
  442. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +35 -0
  443. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +10 -8
  444. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +1 -1
  445. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +10 -13
  446. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +4 -4
  447. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +22 -52
  448. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +46 -46
  449. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +250 -281
  450. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +55 -55
  451. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +60 -62
  452. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +10 -10
  453. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +387 -426
  454. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +76 -76
  455. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +16 -18
  456. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +4 -4
  457. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +25 -23
  458. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +4 -4
  459. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +206 -0
  460. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +105 -0
  461. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +17 -32
  462. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +22 -22
  463. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +17 -19
  464. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +4 -4
  465. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +87 -133
  466. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +73 -73
  467. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +140 -116
  468. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +26 -16
  469. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +16 -19
  470. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +4 -4
  471. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +24 -43
  472. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +4 -9
  473. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +53 -0
  474. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +40 -0
  475. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +23 -51
  476. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +43 -43
  477. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +179 -187
  478. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +30 -25
  479. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +16 -19
  480. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +4 -4
  481. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +252 -254
  482. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +53 -43
  483. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +14 -16
  484. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +4 -4
  485. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +16 -20
  486. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +7 -7
  487. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +16 -18
  488. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +4 -4
  489. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +20 -22
  490. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +4 -4
  491. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +15 -18
  492. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +4 -4
  493. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +20 -28
  494. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +13 -13
  495. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +21 -33
  496. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +19 -19
  497. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +20 -30
  498. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +16 -16
  499. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +16 -18
  500. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +4 -4
  501. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +54 -62
  502. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +19 -19
  503. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +155 -166
  504. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +22 -22
  505. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +21 -23
  506. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +4 -4
  507. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +17 -21
  508. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +7 -7
  509. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +69 -0
  510. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +35 -0
  511. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +19 -35
  512. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +25 -25
  513. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +19 -37
  514. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +28 -28
  515. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +190 -0
  516. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
  517. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +38 -38
  518. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +10 -10
  519. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +828 -914
  520. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +160 -160
  521. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +54 -48
  522. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +10 -10
  523. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +188 -0
  524. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +85 -0
  525. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +54 -0
  526. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +35 -0
  527. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +57 -0
  528. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +35 -0
  529. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +17 -21
  530. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +7 -7
  531. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +72 -0
  532. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +35 -0
  533. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +99 -0
  534. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +35 -0
  535. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +52 -0
  536. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +35 -0
  537. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +71 -0
  538. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +40 -0
  539. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +57 -0
  540. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +30 -0
  541. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +75 -0
  542. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +40 -0
  543. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +77 -0
  544. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +35 -0
  545. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +17 -18
  546. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +4 -4
  547. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +19 -29
  548. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +16 -16
  549. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +20 -26
  550. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +10 -10
  551. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +59 -0
  552. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
  553. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +19 -20
  554. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +4 -4
  555. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +199 -215
  556. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +63 -58
  557. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +17 -13
  558. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +1 -1
  559. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +171 -157
  560. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +24 -19
  561. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +21 -27
  562. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +10 -10
  563. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +219 -216
  564. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +24 -19
  565. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +58 -0
  566. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +40 -0
  567. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +16 -18
  568. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +4 -4
  569. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +19 -33
  570. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +22 -22
  571. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +18 -22
  572. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +7 -7
  573. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +22 -32
  574. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +16 -16
  575. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +46 -0
  576. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +35 -0
  577. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +15 -23
  578. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +13 -13
  579. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +52 -0
  580. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +50 -0
  581. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +17 -21
  582. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +7 -7
  583. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +17 -19
  584. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +4 -4
  585. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +17 -19
  586. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +4 -4
  587. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +17 -19
  588. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +4 -4
  589. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +17 -23
  590. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +10 -10
  591. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +17 -21
  592. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +7 -7
  593. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +16 -21
  594. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +7 -7
  595. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +18 -24
  596. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +10 -10
  597. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +15 -29
  598. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +22 -22
  599. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +16 -26
  600. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +16 -16
  601. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +53 -0
  602. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +45 -0
  603. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +12 -10
  604. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +1 -1
  605. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +94 -0
  606. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +35 -0
  607. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +14 -19
  608. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +7 -7
  609. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +13 -19
  610. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +10 -10
  611. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +38 -0
  612. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +30 -0
  613. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +13 -16
  614. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +4 -4
  615. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +57 -0
  616. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +35 -0
  617. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +7 -7
  618. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +1 -1
  619. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
  620. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
  621. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
  622. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
  623. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +5 -14
  624. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +10 -10
  625. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +39 -0
  626. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +35 -0
  627. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +5 -10
  628. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +4 -4
  629. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +5 -62
  630. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +82 -82
  631. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +5 -10
  632. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +4 -4
  633. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +5 -10
  634. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +4 -4
  635. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +5 -16
  636. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +13 -13
  637. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +5 -10
  638. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +4 -4
  639. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +5 -26
  640. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +28 -28
  641. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +6 -11
  642. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +4 -4
  643. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +67 -0
  644. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +50 -0
  645. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +99 -0
  646. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
  647. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +6 -15
  648. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +10 -10
  649. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +7 -12
  650. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +4 -4
  651. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +6 -6
  652. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +1 -1
  653. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +6 -11
  654. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +4 -4
  655. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +6 -11
  656. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +4 -4
  657. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +8 -57
  658. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +70 -70
  659. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +63 -0
  660. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +45 -0
  661. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +47 -0
  662. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +35 -0
  663. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +35 -0
  664. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +30 -0
  665. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +6 -17
  666. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +13 -13
  667. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +40 -0
  668. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +35 -0
  669. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +7 -12
  670. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +4 -4
  671. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +9 -16
  672. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +7 -7
  673. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +6 -13
  674. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +7 -7
  675. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +41 -0
  676. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +35 -0
  677. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +8 -13
  678. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +4 -4
  679. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +8 -15
  680. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +7 -7
  681. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +8 -13
  682. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +4 -4
  683. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +126 -0
  684. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +80 -0
  685. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +40 -0
  686. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +40 -0
  687. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +52 -0
  688. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +40 -0
  689. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +7 -12
  690. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +4 -4
  691. data/src/core/ext/xds/certificate_provider_registry.cc +1 -1
  692. data/src/core/ext/xds/certificate_provider_store.cc +8 -0
  693. data/src/core/ext/xds/certificate_provider_store.h +10 -1
  694. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +4 -4
  695. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
  696. data/src/core/ext/xds/upb_utils.h +67 -0
  697. data/src/core/ext/xds/xds_api.cc +182 -3417
  698. data/src/core/ext/xds/xds_api.h +60 -613
  699. data/src/core/ext/xds/xds_bootstrap.cc +222 -123
  700. data/src/core/ext/xds/xds_bootstrap.h +33 -15
  701. data/src/core/ext/xds/xds_certificate_provider.cc +2 -0
  702. data/src/core/ext/xds/xds_certificate_provider.h +10 -2
  703. data/src/core/ext/xds/xds_channel_stack_modifier.cc +16 -20
  704. data/src/core/ext/xds/xds_channel_stack_modifier.h +4 -3
  705. data/src/core/ext/xds/xds_client.cc +805 -1084
  706. data/src/core/ext/xds/xds_client.h +118 -150
  707. data/src/core/ext/xds/xds_client_stats.cc +15 -15
  708. data/src/core/ext/xds/xds_client_stats.h +5 -4
  709. data/src/core/ext/xds/xds_cluster.cc +453 -0
  710. data/src/core/ext/xds/xds_cluster.h +108 -0
  711. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +142 -0
  712. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +79 -0
  713. data/src/core/ext/xds/xds_common_types.cc +388 -0
  714. data/src/core/ext/xds/xds_common_types.h +95 -0
  715. data/src/core/ext/xds/xds_endpoint.cc +371 -0
  716. data/src/core/ext/xds/xds_endpoint.h +135 -0
  717. data/src/core/ext/xds/xds_http_fault_filter.cc +7 -7
  718. data/src/core/ext/xds/xds_http_fault_filter.h +3 -3
  719. data/src/core/ext/xds/xds_http_filters.cc +11 -5
  720. data/src/core/ext/xds/xds_http_filters.h +4 -4
  721. data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
  722. data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
  723. data/src/core/ext/xds/xds_listener.cc +1039 -0
  724. data/src/core/ext/xds/xds_listener.h +220 -0
  725. data/src/core/ext/xds/xds_resource_type.cc +33 -0
  726. data/src/core/ext/xds/xds_resource_type.h +98 -0
  727. data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
  728. data/src/core/ext/xds/xds_route_config.cc +1122 -0
  729. data/src/core/ext/xds/xds_route_config.h +218 -0
  730. data/src/core/ext/xds/xds_routing.cc +250 -0
  731. data/src/core/ext/xds/xds_routing.h +101 -0
  732. data/src/core/ext/xds/xds_server_config_fetcher.cc +1056 -286
  733. data/src/core/lib/address_utils/parse_address.cc +20 -0
  734. data/src/core/lib/address_utils/parse_address.h +5 -0
  735. data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
  736. data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
  737. data/src/core/lib/avl/avl.h +452 -88
  738. data/src/core/lib/backoff/backoff.cc +9 -38
  739. data/src/core/lib/backoff/backoff.h +11 -11
  740. data/src/core/lib/channel/call_finalization.h +86 -0
  741. data/src/core/lib/channel/call_tracer.h +4 -1
  742. data/src/core/lib/channel/channel_args.cc +166 -28
  743. data/src/core/lib/channel/channel_args.h +214 -10
  744. data/src/core/lib/channel/channel_args_preconditioning.cc +42 -0
  745. data/src/core/lib/channel/channel_args_preconditioning.h +61 -0
  746. data/src/core/lib/channel/channel_stack.cc +10 -3
  747. data/src/core/lib/channel/channel_stack.h +39 -6
  748. data/src/core/lib/channel/channel_stack_builder.cc +23 -272
  749. data/src/core/lib/channel/channel_stack_builder.h +118 -149
  750. data/src/core/lib/channel/channel_stack_builder_impl.cc +102 -0
  751. data/src/core/lib/channel/channel_stack_builder_impl.h +48 -0
  752. data/src/core/lib/channel/channel_trace.cc +3 -6
  753. data/src/core/lib/channel/channelz.cc +2 -1
  754. data/src/core/lib/channel/connected_channel.cc +9 -4
  755. data/src/core/lib/channel/connected_channel.h +2 -1
  756. data/src/core/lib/channel/context.h +11 -0
  757. data/src/core/lib/channel/handshaker.cc +1 -1
  758. data/src/core/lib/channel/handshaker.h +1 -1
  759. data/src/core/lib/channel/promise_based_filter.cc +1002 -0
  760. data/src/core/lib/channel/promise_based_filter.h +437 -0
  761. data/src/core/lib/compression/compression.cc +20 -112
  762. data/src/core/lib/compression/compression_internal.cc +137 -203
  763. data/src/core/lib/compression/compression_internal.h +64 -69
  764. data/src/core/lib/compression/message_compress.cc +11 -11
  765. data/src/core/lib/compression/message_compress.h +2 -2
  766. data/src/core/lib/config/core_configuration.cc +11 -3
  767. data/src/core/lib/config/core_configuration.h +50 -0
  768. data/src/core/lib/debug/stats_data.cc +2 -6
  769. data/src/core/lib/debug/stats_data.h +18 -21
  770. data/src/core/lib/debug/trace.h +2 -2
  771. data/src/core/lib/event_engine/{endpoint_config.cc → channel_args_endpoint_config.cc} +2 -1
  772. data/src/core/lib/event_engine/{endpoint_config_internal.h → channel_args_endpoint_config.h} +3 -3
  773. data/src/core/lib/event_engine/default_event_engine_factory.cc +27 -0
  774. data/src/core/lib/event_engine/event_engine.cc +21 -19
  775. data/src/core/lib/event_engine/event_engine_factory.h +36 -0
  776. data/src/core/lib/event_engine/memory_allocator.cc +66 -0
  777. data/src/core/lib/event_engine/resolved_address.cc +39 -0
  778. data/src/core/lib/gpr/sync_posix.cc +1 -0
  779. data/src/core/lib/gpr/time.cc +2 -1
  780. data/src/core/lib/gpr/tls.h +7 -0
  781. data/src/core/lib/gpr/useful.h +18 -0
  782. data/src/core/lib/gprpp/bitset.h +19 -0
  783. data/src/core/lib/gprpp/capture.h +76 -0
  784. data/src/core/lib/gprpp/chunked_vector.h +45 -3
  785. data/src/core/lib/gprpp/cpp_impl_of.h +49 -0
  786. data/src/core/lib/gprpp/debug_location.h +2 -0
  787. data/src/core/lib/gprpp/global_config_env.cc +7 -7
  788. data/src/core/lib/gprpp/global_config_env.h +2 -2
  789. data/src/core/lib/gprpp/manual_constructor.h +2 -3
  790. data/src/core/lib/gprpp/orphanable.h +1 -1
  791. data/src/core/lib/gprpp/ref_counted.h +3 -1
  792. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -4
  793. data/src/core/lib/gprpp/single_set_ptr.h +87 -0
  794. data/src/core/lib/gprpp/status_helper.cc +48 -40
  795. data/src/core/lib/gprpp/status_helper.h +6 -19
  796. data/src/core/lib/gprpp/table.h +24 -1
  797. data/src/core/lib/gprpp/time.cc +198 -0
  798. data/src/core/lib/gprpp/time.h +292 -0
  799. data/src/core/lib/http/format_request.cc +28 -25
  800. data/src/core/lib/http/format_request.h +7 -6
  801. data/src/core/lib/http/httpcli.cc +310 -238
  802. data/src/core/lib/http/httpcli.h +183 -88
  803. data/src/core/lib/http/httpcli_security_connector.cc +64 -75
  804. data/src/core/lib/http/httpcli_ssl_credentials.h +37 -0
  805. data/src/core/lib/http/parser.cc +80 -9
  806. data/src/core/lib/http/parser.h +15 -2
  807. data/src/core/lib/iomgr/buffer_list.cc +9 -9
  808. data/src/core/lib/iomgr/buffer_list.h +18 -18
  809. data/src/core/lib/iomgr/call_combiner.cc +17 -7
  810. data/src/core/lib/iomgr/closure.h +29 -9
  811. data/src/core/lib/iomgr/combiner.cc +25 -3
  812. data/src/core/lib/iomgr/endpoint.h +0 -1
  813. data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -24
  814. data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
  815. data/src/core/lib/iomgr/endpoint_pair_posix.cc +9 -11
  816. data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -14
  817. data/src/core/lib/iomgr/error.cc +13 -10
  818. data/src/core/lib/iomgr/error.h +0 -2
  819. data/src/core/lib/iomgr/ev_apple.cc +6 -5
  820. data/src/core/lib/iomgr/ev_epoll1_linux.cc +8 -7
  821. data/src/core/lib/iomgr/ev_poll_posix.cc +7 -7
  822. data/src/core/lib/iomgr/ev_posix.cc +9 -10
  823. data/src/core/lib/iomgr/ev_posix.h +1 -1
  824. data/src/core/lib/iomgr/event_engine/endpoint.cc +2 -3
  825. data/src/core/lib/iomgr/event_engine/iomgr.cc +8 -27
  826. data/src/core/lib/iomgr/event_engine/pollset.cc +2 -3
  827. data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
  828. data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
  829. data/src/core/lib/iomgr/event_engine/resolver.cc +68 -49
  830. data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
  831. data/src/core/lib/iomgr/event_engine/tcp.cc +11 -8
  832. data/src/core/lib/iomgr/event_engine/timer.cc +7 -7
  833. data/src/core/lib/iomgr/exec_ctx.cc +25 -97
  834. data/src/core/lib/iomgr/exec_ctx.h +18 -34
  835. data/src/core/lib/iomgr/executor.cc +22 -16
  836. data/src/core/lib/iomgr/executor.h +1 -1
  837. data/src/core/lib/iomgr/fork_posix.cc +2 -1
  838. data/src/core/lib/iomgr/iocp_windows.cc +9 -9
  839. data/src/core/lib/iomgr/iocp_windows.h +1 -1
  840. data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
  841. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
  842. data/src/core/lib/iomgr/iomgr_windows.cc +2 -2
  843. data/src/core/lib/iomgr/polling_entity.h +6 -0
  844. data/src/core/lib/iomgr/pollset.cc +1 -1
  845. data/src/core/lib/iomgr/pollset.h +4 -4
  846. data/src/core/lib/iomgr/pollset_windows.cc +2 -2
  847. data/src/core/lib/iomgr/port.h +6 -11
  848. data/src/core/lib/iomgr/resolve_address.cc +5 -24
  849. data/src/core/lib/iomgr/resolve_address.h +47 -44
  850. data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
  851. data/src/core/lib/iomgr/resolve_address_posix.cc +83 -67
  852. data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
  853. data/src/core/lib/iomgr/resolve_address_windows.cc +93 -74
  854. data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
  855. data/src/core/lib/iomgr/resolved_address.h +39 -0
  856. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +62 -0
  857. data/src/core/lib/iomgr/socket_utils_common_posix.cc +0 -17
  858. data/src/core/lib/iomgr/tcp_client.cc +3 -5
  859. data/src/core/lib/iomgr/tcp_client.h +4 -5
  860. data/src/core/lib/iomgr/tcp_client_cfstream.cc +2 -10
  861. data/src/core/lib/iomgr/tcp_client_posix.cc +10 -26
  862. data/src/core/lib/iomgr/tcp_client_posix.h +3 -4
  863. data/src/core/lib/iomgr/tcp_client_windows.cc +2 -11
  864. data/src/core/lib/iomgr/tcp_posix.cc +120 -66
  865. data/src/core/lib/iomgr/tcp_posix.h +1 -3
  866. data/src/core/lib/iomgr/tcp_server.cc +4 -6
  867. data/src/core/lib/iomgr/tcp_server.h +6 -8
  868. data/src/core/lib/iomgr/tcp_server_posix.cc +43 -38
  869. data/src/core/lib/iomgr/tcp_server_utils_posix.h +19 -18
  870. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -0
  871. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +1 -0
  872. data/src/core/lib/iomgr/tcp_server_windows.cc +5 -12
  873. data/src/core/lib/iomgr/tcp_windows.cc +19 -17
  874. data/src/core/lib/iomgr/tcp_windows.h +1 -2
  875. data/src/core/lib/iomgr/timer.cc +2 -2
  876. data/src/core/lib/iomgr/timer.h +11 -6
  877. data/src/core/lib/iomgr/timer_generic.cc +96 -77
  878. data/src/core/lib/iomgr/timer_manager.cc +15 -14
  879. data/src/core/lib/iomgr/unix_sockets_posix.cc +22 -34
  880. data/src/core/lib/iomgr/unix_sockets_posix.h +4 -7
  881. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
  882. data/src/core/lib/iomgr/work_serializer.cc +120 -44
  883. data/src/core/lib/iomgr/work_serializer.h +16 -4
  884. data/src/core/lib/json/json_reader.cc +83 -35
  885. data/src/core/lib/json/json_util.cc +5 -5
  886. data/src/core/lib/json/json_util.h +5 -5
  887. data/src/core/lib/matchers/matchers.cc +1 -1
  888. data/src/core/lib/promise/activity.cc +121 -0
  889. data/src/core/lib/promise/activity.h +540 -0
  890. data/src/core/lib/promise/arena_promise.h +188 -0
  891. data/src/core/lib/promise/call_push_pull.h +144 -0
  892. data/src/core/lib/promise/context.h +86 -0
  893. data/src/core/lib/promise/detail/basic_seq.h +496 -0
  894. data/src/core/lib/promise/detail/promise_factory.h +189 -0
  895. data/src/core/lib/promise/detail/promise_like.h +85 -0
  896. data/src/core/lib/promise/detail/status.h +50 -0
  897. data/src/core/lib/promise/detail/switch.h +1455 -0
  898. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
  899. data/src/core/lib/promise/intra_activity_waiter.h +49 -0
  900. data/src/core/lib/promise/latch.h +104 -0
  901. data/src/core/lib/promise/loop.h +134 -0
  902. data/src/core/lib/promise/map.h +88 -0
  903. data/src/core/lib/promise/poll.h +66 -0
  904. data/src/core/lib/promise/promise.h +95 -0
  905. data/src/core/lib/promise/race.h +84 -0
  906. data/src/core/lib/promise/seq.h +89 -0
  907. data/src/core/lib/promise/sleep.cc +74 -0
  908. data/src/core/lib/promise/sleep.h +66 -0
  909. data/src/core/lib/promise/try_seq.h +157 -0
  910. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
  911. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
  912. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +32 -31
  913. data/src/core/lib/resolver/resolver_registry.cc +156 -0
  914. data/src/core/lib/resolver/resolver_registry.h +113 -0
  915. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
  916. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +4 -4
  917. data/src/core/lib/resource_quota/api.cc +83 -0
  918. data/src/core/lib/resource_quota/api.h +40 -0
  919. data/src/core/lib/{gprpp → resource_quota}/arena.cc +16 -13
  920. data/src/core/lib/{gprpp → resource_quota}/arena.h +24 -13
  921. data/src/core/lib/resource_quota/memory_quota.cc +478 -0
  922. data/src/core/lib/resource_quota/memory_quota.h +457 -0
  923. data/src/core/lib/resource_quota/resource_quota.cc +33 -0
  924. data/src/core/lib/resource_quota/resource_quota.h +66 -0
  925. data/src/core/lib/resource_quota/thread_quota.cc +43 -0
  926. data/src/core/lib/resource_quota/thread_quota.h +57 -0
  927. data/src/core/lib/resource_quota/trace.cc +19 -0
  928. data/src/core/{ext/filters/max_age/max_age_filter.h → lib/resource_quota/trace.h} +6 -8
  929. data/src/core/lib/security/authorization/authorization_policy_provider.h +7 -0
  930. data/src/core/lib/security/authorization/evaluate_args.cc +37 -38
  931. data/src/core/lib/security/authorization/evaluate_args.h +3 -2
  932. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
  933. data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
  934. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +106 -0
  935. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +50 -0
  936. data/src/core/lib/security/authorization/matchers.cc +227 -0
  937. data/src/core/lib/security/authorization/matchers.h +211 -0
  938. data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
  939. data/src/core/lib/security/authorization/rbac_policy.h +171 -0
  940. data/src/core/lib/security/context/security_context.cc +4 -2
  941. data/src/core/lib/security/context/security_context.h +9 -2
  942. data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -5
  943. data/src/core/lib/security/credentials/alts/alts_credentials.h +10 -0
  944. data/src/core/lib/security/credentials/call_creds_util.cc +87 -0
  945. data/src/core/lib/security/credentials/call_creds_util.h +42 -0
  946. data/src/core/lib/security/credentials/channel_creds_registry.h +97 -0
  947. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +70 -0
  948. data/src/core/lib/security/credentials/composite/composite_credentials.cc +24 -83
  949. data/src/core/lib/security/credentials/composite/composite_credentials.h +23 -10
  950. data/src/core/lib/security/credentials/credentials.cc +2 -3
  951. data/src/core/lib/security/credentials/credentials.h +74 -80
  952. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +48 -33
  953. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +1 -0
  954. data/src/core/lib/security/credentials/external/external_account_credentials.cc +52 -35
  955. data/src/core/lib/security/credentials/external/external_account_credentials.h +5 -9
  956. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -1
  957. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +33 -14
  958. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +1 -0
  959. data/src/core/lib/security/credentials/fake/fake_credentials.cc +23 -27
  960. data/src/core/lib/security/credentials/fake/fake_credentials.h +22 -21
  961. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +21 -16
  962. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -3
  963. data/src/core/lib/security/credentials/iam/iam_credentials.cc +21 -28
  964. data/src/core/lib/security/credentials/iam/iam_credentials.h +15 -9
  965. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +25 -26
  966. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +57 -0
  967. data/src/core/lib/security/credentials/jwt/json_token.cc +4 -6
  968. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +33 -45
  969. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +16 -12
  970. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +54 -43
  971. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +1 -1
  972. data/src/core/lib/security/credentials/local/local_credentials.cc +6 -6
  973. data/src/core/lib/security/credentials/local/local_credentials.h +10 -0
  974. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +157 -174
  975. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +60 -33
  976. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +96 -152
  977. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +56 -27
  978. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +7 -14
  979. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -3
  980. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +11 -12
  981. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +56 -8
  982. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +209 -0
  983. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +145 -0
  984. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +33 -87
  985. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +73 -149
  986. data/src/core/lib/security/credentials/tls/tls_credentials.cc +30 -16
  987. data/src/core/lib/security/credentials/tls/tls_credentials.h +6 -0
  988. data/src/core/lib/security/credentials/xds/xds_credentials.cc +51 -58
  989. data/src/core/lib/security/credentials/xds/xds_credentials.h +37 -6
  990. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +11 -17
  991. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
  992. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +7 -16
  993. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -2
  994. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -18
  995. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +11 -16
  996. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +1 -2
  997. data/src/core/lib/security/security_connector/local/local_security_connector.cc +14 -19
  998. data/src/core/lib/security/security_connector/security_connector.cc +3 -15
  999. data/src/core/lib/security/security_connector/security_connector.h +25 -21
  1000. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +10 -13
  1001. data/src/core/lib/security/security_connector/ssl_utils.cc +38 -32
  1002. data/src/core/lib/security/security_connector/ssl_utils.h +14 -18
  1003. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +365 -206
  1004. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +70 -47
  1005. data/src/core/lib/security/transport/auth_filters.h +38 -5
  1006. data/src/core/lib/security/transport/client_auth_filter.cc +97 -360
  1007. data/src/core/lib/security/transport/secure_endpoint.cc +198 -129
  1008. data/src/core/lib/security/transport/secure_endpoint.h +1 -1
  1009. data/src/core/lib/security/transport/security_handshaker.cc +22 -12
  1010. data/src/core/lib/security/transport/server_auth_filter.cc +41 -35
  1011. data/src/core/lib/service_config/service_config.h +82 -0
  1012. data/src/core/{ext → lib}/service_config/service_config_call_data.h +5 -5
  1013. data/src/core/{ext/service_config/service_config.cc → lib/service_config/service_config_impl.cc} +20 -17
  1014. data/src/core/{ext/service_config/service_config.h → lib/service_config/service_config_impl.h} +16 -18
  1015. data/src/core/{ext → lib}/service_config/service_config_parser.cc +31 -27
  1016. data/src/core/{ext → lib}/service_config/service_config_parser.h +39 -30
  1017. data/src/core/lib/slice/percent_encoding.cc +30 -86
  1018. data/src/core/lib/slice/percent_encoding.h +5 -11
  1019. data/src/core/lib/slice/slice.cc +78 -181
  1020. data/src/core/lib/slice/slice.h +384 -0
  1021. data/src/core/lib/slice/slice_buffer.cc +4 -0
  1022. data/src/core/lib/slice/slice_internal.h +12 -31
  1023. data/src/core/lib/slice/slice_refcount.cc +18 -0
  1024. data/src/core/lib/slice/slice_refcount.h +8 -83
  1025. data/src/core/lib/slice/slice_refcount_base.h +21 -133
  1026. data/src/core/lib/surface/builtins.cc +6 -6
  1027. data/src/core/lib/surface/call.cc +1132 -1221
  1028. data/src/core/lib/surface/call.h +5 -19
  1029. data/src/core/lib/surface/channel.cc +68 -99
  1030. data/src/core/lib/surface/channel.h +12 -23
  1031. data/src/core/lib/surface/channel_init.cc +2 -3
  1032. data/src/core/lib/surface/channel_init.h +3 -7
  1033. data/src/core/lib/surface/completion_queue.cc +12 -11
  1034. data/src/core/lib/surface/init.cc +78 -10
  1035. data/src/core/lib/surface/init.h +0 -2
  1036. data/src/core/lib/surface/lame_client.cc +26 -19
  1037. data/src/core/lib/surface/server.cc +46 -85
  1038. data/src/core/lib/surface/server.h +14 -16
  1039. data/src/core/lib/surface/validate_metadata.cc +2 -2
  1040. data/src/core/lib/surface/version.cc +2 -2
  1041. data/src/core/lib/transport/bdp_estimator.cc +10 -11
  1042. data/src/core/lib/transport/bdp_estimator.h +2 -2
  1043. data/src/core/lib/transport/byte_stream.cc +6 -0
  1044. data/src/core/lib/transport/error_utils.cc +5 -3
  1045. data/src/core/lib/transport/error_utils.h +2 -1
  1046. data/src/core/lib/transport/metadata_batch.h +1131 -792
  1047. data/src/core/lib/transport/parsed_metadata.cc +37 -0
  1048. data/src/core/lib/transport/parsed_metadata.h +228 -90
  1049. data/src/core/lib/transport/pid_controller.cc +4 -4
  1050. data/src/core/lib/transport/status_conversion.cc +2 -2
  1051. data/src/core/lib/transport/status_conversion.h +1 -1
  1052. data/src/core/lib/transport/timeout_encoding.cc +204 -67
  1053. data/src/core/lib/transport/timeout_encoding.h +40 -10
  1054. data/src/core/lib/transport/transport.cc +7 -27
  1055. data/src/core/lib/transport/transport.h +103 -4
  1056. data/src/core/lib/transport/transport_impl.h +14 -0
  1057. data/src/core/lib/transport/transport_op_string.cc +5 -47
  1058. data/src/core/lib/uri/uri_parser.cc +237 -63
  1059. data/src/core/lib/uri/uri_parser.h +39 -23
  1060. data/src/core/plugin_registry/grpc_plugin_registry.cc +24 -92
  1061. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +85 -0
  1062. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +28 -23
  1063. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +9 -1
  1064. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +21 -13
  1065. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +2 -2
  1066. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -1
  1067. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -2
  1068. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
  1069. data/src/core/tsi/local_transport_security.cc +16 -24
  1070. data/src/core/tsi/local_transport_security.h +1 -4
  1071. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +141 -0
  1072. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +81 -0
  1073. data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
  1074. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +3 -5
  1075. data/src/core/tsi/ssl_transport_security.cc +210 -53
  1076. data/src/core/tsi/ssl_transport_security.h +47 -8
  1077. data/src/core/tsi/transport_security_interface.h +2 -0
  1078. data/src/ruby/ext/grpc/extconf.rb +10 -3
  1079. data/src/ruby/ext/grpc/rb_channel.c +5 -2
  1080. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +26 -34
  1081. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +39 -51
  1082. data/src/ruby/ext/grpc/rb_server.c +7 -4
  1083. data/src/ruby/lib/grpc/generic/active_call.rb +7 -1
  1084. data/src/ruby/lib/grpc/grpc.rb +1 -1
  1085. data/src/ruby/lib/grpc/version.rb +1 -1
  1086. data/src/ruby/pb/generate_proto_ruby.sh +1 -0
  1087. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -1
  1088. data/src/ruby/pb/test/client.rb +769 -0
  1089. data/src/ruby/pb/test/server.rb +252 -0
  1090. data/src/ruby/pb/test/xds_client.rb +415 -0
  1091. data/third_party/abseil-cpp/absl/algorithm/container.h +101 -91
  1092. data/third_party/abseil-cpp/absl/base/attributes.h +64 -31
  1093. data/third_party/abseil-cpp/absl/base/config.h +67 -37
  1094. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +1 -26
  1095. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
  1096. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -1
  1097. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +2 -0
  1098. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +69 -0
  1099. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +4 -4
  1100. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +16 -0
  1101. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +4 -4
  1102. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1103. data/third_party/abseil-cpp/absl/container/fixed_array.h +0 -5
  1104. data/third_party/abseil-cpp/absl/container/inlined_vector.h +105 -97
  1105. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +17 -15
  1106. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +18 -102
  1107. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +37 -78
  1108. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +388 -423
  1109. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +3 -2
  1110. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -8
  1111. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +251 -120
  1112. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +11 -1
  1113. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +12 -11
  1114. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +6 -2
  1115. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +12 -5
  1116. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
  1117. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
  1118. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +25 -7
  1119. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +8 -2
  1120. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +21 -3
  1121. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +2 -0
  1122. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +2 -0
  1123. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +14 -0
  1124. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
  1125. data/third_party/abseil-cpp/absl/functional/function_ref.h +4 -1
  1126. data/third_party/abseil-cpp/absl/hash/hash.h +22 -0
  1127. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +15 -16
  1128. data/third_party/abseil-cpp/absl/hash/internal/hash.h +88 -37
  1129. data/third_party/abseil-cpp/absl/hash/internal/{wyhash.cc → low_level_hash.cc} +23 -11
  1130. data/third_party/abseil-cpp/absl/hash/internal/{wyhash.h → low_level_hash.h} +14 -12
  1131. data/third_party/abseil-cpp/absl/memory/memory.h +1 -1
  1132. data/third_party/abseil-cpp/absl/meta/type_traits.h +32 -2
  1133. data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -10
  1134. data/third_party/abseil-cpp/absl/numeric/int128.h +146 -73
  1135. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
  1136. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
  1137. data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.cc +4 -4
  1138. data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.h +6 -6
  1139. data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
  1140. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
  1141. data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
  1142. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
  1143. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
  1144. data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
  1145. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
  1146. data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
  1147. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
  1148. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
  1149. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
  1150. data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
  1151. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
  1152. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
  1153. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
  1154. data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
  1155. data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
  1156. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
  1157. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
  1158. data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
  1159. data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
  1160. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
  1161. data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
  1162. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
  1163. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
  1164. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
  1165. data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
  1166. data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
  1167. data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
  1168. data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
  1169. data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
  1170. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
  1171. data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
  1172. data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
  1173. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
  1174. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
  1175. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
  1176. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
  1177. data/third_party/abseil-cpp/absl/random/random.h +189 -0
  1178. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
  1179. data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
  1180. data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
  1181. data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
  1182. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
  1183. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
  1184. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
  1185. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +5 -5
  1186. data/third_party/abseil-cpp/absl/status/status.cc +9 -17
  1187. data/third_party/abseil-cpp/absl/status/status.h +19 -15
  1188. data/third_party/abseil-cpp/absl/status/statusor.cc +34 -2
  1189. data/third_party/abseil-cpp/absl/status/statusor.h +31 -21
  1190. data/third_party/abseil-cpp/absl/strings/charconv.cc +3 -3
  1191. data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
  1192. data/third_party/abseil-cpp/absl/strings/cord.cc +453 -359
  1193. data/third_party/abseil-cpp/absl/strings/cord.h +197 -70
  1194. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +1 -1
  1195. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +6 -0
  1196. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +140 -63
  1197. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
  1198. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
  1199. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
  1200. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
  1201. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
  1202. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
  1203. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
  1204. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
  1205. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +7 -7
  1206. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +55 -181
  1207. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +42 -24
  1208. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +4 -0
  1209. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
  1210. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
  1211. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
  1212. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
  1213. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
  1214. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
  1215. data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
  1216. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
  1217. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
  1218. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
  1219. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -0
  1220. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -4
  1221. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +1 -1
  1222. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
  1223. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +36 -18
  1224. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +62 -73
  1225. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +24 -16
  1226. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -35
  1227. data/third_party/abseil-cpp/absl/strings/numbers.cc +1 -1
  1228. data/third_party/abseil-cpp/absl/strings/numbers.h +34 -0
  1229. data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
  1230. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -2
  1231. data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
  1232. data/third_party/abseil-cpp/absl/strings/string_view.h +120 -39
  1233. data/third_party/abseil-cpp/absl/strings/substitute.cc +2 -1
  1234. data/third_party/abseil-cpp/absl/strings/substitute.h +99 -74
  1235. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +25 -15
  1236. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +5 -3
  1237. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -1
  1238. data/third_party/abseil-cpp/absl/synchronization/mutex.h +3 -3
  1239. data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -3
  1240. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +93 -20
  1241. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1242. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
  1243. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +83 -21
  1244. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
  1245. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +1 -1
  1246. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -3
  1247. data/third_party/abseil-cpp/absl/time/time.h +67 -36
  1248. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
  1249. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +2 -2
  1250. data/third_party/abseil-cpp/absl/types/span.h +3 -3
  1251. data/third_party/boringssl-with-bazel/err_data.c +681 -677
  1252. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +19 -11
  1253. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +41 -30
  1254. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +1 -1
  1255. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +59 -47
  1256. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +24 -28
  1257. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +5 -0
  1258. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +28 -0
  1259. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +48 -272
  1260. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -0
  1261. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -6
  1262. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +13 -0
  1263. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +3 -1
  1264. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
  1265. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +2 -2
  1266. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
  1267. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
  1268. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +7 -7
  1269. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -2
  1270. data/third_party/boringssl-with-bazel/src/crypto/mem.c +18 -0
  1271. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +29 -0
  1272. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
  1273. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
  1274. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1 -1
  1275. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
  1276. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -23
  1277. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +2 -18
  1278. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -2
  1279. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +216 -11
  1280. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +1 -1
  1281. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +1 -1
  1282. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
  1283. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +1 -1
  1284. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
  1285. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +1 -1
  1286. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +1 -0
  1287. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +0 -1
  1288. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +21 -4
  1289. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +971 -253
  1290. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +3 -3
  1291. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +0 -1
  1292. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
  1293. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +13 -1
  1294. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -12
  1295. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +27 -41
  1296. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
  1297. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +8 -10
  1298. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +29 -55
  1299. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +1 -1
  1300. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +12 -13
  1301. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
  1302. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
  1303. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +24 -28
  1304. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +29 -11
  1305. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +12 -43
  1306. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +4 -3
  1307. data/third_party/boringssl-with-bazel/src/ssl/internal.h +3 -3
  1308. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +4 -0
  1309. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +4 -0
  1310. data/third_party/cares/cares/{ares.h → include/ares.h} +73 -1
  1311. data/third_party/cares/cares/{ares_dns.h → include/ares_dns.h} +9 -0
  1312. data/third_party/cares/cares/{ares_rules.h → include/ares_rules.h} +0 -0
  1313. data/third_party/cares/cares/{ares_version.h → include/ares_version.h} +3 -3
  1314. data/third_party/cares/cares/{ares__close_sockets.c → src/lib/ares__close_sockets.c} +2 -2
  1315. data/third_party/cares/cares/{ares__get_hostent.c → src/lib/ares__get_hostent.c} +1 -2
  1316. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +260 -0
  1317. data/third_party/cares/cares/{ares__read_line.c → src/lib/ares__read_line.c} +0 -0
  1318. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +264 -0
  1319. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +499 -0
  1320. data/third_party/cares/cares/{ares__timeval.c → src/lib/ares__timeval.c} +0 -0
  1321. data/third_party/cares/cares/src/lib/ares_android.c +444 -0
  1322. data/third_party/cares/cares/src/lib/ares_android.h +27 -0
  1323. data/third_party/cares/cares/{ares_cancel.c → src/lib/ares_cancel.c} +0 -0
  1324. data/third_party/cares/cares/{ares_create_query.c → src/lib/ares_create_query.c} +8 -17
  1325. data/third_party/cares/cares/{ares_data.c → src/lib/ares_data.c} +18 -0
  1326. data/third_party/cares/cares/{ares_data.h → src/lib/ares_data.h} +2 -0
  1327. data/third_party/cares/cares/{ares_destroy.c → src/lib/ares_destroy.c} +0 -0
  1328. data/third_party/cares/cares/{ares_expand_name.c → src/lib/ares_expand_name.c} +114 -23
  1329. data/third_party/cares/cares/{ares_expand_string.c → src/lib/ares_expand_string.c} +2 -5
  1330. data/third_party/cares/cares/{ares_fds.c → src/lib/ares_fds.c} +0 -0
  1331. data/third_party/cares/cares/{ares_free_hostent.c → src/lib/ares_free_hostent.c} +6 -4
  1332. data/third_party/cares/cares/{ares_free_string.c → src/lib/ares_free_string.c} +0 -0
  1333. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +59 -0
  1334. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +772 -0
  1335. data/third_party/cares/cares/{ares_getenv.c → src/lib/ares_getenv.c} +0 -2
  1336. data/third_party/cares/cares/{ares_getenv.h → src/lib/ares_getenv.h} +0 -0
  1337. data/third_party/cares/cares/{ares_gethostbyaddr.c → src/lib/ares_gethostbyaddr.c} +2 -9
  1338. data/third_party/cares/cares/{ares_gethostbyname.c → src/lib/ares_gethostbyname.c} +25 -20
  1339. data/third_party/cares/cares/{ares_getnameinfo.c → src/lib/ares_getnameinfo.c} +4 -10
  1340. data/third_party/cares/cares/{ares_getsock.c → src/lib/ares_getsock.c} +0 -0
  1341. data/third_party/cares/cares/{ares_inet_net_pton.h → src/lib/ares_inet_net_pton.h} +0 -0
  1342. data/third_party/cares/cares/{ares_init.c → src/lib/ares_init.c} +79 -40
  1343. data/third_party/cares/cares/{ares_iphlpapi.h → src/lib/ares_iphlpapi.h} +0 -0
  1344. data/third_party/cares/cares/{ares_ipv6.h → src/lib/ares_ipv6.h} +7 -0
  1345. data/third_party/cares/cares/{ares_library_init.c → src/lib/ares_library_init.c} +7 -2
  1346. data/third_party/cares/cares/{ares_library_init.h → src/lib/ares_library_init.h} +1 -1
  1347. data/third_party/cares/cares/{ares_llist.c → src/lib/ares_llist.c} +0 -0
  1348. data/third_party/cares/cares/{ares_llist.h → src/lib/ares_llist.h} +0 -0
  1349. data/third_party/cares/cares/{ares_mkquery.c → src/lib/ares_mkquery.c} +0 -0
  1350. data/third_party/cares/cares/src/lib/ares_nameser.h +482 -0
  1351. data/third_party/cares/cares/{ares_nowarn.c → src/lib/ares_nowarn.c} +0 -0
  1352. data/third_party/cares/cares/{ares_nowarn.h → src/lib/ares_nowarn.h} +0 -0
  1353. data/third_party/cares/cares/{ares_options.c → src/lib/ares_options.c} +0 -0
  1354. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +209 -0
  1355. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +212 -0
  1356. data/third_party/cares/cares/src/lib/ares_parse_caa_reply.c +199 -0
  1357. data/third_party/cares/cares/{ares_parse_mx_reply.c → src/lib/ares_parse_mx_reply.c} +2 -8
  1358. data/third_party/cares/cares/{ares_parse_naptr_reply.c → src/lib/ares_parse_naptr_reply.c} +2 -13
  1359. data/third_party/cares/cares/{ares_parse_ns_reply.c → src/lib/ares_parse_ns_reply.c} +5 -11
  1360. data/third_party/cares/cares/{ares_parse_ptr_reply.c → src/lib/ares_parse_ptr_reply.c} +53 -46
  1361. data/third_party/cares/cares/src/lib/ares_parse_soa_reply.c +179 -0
  1362. data/third_party/cares/cares/{ares_parse_srv_reply.c → src/lib/ares_parse_srv_reply.c} +2 -13
  1363. data/third_party/cares/cares/{ares_parse_txt_reply.c → src/lib/ares_parse_txt_reply.c} +3 -9
  1364. data/third_party/cares/cares/{ares_platform.c → src/lib/ares_platform.c} +0 -0
  1365. data/third_party/cares/cares/{ares_platform.h → src/lib/ares_platform.h} +0 -0
  1366. data/third_party/cares/cares/{ares_private.h → src/lib/ares_private.h} +52 -11
  1367. data/third_party/cares/cares/{ares_process.c → src/lib/ares_process.c} +127 -52
  1368. data/third_party/cares/cares/{ares_query.c → src/lib/ares_query.c} +3 -9
  1369. data/third_party/cares/cares/{ares_search.c → src/lib/ares_search.c} +5 -7
  1370. data/third_party/cares/cares/{ares_send.c → src/lib/ares_send.c} +2 -8
  1371. data/third_party/cares/cares/{ares_setup.h → src/lib/ares_setup.h} +4 -1
  1372. data/third_party/cares/cares/{ares_strcasecmp.c → src/lib/ares_strcasecmp.c} +0 -0
  1373. data/third_party/cares/cares/{ares_strcasecmp.h → src/lib/ares_strcasecmp.h} +0 -0
  1374. data/third_party/cares/cares/{ares_strdup.c → src/lib/ares_strdup.c} +0 -0
  1375. data/third_party/cares/cares/{ares_strdup.h → src/lib/ares_strdup.h} +0 -0
  1376. data/third_party/cares/cares/{ares_strerror.c → src/lib/ares_strerror.c} +0 -0
  1377. data/third_party/cares/cares/{ares_strsplit.c → src/lib/ares_strsplit.c} +4 -0
  1378. data/third_party/cares/cares/{ares_strsplit.h → src/lib/ares_strsplit.h} +0 -0
  1379. data/third_party/cares/cares/{ares_timeout.c → src/lib/ares_timeout.c} +0 -0
  1380. data/third_party/cares/cares/{ares_version.c → src/lib/ares_version.c} +0 -0
  1381. data/third_party/cares/cares/{ares_writev.c → src/lib/ares_writev.c} +0 -0
  1382. data/third_party/cares/cares/src/lib/ares_writev.h +36 -0
  1383. data/third_party/cares/cares/{bitncmp.c → src/lib/bitncmp.c} +0 -0
  1384. data/third_party/cares/cares/{bitncmp.h → src/lib/bitncmp.h} +0 -0
  1385. data/third_party/cares/cares/src/lib/config-dos.h +115 -0
  1386. data/third_party/cares/cares/{config-win32.h → src/lib/config-win32.h} +0 -0
  1387. data/third_party/cares/cares/{inet_net_pton.c → src/lib/inet_net_pton.c} +2 -8
  1388. data/third_party/cares/cares/{inet_ntop.c → src/lib/inet_ntop.c} +2 -8
  1389. data/third_party/cares/cares/{setup_once.h → src/lib/setup_once.h} +0 -0
  1390. data/third_party/cares/cares/{windows_port.c → src/lib/windows_port.c} +0 -0
  1391. data/third_party/upb/third_party/utf8_range/naive.c +92 -0
  1392. data/third_party/upb/third_party/utf8_range/range2-neon.c +157 -0
  1393. data/third_party/upb/third_party/utf8_range/range2-sse.c +170 -0
  1394. data/third_party/upb/third_party/utf8_range/utf8_range.h +9 -0
  1395. data/third_party/upb/upb/decode.c +732 -378
  1396. data/third_party/upb/upb/decode.h +43 -17
  1397. data/third_party/upb/upb/decode_fast.c +303 -301
  1398. data/third_party/upb/upb/decode_fast.h +18 -18
  1399. data/third_party/upb/upb/decode_internal.h +73 -55
  1400. data/third_party/upb/upb/def.c +2074 -981
  1401. data/third_party/upb/upb/def.h +332 -260
  1402. data/third_party/upb/upb/def.hpp +139 -169
  1403. data/third_party/upb/upb/encode.c +267 -174
  1404. data/third_party/upb/upb/encode.h +15 -17
  1405. data/third_party/upb/upb/json_encode.c +776 -0
  1406. data/third_party/upb/upb/json_encode.h +62 -0
  1407. data/third_party/upb/upb/msg.c +152 -121
  1408. data/third_party/upb/upb/msg.h +39 -33
  1409. data/third_party/upb/upb/msg_internal.h +395 -251
  1410. data/third_party/upb/upb/port_def.inc +8 -0
  1411. data/third_party/upb/upb/port_undef.inc +1 -0
  1412. data/third_party/upb/upb/reflection.c +292 -212
  1413. data/third_party/upb/upb/reflection.h +91 -67
  1414. data/third_party/upb/upb/reflection.hpp +6 -6
  1415. data/third_party/upb/upb/table.c +231 -147
  1416. data/third_party/upb/upb/table_internal.h +129 -95
  1417. data/third_party/upb/upb/text_encode.c +114 -91
  1418. data/third_party/upb/upb/text_encode.h +10 -10
  1419. data/third_party/upb/upb/upb.c +118 -71
  1420. data/third_party/upb/upb/upb.h +157 -151
  1421. data/third_party/upb/upb/upb.hpp +31 -28
  1422. data/third_party/upb/upb/upb_internal.h +21 -11
  1423. data/third_party/xxhash/xxhash.h +607 -352
  1424. data/third_party/zlib/crc32.c +966 -292
  1425. data/third_party/zlib/crc32.h +9441 -436
  1426. data/third_party/zlib/deflate.c +78 -30
  1427. data/third_party/zlib/deflate.h +12 -15
  1428. data/third_party/zlib/gzguts.h +3 -2
  1429. data/third_party/zlib/gzlib.c +5 -3
  1430. data/third_party/zlib/gzread.c +5 -7
  1431. data/third_party/zlib/gzwrite.c +25 -13
  1432. data/third_party/zlib/infback.c +2 -1
  1433. data/third_party/zlib/inffast.c +14 -14
  1434. data/third_party/zlib/inflate.c +39 -8
  1435. data/third_party/zlib/inflate.h +3 -2
  1436. data/third_party/zlib/inftrees.c +3 -3
  1437. data/third_party/zlib/trees.c +27 -48
  1438. data/third_party/zlib/zlib.h +123 -100
  1439. data/third_party/zlib/zutil.c +2 -2
  1440. data/third_party/zlib/zutil.h +12 -9
  1441. metadata +505 -221
  1442. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +0 -44
  1443. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +0 -83
  1444. data/src/core/ext/filters/client_channel/resolver_registry.cc +0 -195
  1445. data/src/core/ext/filters/client_channel/resolver_registry.h +0 -89
  1446. data/src/core/ext/filters/client_idle/client_idle_filter.cc +0 -264
  1447. data/src/core/ext/filters/max_age/max_age_filter.cc +0 -560
  1448. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +0 -119
  1449. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +0 -95
  1450. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +0 -189
  1451. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +0 -53
  1452. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +0 -83
  1453. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +0 -125
  1454. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -37
  1455. data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +0 -107
  1456. data/src/core/ext/transport/chttp2/transport/hpack_utils.cc +0 -46
  1457. data/src/core/ext/transport/chttp2/transport/popularity_count.h +0 -60
  1458. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +0 -27
  1459. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +0 -62
  1460. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +0 -27
  1461. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +0 -62
  1462. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +0 -27
  1463. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +0 -62
  1464. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +0 -27
  1465. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +0 -62
  1466. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +0 -27
  1467. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +0 -62
  1468. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +0 -72
  1469. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +0 -35
  1470. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +0 -73
  1471. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +0 -35
  1472. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +0 -72
  1473. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +0 -35
  1474. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +0 -80
  1475. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +0 -35
  1476. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +0 -74
  1477. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +0 -35
  1478. data/src/core/lib/avl/avl.cc +0 -306
  1479. data/src/core/lib/compression/algorithm_metadata.h +0 -62
  1480. data/src/core/lib/compression/compression_args.cc +0 -138
  1481. data/src/core/lib/compression/compression_args.h +0 -56
  1482. data/src/core/lib/compression/stream_compression.cc +0 -81
  1483. data/src/core/lib/compression/stream_compression.h +0 -117
  1484. data/src/core/lib/compression/stream_compression_gzip.cc +0 -231
  1485. data/src/core/lib/compression/stream_compression_gzip.h +0 -28
  1486. data/src/core/lib/compression/stream_compression_identity.cc +0 -91
  1487. data/src/core/lib/compression/stream_compression_identity.h +0 -29
  1488. data/src/core/lib/iomgr/ev_epollex_linux.cc +0 -1654
  1489. data/src/core/lib/iomgr/ev_epollex_linux.h +0 -30
  1490. data/src/core/lib/iomgr/event_engine/iomgr.h +0 -42
  1491. data/src/core/lib/iomgr/iomgr_custom.cc +0 -79
  1492. data/src/core/lib/iomgr/iomgr_custom.h +0 -49
  1493. data/src/core/lib/iomgr/is_epollexclusive_available.cc +0 -119
  1494. data/src/core/lib/iomgr/is_epollexclusive_available.h +0 -36
  1495. data/src/core/lib/iomgr/pollset_custom.cc +0 -105
  1496. data/src/core/lib/iomgr/pollset_custom.h +0 -37
  1497. data/src/core/lib/iomgr/pollset_set_custom.cc +0 -47
  1498. data/src/core/lib/iomgr/pollset_set_custom.h +0 -26
  1499. data/src/core/lib/iomgr/resolve_address_custom.cc +0 -169
  1500. data/src/core/lib/iomgr/resolve_address_custom.h +0 -44
  1501. data/src/core/lib/iomgr/resource_quota.cc +0 -1106
  1502. data/src/core/lib/iomgr/resource_quota.h +0 -226
  1503. data/src/core/lib/iomgr/sys_epoll_wrapper.h +0 -30
  1504. data/src/core/lib/iomgr/tcp_client_custom.cc +0 -152
  1505. data/src/core/lib/iomgr/tcp_custom.cc +0 -377
  1506. data/src/core/lib/iomgr/tcp_custom.h +0 -86
  1507. data/src/core/lib/iomgr/tcp_server_custom.cc +0 -467
  1508. data/src/core/lib/iomgr/timer_custom.cc +0 -96
  1509. data/src/core/lib/iomgr/timer_custom.h +0 -43
  1510. data/src/core/lib/security/authorization/sdk_server_authz_filter.cc +0 -171
  1511. data/src/core/lib/security/authorization/sdk_server_authz_filter.h +0 -67
  1512. data/src/core/lib/security/credentials/credentials_metadata.cc +0 -61
  1513. data/src/core/lib/slice/slice_intern.cc +0 -367
  1514. data/src/core/lib/slice/slice_utils.h +0 -200
  1515. data/src/core/lib/slice/static_slice.cc +0 -529
  1516. data/src/core/lib/slice/static_slice.h +0 -331
  1517. data/src/core/lib/surface/init_secure.cc +0 -103
  1518. data/src/core/lib/transport/metadata.cc +0 -714
  1519. data/src/core/lib/transport/metadata.h +0 -449
  1520. data/src/core/lib/transport/metadata_batch.cc +0 -94
  1521. data/src/core/lib/transport/static_metadata.cc +0 -1117
  1522. data/src/core/lib/transport/static_metadata.h +0 -340
  1523. data/src/core/lib/transport/status_metadata.cc +0 -63
  1524. data/src/core/lib/transport/status_metadata.h +0 -48
  1525. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
  1526. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
  1527. data/third_party/cares/cares/ares_getopt.c +0 -122
  1528. data/third_party/cares/cares/ares_getopt.h +0 -53
  1529. data/third_party/cares/cares/ares_parse_a_reply.c +0 -264
  1530. data/third_party/cares/cares/ares_parse_aaaa_reply.c +0 -264
  1531. data/third_party/cares/cares/ares_parse_soa_reply.c +0 -133
@@ -22,89 +22,249 @@ extern "C" {
22
22
 
23
23
  struct envoy_config_cluster_v3_OutlierDetection;
24
24
  typedef struct envoy_config_cluster_v3_OutlierDetection envoy_config_cluster_v3_OutlierDetection;
25
- extern const upb_msglayout envoy_config_cluster_v3_OutlierDetection_msginit;
25
+ extern const upb_MiniTable envoy_config_cluster_v3_OutlierDetection_msginit;
26
26
  struct google_protobuf_Duration;
27
27
  struct google_protobuf_UInt32Value;
28
- extern const upb_msglayout google_protobuf_Duration_msginit;
29
- extern const upb_msglayout google_protobuf_UInt32Value_msginit;
28
+ extern const upb_MiniTable google_protobuf_Duration_msginit;
29
+ extern const upb_MiniTable google_protobuf_UInt32Value_msginit;
30
+
30
31
 
31
32
 
32
33
  /* envoy.config.cluster.v3.OutlierDetection */
33
34
 
34
- UPB_INLINE envoy_config_cluster_v3_OutlierDetection *envoy_config_cluster_v3_OutlierDetection_new(upb_arena *arena) {
35
- return (envoy_config_cluster_v3_OutlierDetection *)_upb_msg_new(&envoy_config_cluster_v3_OutlierDetection_msginit, arena);
35
+ UPB_INLINE envoy_config_cluster_v3_OutlierDetection* envoy_config_cluster_v3_OutlierDetection_new(upb_Arena* arena) {
36
+ return (envoy_config_cluster_v3_OutlierDetection*)_upb_Message_New(&envoy_config_cluster_v3_OutlierDetection_msginit, arena);
36
37
  }
37
- UPB_INLINE envoy_config_cluster_v3_OutlierDetection *envoy_config_cluster_v3_OutlierDetection_parse(const char *buf, size_t size,
38
- upb_arena *arena) {
39
- envoy_config_cluster_v3_OutlierDetection *ret = envoy_config_cluster_v3_OutlierDetection_new(arena);
38
+ UPB_INLINE envoy_config_cluster_v3_OutlierDetection* envoy_config_cluster_v3_OutlierDetection_parse(const char* buf, size_t size, upb_Arena* arena) {
39
+ envoy_config_cluster_v3_OutlierDetection* ret = envoy_config_cluster_v3_OutlierDetection_new(arena);
40
40
  if (!ret) return NULL;
41
- if (!upb_decode(buf, size, ret, &envoy_config_cluster_v3_OutlierDetection_msginit, arena)) return NULL;
41
+ if (upb_Decode(buf, size, ret, &envoy_config_cluster_v3_OutlierDetection_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
42
+ return NULL;
43
+ }
42
44
  return ret;
43
45
  }
44
- UPB_INLINE envoy_config_cluster_v3_OutlierDetection *envoy_config_cluster_v3_OutlierDetection_parse_ex(const char *buf, size_t size,
45
- const upb_extreg *extreg, int options,
46
- upb_arena *arena) {
47
- envoy_config_cluster_v3_OutlierDetection *ret = envoy_config_cluster_v3_OutlierDetection_new(arena);
46
+ UPB_INLINE envoy_config_cluster_v3_OutlierDetection* envoy_config_cluster_v3_OutlierDetection_parse_ex(const char* buf, size_t size,
47
+ const upb_ExtensionRegistry* extreg,
48
+ int options, upb_Arena* arena) {
49
+ envoy_config_cluster_v3_OutlierDetection* ret = envoy_config_cluster_v3_OutlierDetection_new(arena);
48
50
  if (!ret) return NULL;
49
- if (!_upb_decode(buf, size, ret, &envoy_config_cluster_v3_OutlierDetection_msginit, extreg, options, arena)) {
51
+ if (upb_Decode(buf, size, ret, &envoy_config_cluster_v3_OutlierDetection_msginit, extreg, options, arena) !=
52
+ kUpb_DecodeStatus_Ok) {
50
53
  return NULL;
51
54
  }
52
55
  return ret;
53
56
  }
54
- UPB_INLINE char *envoy_config_cluster_v3_OutlierDetection_serialize(const envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena, size_t *len) {
55
- return upb_encode(msg, &envoy_config_cluster_v3_OutlierDetection_msginit, arena, len);
57
+ UPB_INLINE char* envoy_config_cluster_v3_OutlierDetection_serialize(const envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena, size_t* len) {
58
+ return upb_Encode(msg, &envoy_config_cluster_v3_OutlierDetection_msginit, 0, arena, len);
59
+ }
60
+ UPB_INLINE char* envoy_config_cluster_v3_OutlierDetection_serialize_ex(const envoy_config_cluster_v3_OutlierDetection* msg, int options,
61
+ upb_Arena* arena, size_t* len) {
62
+ return upb_Encode(msg, &envoy_config_cluster_v3_OutlierDetection_msginit, options, arena, len);
63
+ }
64
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection* msg) {
65
+ return _upb_hasbit(msg, 1);
66
+ }
67
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection* msg) {
68
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const upb_Message*) = NULL;
69
+ }
70
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection* msg) {
71
+ return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct google_protobuf_UInt32Value*);
72
+ }
73
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_interval(const envoy_config_cluster_v3_OutlierDetection* msg) {
74
+ return _upb_hasbit(msg, 2);
75
+ }
76
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_interval(const envoy_config_cluster_v3_OutlierDetection* msg) {
77
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const upb_Message*) = NULL;
78
+ }
79
+ UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_interval(const envoy_config_cluster_v3_OutlierDetection* msg) {
80
+ return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const struct google_protobuf_Duration*);
81
+ }
82
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_base_ejection_time(const envoy_config_cluster_v3_OutlierDetection* msg) {
83
+ return _upb_hasbit(msg, 3);
84
+ }
85
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_base_ejection_time(const envoy_config_cluster_v3_OutlierDetection* msg) {
86
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const upb_Message*) = NULL;
87
+ }
88
+ UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_base_ejection_time(const envoy_config_cluster_v3_OutlierDetection* msg) {
89
+ return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct google_protobuf_Duration*);
90
+ }
91
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_max_ejection_percent(const envoy_config_cluster_v3_OutlierDetection* msg) {
92
+ return _upb_hasbit(msg, 4);
93
+ }
94
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_max_ejection_percent(const envoy_config_cluster_v3_OutlierDetection* msg) {
95
+ *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const upb_Message*) = NULL;
96
+ }
97
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_max_ejection_percent(const envoy_config_cluster_v3_OutlierDetection* msg) {
98
+ return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const struct google_protobuf_UInt32Value*);
99
+ }
100
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection* msg) {
101
+ return _upb_hasbit(msg, 5);
102
+ }
103
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection* msg) {
104
+ *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const upb_Message*) = NULL;
105
+ }
106
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection* msg) {
107
+ return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct google_protobuf_UInt32Value*);
108
+ }
109
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_success_rate(const envoy_config_cluster_v3_OutlierDetection* msg) {
110
+ return _upb_hasbit(msg, 6);
111
+ }
112
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_success_rate(const envoy_config_cluster_v3_OutlierDetection* msg) {
113
+ *UPB_PTR_AT(msg, UPB_SIZE(24, 48), const upb_Message*) = NULL;
114
+ }
115
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_success_rate(const envoy_config_cluster_v3_OutlierDetection* msg) {
116
+ return *UPB_PTR_AT(msg, UPB_SIZE(24, 48), const struct google_protobuf_UInt32Value*);
117
+ }
118
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_success_rate_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection* msg) {
119
+ return _upb_hasbit(msg, 7);
120
+ }
121
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_success_rate_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection* msg) {
122
+ *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const upb_Message*) = NULL;
123
+ }
124
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_success_rate_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection* msg) {
125
+ return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const struct google_protobuf_UInt32Value*);
126
+ }
127
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_success_rate_request_volume(const envoy_config_cluster_v3_OutlierDetection* msg) {
128
+ return _upb_hasbit(msg, 8);
129
+ }
130
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_success_rate_request_volume(const envoy_config_cluster_v3_OutlierDetection* msg) {
131
+ *UPB_PTR_AT(msg, UPB_SIZE(32, 64), const upb_Message*) = NULL;
132
+ }
133
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_success_rate_request_volume(const envoy_config_cluster_v3_OutlierDetection* msg) {
134
+ return *UPB_PTR_AT(msg, UPB_SIZE(32, 64), const struct google_protobuf_UInt32Value*);
135
+ }
136
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_success_rate_stdev_factor(const envoy_config_cluster_v3_OutlierDetection* msg) {
137
+ return _upb_hasbit(msg, 9);
138
+ }
139
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_success_rate_stdev_factor(const envoy_config_cluster_v3_OutlierDetection* msg) {
140
+ *UPB_PTR_AT(msg, UPB_SIZE(36, 72), const upb_Message*) = NULL;
141
+ }
142
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_success_rate_stdev_factor(const envoy_config_cluster_v3_OutlierDetection* msg) {
143
+ return *UPB_PTR_AT(msg, UPB_SIZE(36, 72), const struct google_protobuf_UInt32Value*);
144
+ }
145
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
146
+ return _upb_hasbit(msg, 10);
147
+ }
148
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
149
+ *UPB_PTR_AT(msg, UPB_SIZE(40, 80), const upb_Message*) = NULL;
150
+ }
151
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
152
+ return *UPB_PTR_AT(msg, UPB_SIZE(40, 80), const struct google_protobuf_UInt32Value*);
153
+ }
154
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
155
+ return _upb_hasbit(msg, 11);
156
+ }
157
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
158
+ *UPB_PTR_AT(msg, UPB_SIZE(44, 88), const upb_Message*) = NULL;
159
+ }
160
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
161
+ return *UPB_PTR_AT(msg, UPB_SIZE(44, 88), const struct google_protobuf_UInt32Value*);
162
+ }
163
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_split_external_local_origin_errors(const envoy_config_cluster_v3_OutlierDetection* msg) {
164
+ *UPB_PTR_AT(msg, UPB_SIZE(3, 3), bool) = 0;
165
+ }
166
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_split_external_local_origin_errors(const envoy_config_cluster_v3_OutlierDetection* msg) {
167
+ return *UPB_PTR_AT(msg, UPB_SIZE(3, 3), bool);
168
+ }
169
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
170
+ return _upb_hasbit(msg, 12);
171
+ }
172
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
173
+ *UPB_PTR_AT(msg, UPB_SIZE(48, 96), const upb_Message*) = NULL;
174
+ }
175
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
176
+ return *UPB_PTR_AT(msg, UPB_SIZE(48, 96), const struct google_protobuf_UInt32Value*);
177
+ }
178
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
179
+ return _upb_hasbit(msg, 13);
180
+ }
181
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
182
+ *UPB_PTR_AT(msg, UPB_SIZE(52, 104), const upb_Message*) = NULL;
183
+ }
184
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection* msg) {
185
+ return *UPB_PTR_AT(msg, UPB_SIZE(52, 104), const struct google_protobuf_UInt32Value*);
186
+ }
187
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_local_origin_success_rate(const envoy_config_cluster_v3_OutlierDetection* msg) {
188
+ return _upb_hasbit(msg, 14);
189
+ }
190
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_local_origin_success_rate(const envoy_config_cluster_v3_OutlierDetection* msg) {
191
+ *UPB_PTR_AT(msg, UPB_SIZE(56, 112), const upb_Message*) = NULL;
192
+ }
193
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_local_origin_success_rate(const envoy_config_cluster_v3_OutlierDetection* msg) {
194
+ return *UPB_PTR_AT(msg, UPB_SIZE(56, 112), const struct google_protobuf_UInt32Value*);
195
+ }
196
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_failure_percentage_threshold(const envoy_config_cluster_v3_OutlierDetection* msg) {
197
+ return _upb_hasbit(msg, 15);
198
+ }
199
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_failure_percentage_threshold(const envoy_config_cluster_v3_OutlierDetection* msg) {
200
+ *UPB_PTR_AT(msg, UPB_SIZE(60, 120), const upb_Message*) = NULL;
201
+ }
202
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_failure_percentage_threshold(const envoy_config_cluster_v3_OutlierDetection* msg) {
203
+ return *UPB_PTR_AT(msg, UPB_SIZE(60, 120), const struct google_protobuf_UInt32Value*);
204
+ }
205
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_failure_percentage(const envoy_config_cluster_v3_OutlierDetection* msg) {
206
+ return _upb_hasbit(msg, 16);
207
+ }
208
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_failure_percentage(const envoy_config_cluster_v3_OutlierDetection* msg) {
209
+ *UPB_PTR_AT(msg, UPB_SIZE(64, 128), const upb_Message*) = NULL;
210
+ }
211
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_failure_percentage(const envoy_config_cluster_v3_OutlierDetection* msg) {
212
+ return *UPB_PTR_AT(msg, UPB_SIZE(64, 128), const struct google_protobuf_UInt32Value*);
213
+ }
214
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_failure_percentage_local_origin(const envoy_config_cluster_v3_OutlierDetection* msg) {
215
+ return _upb_hasbit(msg, 17);
216
+ }
217
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_enforcing_failure_percentage_local_origin(const envoy_config_cluster_v3_OutlierDetection* msg) {
218
+ *UPB_PTR_AT(msg, UPB_SIZE(68, 136), const upb_Message*) = NULL;
219
+ }
220
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_failure_percentage_local_origin(const envoy_config_cluster_v3_OutlierDetection* msg) {
221
+ return *UPB_PTR_AT(msg, UPB_SIZE(68, 136), const struct google_protobuf_UInt32Value*);
222
+ }
223
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_failure_percentage_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection* msg) {
224
+ return _upb_hasbit(msg, 18);
225
+ }
226
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_failure_percentage_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection* msg) {
227
+ *UPB_PTR_AT(msg, UPB_SIZE(72, 144), const upb_Message*) = NULL;
228
+ }
229
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_failure_percentage_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection* msg) {
230
+ return *UPB_PTR_AT(msg, UPB_SIZE(72, 144), const struct google_protobuf_UInt32Value*);
231
+ }
232
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_failure_percentage_request_volume(const envoy_config_cluster_v3_OutlierDetection* msg) {
233
+ return _upb_hasbit(msg, 19);
234
+ }
235
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_failure_percentage_request_volume(const envoy_config_cluster_v3_OutlierDetection* msg) {
236
+ *UPB_PTR_AT(msg, UPB_SIZE(76, 152), const upb_Message*) = NULL;
237
+ }
238
+ UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_failure_percentage_request_volume(const envoy_config_cluster_v3_OutlierDetection* msg) {
239
+ return *UPB_PTR_AT(msg, UPB_SIZE(76, 152), const struct google_protobuf_UInt32Value*);
240
+ }
241
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_max_ejection_time(const envoy_config_cluster_v3_OutlierDetection* msg) {
242
+ return _upb_hasbit(msg, 20);
243
+ }
244
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_max_ejection_time(const envoy_config_cluster_v3_OutlierDetection* msg) {
245
+ *UPB_PTR_AT(msg, UPB_SIZE(80, 160), const upb_Message*) = NULL;
246
+ }
247
+ UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_max_ejection_time(const envoy_config_cluster_v3_OutlierDetection* msg) {
248
+ return *UPB_PTR_AT(msg, UPB_SIZE(80, 160), const struct google_protobuf_Duration*);
249
+ }
250
+ UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_max_ejection_time_jitter(const envoy_config_cluster_v3_OutlierDetection* msg) {
251
+ return _upb_hasbit(msg, 21);
252
+ }
253
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_clear_max_ejection_time_jitter(const envoy_config_cluster_v3_OutlierDetection* msg) {
254
+ *UPB_PTR_AT(msg, UPB_SIZE(84, 168), const upb_Message*) = NULL;
255
+ }
256
+ UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_max_ejection_time_jitter(const envoy_config_cluster_v3_OutlierDetection* msg) {
257
+ return *UPB_PTR_AT(msg, UPB_SIZE(84, 168), const struct google_protobuf_Duration*);
56
258
  }
57
-
58
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 1); }
59
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct google_protobuf_UInt32Value*); }
60
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_interval(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 2); }
61
- UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_interval(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const struct google_protobuf_Duration*); }
62
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_base_ejection_time(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 3); }
63
- UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_base_ejection_time(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct google_protobuf_Duration*); }
64
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_max_ejection_percent(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 4); }
65
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_max_ejection_percent(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const struct google_protobuf_UInt32Value*); }
66
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 5); }
67
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_5xx(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct google_protobuf_UInt32Value*); }
68
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_success_rate(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 6); }
69
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_success_rate(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(24, 48), const struct google_protobuf_UInt32Value*); }
70
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_success_rate_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 7); }
71
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_success_rate_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const struct google_protobuf_UInt32Value*); }
72
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_success_rate_request_volume(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 8); }
73
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_success_rate_request_volume(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(32, 64), const struct google_protobuf_UInt32Value*); }
74
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_success_rate_stdev_factor(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 9); }
75
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_success_rate_stdev_factor(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(36, 72), const struct google_protobuf_UInt32Value*); }
76
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 10); }
77
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(40, 80), const struct google_protobuf_UInt32Value*); }
78
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 11); }
79
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_gateway_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(44, 88), const struct google_protobuf_UInt32Value*); }
80
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_split_external_local_origin_errors(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(3, 3), bool); }
81
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 12); }
82
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(48, 96), const struct google_protobuf_UInt32Value*); }
83
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 13); }
84
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_local_origin_failure(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(52, 104), const struct google_protobuf_UInt32Value*); }
85
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_local_origin_success_rate(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 14); }
86
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_local_origin_success_rate(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(56, 112), const struct google_protobuf_UInt32Value*); }
87
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_failure_percentage_threshold(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 15); }
88
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_failure_percentage_threshold(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(60, 120), const struct google_protobuf_UInt32Value*); }
89
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_failure_percentage(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 16); }
90
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_failure_percentage(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(64, 128), const struct google_protobuf_UInt32Value*); }
91
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_enforcing_failure_percentage_local_origin(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 17); }
92
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_enforcing_failure_percentage_local_origin(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(68, 136), const struct google_protobuf_UInt32Value*); }
93
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_failure_percentage_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 18); }
94
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_failure_percentage_minimum_hosts(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(72, 144), const struct google_protobuf_UInt32Value*); }
95
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_failure_percentage_request_volume(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 19); }
96
- UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_failure_percentage_request_volume(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(76, 152), const struct google_protobuf_UInt32Value*); }
97
- UPB_INLINE bool envoy_config_cluster_v3_OutlierDetection_has_max_ejection_time(const envoy_config_cluster_v3_OutlierDetection *msg) { return _upb_hasbit(msg, 20); }
98
- UPB_INLINE const struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_max_ejection_time(const envoy_config_cluster_v3_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(80, 160), const struct google_protobuf_Duration*); }
99
259
 
100
260
  UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_consecutive_5xx(envoy_config_cluster_v3_OutlierDetection *msg, struct google_protobuf_UInt32Value* value) {
101
261
  _upb_sethas(msg, 1);
102
262
  *UPB_PTR_AT(msg, UPB_SIZE(4, 8), struct google_protobuf_UInt32Value*) = value;
103
263
  }
104
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_consecutive_5xx(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
264
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_consecutive_5xx(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
105
265
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_consecutive_5xx(msg);
106
266
  if (sub == NULL) {
107
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
267
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
108
268
  if (!sub) return NULL;
109
269
  envoy_config_cluster_v3_OutlierDetection_set_consecutive_5xx(msg, sub);
110
270
  }
@@ -114,10 +274,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_interval(envoy_conf
114
274
  _upb_sethas(msg, 2);
115
275
  *UPB_PTR_AT(msg, UPB_SIZE(8, 16), struct google_protobuf_Duration*) = value;
116
276
  }
117
- UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_interval(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
277
+ UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_interval(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
118
278
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_cluster_v3_OutlierDetection_interval(msg);
119
279
  if (sub == NULL) {
120
- sub = (struct google_protobuf_Duration*)_upb_msg_new(&google_protobuf_Duration_msginit, arena);
280
+ sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
121
281
  if (!sub) return NULL;
122
282
  envoy_config_cluster_v3_OutlierDetection_set_interval(msg, sub);
123
283
  }
@@ -127,10 +287,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_base_ejection_time(
127
287
  _upb_sethas(msg, 3);
128
288
  *UPB_PTR_AT(msg, UPB_SIZE(12, 24), struct google_protobuf_Duration*) = value;
129
289
  }
130
- UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_base_ejection_time(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
290
+ UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_base_ejection_time(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
131
291
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_cluster_v3_OutlierDetection_base_ejection_time(msg);
132
292
  if (sub == NULL) {
133
- sub = (struct google_protobuf_Duration*)_upb_msg_new(&google_protobuf_Duration_msginit, arena);
293
+ sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
134
294
  if (!sub) return NULL;
135
295
  envoy_config_cluster_v3_OutlierDetection_set_base_ejection_time(msg, sub);
136
296
  }
@@ -140,10 +300,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_max_ejection_percen
140
300
  _upb_sethas(msg, 4);
141
301
  *UPB_PTR_AT(msg, UPB_SIZE(16, 32), struct google_protobuf_UInt32Value*) = value;
142
302
  }
143
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_max_ejection_percent(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
303
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_max_ejection_percent(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
144
304
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_max_ejection_percent(msg);
145
305
  if (sub == NULL) {
146
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
306
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
147
307
  if (!sub) return NULL;
148
308
  envoy_config_cluster_v3_OutlierDetection_set_max_ejection_percent(msg, sub);
149
309
  }
@@ -153,10 +313,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_consecuti
153
313
  _upb_sethas(msg, 5);
154
314
  *UPB_PTR_AT(msg, UPB_SIZE(20, 40), struct google_protobuf_UInt32Value*) = value;
155
315
  }
156
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_consecutive_5xx(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
316
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_consecutive_5xx(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
157
317
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_5xx(msg);
158
318
  if (sub == NULL) {
159
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
319
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
160
320
  if (!sub) return NULL;
161
321
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_consecutive_5xx(msg, sub);
162
322
  }
@@ -166,10 +326,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_success_r
166
326
  _upb_sethas(msg, 6);
167
327
  *UPB_PTR_AT(msg, UPB_SIZE(24, 48), struct google_protobuf_UInt32Value*) = value;
168
328
  }
169
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_success_rate(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
329
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_success_rate(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
170
330
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_success_rate(msg);
171
331
  if (sub == NULL) {
172
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
332
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
173
333
  if (!sub) return NULL;
174
334
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_success_rate(msg, sub);
175
335
  }
@@ -179,10 +339,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_success_rate_minimu
179
339
  _upb_sethas(msg, 7);
180
340
  *UPB_PTR_AT(msg, UPB_SIZE(28, 56), struct google_protobuf_UInt32Value*) = value;
181
341
  }
182
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_success_rate_minimum_hosts(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
342
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_success_rate_minimum_hosts(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
183
343
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_success_rate_minimum_hosts(msg);
184
344
  if (sub == NULL) {
185
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
345
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
186
346
  if (!sub) return NULL;
187
347
  envoy_config_cluster_v3_OutlierDetection_set_success_rate_minimum_hosts(msg, sub);
188
348
  }
@@ -192,10 +352,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_success_rate_reques
192
352
  _upb_sethas(msg, 8);
193
353
  *UPB_PTR_AT(msg, UPB_SIZE(32, 64), struct google_protobuf_UInt32Value*) = value;
194
354
  }
195
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_success_rate_request_volume(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
355
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_success_rate_request_volume(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
196
356
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_success_rate_request_volume(msg);
197
357
  if (sub == NULL) {
198
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
358
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
199
359
  if (!sub) return NULL;
200
360
  envoy_config_cluster_v3_OutlierDetection_set_success_rate_request_volume(msg, sub);
201
361
  }
@@ -205,10 +365,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_success_rate_stdev_
205
365
  _upb_sethas(msg, 9);
206
366
  *UPB_PTR_AT(msg, UPB_SIZE(36, 72), struct google_protobuf_UInt32Value*) = value;
207
367
  }
208
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_success_rate_stdev_factor(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
368
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_success_rate_stdev_factor(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
209
369
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_success_rate_stdev_factor(msg);
210
370
  if (sub == NULL) {
211
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
371
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
212
372
  if (!sub) return NULL;
213
373
  envoy_config_cluster_v3_OutlierDetection_set_success_rate_stdev_factor(msg, sub);
214
374
  }
@@ -218,10 +378,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_consecutive_gateway
218
378
  _upb_sethas(msg, 10);
219
379
  *UPB_PTR_AT(msg, UPB_SIZE(40, 80), struct google_protobuf_UInt32Value*) = value;
220
380
  }
221
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_consecutive_gateway_failure(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
381
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_consecutive_gateway_failure(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
222
382
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_consecutive_gateway_failure(msg);
223
383
  if (sub == NULL) {
224
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
384
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
225
385
  if (!sub) return NULL;
226
386
  envoy_config_cluster_v3_OutlierDetection_set_consecutive_gateway_failure(msg, sub);
227
387
  }
@@ -231,10 +391,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_consecuti
231
391
  _upb_sethas(msg, 11);
232
392
  *UPB_PTR_AT(msg, UPB_SIZE(44, 88), struct google_protobuf_UInt32Value*) = value;
233
393
  }
234
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_consecutive_gateway_failure(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
394
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_consecutive_gateway_failure(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
235
395
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_gateway_failure(msg);
236
396
  if (sub == NULL) {
237
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
397
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
238
398
  if (!sub) return NULL;
239
399
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_consecutive_gateway_failure(msg, sub);
240
400
  }
@@ -247,10 +407,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_consecutive_local_o
247
407
  _upb_sethas(msg, 12);
248
408
  *UPB_PTR_AT(msg, UPB_SIZE(48, 96), struct google_protobuf_UInt32Value*) = value;
249
409
  }
250
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_consecutive_local_origin_failure(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
410
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_consecutive_local_origin_failure(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
251
411
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_consecutive_local_origin_failure(msg);
252
412
  if (sub == NULL) {
253
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
413
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
254
414
  if (!sub) return NULL;
255
415
  envoy_config_cluster_v3_OutlierDetection_set_consecutive_local_origin_failure(msg, sub);
256
416
  }
@@ -260,10 +420,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_consecuti
260
420
  _upb_sethas(msg, 13);
261
421
  *UPB_PTR_AT(msg, UPB_SIZE(52, 104), struct google_protobuf_UInt32Value*) = value;
262
422
  }
263
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_consecutive_local_origin_failure(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
423
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_consecutive_local_origin_failure(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
264
424
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_consecutive_local_origin_failure(msg);
265
425
  if (sub == NULL) {
266
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
426
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
267
427
  if (!sub) return NULL;
268
428
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_consecutive_local_origin_failure(msg, sub);
269
429
  }
@@ -273,10 +433,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_local_ori
273
433
  _upb_sethas(msg, 14);
274
434
  *UPB_PTR_AT(msg, UPB_SIZE(56, 112), struct google_protobuf_UInt32Value*) = value;
275
435
  }
276
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_local_origin_success_rate(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
436
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_local_origin_success_rate(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
277
437
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_local_origin_success_rate(msg);
278
438
  if (sub == NULL) {
279
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
439
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
280
440
  if (!sub) return NULL;
281
441
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_local_origin_success_rate(msg, sub);
282
442
  }
@@ -286,10 +446,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_failure_percentage_
286
446
  _upb_sethas(msg, 15);
287
447
  *UPB_PTR_AT(msg, UPB_SIZE(60, 120), struct google_protobuf_UInt32Value*) = value;
288
448
  }
289
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_failure_percentage_threshold(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
449
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_failure_percentage_threshold(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
290
450
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_failure_percentage_threshold(msg);
291
451
  if (sub == NULL) {
292
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
452
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
293
453
  if (!sub) return NULL;
294
454
  envoy_config_cluster_v3_OutlierDetection_set_failure_percentage_threshold(msg, sub);
295
455
  }
@@ -299,10 +459,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_failure_p
299
459
  _upb_sethas(msg, 16);
300
460
  *UPB_PTR_AT(msg, UPB_SIZE(64, 128), struct google_protobuf_UInt32Value*) = value;
301
461
  }
302
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_failure_percentage(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
462
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_failure_percentage(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
303
463
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_failure_percentage(msg);
304
464
  if (sub == NULL) {
305
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
465
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
306
466
  if (!sub) return NULL;
307
467
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_failure_percentage(msg, sub);
308
468
  }
@@ -312,10 +472,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_enforcing_failure_p
312
472
  _upb_sethas(msg, 17);
313
473
  *UPB_PTR_AT(msg, UPB_SIZE(68, 136), struct google_protobuf_UInt32Value*) = value;
314
474
  }
315
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_failure_percentage_local_origin(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
475
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_enforcing_failure_percentage_local_origin(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
316
476
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_enforcing_failure_percentage_local_origin(msg);
317
477
  if (sub == NULL) {
318
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
478
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
319
479
  if (!sub) return NULL;
320
480
  envoy_config_cluster_v3_OutlierDetection_set_enforcing_failure_percentage_local_origin(msg, sub);
321
481
  }
@@ -325,10 +485,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_failure_percentage_
325
485
  _upb_sethas(msg, 18);
326
486
  *UPB_PTR_AT(msg, UPB_SIZE(72, 144), struct google_protobuf_UInt32Value*) = value;
327
487
  }
328
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_failure_percentage_minimum_hosts(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
488
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_failure_percentage_minimum_hosts(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
329
489
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_failure_percentage_minimum_hosts(msg);
330
490
  if (sub == NULL) {
331
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
491
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
332
492
  if (!sub) return NULL;
333
493
  envoy_config_cluster_v3_OutlierDetection_set_failure_percentage_minimum_hosts(msg, sub);
334
494
  }
@@ -338,10 +498,10 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_failure_percentage_
338
498
  _upb_sethas(msg, 19);
339
499
  *UPB_PTR_AT(msg, UPB_SIZE(76, 152), struct google_protobuf_UInt32Value*) = value;
340
500
  }
341
- UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_failure_percentage_request_volume(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
501
+ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_cluster_v3_OutlierDetection_mutable_failure_percentage_request_volume(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
342
502
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_cluster_v3_OutlierDetection_failure_percentage_request_volume(msg);
343
503
  if (sub == NULL) {
344
- sub = (struct google_protobuf_UInt32Value*)_upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
504
+ sub = (struct google_protobuf_UInt32Value*)_upb_Message_New(&google_protobuf_UInt32Value_msginit, arena);
345
505
  if (!sub) return NULL;
346
506
  envoy_config_cluster_v3_OutlierDetection_set_failure_percentage_request_volume(msg, sub);
347
507
  }
@@ -351,15 +511,30 @@ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_max_ejection_time(e
351
511
  _upb_sethas(msg, 20);
352
512
  *UPB_PTR_AT(msg, UPB_SIZE(80, 160), struct google_protobuf_Duration*) = value;
353
513
  }
354
- UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_max_ejection_time(envoy_config_cluster_v3_OutlierDetection *msg, upb_arena *arena) {
514
+ UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_max_ejection_time(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
355
515
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_cluster_v3_OutlierDetection_max_ejection_time(msg);
356
516
  if (sub == NULL) {
357
- sub = (struct google_protobuf_Duration*)_upb_msg_new(&google_protobuf_Duration_msginit, arena);
517
+ sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
358
518
  if (!sub) return NULL;
359
519
  envoy_config_cluster_v3_OutlierDetection_set_max_ejection_time(msg, sub);
360
520
  }
361
521
  return sub;
362
522
  }
523
+ UPB_INLINE void envoy_config_cluster_v3_OutlierDetection_set_max_ejection_time_jitter(envoy_config_cluster_v3_OutlierDetection *msg, struct google_protobuf_Duration* value) {
524
+ _upb_sethas(msg, 21);
525
+ *UPB_PTR_AT(msg, UPB_SIZE(84, 168), struct google_protobuf_Duration*) = value;
526
+ }
527
+ UPB_INLINE struct google_protobuf_Duration* envoy_config_cluster_v3_OutlierDetection_mutable_max_ejection_time_jitter(envoy_config_cluster_v3_OutlierDetection* msg, upb_Arena* arena) {
528
+ struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_cluster_v3_OutlierDetection_max_ejection_time_jitter(msg);
529
+ if (sub == NULL) {
530
+ sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
531
+ if (!sub) return NULL;
532
+ envoy_config_cluster_v3_OutlierDetection_set_max_ejection_time_jitter(msg, sub);
533
+ }
534
+ return sub;
535
+ }
536
+
537
+ extern const upb_MiniTable_File envoy_config_cluster_v3_outlier_detection_proto_upb_file_layout;
363
538
 
364
539
  #ifdef __cplusplus
365
540
  } /* extern "C" */