grpc 1.40.0 → 1.46.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
 - data/Makefile +462 -267
 - data/etc/roots.pem +335 -326
 - data/include/grpc/byte_buffer.h +1 -1
 - data/include/grpc/byte_buffer_reader.h +1 -1
 - data/include/grpc/event_engine/endpoint_config.h +6 -11
 - data/include/grpc/event_engine/event_engine.h +164 -95
 - data/include/grpc/event_engine/internal/memory_allocator_impl.h +68 -0
 - data/include/grpc/event_engine/memory_allocator.h +226 -0
 - data/include/grpc/event_engine/memory_request.h +57 -0
 - data/include/grpc/event_engine/port.h +1 -3
 - data/include/grpc/fork.h +1 -1
 - data/include/grpc/grpc.h +54 -18
 - data/include/grpc/grpc_posix.h +22 -18
 - data/include/grpc/grpc_security.h +328 -193
 - data/include/grpc/grpc_security_constants.h +2 -14
 - data/include/grpc/impl/codegen/atm.h +5 -3
 - data/include/grpc/impl/codegen/atm_gcc_atomic.h +2 -0
 - data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
 - data/include/grpc/impl/codegen/atm_windows.h +2 -0
 - data/include/grpc/impl/codegen/byte_buffer.h +2 -0
 - data/include/grpc/impl/codegen/byte_buffer_reader.h +2 -0
 - data/include/grpc/impl/codegen/compression_types.h +2 -2
 - data/include/grpc/impl/codegen/connectivity_state.h +2 -0
 - data/include/grpc/impl/codegen/fork.h +2 -0
 - data/include/grpc/impl/codegen/gpr_slice.h +2 -0
 - data/include/grpc/impl/codegen/gpr_types.h +2 -0
 - data/include/grpc/impl/codegen/grpc_types.h +28 -26
 - data/include/grpc/impl/codegen/log.h +2 -0
 - data/include/grpc/impl/codegen/port_platform.h +37 -22
 - data/include/grpc/impl/codegen/propagation_bits.h +2 -0
 - data/include/grpc/impl/codegen/slice.h +6 -1
 - data/include/grpc/impl/codegen/status.h +2 -0
 - data/include/grpc/impl/codegen/sync.h +8 -5
 - data/include/grpc/impl/codegen/sync_abseil.h +2 -0
 - data/include/grpc/impl/codegen/sync_custom.h +2 -0
 - data/include/grpc/impl/codegen/sync_generic.h +3 -0
 - data/include/grpc/impl/codegen/sync_posix.h +4 -2
 - data/include/grpc/impl/codegen/sync_windows.h +2 -0
 - data/include/grpc/slice.h +1 -12
 - data/include/grpc/status.h +1 -1
 - data/include/grpc/support/atm.h +1 -1
 - data/include/grpc/support/atm_gcc_atomic.h +1 -1
 - data/include/grpc/support/atm_gcc_sync.h +1 -1
 - data/include/grpc/support/atm_windows.h +1 -1
 - data/include/grpc/support/log.h +1 -1
 - data/include/grpc/support/port_platform.h +1 -1
 - data/include/grpc/support/sync.h +1 -1
 - data/include/grpc/support/sync_abseil.h +1 -1
 - data/include/grpc/support/sync_custom.h +1 -1
 - data/include/grpc/support/sync_generic.h +1 -1
 - data/include/grpc/support/sync_posix.h +1 -1
 - data/include/grpc/support/sync_windows.h +1 -1
 - data/include/grpc/support/time.h +2 -2
 - data/src/core/ext/filters/census/grpc_context.cc +1 -0
 - data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +309 -0
 - data/src/core/ext/filters/channel_idle/channel_idle_filter.h +122 -0
 - data/src/core/ext/filters/channel_idle/idle_filter_state.cc +96 -0
 - data/src/core/ext/filters/channel_idle/idle_filter_state.h +66 -0
 - data/src/core/ext/filters/client_channel/backend_metric.cc +24 -27
 - data/src/core/ext/filters/client_channel/backend_metric.h +4 -3
 - data/src/core/ext/filters/client_channel/backup_poller.cc +14 -9
 - data/src/core/ext/filters/client_channel/backup_poller.h +1 -0
 - data/src/core/ext/filters/client_channel/channel_connectivity.cc +75 -94
 - data/src/core/ext/filters/client_channel/client_channel.cc +532 -501
 - data/src/core/ext/filters/client_channel/client_channel.h +115 -64
 - data/src/core/ext/filters/client_channel/client_channel_channelz.cc +6 -5
 - data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -1
 - data/src/core/ext/filters/client_channel/client_channel_factory.cc +2 -1
 - data/src/core/ext/filters/client_channel/client_channel_factory.h +17 -19
 - data/src/core/ext/filters/client_channel/client_channel_plugin.cc +18 -24
 - data/src/core/ext/filters/client_channel/config_selector.cc +2 -1
 - data/src/core/ext/filters/client_channel/config_selector.h +5 -6
 - data/src/core/ext/filters/client_channel/connector.h +19 -19
 - data/src/core/ext/filters/client_channel/dynamic_filters.cc +6 -7
 - data/src/core/ext/filters/client_channel/dynamic_filters.h +2 -2
 - data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +2 -22
 - data/src/core/ext/filters/client_channel/global_subchannel_pool.h +3 -16
 - data/src/core/ext/filters/client_channel/health/health_check_client.cc +128 -582
 - data/src/core/ext/filters/client_channel/health/health_check_client.h +24 -159
 - data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +30 -34
 - data/src/core/ext/filters/client_channel/http_connect_handshaker.h +10 -2
 - data/src/core/ext/filters/client_channel/http_proxy.cc +88 -110
 - data/src/core/ext/filters/client_channel/http_proxy.h +17 -0
 - data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
 - data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
 - data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +6 -2
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -18
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +247 -150
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +3 -6
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -1
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +3 -4
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +4 -4
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +17 -18
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -4
 - data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +73 -39
 - data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +226 -181
 - data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +126 -79
 - data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2542 -0
 - data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +68 -62
 - data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +18 -13
 - data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +106 -71
 - data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +119 -159
 - data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
 - data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +1 -1
 - data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +162 -77
 - data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +29 -19
 - data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +331 -488
 - data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
 - data/src/core/ext/filters/client_channel/lb_policy.h +115 -106
 - data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -0
 - data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -7
 - data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +133 -0
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +296 -324
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +23 -12
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +23 -18
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +37 -55
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +153 -275
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +38 -25
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
 - data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +96 -254
 - data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +23 -20
 - data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
 - data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +85 -69
 - data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +201 -0
 - data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +106 -0
 - data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +40 -39
 - data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +509 -439
 - data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +11 -15
 - data/src/core/ext/filters/client_channel/resolver_result_parsing.h +13 -7
 - data/src/core/ext/filters/client_channel/retry_filter.cc +282 -238
 - data/src/core/ext/filters/client_channel/retry_service_config.cc +16 -18
 - data/src/core/ext/filters/client_channel/retry_service_config.h +18 -12
 - data/src/core/ext/filters/client_channel/retry_throttle.cc +14 -59
 - data/src/core/ext/filters/client_channel/retry_throttle.h +11 -5
 - data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +51 -37
 - data/src/core/ext/filters/client_channel/subchannel.cc +132 -197
 - data/src/core/ext/filters/client_channel/subchannel.h +36 -56
 - data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +22 -7
 - data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +11 -2
 - data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +544 -0
 - data/src/core/ext/filters/client_channel/subchannel_stream_client.h +214 -0
 - data/src/core/ext/filters/deadline/deadline_filter.cc +31 -33
 - data/src/core/ext/filters/deadline/deadline_filter.h +3 -2
 - data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +158 -401
 - data/src/core/ext/filters/fault_injection/fault_injection_filter.h +24 -1
 - data/src/core/ext/filters/fault_injection/service_config_parser.cc +17 -27
 - data/src/core/ext/filters/fault_injection/service_config_parser.h +10 -4
 - data/src/core/ext/filters/http/client/http_client_filter.cc +83 -548
 - data/src/core/ext/filters/http/client/http_client_filter.h +21 -4
 - data/src/core/ext/filters/http/client_authority_filter.cc +39 -103
 - data/src/core/ext/filters/http/client_authority_filter.h +24 -5
 - data/src/core/ext/filters/http/http_filters_plugin.cc +55 -73
 - data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +49 -140
 - data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +22 -35
 - data/src/core/ext/filters/http/server/http_server_filter.cc +64 -274
 - data/src/core/ext/filters/message_size/message_size_filter.cc +49 -58
 - data/src/core/ext/filters/message_size/message_size_filter.h +10 -3
 - data/src/core/ext/filters/rbac/rbac_filter.cc +162 -0
 - data/src/core/ext/filters/rbac/rbac_filter.h +76 -0
 - data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +606 -0
 - data/src/core/ext/filters/rbac/rbac_service_config_parser.h +75 -0
 - data/src/core/ext/filters/server_config_selector/server_config_selector.cc +61 -0
 - data/src/core/ext/filters/server_config_selector/server_config_selector.h +71 -0
 - data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +143 -0
 - data/src/core/ext/filters/{workarounds/workaround_cronet_compression_filter.h → server_config_selector/server_config_selector_filter.h} +11 -6
 - data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -1
 - data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +245 -12
 - data/src/core/ext/transport/chttp2/server/chttp2_server.cc +294 -95
 - data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +3 -1
 - data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -1
 - data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -0
 - data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +368 -349
 - data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +12 -4
 - data/src/core/ext/transport/chttp2/transport/context_list.cc +2 -3
 - data/src/core/ext/transport/chttp2/transport/context_list.h +3 -5
 - data/src/core/ext/transport/chttp2/transport/flow_control.cc +63 -44
 - data/src/core/ext/transport/chttp2/transport/flow_control.h +18 -12
 - data/src/core/ext/transport/chttp2/transport/frame_data.cc +11 -12
 - data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -0
 - data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +6 -4
 - data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -0
 - data/src/core/ext/transport/chttp2/transport/frame_ping.cc +10 -9
 - data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -0
 - data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +10 -8
 - data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -0
 - data/src/core/ext/transport/chttp2/transport/frame_settings.cc +40 -7
 - data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -0
 - data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +12 -7
 - data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -0
 - data/src/core/ext/transport/chttp2/transport/hpack_constants.h +41 -0
 - data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +516 -749
 - data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +183 -71
 - data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +86 -0
 - data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +71 -0
 - data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +764 -1062
 - data/src/core/ext/transport/chttp2/transport/hpack_parser.h +75 -178
 - data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +239 -0
 - data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +115 -0
 - data/src/core/ext/transport/chttp2/transport/internal.h +22 -48
 - data/src/core/ext/transport/chttp2/transport/parsing.cc +61 -212
 - data/src/core/ext/transport/chttp2/transport/stream_lists.cc +2 -2
 - data/src/core/ext/transport/chttp2/transport/varint.cc +7 -3
 - data/src/core/ext/transport/chttp2/transport/varint.h +39 -28
 - data/src/core/ext/transport/chttp2/transport/writing.cc +125 -169
 - data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
 - data/src/core/ext/transport/inproc/inproc_transport.cc +132 -173
 - data/src/core/ext/transport/inproc/inproc_transport.h +1 -4
 - data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +117 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +482 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +553 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +248 -210
 - data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +1382 -685
 - data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +56 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +151 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +62 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +160 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +46 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +124 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +43 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +102 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +43 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +97 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +106 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +605 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +48 -0
 - data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +103 -0
 - data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +44 -1
 - data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +52 -1
 - data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +31 -5
 - data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +57 -18
 - data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +144 -117
 - data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +761 -386
 - data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +240 -200
 - data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1376 -667
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +50 -29
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +224 -95
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +337 -255
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1901 -790
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +21 -8
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +50 -24
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +61 -28
 - data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +280 -99
 - data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +299 -0
 - data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +1381 -0
 - data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +75 -54
 - data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +398 -190
 - data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +22 -8
 - data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +53 -25
 - data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +220 -171
 - data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1224 -567
 - data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +106 -46
 - data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +561 -171
 - data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +20 -7
 - data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +46 -24
 - data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +17 -23
 - data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +49 -95
 - data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +58 -0
 - data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +151 -0
 - data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +146 -118
 - data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +853 -415
 - data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +142 -92
 - data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +797 -345
 - data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +22 -9
 - data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +65 -31
 - data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +205 -122
 - data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1097 -393
 - data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +18 -5
 - data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +36 -17
 - data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +28 -14
 - data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +97 -49
 - data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +23 -10
 - data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +83 -34
 - data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +27 -14
 - data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +101 -49
 - data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +22 -9
 - data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +54 -26
 - data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +52 -36
 - data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +214 -109
 - data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +92 -39
 - data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +449 -131
 - data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +71 -54
 - data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +389 -188
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +20 -7
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +42 -21
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +99 -72
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +541 -259
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +105 -80
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +610 -307
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +32 -17
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +112 -49
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +25 -11
 - data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +79 -40
 - data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +53 -0
 - data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +136 -0
 - data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +83 -62
 - data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +463 -235
 - data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +93 -60
 - data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +483 -214
 - data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +130 -100
 - data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +628 -282
 - data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +54 -35
 - data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +291 -142
 - data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +665 -567
 - data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +3977 -1883
 - data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +39 -20
 - data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +168 -72
 - data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +222 -0
 - data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +1052 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +44 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +88 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +49 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +103 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +28 -14
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +91 -46
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +52 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +134 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +63 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +250 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +47 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +94 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +69 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +213 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +32 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +42 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +71 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +218 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +54 -0
 - data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +146 -0
 - data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +18 -5
 - data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +42 -24
 - data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +46 -29
 - data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +219 -112
 - data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +52 -37
 - data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +282 -134
 - data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +64 -0
 - data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +183 -0
 - data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +27 -14
 - data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +94 -43
 - data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +284 -225
 - data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1673 -738
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +10 -1
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +7 -4
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +113 -54
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +621 -216
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +42 -27
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +176 -87
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +128 -83
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +673 -259
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +62 -0
 - data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +160 -0
 - data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +16 -3
 - data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +29 -15
 - data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +92 -73
 - data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +516 -260
 - data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +32 -18
 - data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +121 -62
 - data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +74 -57
 - data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +379 -186
 - data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +48 -0
 - data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +112 -0
 - data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +35 -19
 - data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +149 -81
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +74 -0
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +214 -0
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +29 -14
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +116 -56
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +22 -9
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +58 -31
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +21 -8
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +56 -27
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +20 -7
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +46 -24
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +36 -21
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +137 -69
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +32 -18
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +137 -65
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +27 -13
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +99 -53
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +38 -23
 - data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +170 -83
 - data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +51 -32
 - data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +273 -145
 - data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +54 -37
 - data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +268 -132
 - data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +66 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +201 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +10 -1
 - data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +4 -1
 - data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +42 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +139 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +24 -10
 - data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +76 -36
 - data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +31 -16
 - data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +118 -52
 - data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +26 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +41 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +20 -7
 - data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +48 -19
 - data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +51 -0
 - data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +127 -0
 - data/src/core/ext/upb-generated/google/api/annotations.upb.c +23 -1
 - data/src/core/ext/upb-generated/google/api/annotations.upb.h +24 -1
 - data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +155 -126
 - data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +791 -385
 - data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +159 -127
 - data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +869 -402
 - data/src/core/ext/upb-generated/google/api/http.upb.c +44 -29
 - data/src/core/ext/upb-generated/google/api/http.upb.h +236 -115
 - data/src/core/ext/upb-generated/google/api/httpbody.upb.c +46 -0
 - data/src/core/ext/upb-generated/google/api/httpbody.upb.h +111 -0
 - data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -6
 - data/src/core/ext/upb-generated/google/protobuf/any.upb.h +46 -22
 - data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +374 -283
 - data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +2263 -1053
 - data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -6
 - data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +44 -20
 - data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +16 -3
 - data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +29 -15
 - data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +48 -32
 - data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +197 -93
 - data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -6
 - data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +44 -20
 - data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +58 -37
 - data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +296 -149
 - data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -9
 - data/src/core/ext/upb-generated/google/rpc/status.upb.h +60 -30
 - data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +84 -0
 - data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +319 -0
 - data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +33 -19
 - data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +111 -48
 - data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +136 -108
 - data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +753 -365
 - data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +28 -13
 - data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +90 -41
 - data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -9
 - data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +70 -35
 - data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +82 -62
 - data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +448 -232
 - data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +70 -0
 - data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +208 -0
 - data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +175 -0
 - data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +764 -0
 - data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +76 -14
 - data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +213 -57
 - data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +32 -8
 - data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +62 -18
 - data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +22 -1
 - data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +17 -1
 - data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +32 -6
 - data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +64 -20
 - data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +31 -5
 - data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +57 -18
 - data/src/core/ext/upb-generated/validate/validate.upb.c +407 -311
 - data/src/core/ext/upb-generated/validate/validate.upb.h +2904 -1200
 - data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +110 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +278 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +55 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +108 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +38 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +46 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +105 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +290 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +53 -0
 - data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +99 -0
 - data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +19 -6
 - data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +38 -19
 - data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +32 -18
 - data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +112 -55
 - data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +27 -13
 - data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +61 -30
 - data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +46 -0
 - data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +103 -0
 - data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +24 -11
 - data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +63 -30
 - data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +35 -21
 - data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +144 -70
 - data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +24 -11
 - data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +66 -30
 - data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +73 -0
 - data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +187 -0
 - data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +207 -0
 - data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +878 -0
 - data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +52 -0
 - data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +143 -0
 - data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +65 -0
 - data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +218 -0
 - data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +46 -0
 - data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +103 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +84 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +55 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +127 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +50 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +16 -61
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +67 -67
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +43 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +53 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +49 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +46 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +46 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +142 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +51 -0
 - data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +10 -8
 - data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +1 -1
 - data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +10 -13
 - data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +22 -52
 - data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +46 -46
 - data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +250 -281
 - data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +55 -55
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +60 -62
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +445 -458
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +80 -70
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +16 -18
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +25 -23
 - data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +206 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +105 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +17 -32
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +22 -22
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +17 -19
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +121 -154
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +75 -70
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +140 -116
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +26 -16
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +16 -19
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +24 -43
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +4 -9
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +53 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +23 -51
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +43 -43
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +179 -184
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +30 -25
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +16 -19
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +263 -252
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +53 -43
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +14 -16
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +16 -20
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +16 -18
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +20 -22
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +15 -18
 - data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +20 -28
 - data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +13 -13
 - data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +98 -83
 - data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +23 -13
 - data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +20 -30
 - data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +16 -16
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +16 -18
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +54 -62
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +19 -19
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +155 -166
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +22 -22
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +21 -23
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +17 -21
 - data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +69 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +19 -35
 - data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +25 -25
 - data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +40 -47
 - data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +30 -25
 - data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +190 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +38 -38
 - data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +845 -913
 - data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +160 -160
 - data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +54 -48
 - data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +188 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +85 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +54 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +57 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +17 -21
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +72 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +99 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +52 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +71 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +57 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +30 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +75 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +77 -0
 - data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +17 -18
 - data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +19 -29
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +16 -16
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +20 -26
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +59 -0
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +19 -20
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +291 -311
 - data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +63 -58
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +17 -13
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +1 -1
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +173 -141
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +26 -16
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +21 -27
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +219 -211
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +24 -19
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +58 -0
 - data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +16 -18
 - data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +19 -33
 - data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +22 -22
 - data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +18 -22
 - data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +22 -32
 - data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +16 -16
 - data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +46 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +15 -23
 - data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +13 -13
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +52 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +50 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +24 -27
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +17 -19
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +17 -19
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +17 -19
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +17 -23
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +17 -21
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +16 -21
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +18 -24
 - data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +15 -29
 - data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +22 -22
 - data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +16 -26
 - data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +16 -16
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +53 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +45 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +12 -10
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +1 -1
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +94 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +14 -19
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +13 -19
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +38 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +30 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +13 -16
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +57 -0
 - data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +7 -7
 - data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +1 -1
 - data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
 - data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
 - data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
 - data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
 - data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +5 -14
 - data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +39 -0
 - data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +5 -10
 - data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +107 -164
 - data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +82 -82
 - data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +5 -10
 - data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +5 -10
 - data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +5 -16
 - data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +13 -13
 - data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +5 -10
 - data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +5 -26
 - data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +28 -28
 - data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +6 -11
 - data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +67 -0
 - data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +50 -0
 - data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +99 -0
 - data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
 - data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +10 -18
 - data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +10 -10
 - data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +24 -33
 - data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +9 -8
 - data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +1 -1
 - data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +10 -13
 - data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +10 -14
 - data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +8 -57
 - data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +70 -70
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +63 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +45 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +47 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +35 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +30 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +64 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +50 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +40 -0
 - data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +18 -22
 - data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +32 -38
 - data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +20 -26
 - data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +41 -0
 - data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +35 -0
 - data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +23 -27
 - data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +39 -45
 - data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +7 -7
 - data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +25 -29
 - data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +4 -4
 - data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +126 -0
 - data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +80 -0
 - data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +40 -0
 - data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +52 -0
 - data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +40 -0
 - data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +40 -0
 - data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +35 -0
 - data/src/core/ext/xds/certificate_provider_registry.cc +3 -3
 - data/src/core/ext/xds/certificate_provider_store.cc +8 -0
 - data/src/core/ext/xds/certificate_provider_store.h +10 -1
 - data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +4 -4
 - data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
 - data/src/core/ext/xds/upb_utils.h +67 -0
 - data/src/core/ext/xds/xds_api.cc +214 -3608
 - data/src/core/ext/xds/xds_api.h +62 -580
 - data/src/core/ext/xds/xds_bootstrap.cc +241 -167
 - data/src/core/ext/xds/xds_bootstrap.h +43 -15
 - data/src/core/ext/xds/xds_certificate_provider.cc +5 -3
 - data/src/core/ext/xds/xds_certificate_provider.h +10 -2
 - data/src/core/ext/xds/xds_channel_stack_modifier.cc +109 -0
 - data/src/core/ext/xds/xds_channel_stack_modifier.h +53 -0
 - data/src/core/ext/xds/xds_client.cc +872 -899
 - data/src/core/ext/xds/xds_client.h +132 -159
 - data/src/core/ext/xds/xds_client_stats.cc +31 -30
 - data/src/core/ext/xds/xds_client_stats.h +12 -11
 - data/src/core/ext/xds/xds_cluster.cc +453 -0
 - data/src/core/ext/xds/xds_cluster.h +108 -0
 - data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +142 -0
 - data/src/core/ext/xds/xds_cluster_specifier_plugin.h +79 -0
 - data/src/core/ext/xds/xds_common_types.cc +388 -0
 - data/src/core/ext/xds/xds_common_types.h +95 -0
 - data/src/core/ext/xds/xds_endpoint.cc +371 -0
 - data/src/core/ext/xds/xds_endpoint.h +135 -0
 - data/src/core/ext/xds/xds_http_fault_filter.cc +11 -10
 - data/src/core/ext/xds/xds_http_fault_filter.h +6 -5
 - data/src/core/ext/xds/xds_http_filters.cc +12 -5
 - data/src/core/ext/xds/xds_http_filters.h +4 -4
 - data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
 - data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
 - data/src/core/ext/xds/xds_listener.cc +1039 -0
 - data/src/core/ext/xds/xds_listener.h +220 -0
 - data/src/core/{lib/transport/authority_override.h → ext/xds/xds_resource_type.cc} +11 -15
 - data/src/core/ext/xds/xds_resource_type.h +98 -0
 - data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
 - data/src/core/ext/xds/xds_route_config.cc +1122 -0
 - data/src/core/ext/xds/xds_route_config.h +218 -0
 - data/src/core/ext/xds/xds_routing.cc +250 -0
 - data/src/core/ext/xds/xds_routing.h +101 -0
 - data/src/core/ext/xds/xds_server_config_fetcher.cc +1057 -289
 - data/src/core/lib/address_utils/parse_address.cc +26 -8
 - data/src/core/lib/address_utils/parse_address.h +5 -0
 - data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
 - data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
 - data/src/core/lib/avl/avl.h +452 -88
 - data/src/core/lib/backoff/backoff.cc +9 -38
 - data/src/core/lib/backoff/backoff.h +11 -11
 - data/src/core/lib/channel/call_finalization.h +86 -0
 - data/src/core/lib/channel/call_tracer.h +4 -1
 - data/src/core/lib/channel/channel_args.cc +173 -16
 - data/src/core/lib/channel/channel_args.h +214 -1
 - data/src/core/lib/channel/channel_args_preconditioning.cc +42 -0
 - data/src/core/lib/channel/channel_args_preconditioning.h +61 -0
 - data/src/core/lib/channel/channel_stack.cc +15 -6
 - data/src/core/lib/channel/channel_stack.h +39 -6
 - data/src/core/lib/channel/channel_stack_builder.cc +24 -283
 - data/src/core/lib/channel/channel_stack_builder.h +118 -157
 - data/src/core/lib/channel/channel_stack_builder_impl.cc +102 -0
 - data/src/core/lib/channel/channel_stack_builder_impl.h +48 -0
 - data/src/core/lib/channel/channel_trace.cc +8 -10
 - data/src/core/lib/channel/channel_trace.h +2 -1
 - data/src/core/lib/channel/channelz.cc +44 -39
 - data/src/core/lib/channel/channelz.h +29 -29
 - data/src/core/lib/channel/channelz_registry.cc +8 -7
 - data/src/core/lib/channel/channelz_registry.h +1 -1
 - data/src/core/lib/channel/connected_channel.cc +10 -6
 - data/src/core/lib/channel/connected_channel.h +2 -2
 - data/src/core/lib/channel/context.h +11 -0
 - data/src/core/lib/channel/handshaker.cc +3 -2
 - data/src/core/lib/channel/handshaker.h +2 -3
 - data/src/core/lib/channel/handshaker_factory.h +10 -2
 - data/src/core/lib/channel/handshaker_registry.cc +15 -70
 - data/src/core/lib/channel/handshaker_registry.h +29 -12
 - data/src/core/lib/channel/promise_based_filter.cc +1002 -0
 - data/src/core/lib/channel/promise_based_filter.h +437 -0
 - data/src/core/lib/channel/status_util.h +2 -2
 - data/src/core/lib/compression/compression.cc +22 -114
 - data/src/core/lib/compression/compression_internal.cc +139 -207
 - data/src/core/lib/compression/compression_internal.h +64 -69
 - data/src/core/lib/compression/message_compress.cc +13 -13
 - data/src/core/lib/compression/message_compress.h +2 -2
 - data/src/core/lib/config/core_configuration.cc +104 -0
 - data/src/core/lib/config/core_configuration.h +196 -0
 - data/src/core/lib/debug/stats.cc +1 -1
 - data/src/core/lib/debug/stats.h +1 -0
 - data/src/core/lib/debug/stats_data.cc +17 -20
 - data/src/core/lib/debug/stats_data.h +19 -21
 - data/src/core/lib/debug/trace.cc +1 -0
 - data/src/core/lib/debug/trace.h +4 -3
 - data/src/core/lib/event_engine/{endpoint_config.cc → channel_args_endpoint_config.cc} +2 -2
 - data/src/core/lib/event_engine/{endpoint_config_internal.h → channel_args_endpoint_config.h} +3 -3
 - data/src/core/lib/{iomgr/event_engine/iomgr.h → event_engine/default_event_engine_factory.cc} +11 -8
 - data/src/core/lib/event_engine/event_engine.cc +21 -19
 - data/src/core/lib/event_engine/event_engine_factory.h +36 -0
 - data/src/core/lib/event_engine/memory_allocator.cc +66 -0
 - data/src/core/lib/event_engine/resolved_address.cc +39 -0
 - data/src/core/lib/event_engine/sockaddr.cc +3 -3
 - data/src/core/lib/gpr/alloc.cc +4 -3
 - data/src/core/lib/gpr/atm.cc +1 -1
 - data/src/core/lib/gpr/cpu_posix.cc +1 -1
 - data/src/core/lib/gpr/env_linux.cc +1 -2
 - data/src/core/lib/gpr/env_posix.cc +2 -3
 - data/src/core/lib/gpr/log.cc +3 -3
 - data/src/core/lib/gpr/log_android.cc +3 -2
 - data/src/core/lib/gpr/log_linux.cc +7 -4
 - data/src/core/lib/gpr/log_posix.cc +6 -3
 - data/src/core/lib/gpr/string.cc +2 -2
 - data/src/core/lib/gpr/string.h +2 -2
 - data/src/core/lib/gpr/sync.cc +2 -2
 - data/src/core/lib/gpr/sync_abseil.cc +7 -6
 - data/src/core/lib/gpr/sync_posix.cc +4 -3
 - data/src/core/lib/gpr/time.cc +5 -3
 - data/src/core/lib/gpr/time_windows.cc +3 -2
 - data/src/core/lib/gpr/tls.h +126 -40
 - data/src/core/lib/gpr/tmpfile_posix.cc +1 -2
 - data/src/core/lib/gpr/useful.h +97 -32
 - data/src/core/lib/gprpp/atomic_utils.h +47 -0
 - data/src/core/lib/gprpp/bitset.h +207 -0
 - data/src/core/lib/gprpp/capture.h +76 -0
 - data/src/core/lib/gprpp/chunked_vector.h +253 -0
 - data/src/core/lib/{transport/authority_override.cc → gprpp/construct_destruct.h} +16 -17
 - data/src/core/lib/gprpp/cpp_impl_of.h +49 -0
 - data/src/core/lib/gprpp/debug_location.h +2 -0
 - data/src/core/lib/gprpp/dual_ref_counted.h +25 -26
 - data/src/core/lib/gprpp/fork.cc +14 -12
 - data/src/core/lib/gprpp/fork.h +4 -4
 - data/src/core/lib/gprpp/global_config.h +1 -2
 - data/src/core/lib/gprpp/global_config_env.cc +14 -14
 - data/src/core/lib/gprpp/global_config_env.h +2 -2
 - data/src/core/lib/gprpp/global_config_generic.h +2 -2
 - data/src/core/lib/gprpp/manual_constructor.h +10 -8
 - data/src/core/lib/gprpp/match.h +73 -0
 - data/src/core/lib/gprpp/memory.h +9 -3
 - data/src/core/lib/gprpp/mpscq.cc +7 -7
 - data/src/core/lib/gprpp/mpscq.h +6 -5
 - data/src/core/lib/gprpp/orphanable.h +4 -4
 - data/src/core/lib/gprpp/overload.h +59 -0
 - data/src/core/lib/gprpp/ref_counted.h +21 -19
 - data/src/core/lib/gprpp/ref_counted_ptr.h +2 -4
 - data/src/core/lib/gprpp/single_set_ptr.h +87 -0
 - data/src/core/lib/gprpp/status_helper.cc +65 -37
 - data/src/core/lib/gprpp/status_helper.h +14 -16
 - data/src/core/lib/gprpp/sync.h +3 -1
 - data/src/core/lib/gprpp/table.h +434 -0
 - data/src/core/lib/gprpp/thd_posix.cc +5 -5
 - data/src/core/lib/gprpp/thd_windows.cc +4 -11
 - data/src/core/lib/gprpp/time.cc +198 -0
 - data/src/core/lib/gprpp/time.h +292 -0
 - data/src/core/lib/gprpp/time_util.cc +2 -2
 - data/src/core/lib/gprpp/time_util.h +2 -2
 - data/src/core/lib/http/format_request.cc +29 -25
 - data/src/core/lib/http/format_request.h +8 -6
 - data/src/core/lib/http/httpcli.cc +298 -208
 - data/src/core/lib/http/httpcli.h +183 -85
 - data/src/core/lib/http/httpcli_security_connector.cc +67 -81
 - data/src/core/lib/http/httpcli_ssl_credentials.h +37 -0
 - data/src/core/lib/http/parser.cc +82 -11
 - data/src/core/lib/http/parser.h +16 -2
 - data/src/core/lib/iomgr/buffer_list.cc +11 -10
 - data/src/core/lib/iomgr/buffer_list.h +19 -20
 - data/src/core/lib/iomgr/call_combiner.cc +45 -16
 - data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
 - data/src/core/lib/iomgr/closure.h +29 -9
 - data/src/core/lib/iomgr/combiner.cc +34 -26
 - data/src/core/lib/iomgr/combiner.h +1 -0
 - data/src/core/lib/iomgr/dualstack_socket_posix.cc +1 -0
 - data/src/core/lib/iomgr/endpoint.cc +0 -4
 - data/src/core/lib/iomgr/endpoint.h +1 -4
 - data/src/core/lib/iomgr/endpoint_cfstream.cc +15 -42
 - data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
 - data/src/core/lib/iomgr/endpoint_pair.h +1 -0
 - data/src/core/lib/iomgr/endpoint_pair_event_engine.cc +1 -2
 - data/src/core/lib/iomgr/endpoint_pair_posix.cc +11 -9
 - data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -6
 - data/src/core/lib/iomgr/error.cc +123 -59
 - data/src/core/lib/iomgr/error.h +73 -20
 - data/src/core/lib/iomgr/error_cfstream.cc +7 -2
 - data/src/core/lib/iomgr/error_internal.h +1 -0
 - data/src/core/lib/iomgr/ev_apple.cc +6 -5
 - data/src/core/lib/iomgr/ev_epoll1_linux.cc +25 -31
 - data/src/core/lib/iomgr/ev_poll_posix.cc +49 -52
 - data/src/core/lib/iomgr/ev_posix.cc +10 -12
 - data/src/core/lib/iomgr/ev_posix.h +1 -1
 - data/src/core/lib/iomgr/event_engine/closure.cc +41 -18
 - data/src/core/lib/iomgr/event_engine/closure.h +10 -1
 - data/src/core/lib/iomgr/event_engine/endpoint.cc +7 -27
 - data/src/core/lib/iomgr/event_engine/endpoint.h +1 -2
 - data/src/core/lib/iomgr/event_engine/iomgr.cc +10 -30
 - data/src/core/lib/iomgr/event_engine/pollset.cc +6 -6
 - data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
 - data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
 - data/src/core/lib/iomgr/event_engine/resolver.cc +70 -47
 - data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
 - data/src/core/lib/iomgr/event_engine/tcp.cc +70 -37
 - data/src/core/lib/iomgr/event_engine/timer.cc +13 -8
 - data/src/core/lib/iomgr/exec_ctx.cc +28 -109
 - data/src/core/lib/iomgr/exec_ctx.h +28 -52
 - data/src/core/lib/iomgr/executor/mpmcqueue.cc +15 -16
 - data/src/core/lib/iomgr/executor/mpmcqueue.h +7 -11
 - data/src/core/lib/iomgr/executor/threadpool.cc +2 -2
 - data/src/core/lib/iomgr/executor/threadpool.h +2 -1
 - data/src/core/lib/iomgr/executor.cc +30 -39
 - data/src/core/lib/iomgr/executor.h +1 -1
 - data/src/core/lib/iomgr/fork_posix.cc +2 -1
 - data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
 - data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
 - data/src/core/lib/iomgr/internal_errqueue.cc +3 -2
 - data/src/core/lib/iomgr/iocp_windows.cc +10 -9
 - data/src/core/lib/iomgr/iocp_windows.h +1 -1
 - data/src/core/lib/iomgr/iomgr.cc +3 -1
 - data/src/core/lib/iomgr/iomgr.h +2 -2
 - data/src/core/lib/iomgr/iomgr_internal.cc +6 -10
 - data/src/core/lib/iomgr/iomgr_internal.h +3 -2
 - data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
 - data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
 - data/src/core/lib/iomgr/iomgr_windows.cc +3 -4
 - data/src/core/lib/iomgr/load_file.cc +2 -2
 - data/src/core/lib/iomgr/lockfree_event.cc +18 -0
 - data/src/core/lib/iomgr/polling_entity.cc +2 -2
 - data/src/core/lib/iomgr/polling_entity.h +6 -0
 - data/src/core/lib/iomgr/pollset.cc +1 -1
 - data/src/core/lib/iomgr/pollset.h +4 -4
 - data/src/core/lib/iomgr/pollset_set_windows.cc +1 -0
 - data/src/core/lib/iomgr/pollset_windows.cc +2 -2
 - data/src/core/lib/iomgr/port.h +6 -16
 - data/src/core/lib/iomgr/python_util.h +1 -0
 - data/src/core/lib/iomgr/resolve_address.cc +7 -25
 - data/src/core/lib/iomgr/resolve_address.h +47 -48
 - data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
 - data/src/core/lib/iomgr/resolve_address_posix.cc +90 -78
 - data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
 - data/src/core/lib/iomgr/resolve_address_windows.cc +99 -82
 - data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
 - data/src/core/lib/iomgr/resolved_address.h +39 -0
 - data/src/core/lib/iomgr/sockaddr.h +1 -1
 - data/src/core/lib/iomgr/{socket_utils_uv.cc → sockaddr_utils_posix.cc} +21 -8
 - data/src/core/lib/iomgr/socket_factory_posix.cc +5 -5
 - data/src/core/lib/iomgr/socket_factory_posix.h +1 -0
 - data/src/core/lib/iomgr/socket_mutator.cc +2 -2
 - data/src/core/lib/iomgr/socket_mutator.h +2 -2
 - data/src/core/lib/iomgr/socket_utils_common_posix.cc +4 -22
 - data/src/core/lib/iomgr/socket_utils_linux.cc +4 -4
 - data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
 - data/src/core/lib/iomgr/socket_utils_posix.h +2 -2
 - data/src/core/lib/iomgr/socket_utils_windows.cc +2 -2
 - data/src/core/lib/iomgr/tcp_client.cc +1 -1
 - data/src/core/lib/iomgr/tcp_client.h +5 -2
 - data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -24
 - data/src/core/lib/iomgr/tcp_client_posix.cc +17 -27
 - data/src/core/lib/iomgr/tcp_client_posix.h +4 -2
 - data/src/core/lib/iomgr/tcp_client_windows.cc +8 -10
 - data/src/core/lib/iomgr/tcp_posix.cc +143 -120
 - data/src/core/lib/iomgr/tcp_posix.h +9 -12
 - data/src/core/lib/iomgr/tcp_server.h +4 -3
 - data/src/core/lib/iomgr/tcp_server_posix.cc +40 -29
 - data/src/core/lib/iomgr/tcp_server_utils_posix.h +21 -17
 - data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +2 -2
 - data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -4
 - data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
 - data/src/core/lib/iomgr/tcp_server_windows.cc +6 -10
 - data/src/core/lib/iomgr/tcp_windows.cc +22 -39
 - data/src/core/lib/iomgr/tcp_windows.h +1 -1
 - data/src/core/lib/iomgr/timer.cc +3 -2
 - data/src/core/lib/iomgr/timer.h +11 -7
 - data/src/core/lib/iomgr/timer_generic.cc +113 -124
 - data/src/core/lib/iomgr/timer_generic.h +1 -0
 - data/src/core/lib/iomgr/timer_heap.cc +2 -3
 - data/src/core/lib/iomgr/timer_manager.cc +15 -14
 - data/src/core/lib/iomgr/unix_sockets_posix.cc +25 -39
 - data/src/core/lib/iomgr/unix_sockets_posix.h +6 -10
 - data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
 - data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +1 -0
 - data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -3
 - data/src/core/lib/iomgr/wakeup_fd_posix.cc +1 -0
 - data/src/core/lib/iomgr/work_serializer.cc +120 -44
 - data/src/core/lib/iomgr/work_serializer.h +17 -5
 - data/src/core/lib/json/json_reader.cc +92 -52
 - data/src/core/lib/json/json_util.cc +71 -3
 - data/src/core/lib/json/json_util.h +67 -117
 - data/src/core/lib/json/json_writer.cc +0 -3
 - data/src/core/lib/matchers/matchers.cc +1 -1
 - data/src/core/lib/matchers/matchers.h +0 -1
 - data/src/core/lib/profiling/basic_timers.cc +8 -6
 - data/src/core/lib/profiling/stap_timers.cc +2 -2
 - data/src/core/lib/promise/activity.cc +121 -0
 - data/src/core/lib/promise/activity.h +540 -0
 - data/src/core/lib/promise/arena_promise.h +188 -0
 - data/src/core/lib/promise/call_push_pull.h +144 -0
 - data/src/core/lib/promise/context.h +86 -0
 - data/src/core/lib/promise/detail/basic_seq.h +496 -0
 - data/src/core/lib/promise/detail/promise_factory.h +189 -0
 - data/src/core/lib/promise/detail/promise_like.h +85 -0
 - data/src/core/lib/promise/detail/status.h +50 -0
 - data/src/core/lib/promise/detail/switch.h +1455 -0
 - data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
 - data/src/core/lib/promise/intra_activity_waiter.h +49 -0
 - data/src/core/lib/promise/latch.h +104 -0
 - data/src/core/lib/promise/loop.h +134 -0
 - data/src/core/lib/promise/map.h +88 -0
 - data/src/core/lib/promise/poll.h +66 -0
 - data/src/core/lib/promise/promise.h +95 -0
 - data/src/core/lib/promise/race.h +84 -0
 - data/src/core/lib/promise/seq.h +89 -0
 - data/src/core/lib/promise/sleep.cc +74 -0
 - data/src/core/lib/promise/sleep.h +66 -0
 - data/src/core/lib/promise/try_seq.h +157 -0
 - data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
 - data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
 - data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +32 -29
 - data/src/core/lib/resolver/resolver_registry.cc +156 -0
 - data/src/core/lib/resolver/resolver_registry.h +113 -0
 - data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
 - data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +5 -5
 - data/src/core/lib/resource_quota/api.cc +83 -0
 - data/src/core/lib/resource_quota/api.h +40 -0
 - data/src/core/lib/{gprpp → resource_quota}/arena.cc +18 -14
 - data/src/core/lib/{gprpp → resource_quota}/arena.h +37 -16
 - data/src/core/lib/resource_quota/memory_quota.cc +478 -0
 - data/src/core/lib/resource_quota/memory_quota.h +457 -0
 - data/src/core/lib/resource_quota/resource_quota.cc +33 -0
 - data/src/core/lib/resource_quota/resource_quota.h +66 -0
 - data/src/core/lib/resource_quota/thread_quota.cc +43 -0
 - data/src/core/lib/resource_quota/thread_quota.h +57 -0
 - data/src/core/lib/resource_quota/trace.cc +19 -0
 - data/src/core/{ext/filters/max_age/max_age_filter.h → lib/resource_quota/trace.h} +6 -8
 - data/src/core/lib/security/authorization/authorization_policy_provider.h +12 -4
 - data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +1 -1
 - data/src/core/lib/security/authorization/evaluate_args.cc +39 -36
 - data/src/core/lib/security/authorization/evaluate_args.h +3 -2
 - data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
 - data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
 - data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +106 -0
 - data/src/core/lib/security/authorization/grpc_server_authz_filter.h +50 -0
 - data/src/core/lib/security/authorization/matchers.cc +227 -0
 - data/src/core/lib/security/authorization/matchers.h +211 -0
 - data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
 - data/src/core/lib/security/authorization/rbac_policy.h +171 -0
 - data/src/core/lib/security/context/security_context.cc +15 -10
 - data/src/core/lib/security/context/security_context.h +9 -2
 - data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -5
 - data/src/core/lib/security/credentials/alts/alts_credentials.h +10 -0
 - data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +2 -2
 - data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
 - data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +2 -2
 - data/src/core/lib/security/credentials/call_creds_util.cc +87 -0
 - data/src/core/lib/security/credentials/call_creds_util.h +42 -0
 - data/src/core/lib/security/credentials/channel_creds_registry.h +97 -0
 - data/src/core/lib/security/credentials/channel_creds_registry_init.cc +70 -0
 - data/src/core/lib/security/credentials/composite/composite_credentials.cc +28 -86
 - data/src/core/lib/security/credentials/composite/composite_credentials.h +23 -10
 - data/src/core/lib/security/credentials/credentials.cc +11 -10
 - data/src/core/lib/security/credentials/credentials.h +81 -82
 - data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +61 -59
 - data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +2 -2
 - data/src/core/lib/security/credentials/external/aws_request_signer.cc +3 -3
 - data/src/core/lib/security/credentials/external/external_account_credentials.cc +112 -68
 - data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -9
 - data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -1
 - data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +35 -18
 - data/src/core/lib/security/credentials/external/url_external_account_credentials.h +1 -0
 - data/src/core/lib/security/credentials/fake/fake_credentials.cc +23 -27
 - data/src/core/lib/security/credentials/fake/fake_credentials.h +22 -21
 - data/src/core/lib/security/credentials/google_default/credentials_generic.cc +1 -2
 - data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +77 -20
 - data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -3
 - data/src/core/lib/security/credentials/iam/iam_credentials.cc +23 -29
 - data/src/core/lib/security/credentials/iam/iam_credentials.h +15 -9
 - data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +25 -26
 - data/src/core/lib/security/credentials/insecure/insecure_credentials.h +57 -0
 - data/src/core/lib/security/credentials/jwt/json_token.cc +5 -7
 - data/src/core/lib/security/credentials/jwt/json_token.h +2 -1
 - data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +56 -51
 - data/src/core/lib/security/credentials/jwt/jwt_credentials.h +27 -15
 - data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +59 -54
 - data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -4
 - data/src/core/lib/security/credentials/local/local_credentials.cc +6 -6
 - data/src/core/lib/security/credentials/local/local_credentials.h +10 -0
 - data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +160 -181
 - data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +61 -33
 - data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +98 -156
 - data/src/core/lib/security/credentials/plugin/plugin_credentials.h +56 -27
 - data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +11 -18
 - data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -4
 - data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -2
 - data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +10 -6
 - data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +13 -13
 - data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +62 -12
 - data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +209 -0
 - data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +145 -0
 - data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +33 -87
 - data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +75 -151
 - data/src/core/lib/security/credentials/tls/tls_credentials.cc +30 -16
 - data/src/core/lib/security/credentials/tls/tls_credentials.h +6 -0
 - data/src/core/lib/security/credentials/xds/xds_credentials.cc +51 -58
 - data/src/core/lib/security/credentials/xds/xds_credentials.h +37 -6
 - data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +11 -17
 - data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
 - data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +13 -24
 - data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -2
 - data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -18
 - data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +11 -16
 - data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +1 -0
 - data/src/core/lib/security/security_connector/load_system_roots_linux.cc +4 -5
 - data/src/core/lib/security/security_connector/local/local_security_connector.cc +14 -19
 - data/src/core/lib/security/security_connector/security_connector.cc +8 -15
 - data/src/core/lib/security/security_connector/security_connector.h +26 -22
 - data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +14 -20
 - data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -2
 - data/src/core/lib/security/security_connector/ssl_utils.cc +41 -36
 - data/src/core/lib/security/security_connector/ssl_utils.h +14 -18
 - data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +366 -211
 - data/src/core/lib/security/security_connector/tls/tls_security_connector.h +69 -48
 - data/src/core/lib/security/transport/auth_filters.h +39 -5
 - data/src/core/lib/security/transport/client_auth_filter.cc +98 -363
 - data/src/core/lib/security/transport/secure_endpoint.cc +202 -143
 - data/src/core/lib/security/transport/secure_endpoint.h +2 -1
 - data/src/core/lib/security/transport/security_handshaker.cc +95 -54
 - data/src/core/lib/security/transport/security_handshaker.h +2 -1
 - data/src/core/lib/security/transport/server_auth_filter.cc +41 -37
 - data/src/core/lib/security/transport/tsi_error.cc +3 -5
 - data/src/core/lib/security/util/json_util.cc +6 -8
 - data/src/core/lib/service_config/service_config.h +82 -0
 - data/src/core/lib/service_config/service_config_call_data.h +72 -0
 - data/src/core/{ext/filters/client_channel/service_config.cc → lib/service_config/service_config_impl.cc} +20 -17
 - data/src/core/{ext/filters/client_channel/service_config.h → lib/service_config/service_config_impl.h} +16 -18
 - data/src/core/{ext/filters/client_channel → lib/service_config}/service_config_parser.cc +31 -27
 - data/src/core/{ext/filters/client_channel → lib/service_config}/service_config_parser.h +39 -28
 - data/src/core/lib/slice/percent_encoding.cc +84 -97
 - data/src/core/lib/slice/percent_encoding.h +23 -28
 - data/src/core/lib/slice/slice.cc +80 -200
 - data/src/core/lib/slice/slice.h +384 -0
 - data/src/core/lib/{iomgr/is_epollexclusive_available.h → slice/slice_api.cc} +15 -12
 - data/src/core/lib/slice/slice_buffer.cc +10 -7
 - data/src/core/lib/slice/slice_internal.h +15 -277
 - data/src/core/lib/slice/slice_refcount.cc +35 -0
 - data/src/core/lib/slice/slice_refcount.h +46 -0
 - data/src/core/lib/slice/slice_refcount_base.h +61 -0
 - data/src/core/lib/slice/slice_split.cc +100 -0
 - data/src/core/lib/slice/slice_split.h +40 -0
 - data/src/core/lib/slice/slice_string_helpers.cc +0 -83
 - data/src/core/lib/slice/slice_string_helpers.h +0 -11
 - data/src/core/lib/surface/api_trace.cc +2 -1
 - data/src/core/lib/surface/api_trace.h +1 -0
 - data/src/core/lib/surface/builtins.cc +49 -0
 - data/src/core/lib/surface/builtins.h +26 -0
 - data/src/core/lib/surface/byte_buffer_reader.cc +1 -1
 - data/src/core/lib/surface/call.cc +1142 -1247
 - data/src/core/lib/surface/call.h +8 -28
 - data/src/core/lib/surface/call_details.cc +2 -2
 - data/src/core/lib/surface/call_log_batch.cc +2 -2
 - data/src/core/lib/surface/channel.cc +72 -103
 - data/src/core/lib/surface/channel.h +15 -23
 - data/src/core/lib/surface/channel_init.cc +22 -76
 - data/src/core/lib/surface/channel_init.h +44 -40
 - data/src/core/lib/surface/channel_ping.cc +1 -2
 - data/src/core/lib/surface/channel_stack_type.cc +2 -1
 - data/src/core/lib/surface/completion_queue.cc +70 -78
 - data/src/core/lib/surface/completion_queue_factory.cc +2 -1
 - data/src/core/lib/surface/completion_queue_factory.h +1 -0
 - data/src/core/lib/surface/event_string.cc +1 -0
 - data/src/core/lib/surface/init.cc +81 -57
 - data/src/core/lib/surface/init.h +0 -3
 - data/src/core/lib/surface/lame_client.cc +47 -32
 - data/src/core/lib/surface/lame_client.h +1 -1
 - data/src/core/lib/surface/metadata_array.cc +2 -2
 - data/src/core/lib/surface/server.cc +71 -118
 - data/src/core/lib/surface/server.h +40 -37
 - data/src/core/lib/surface/validate_metadata.cc +49 -18
 - data/src/core/lib/surface/version.cc +2 -2
 - data/src/core/lib/transport/bdp_estimator.cc +11 -12
 - data/src/core/lib/transport/bdp_estimator.h +2 -2
 - data/src/core/lib/transport/byte_stream.cc +6 -0
 - data/src/core/lib/transport/byte_stream.h +1 -0
 - data/src/core/lib/transport/connectivity_state.cc +8 -5
 - data/src/core/lib/transport/connectivity_state.h +2 -2
 - data/src/core/lib/transport/error_utils.cc +48 -20
 - data/src/core/lib/transport/error_utils.h +3 -2
 - data/src/core/lib/transport/metadata_batch.h +1352 -171
 - data/src/core/lib/transport/parsed_metadata.cc +37 -0
 - data/src/core/lib/transport/parsed_metadata.h +401 -0
 - data/src/core/lib/transport/pid_controller.cc +4 -4
 - data/src/core/lib/transport/status_conversion.cc +2 -2
 - data/src/core/lib/transport/status_conversion.h +1 -1
 - data/src/core/lib/transport/timeout_encoding.cc +204 -67
 - data/src/core/lib/transport/timeout_encoding.h +40 -10
 - data/src/core/lib/transport/transport.cc +11 -32
 - data/src/core/lib/transport/transport.h +103 -4
 - data/src/core/lib/transport/transport_impl.h +14 -0
 - data/src/core/lib/transport/transport_op_string.cc +7 -29
 - data/src/core/lib/uri/uri_parser.cc +237 -63
 - data/src/core/lib/uri/uri_parser.h +39 -23
 - data/src/core/plugin_registry/grpc_plugin_registry.cc +69 -102
 - data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +85 -0
 - data/src/core/tsi/alts/crypt/aes_gcm.cc +6 -3
 - data/src/core/tsi/alts/crypt/gsec.h +2 -3
 - data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -12
 - data/src/core/tsi/alts/frame_protector/frame_handler.cc +10 -11
 - data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +31 -27
 - data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +2 -3
 - data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +9 -1
 - data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +33 -15
 - data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +2 -2
 - data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -1
 - data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -2
 - data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
 - data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +2 -2
 - data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +1 -1
 - data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +2 -2
 - data/src/core/tsi/fake_transport_security.cc +15 -7
 - data/src/core/tsi/local_transport_security.cc +42 -87
 - data/src/core/tsi/local_transport_security.h +1 -4
 - data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +141 -0
 - data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +81 -0
 - data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
 - data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +20 -53
 - data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +6 -7
 - data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -2
 - data/src/core/tsi/ssl_transport_security.cc +229 -62
 - data/src/core/tsi/ssl_transport_security.h +50 -9
 - data/src/core/tsi/transport_security.cc +15 -3
 - data/src/core/tsi/transport_security.h +16 -1
 - data/src/core/tsi/transport_security_grpc.h +1 -0
 - data/src/core/tsi/transport_security_interface.h +28 -0
 - data/src/ruby/ext/grpc/extconf.rb +21 -11
 - data/src/ruby/ext/grpc/rb_byte_buffer.c +2 -1
 - data/src/ruby/ext/grpc/rb_call.c +5 -5
 - data/src/ruby/ext/grpc/rb_call_credentials.c +5 -5
 - data/src/ruby/ext/grpc/rb_channel.c +15 -10
 - data/src/ruby/ext/grpc/rb_channel_args.c +2 -2
 - data/src/ruby/ext/grpc/rb_channel_credentials.c +4 -4
 - data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -0
 - data/src/ruby/ext/grpc/rb_completion_queue.c +3 -2
 - data/src/ruby/ext/grpc/rb_compression_options.c +5 -4
 - data/src/ruby/ext/grpc/rb_event_thread.c +4 -4
 - data/src/ruby/ext/grpc/rb_grpc.c +5 -4
 - data/src/ruby/ext/grpc/rb_grpc.h +1 -0
 - data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +30 -34
 - data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +45 -51
 - data/src/ruby/ext/grpc/rb_server.c +13 -9
 - data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
 - data/src/ruby/ext/grpc/rb_server_credentials.h +1 -0
 - data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +8 -5
 - data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +3 -1
 - data/src/ruby/ext/grpc/rb_xds_server_credentials.c +6 -5
 - data/src/ruby/ext/grpc/rb_xds_server_credentials.h +3 -1
 - data/src/ruby/lib/grpc/generic/active_call.rb +7 -1
 - data/src/ruby/lib/grpc/grpc.rb +1 -1
 - data/src/ruby/lib/grpc/version.rb +1 -1
 - data/src/ruby/pb/generate_proto_ruby.sh +1 -0
 - data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -0
 - data/src/ruby/pb/test/client.rb +769 -0
 - data/src/ruby/pb/test/server.rb +252 -0
 - data/src/ruby/pb/test/xds_client.rb +415 -0
 - data/src/ruby/spec/client_server_spec.rb +1 -1
 - data/third_party/abseil-cpp/absl/algorithm/container.h +101 -91
 - data/third_party/abseil-cpp/absl/base/attributes.h +64 -31
 - data/third_party/abseil-cpp/absl/base/config.h +67 -37
 - data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +1 -26
 - data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
 - data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -1
 - data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +2 -0
 - data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +69 -0
 - data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +4 -4
 - data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +15 -10
 - data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +16 -0
 - data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +4 -4
 - data/third_party/abseil-cpp/absl/base/options.h +1 -1
 - data/third_party/abseil-cpp/absl/container/fixed_array.h +0 -5
 - data/third_party/abseil-cpp/absl/container/inlined_vector.h +105 -97
 - data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +17 -15
 - data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +18 -102
 - data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +37 -78
 - data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +388 -423
 - data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +3 -2
 - data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -8
 - data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +251 -120
 - data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +11 -1
 - data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +12 -11
 - data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +6 -2
 - data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +12 -5
 - data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
 - data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
 - data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +25 -7
 - data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +8 -2
 - data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +21 -3
 - data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +2 -0
 - data/third_party/abseil-cpp/absl/debugging/symbolize.cc +2 -0
 - data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +14 -0
 - data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
 - data/third_party/abseil-cpp/absl/functional/function_ref.h +4 -1
 - data/third_party/abseil-cpp/absl/hash/hash.h +22 -0
 - data/third_party/abseil-cpp/absl/hash/internal/hash.cc +15 -16
 - data/third_party/abseil-cpp/absl/hash/internal/hash.h +88 -37
 - data/third_party/abseil-cpp/absl/hash/internal/{wyhash.cc → low_level_hash.cc} +23 -11
 - data/third_party/abseil-cpp/absl/hash/internal/{wyhash.h → low_level_hash.h} +14 -12
 - data/third_party/abseil-cpp/absl/memory/memory.h +1 -1
 - data/third_party/abseil-cpp/absl/meta/type_traits.h +32 -2
 - data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -10
 - data/third_party/abseil-cpp/absl/numeric/int128.h +146 -73
 - data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
 - data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
 - data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.cc +4 -4
 - data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.h +6 -6
 - data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
 - data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
 - data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
 - data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
 - data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
 - data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
 - data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
 - data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
 - data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
 - data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
 - data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
 - data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
 - data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
 - data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
 - data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
 - data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
 - data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
 - data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
 - data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
 - data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
 - data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
 - data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
 - data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
 - data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
 - data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
 - data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
 - data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
 - data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
 - data/third_party/abseil-cpp/absl/random/random.h +189 -0
 - data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
 - data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
 - data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
 - data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
 - data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
 - data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
 - data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
 - data/third_party/abseil-cpp/absl/status/internal/status_internal.h +5 -5
 - data/third_party/abseil-cpp/absl/status/status.cc +9 -17
 - data/third_party/abseil-cpp/absl/status/status.h +19 -15
 - data/third_party/abseil-cpp/absl/status/statusor.cc +34 -2
 - data/third_party/abseil-cpp/absl/status/statusor.h +31 -21
 - data/third_party/abseil-cpp/absl/strings/charconv.cc +3 -3
 - data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
 - data/third_party/abseil-cpp/absl/strings/cord.cc +453 -359
 - data/third_party/abseil-cpp/absl/strings/cord.h +197 -70
 - data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +1 -1
 - data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +6 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +140 -63
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +7 -7
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +55 -181
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +42 -24
 - data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +4 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
 - data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
 - data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -0
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -4
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +1 -1
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +36 -18
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +62 -73
 - data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +24 -16
 - data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -35
 - data/third_party/abseil-cpp/absl/strings/numbers.cc +1 -1
 - data/third_party/abseil-cpp/absl/strings/numbers.h +34 -0
 - data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
 - data/third_party/abseil-cpp/absl/strings/str_format.h +1 -2
 - data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
 - data/third_party/abseil-cpp/absl/strings/string_view.h +120 -39
 - data/third_party/abseil-cpp/absl/strings/substitute.cc +2 -1
 - data/third_party/abseil-cpp/absl/strings/substitute.h +99 -74
 - data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +25 -15
 - data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +5 -3
 - data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -1
 - data/third_party/abseil-cpp/absl/synchronization/mutex.h +3 -3
 - data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -3
 - data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +93 -20
 - data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
 - data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
 - data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +83 -21
 - data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
 - data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +1 -1
 - data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -3
 - data/third_party/abseil-cpp/absl/time/time.h +67 -36
 - data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
 - data/third_party/abseil-cpp/absl/types/bad_variant_access.h +2 -2
 - data/third_party/abseil-cpp/absl/types/span.h +3 -3
 - data/third_party/address_sorting/address_sorting_posix.c +1 -0
 - data/third_party/boringssl-with-bazel/err_data.c +685 -673
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +67 -54
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +21 -22
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -2
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +6 -1
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +16 -23
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +55 -37
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +19 -29
 - data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/a_strex.c +269 -272
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +106 -153
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +4 -4
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +1 -40
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +59 -47
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +24 -28
 - data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/charmap.h +0 -0
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +5 -0
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/{asn1_locl.h → internal.h} +86 -1
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +57 -281
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +291 -199
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +9 -9
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +10 -14
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -6
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +2 -1
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +24 -8
 - data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +1 -7
 - data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -5
 - data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -4
 - data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +1 -7
 - data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -6
 - data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -17
 - data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +4 -6
 - data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +3 -1
 - data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +9 -0
 - data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +8 -0
 - data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +38 -47
 - data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +45 -65
 - data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +14 -3
 - data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +6 -3
 - data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
 - data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +2 -2
 - data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +32 -34
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +26 -9
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +3 -2
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +5 -2
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +5 -9
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +10 -0
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +10 -11
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +1 -3
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +2 -0
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +4 -7
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +4 -7
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +5 -9
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +2 -2
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +4 -6
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +24 -9
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +4 -2
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +7 -7
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +35 -35
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +11 -10
 - data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +10 -37
 - data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +36 -2
 - data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +219 -121
 - data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +9 -2
 - data/third_party/boringssl-with-bazel/src/crypto/internal.h +62 -2
 - data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +253 -0
 - data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +28 -23
 - data/third_party/boringssl-with-bazel/src/crypto/mem.c +32 -9
 - data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +7 -3
 - data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -9
 - data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -2
 - data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -8
 - data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -2
 - data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -4
 - data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +16 -7
 - data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +38 -4
 - data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +151 -12
 - data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
 - data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +2 -2
 - data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
 - data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -22
 - data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +4 -0
 - data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +4 -0
 - data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +4 -0
 - data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +6 -6
 - data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +15 -11
 - data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +2 -18
 - data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +2 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +233 -4
 - data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +246 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +15 -4
 - data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +10 -5
 - data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -179
 - data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +4 -2
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +6 -23
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +2 -2
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +1 -5
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +25 -22
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +11 -54
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +1 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +2 -4
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +1 -3
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -16
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +9 -11
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +2 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +23 -21
 - data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +12 -11
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +232 -11
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +2 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +2 -2
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +2 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +5 -4
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +24 -5
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +18 -8
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +3 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +1 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +6 -7
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +4 -2
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +5 -0
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +23 -4
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +112 -55
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +2 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +14 -13
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +1 -1
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +76 -31
 - data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +1504 -561
 - data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +5 -12
 - data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -6
 - data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
 - data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +3 -1
 - data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +3 -3
 - data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +9 -0
 - data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +21 -3
 - data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +8 -5
 - data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -12
 - data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +3 -0
 - data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +27 -41
 - data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
 - data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +8 -10
 - data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +35 -55
 - data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +4 -0
 - data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +26 -1
 - data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +14 -12
 - data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +4 -205
 - data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +12 -3
 - data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +5 -4
 - data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -20
 - data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +24 -18
 - data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
 - data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
 - data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +29 -28
 - data/third_party/boringssl-with-bazel/src/include/openssl/span.h +37 -15
 - data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +110 -26
 - data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +31 -32
 - data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +725 -189
 - data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +16 -695
 - data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +52 -16
 - data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -16
 - data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +310 -359
 - data/third_party/boringssl-with-bazel/src/ssl/{t1_lib.cc → extensions.cc} +110 -159
 - data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +24 -13
 - data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +145 -142
 - data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +106 -99
 - data/third_party/boringssl-with-bazel/src/ssl/internal.h +90 -51
 - data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +1 -2
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +11 -5
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +6 -51
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +121 -65
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +6 -12
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +4 -0
 - data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +28 -23
 - data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +14 -27
 - data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +210 -212
 - data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +30 -41
 - data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +48 -34
 - data/third_party/cares/cares/{ares.h → include/ares.h} +73 -1
 - data/third_party/cares/cares/{ares_dns.h → include/ares_dns.h} +9 -0
 - data/third_party/cares/cares/{ares_rules.h → include/ares_rules.h} +0 -0
 - data/third_party/cares/cares/{ares_version.h → include/ares_version.h} +3 -3
 - data/third_party/cares/cares/{ares__close_sockets.c → src/lib/ares__close_sockets.c} +2 -2
 - data/third_party/cares/cares/{ares__get_hostent.c → src/lib/ares__get_hostent.c} +1 -2
 - data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +260 -0
 - data/third_party/cares/cares/{ares__read_line.c → src/lib/ares__read_line.c} +0 -0
 - data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +264 -0
 - data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +499 -0
 - data/third_party/cares/cares/{ares__timeval.c → src/lib/ares__timeval.c} +0 -0
 - data/third_party/cares/cares/src/lib/ares_android.c +444 -0
 - data/third_party/cares/cares/src/lib/ares_android.h +27 -0
 - data/third_party/cares/cares/{ares_cancel.c → src/lib/ares_cancel.c} +0 -0
 - data/third_party/cares/cares/{ares_create_query.c → src/lib/ares_create_query.c} +8 -17
 - data/third_party/cares/cares/{ares_data.c → src/lib/ares_data.c} +18 -0
 - data/third_party/cares/cares/{ares_data.h → src/lib/ares_data.h} +2 -0
 - data/third_party/cares/cares/{ares_destroy.c → src/lib/ares_destroy.c} +0 -0
 - data/third_party/cares/cares/{ares_expand_name.c → src/lib/ares_expand_name.c} +114 -23
 - data/third_party/cares/cares/{ares_expand_string.c → src/lib/ares_expand_string.c} +2 -5
 - data/third_party/cares/cares/{ares_fds.c → src/lib/ares_fds.c} +0 -0
 - data/third_party/cares/cares/{ares_free_hostent.c → src/lib/ares_free_hostent.c} +6 -4
 - data/third_party/cares/cares/{ares_free_string.c → src/lib/ares_free_string.c} +0 -0
 - data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +59 -0
 - data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +772 -0
 - data/third_party/cares/cares/{ares_getenv.c → src/lib/ares_getenv.c} +0 -2
 - data/third_party/cares/cares/{ares_getenv.h → src/lib/ares_getenv.h} +0 -0
 - data/third_party/cares/cares/{ares_gethostbyaddr.c → src/lib/ares_gethostbyaddr.c} +2 -9
 - data/third_party/cares/cares/{ares_gethostbyname.c → src/lib/ares_gethostbyname.c} +25 -20
 - data/third_party/cares/cares/{ares_getnameinfo.c → src/lib/ares_getnameinfo.c} +4 -10
 - data/third_party/cares/cares/{ares_getsock.c → src/lib/ares_getsock.c} +0 -0
 - data/third_party/cares/cares/{ares_inet_net_pton.h → src/lib/ares_inet_net_pton.h} +0 -0
 - data/third_party/cares/cares/{ares_init.c → src/lib/ares_init.c} +79 -40
 - data/third_party/cares/cares/{ares_iphlpapi.h → src/lib/ares_iphlpapi.h} +0 -0
 - data/third_party/cares/cares/{ares_ipv6.h → src/lib/ares_ipv6.h} +7 -0
 - data/third_party/cares/cares/{ares_library_init.c → src/lib/ares_library_init.c} +7 -2
 - data/third_party/cares/cares/{ares_library_init.h → src/lib/ares_library_init.h} +1 -1
 - data/third_party/cares/cares/{ares_llist.c → src/lib/ares_llist.c} +0 -0
 - data/third_party/cares/cares/{ares_llist.h → src/lib/ares_llist.h} +0 -0
 - data/third_party/cares/cares/{ares_mkquery.c → src/lib/ares_mkquery.c} +0 -0
 - data/third_party/cares/cares/src/lib/ares_nameser.h +482 -0
 - data/third_party/cares/cares/{ares_nowarn.c → src/lib/ares_nowarn.c} +0 -0
 - data/third_party/cares/cares/{ares_nowarn.h → src/lib/ares_nowarn.h} +0 -0
 - data/third_party/cares/cares/{ares_options.c → src/lib/ares_options.c} +0 -0
 - data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +209 -0
 - data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +212 -0
 - data/third_party/cares/cares/src/lib/ares_parse_caa_reply.c +199 -0
 - data/third_party/cares/cares/{ares_parse_mx_reply.c → src/lib/ares_parse_mx_reply.c} +2 -8
 - data/third_party/cares/cares/{ares_parse_naptr_reply.c → src/lib/ares_parse_naptr_reply.c} +2 -13
 - data/third_party/cares/cares/{ares_parse_ns_reply.c → src/lib/ares_parse_ns_reply.c} +5 -11
 - data/third_party/cares/cares/{ares_parse_ptr_reply.c → src/lib/ares_parse_ptr_reply.c} +53 -46
 - data/third_party/cares/cares/src/lib/ares_parse_soa_reply.c +179 -0
 - data/third_party/cares/cares/{ares_parse_srv_reply.c → src/lib/ares_parse_srv_reply.c} +2 -13
 - data/third_party/cares/cares/{ares_parse_txt_reply.c → src/lib/ares_parse_txt_reply.c} +3 -9
 - data/third_party/cares/cares/{ares_platform.c → src/lib/ares_platform.c} +0 -0
 - data/third_party/cares/cares/{ares_platform.h → src/lib/ares_platform.h} +0 -0
 - data/third_party/cares/cares/{ares_private.h → src/lib/ares_private.h} +52 -11
 - data/third_party/cares/cares/{ares_process.c → src/lib/ares_process.c} +127 -52
 - data/third_party/cares/cares/{ares_query.c → src/lib/ares_query.c} +3 -9
 - data/third_party/cares/cares/{ares_search.c → src/lib/ares_search.c} +5 -7
 - data/third_party/cares/cares/{ares_send.c → src/lib/ares_send.c} +2 -8
 - data/third_party/cares/cares/{ares_setup.h → src/lib/ares_setup.h} +4 -1
 - data/third_party/cares/cares/{ares_strcasecmp.c → src/lib/ares_strcasecmp.c} +0 -0
 - data/third_party/cares/cares/{ares_strcasecmp.h → src/lib/ares_strcasecmp.h} +0 -0
 - data/third_party/cares/cares/{ares_strdup.c → src/lib/ares_strdup.c} +0 -0
 - data/third_party/cares/cares/{ares_strdup.h → src/lib/ares_strdup.h} +0 -0
 - data/third_party/cares/cares/{ares_strerror.c → src/lib/ares_strerror.c} +0 -0
 - data/third_party/cares/cares/{ares_strsplit.c → src/lib/ares_strsplit.c} +4 -0
 - data/third_party/cares/cares/{ares_strsplit.h → src/lib/ares_strsplit.h} +0 -0
 - data/third_party/cares/cares/{ares_timeout.c → src/lib/ares_timeout.c} +0 -0
 - data/third_party/cares/cares/{ares_version.c → src/lib/ares_version.c} +0 -0
 - data/third_party/cares/cares/{ares_writev.c → src/lib/ares_writev.c} +0 -0
 - data/third_party/cares/cares/src/lib/ares_writev.h +36 -0
 - data/third_party/cares/cares/{bitncmp.c → src/lib/bitncmp.c} +0 -0
 - data/third_party/cares/cares/{bitncmp.h → src/lib/bitncmp.h} +0 -0
 - data/third_party/cares/cares/src/lib/config-dos.h +115 -0
 - data/third_party/cares/cares/{config-win32.h → src/lib/config-win32.h} +0 -0
 - data/third_party/cares/cares/{inet_net_pton.c → src/lib/inet_net_pton.c} +2 -8
 - data/third_party/cares/cares/{inet_ntop.c → src/lib/inet_ntop.c} +2 -8
 - data/third_party/cares/cares/{setup_once.h → src/lib/setup_once.h} +0 -0
 - data/third_party/cares/cares/{windows_port.c → src/lib/windows_port.c} +0 -0
 - data/third_party/re2/re2/compile.cc +91 -109
 - data/third_party/re2/re2/dfa.cc +27 -39
 - data/third_party/re2/re2/filtered_re2.cc +18 -2
 - data/third_party/re2/re2/filtered_re2.h +10 -5
 - data/third_party/re2/re2/nfa.cc +1 -1
 - data/third_party/re2/re2/parse.cc +42 -23
 - data/third_party/re2/re2/perl_groups.cc +34 -34
 - data/third_party/re2/re2/prefilter.cc +3 -2
 - data/third_party/re2/re2/prog.cc +182 -4
 - data/third_party/re2/re2/prog.h +28 -9
 - data/third_party/re2/re2/re2.cc +87 -118
 - data/third_party/re2/re2/re2.h +156 -141
 - data/third_party/re2/re2/regexp.cc +12 -5
 - data/third_party/re2/re2/regexp.h +8 -2
 - data/third_party/re2/re2/set.cc +31 -9
 - data/third_party/re2/re2/set.h +9 -4
 - data/third_party/re2/re2/simplify.cc +11 -3
 - data/third_party/re2/re2/tostring.cc +1 -1
 - data/third_party/re2/re2/walker-inl.h +1 -1
 - data/third_party/re2/util/mutex.h +2 -2
 - data/third_party/re2/util/pcre.h +3 -3
 - data/third_party/upb/third_party/utf8_range/naive.c +92 -0
 - data/third_party/upb/third_party/utf8_range/range2-neon.c +157 -0
 - data/third_party/upb/third_party/utf8_range/range2-sse.c +170 -0
 - data/third_party/upb/third_party/utf8_range/utf8_range.h +9 -0
 - data/third_party/upb/upb/decode.c +774 -351
 - data/third_party/upb/upb/decode.h +66 -12
 - data/third_party/upb/upb/decode_fast.c +596 -581
 - data/third_party/upb/upb/decode_fast.h +40 -13
 - data/third_party/upb/upb/decode_internal.h +211 -0
 - data/third_party/upb/upb/def.c +2151 -1068
 - data/third_party/upb/upb/def.h +352 -258
 - data/third_party/upb/upb/def.hpp +160 -161
 - data/third_party/upb/upb/encode.c +291 -165
 - data/third_party/upb/upb/encode.h +38 -13
 - data/third_party/upb/upb/json_encode.c +776 -0
 - data/third_party/upb/upb/json_encode.h +62 -0
 - data/third_party/upb/upb/msg.c +274 -102
 - data/third_party/upb/upb/msg.h +83 -582
 - data/third_party/upb/upb/msg_internal.h +831 -0
 - data/third_party/upb/upb/port_def.inc +93 -24
 - data/third_party/upb/upb/port_undef.inc +39 -1
 - data/third_party/upb/upb/reflection.c +312 -240
 - data/third_party/upb/upb/reflection.h +119 -67
 - data/third_party/upb/upb/reflection.hpp +37 -0
 - data/third_party/upb/upb/table.c +406 -197
 - data/third_party/upb/upb/table_internal.h +385 -0
 - data/third_party/upb/upb/text_encode.c +141 -90
 - data/third_party/upb/upb/text_encode.h +31 -5
 - data/third_party/upb/upb/upb.c +164 -66
 - data/third_party/upb/upb/upb.h +182 -146
 - data/third_party/upb/upb/upb.hpp +50 -23
 - data/third_party/upb/upb/upb_internal.h +68 -0
 - data/third_party/xxhash/xxhash.h +607 -352
 - data/third_party/zlib/crc32.c +966 -292
 - data/third_party/zlib/crc32.h +9441 -436
 - data/third_party/zlib/deflate.c +78 -30
 - data/third_party/zlib/deflate.h +12 -15
 - data/third_party/zlib/gzguts.h +3 -2
 - data/third_party/zlib/gzlib.c +5 -3
 - data/third_party/zlib/gzread.c +5 -7
 - data/third_party/zlib/gzwrite.c +25 -13
 - data/third_party/zlib/infback.c +2 -1
 - data/third_party/zlib/inffast.c +14 -14
 - data/third_party/zlib/inflate.c +39 -8
 - data/third_party/zlib/inflate.h +3 -2
 - data/third_party/zlib/inftrees.c +3 -3
 - data/third_party/zlib/trees.c +27 -48
 - data/third_party/zlib/zlib.h +123 -100
 - data/third_party/zlib/zutil.c +2 -2
 - data/third_party/zlib/zutil.h +12 -9
 - metadata +559 -260
 - data/include/grpc/event_engine/slice_allocator.h +0 -66
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +0 -44
 - data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +0 -84
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +0 -179
 - data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +0 -38
 - data/src/core/ext/filters/client_channel/resolver_registry.cc +0 -197
 - data/src/core/ext/filters/client_channel/resolver_registry.h +0 -89
 - data/src/core/ext/filters/client_channel/service_config_call_data.h +0 -126
 - data/src/core/ext/filters/client_idle/client_idle_filter.cc +0 -441
 - data/src/core/ext/filters/max_age/max_age_filter.cc +0 -562
 - data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +0 -211
 - data/src/core/ext/filters/workarounds/workaround_utils.cc +0 -53
 - data/src/core/ext/filters/workarounds/workaround_utils.h +0 -39
 - data/src/core/ext/transport/chttp2/client/authority.cc +0 -42
 - data/src/core/ext/transport/chttp2/client/authority.h +0 -36
 - data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +0 -125
 - data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +0 -91
 - data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +0 -213
 - data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +0 -54
 - data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +0 -77
 - data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +0 -129
 - data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -37
 - data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.cc +0 -66
 - data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.h +0 -74
 - data/src/core/ext/transport/chttp2/transport/hpack_table.cc +0 -243
 - data/src/core/ext/transport/chttp2/transport/hpack_table.h +0 -148
 - data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -66
 - data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +0 -58
 - data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +0 -27
 - data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +0 -56
 - data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +0 -27
 - data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +0 -56
 - data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +0 -27
 - data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +0 -56
 - data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +0 -27
 - data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +0 -56
 - data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +0 -27
 - data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +0 -56
 - data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +0 -58
 - data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +0 -124
 - data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.c +0 -33
 - data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.h +0 -77
 - data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +0 -72
 - data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +0 -35
 - data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +0 -73
 - data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +0 -35
 - data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +0 -72
 - data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +0 -35
 - data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +0 -80
 - data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +0 -35
 - data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +0 -74
 - data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +0 -35
 - data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.c +0 -44
 - data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.h +0 -35
 - data/src/core/lib/avl/avl.cc +0 -306
 - data/src/core/lib/compression/algorithm_metadata.h +0 -61
 - data/src/core/lib/compression/compression_args.cc +0 -135
 - data/src/core/lib/compression/compression_args.h +0 -56
 - data/src/core/lib/compression/stream_compression.cc +0 -80
 - data/src/core/lib/compression/stream_compression.h +0 -116
 - data/src/core/lib/compression/stream_compression_gzip.cc +0 -230
 - data/src/core/lib/compression/stream_compression_gzip.h +0 -28
 - data/src/core/lib/compression/stream_compression_identity.cc +0 -90
 - data/src/core/lib/compression/stream_compression_identity.h +0 -29
 - data/src/core/lib/gpr/tls_gcc.h +0 -52
 - data/src/core/lib/gpr/tls_msvc.h +0 -54
 - data/src/core/lib/gpr/tls_pthread.cc +0 -30
 - data/src/core/lib/gpr/tls_pthread.h +0 -56
 - data/src/core/lib/gpr/tls_stdcpp.h +0 -48
 - data/src/core/lib/gprpp/atomic.h +0 -104
 - data/src/core/lib/iomgr/endpoint_pair_uv.cc +0 -40
 - data/src/core/lib/iomgr/ev_epollex_linux.cc +0 -1661
 - data/src/core/lib/iomgr/ev_epollex_linux.h +0 -30
 - data/src/core/lib/iomgr/iomgr_custom.cc +0 -79
 - data/src/core/lib/iomgr/iomgr_custom.h +0 -49
 - data/src/core/lib/iomgr/iomgr_uv.cc +0 -43
 - data/src/core/lib/iomgr/is_epollexclusive_available.cc +0 -119
 - data/src/core/lib/iomgr/pollset_custom.cc +0 -106
 - data/src/core/lib/iomgr/pollset_custom.h +0 -37
 - data/src/core/lib/iomgr/pollset_set_custom.cc +0 -48
 - data/src/core/lib/iomgr/pollset_set_custom.h +0 -26
 - data/src/core/lib/iomgr/pollset_uv.cc +0 -95
 - data/src/core/lib/iomgr/pollset_uv.h +0 -36
 - data/src/core/lib/iomgr/resolve_address_custom.cc +0 -169
 - data/src/core/lib/iomgr/resolve_address_custom.h +0 -45
 - data/src/core/lib/iomgr/resource_quota.cc +0 -1019
 - data/src/core/lib/iomgr/resource_quota.h +0 -177
 - data/src/core/lib/iomgr/sockaddr_custom.h +0 -54
 - data/src/core/lib/iomgr/sys_epoll_wrapper.h +0 -30
 - data/src/core/lib/iomgr/tcp_client_custom.cc +0 -160
 - data/src/core/lib/iomgr/tcp_custom.cc +0 -389
 - data/src/core/lib/iomgr/tcp_custom.h +0 -85
 - data/src/core/lib/iomgr/tcp_server_custom.cc +0 -484
 - data/src/core/lib/iomgr/tcp_uv.cc +0 -421
 - data/src/core/lib/iomgr/timer_custom.cc +0 -96
 - data/src/core/lib/iomgr/timer_custom.h +0 -43
 - data/src/core/lib/iomgr/timer_uv.cc +0 -66
 - data/src/core/lib/iomgr/udp_server.cc +0 -748
 - data/src/core/lib/iomgr/udp_server.h +0 -103
 - data/src/core/lib/security/credentials/credentials_metadata.cc +0 -62
 - data/src/core/lib/slice/slice_intern.cc +0 -373
 - data/src/core/lib/slice/slice_utils.h +0 -200
 - data/src/core/lib/surface/init_secure.cc +0 -81
 - data/src/core/lib/transport/metadata.cc +0 -693
 - data/src/core/lib/transport/metadata.h +0 -446
 - data/src/core/lib/transport/metadata_batch.cc +0 -430
 - data/src/core/lib/transport/static_metadata.cc +0 -1249
 - data/src/core/lib/transport/static_metadata.h +0 -604
 - data/src/core/lib/transport/status_metadata.cc +0 -62
 - data/src/core/lib/transport/status_metadata.h +0 -48
 - data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
 - data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
 - data/third_party/cares/cares/ares_getopt.c +0 -122
 - data/third_party/cares/cares/ares_getopt.h +0 -53
 - data/third_party/cares/cares/ares_parse_a_reply.c +0 -264
 - data/third_party/cares/cares/ares_parse_aaaa_reply.c +0 -264
 - data/third_party/cares/cares/ares_parse_soa_reply.c +0 -133
 - data/third_party/upb/third_party/wyhash/wyhash.h +0 -145
 - data/third_party/upb/upb/decode.int.h +0 -163
 - data/third_party/upb/upb/table.int.h +0 -475
 - data/third_party/upb/upb/upb.int.h +0 -29
 
| 
         @@ -9,7 +9,7 @@ 
     | 
|
| 
       9 
9 
     | 
    
         
             
            #ifndef ENVOY_CONFIG_BOOTSTRAP_V3_BOOTSTRAP_PROTO_UPB_H_
         
     | 
| 
       10 
10 
     | 
    
         
             
            #define ENVOY_CONFIG_BOOTSTRAP_V3_BOOTSTRAP_PROTO_UPB_H_
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            #include "upb/ 
     | 
| 
      
 12 
     | 
    
         
            +
            #include "upb/msg_internal.h"
         
     | 
| 
       13 
13 
     | 
    
         
             
            #include "upb/decode.h"
         
     | 
| 
       14 
14 
     | 
    
         
             
            #include "upb/decode_fast.h"
         
     | 
| 
       15 
15 
     | 
    
         
             
            #include "upb/encode.h"
         
     | 
| 
         @@ -56,24 +56,24 @@ typedef struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer envoy_config_bo 
     | 
|
| 
       56 
56 
     | 
    
         
             
            typedef struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer;
         
     | 
| 
       57 
57 
     | 
    
         
             
            typedef struct envoy_config_bootstrap_v3_LayeredRuntime envoy_config_bootstrap_v3_LayeredRuntime;
         
     | 
| 
       58 
58 
     | 
    
         
             
            typedef struct envoy_config_bootstrap_v3_CustomInlineHeader envoy_config_bootstrap_v3_CustomInlineHeader;
         
     | 
| 
       59 
     | 
    
         
            -
            extern const  
     | 
| 
       60 
     | 
    
         
            -
            extern const  
     | 
| 
       61 
     | 
    
         
            -
            extern const  
     | 
| 
       62 
     | 
    
         
            -
            extern const  
     | 
| 
       63 
     | 
    
         
            -
            extern const  
     | 
| 
       64 
     | 
    
         
            -
            extern const  
     | 
| 
       65 
     | 
    
         
            -
            extern const  
     | 
| 
       66 
     | 
    
         
            -
            extern const  
     | 
| 
       67 
     | 
    
         
            -
            extern const  
     | 
| 
       68 
     | 
    
         
            -
            extern const  
     | 
| 
       69 
     | 
    
         
            -
            extern const  
     | 
| 
       70 
     | 
    
         
            -
            extern const  
     | 
| 
       71 
     | 
    
         
            -
            extern const  
     | 
| 
       72 
     | 
    
         
            -
            extern const  
     | 
| 
       73 
     | 
    
         
            -
            extern const  
     | 
| 
       74 
     | 
    
         
            -
            extern const  
     | 
| 
       75 
     | 
    
         
            -
            extern const  
     | 
| 
       76 
     | 
    
         
            -
            extern const  
     | 
| 
      
 59 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Bootstrap_msginit;
         
     | 
| 
      
 60 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit;
         
     | 
| 
      
 61 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit;
         
     | 
| 
      
 62 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry_msginit;
         
     | 
| 
      
 63 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Admin_msginit;
         
     | 
| 
      
 64 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_ClusterManager_msginit;
         
     | 
| 
      
 65 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit;
         
     | 
| 
      
 66 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Watchdogs_msginit;
         
     | 
| 
      
 67 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Watchdog_msginit;
         
     | 
| 
      
 68 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit;
         
     | 
| 
      
 69 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_FatalAction_msginit;
         
     | 
| 
      
 70 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_Runtime_msginit;
         
     | 
| 
      
 71 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_RuntimeLayer_msginit;
         
     | 
| 
      
 72 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit;
         
     | 
| 
      
 73 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit;
         
     | 
| 
      
 74 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit;
         
     | 
| 
      
 75 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_LayeredRuntime_msginit;
         
     | 
| 
      
 76 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_bootstrap_v3_CustomInlineHeader_msginit;
         
     | 
| 
       77 
77 
     | 
    
         
             
            struct envoy_config_accesslog_v3_AccessLog;
         
     | 
| 
       78 
78 
     | 
    
         
             
            struct envoy_config_cluster_v3_Cluster;
         
     | 
| 
       79 
79 
     | 
    
         
             
            struct envoy_config_core_v3_Address;
         
     | 
| 
         @@ -95,27 +95,27 @@ struct envoy_type_v3_Percent; 
     | 
|
| 
       95 
95 
     | 
    
         
             
            struct google_protobuf_Duration;
         
     | 
| 
       96 
96 
     | 
    
         
             
            struct google_protobuf_Struct;
         
     | 
| 
       97 
97 
     | 
    
         
             
            struct google_protobuf_UInt64Value;
         
     | 
| 
       98 
     | 
    
         
            -
            extern const  
     | 
| 
       99 
     | 
    
         
            -
            extern const  
     | 
| 
       100 
     | 
    
         
            -
            extern const  
     | 
| 
       101 
     | 
    
         
            -
            extern const  
     | 
| 
       102 
     | 
    
         
            -
            extern const  
     | 
| 
       103 
     | 
    
         
            -
            extern const  
     | 
| 
       104 
     | 
    
         
            -
            extern const  
     | 
| 
       105 
     | 
    
         
            -
            extern const  
     | 
| 
       106 
     | 
    
         
            -
            extern const  
     | 
| 
       107 
     | 
    
         
            -
            extern const  
     | 
| 
       108 
     | 
    
         
            -
            extern const  
     | 
| 
       109 
     | 
    
         
            -
            extern const  
     | 
| 
       110 
     | 
    
         
            -
            extern const  
     | 
| 
       111 
     | 
    
         
            -
            extern const  
     | 
| 
       112 
     | 
    
         
            -
            extern const  
     | 
| 
       113 
     | 
    
         
            -
            extern const  
     | 
| 
       114 
     | 
    
         
            -
            extern const  
     | 
| 
       115 
     | 
    
         
            -
            extern const  
     | 
| 
       116 
     | 
    
         
            -
            extern const  
     | 
| 
       117 
     | 
    
         
            -
            extern const  
     | 
| 
       118 
     | 
    
         
            -
            extern const  
     | 
| 
      
 98 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_accesslog_v3_AccessLog_msginit;
         
     | 
| 
      
 99 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_cluster_v3_Cluster_msginit;
         
     | 
| 
      
 100 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_Address_msginit;
         
     | 
| 
      
 101 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_ApiConfigSource_msginit;
         
     | 
| 
      
 102 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_BindConfig_msginit;
         
     | 
| 
      
 103 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_ConfigSource_msginit;
         
     | 
| 
      
 104 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_DnsResolutionConfig_msginit;
         
     | 
| 
      
 105 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_EventServiceConfig_msginit;
         
     | 
| 
      
 106 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_Node_msginit;
         
     | 
| 
      
 107 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_SocketOption_msginit;
         
     | 
| 
      
 108 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_core_v3_TypedExtensionConfig_msginit;
         
     | 
| 
      
 109 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_listener_v3_Listener_msginit;
         
     | 
| 
      
 110 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_metrics_v3_StatsConfig_msginit;
         
     | 
| 
      
 111 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_metrics_v3_StatsSink_msginit;
         
     | 
| 
      
 112 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_overload_v3_OverloadManager_msginit;
         
     | 
| 
      
 113 
     | 
    
         
            +
            extern const upb_MiniTable envoy_config_trace_v3_Tracing_msginit;
         
     | 
| 
      
 114 
     | 
    
         
            +
            extern const upb_MiniTable envoy_extensions_transport_sockets_tls_v3_Secret_msginit;
         
     | 
| 
      
 115 
     | 
    
         
            +
            extern const upb_MiniTable envoy_type_v3_Percent_msginit;
         
     | 
| 
      
 116 
     | 
    
         
            +
            extern const upb_MiniTable google_protobuf_Duration_msginit;
         
     | 
| 
      
 117 
     | 
    
         
            +
            extern const upb_MiniTable google_protobuf_Struct_msginit;
         
     | 
| 
      
 118 
     | 
    
         
            +
            extern const upb_MiniTable google_protobuf_UInt64Value_msginit;
         
     | 
| 
       119 
119 
     | 
    
         | 
| 
       120 
120 
     | 
    
         
             
            typedef enum {
         
     | 
| 
       121 
121 
     | 
    
         
             
              envoy_config_bootstrap_v3_CustomInlineHeader_REQUEST_HEADER = 0,
         
     | 
| 
         @@ -133,97 +133,318 @@ typedef enum { 
     | 
|
| 
       133 
133 
     | 
    
         
             
            } envoy_config_bootstrap_v3_Watchdog_WatchdogAction_WatchdogEvent;
         
     | 
| 
       134 
134 
     | 
    
         | 
| 
       135 
135 
     | 
    
         | 
| 
      
 136 
     | 
    
         
            +
             
     | 
| 
       136 
137 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Bootstrap */
         
     | 
| 
       137 
138 
     | 
    
         | 
| 
       138 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       139 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Bootstrap 
     | 
| 
      
 139 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap* envoy_config_bootstrap_v3_Bootstrap_new(upb_Arena* arena) {
         
     | 
| 
      
 140 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Bootstrap*)_upb_Message_New(&envoy_config_bootstrap_v3_Bootstrap_msginit, arena);
         
     | 
| 
       140 
141 
     | 
    
         
             
            }
         
     | 
| 
       141 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       142 
     | 
    
         
            -
             
     | 
| 
       143 
     | 
    
         
            -
               
     | 
| 
       144 
     | 
    
         
            -
               
     | 
| 
      
 142 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap* envoy_config_bootstrap_v3_Bootstrap_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 143 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Bootstrap* ret = envoy_config_bootstrap_v3_Bootstrap_new(arena);
         
     | 
| 
      
 144 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 145 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 146 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 147 
     | 
    
         
            +
              }
         
     | 
| 
      
 148 
     | 
    
         
            +
              return ret;
         
     | 
| 
       145 
149 
     | 
    
         
             
            }
         
     | 
| 
       146 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       147 
     | 
    
         
            -
                                        
     | 
| 
       148 
     | 
    
         
            -
             
     | 
| 
       149 
     | 
    
         
            -
               
     | 
| 
       150 
     | 
    
         
            -
             
     | 
| 
      
 150 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap* envoy_config_bootstrap_v3_Bootstrap_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 151 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 152 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 153 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Bootstrap* ret = envoy_config_bootstrap_v3_Bootstrap_new(arena);
         
     | 
| 
      
 154 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 155 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_msginit, extreg, options, arena) !=
         
     | 
| 
      
 156 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 157 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 158 
     | 
    
         
            +
              }
         
     | 
| 
      
 159 
     | 
    
         
            +
              return ret;
         
     | 
| 
       151 
160 
     | 
    
         
             
            }
         
     | 
| 
       152 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       153 
     | 
    
         
            -
              return  
     | 
| 
      
 161 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Bootstrap_serialize(const envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 162 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Bootstrap_msginit, 0, arena, len);
         
     | 
| 
      
 163 
     | 
    
         
            +
            }
         
     | 
| 
      
 164 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Bootstrap_serialize_ex(const envoy_config_bootstrap_v3_Bootstrap* msg, int options,
         
     | 
| 
      
 165 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 166 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Bootstrap_msginit, options, arena, len);
         
     | 
| 
       154 
167 
     | 
    
         
             
            }
         
     | 
| 
       155 
     | 
    
         
            -
             
     | 
| 
       156 
168 
     | 
    
         
             
            typedef enum {
         
     | 
| 
       157 
169 
     | 
    
         
             
              envoy_config_bootstrap_v3_Bootstrap_stats_flush_stats_flush_on_admin = 29,
         
     | 
| 
       158 
170 
     | 
    
         
             
              envoy_config_bootstrap_v3_Bootstrap_stats_flush_NOT_SET = 0
         
     | 
| 
       159 
171 
     | 
    
         
             
            } envoy_config_bootstrap_v3_Bootstrap_stats_flush_oneofcases;
         
     | 
| 
       160 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_stats_flush_oneofcases envoy_config_bootstrap_v3_Bootstrap_stats_flush_case(const envoy_config_bootstrap_v3_Bootstrap* msg) { 
     | 
| 
       161 
     | 
    
         
            -
             
     | 
| 
       162 
     | 
    
         
            -
             
     | 
| 
       163 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       164 
     | 
    
         
            -
             
     | 
| 
       165 
     | 
    
         
            -
             
     | 
| 
       166 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       167 
     | 
    
         
            -
             
     | 
| 
       168 
     | 
    
         
            -
             
     | 
| 
       169 
     | 
    
         
            -
            UPB_INLINE const  
     | 
| 
       170 
     | 
    
         
            -
             
     | 
| 
       171 
     | 
    
         
            -
             
     | 
| 
       172 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       173 
     | 
    
         
            -
             
     | 
| 
       174 
     | 
    
         
            -
             
     | 
| 
       175 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       176 
     | 
    
         
            -
             
     | 
| 
       177 
     | 
    
         
            -
             
     | 
| 
       178 
     | 
    
         
            -
            UPB_INLINE const  
     | 
| 
       179 
     | 
    
         
            -
             
     | 
| 
       180 
     | 
    
         
            -
             
     | 
| 
       181 
     | 
    
         
            -
            UPB_INLINE bool  
     | 
| 
       182 
     | 
    
         
            -
             
     | 
| 
       183 
     | 
    
         
            -
             
     | 
| 
       184 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       185 
     | 
    
         
            -
             
     | 
| 
       186 
     | 
    
         
            -
             
     | 
| 
       187 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       188 
     | 
    
         
            -
             
     | 
| 
       189 
     | 
    
         
            -
             
     | 
| 
       190 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       191 
     | 
    
         
            -
             
     | 
| 
       192 
     | 
    
         
            -
             
     | 
| 
       193 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       194 
     | 
    
         
            -
             
     | 
| 
       195 
     | 
    
         
            -
             
     | 
| 
       196 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       197 
     | 
    
         
            -
             
     | 
| 
       198 
     | 
    
         
            -
             
     | 
| 
       199 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       200 
     | 
    
         
            -
             
     | 
| 
       201 
     | 
    
         
            -
             
     | 
| 
       202 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       203 
     | 
    
         
            -
             
     | 
| 
       204 
     | 
    
         
            -
             
     | 
| 
       205 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       206 
     | 
    
         
            -
             
     | 
| 
       207 
     | 
    
         
            -
             
     | 
| 
       208 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       209 
     | 
    
         
            -
             
     | 
| 
       210 
     | 
    
         
            -
             
     | 
| 
       211 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       212 
     | 
    
         
            -
             
     | 
| 
       213 
     | 
    
         
            -
             
     | 
| 
       214 
     | 
    
         
            -
            UPB_INLINE bool  
     | 
| 
       215 
     | 
    
         
            -
             
     | 
| 
       216 
     | 
    
         
            -
             
     | 
| 
       217 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
      
 172 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_stats_flush_oneofcases envoy_config_bootstrap_v3_Bootstrap_stats_flush_case(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 173 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Bootstrap_stats_flush_oneofcases)*UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t);
         
     | 
| 
      
 174 
     | 
    
         
            +
            }
         
     | 
| 
      
 175 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_node(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 176 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 177 
     | 
    
         
            +
            }
         
     | 
| 
      
 178 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_node(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 179 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 16), const upb_Message*) = NULL;
         
     | 
| 
      
 180 
     | 
    
         
            +
            }
         
     | 
| 
      
 181 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_Node* envoy_config_bootstrap_v3_Bootstrap_node(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 182 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 16), const struct envoy_config_core_v3_Node*);
         
     | 
| 
      
 183 
     | 
    
         
            +
            }
         
     | 
| 
      
 184 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_static_resources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 185 
     | 
    
         
            +
              return _upb_hasbit(msg, 2);
         
     | 
| 
      
 186 
     | 
    
         
            +
            }
         
     | 
| 
      
 187 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_static_resources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 188 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(16, 24), const upb_Message*) = NULL;
         
     | 
| 
      
 189 
     | 
    
         
            +
            }
         
     | 
| 
      
 190 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_config_bootstrap_v3_Bootstrap_static_resources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 191 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(16, 24), const envoy_config_bootstrap_v3_Bootstrap_StaticResources*);
         
     | 
| 
      
 192 
     | 
    
         
            +
            }
         
     | 
| 
      
 193 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_dynamic_resources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 194 
     | 
    
         
            +
              return _upb_hasbit(msg, 3);
         
     | 
| 
      
 195 
     | 
    
         
            +
            }
         
     | 
| 
      
 196 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_dynamic_resources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 197 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 32), const upb_Message*) = NULL;
         
     | 
| 
      
 198 
     | 
    
         
            +
            }
         
     | 
| 
      
 199 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_config_bootstrap_v3_Bootstrap_dynamic_resources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 200 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(20, 32), const envoy_config_bootstrap_v3_Bootstrap_DynamicResources*);
         
     | 
| 
      
 201 
     | 
    
         
            +
            }
         
     | 
| 
      
 202 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_cluster_manager(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 203 
     | 
    
         
            +
              return _upb_hasbit(msg, 4);
         
     | 
| 
      
 204 
     | 
    
         
            +
            }
         
     | 
| 
      
 205 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_cluster_manager(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 206 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(24, 40), const upb_Message*) = NULL;
         
     | 
| 
      
 207 
     | 
    
         
            +
            }
         
     | 
| 
      
 208 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_ClusterManager* envoy_config_bootstrap_v3_Bootstrap_cluster_manager(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 209 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(24, 40), const envoy_config_bootstrap_v3_ClusterManager*);
         
     | 
| 
      
 210 
     | 
    
         
            +
            }
         
     | 
| 
      
 211 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_flags_path(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 212 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(28, 48), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 213 
     | 
    
         
            +
            }
         
     | 
| 
      
 214 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_flags_path(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 215 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(28, 48), upb_StringView);
         
     | 
| 
      
 216 
     | 
    
         
            +
            }
         
     | 
| 
      
 217 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_stats_sinks(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 218 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(36, 64));
         
     | 
| 
      
 219 
     | 
    
         
            +
            }
         
     | 
| 
      
 220 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_stats_sinks(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 221 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(36, 64));
         
     | 
| 
      
 222 
     | 
    
         
            +
            }
         
     | 
| 
      
 223 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_metrics_v3_StatsSink* const* envoy_config_bootstrap_v3_Bootstrap_stats_sinks(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 224 
     | 
    
         
            +
              return (const struct envoy_config_metrics_v3_StatsSink* const*)_upb_array_accessor(msg, UPB_SIZE(36, 64), len);
         
     | 
| 
      
 225 
     | 
    
         
            +
            }
         
     | 
| 
      
 226 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_stats_flush_interval(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 227 
     | 
    
         
            +
              return _upb_hasbit(msg, 5);
         
     | 
| 
      
 228 
     | 
    
         
            +
            }
         
     | 
| 
      
 229 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_stats_flush_interval(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 230 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(40, 72), const upb_Message*) = NULL;
         
     | 
| 
      
 231 
     | 
    
         
            +
            }
         
     | 
| 
      
 232 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Duration* envoy_config_bootstrap_v3_Bootstrap_stats_flush_interval(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 233 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(40, 72), const struct google_protobuf_Duration*);
         
     | 
| 
      
 234 
     | 
    
         
            +
            }
         
     | 
| 
      
 235 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_watchdog(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 236 
     | 
    
         
            +
              return _upb_hasbit(msg, 6);
         
     | 
| 
      
 237 
     | 
    
         
            +
            }
         
     | 
| 
      
 238 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_watchdog(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 239 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(44, 80), const upb_Message*) = NULL;
         
     | 
| 
      
 240 
     | 
    
         
            +
            }
         
     | 
| 
      
 241 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Bootstrap_watchdog(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 242 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(44, 80), const envoy_config_bootstrap_v3_Watchdog*);
         
     | 
| 
      
 243 
     | 
    
         
            +
            }
         
     | 
| 
      
 244 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_tracing(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 245 
     | 
    
         
            +
              return _upb_hasbit(msg, 7);
         
     | 
| 
      
 246 
     | 
    
         
            +
            }
         
     | 
| 
      
 247 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_tracing(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 248 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(48, 88), const upb_Message*) = NULL;
         
     | 
| 
      
 249 
     | 
    
         
            +
            }
         
     | 
| 
      
 250 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_trace_v3_Tracing* envoy_config_bootstrap_v3_Bootstrap_tracing(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 251 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(48, 88), const struct envoy_config_trace_v3_Tracing*);
         
     | 
| 
      
 252 
     | 
    
         
            +
            }
         
     | 
| 
      
 253 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_admin(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 254 
     | 
    
         
            +
              return _upb_hasbit(msg, 8);
         
     | 
| 
      
 255 
     | 
    
         
            +
            }
         
     | 
| 
      
 256 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_admin(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 257 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(52, 96), const upb_Message*) = NULL;
         
     | 
| 
      
 258 
     | 
    
         
            +
            }
         
     | 
| 
      
 259 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Bootstrap_admin(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 260 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(52, 96), const envoy_config_bootstrap_v3_Admin*);
         
     | 
| 
      
 261 
     | 
    
         
            +
            }
         
     | 
| 
      
 262 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_stats_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 263 
     | 
    
         
            +
              return _upb_hasbit(msg, 9);
         
     | 
| 
      
 264 
     | 
    
         
            +
            }
         
     | 
| 
      
 265 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_stats_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 266 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(56, 104), const upb_Message*) = NULL;
         
     | 
| 
      
 267 
     | 
    
         
            +
            }
         
     | 
| 
      
 268 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_metrics_v3_StatsConfig* envoy_config_bootstrap_v3_Bootstrap_stats_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 269 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(56, 104), const struct envoy_config_metrics_v3_StatsConfig*);
         
     | 
| 
      
 270 
     | 
    
         
            +
            }
         
     | 
| 
      
 271 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_hds_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 272 
     | 
    
         
            +
              return _upb_hasbit(msg, 10);
         
     | 
| 
      
 273 
     | 
    
         
            +
            }
         
     | 
| 
      
 274 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_hds_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 275 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(60, 112), const upb_Message*) = NULL;
         
     | 
| 
      
 276 
     | 
    
         
            +
            }
         
     | 
| 
      
 277 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_hds_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 278 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(60, 112), const struct envoy_config_core_v3_ApiConfigSource*);
         
     | 
| 
      
 279 
     | 
    
         
            +
            }
         
     | 
| 
      
 280 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_overload_manager(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 281 
     | 
    
         
            +
              return _upb_hasbit(msg, 11);
         
     | 
| 
      
 282 
     | 
    
         
            +
            }
         
     | 
| 
      
 283 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_overload_manager(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 284 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(64, 120), const upb_Message*) = NULL;
         
     | 
| 
      
 285 
     | 
    
         
            +
            }
         
     | 
| 
      
 286 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_overload_v3_OverloadManager* envoy_config_bootstrap_v3_Bootstrap_overload_manager(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 287 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(64, 120), const struct envoy_config_overload_v3_OverloadManager*);
         
     | 
| 
      
 288 
     | 
    
         
            +
            }
         
     | 
| 
      
 289 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_enable_dispatcher_stats(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 290 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 4), bool) = 0;
         
     | 
| 
      
 291 
     | 
    
         
            +
            }
         
     | 
| 
      
 292 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_enable_dispatcher_stats(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 293 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), bool);
         
     | 
| 
      
 294 
     | 
    
         
            +
            }
         
     | 
| 
      
 295 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_layered_runtime(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 296 
     | 
    
         
            +
              return _upb_hasbit(msg, 12);
         
     | 
| 
      
 297 
     | 
    
         
            +
            }
         
     | 
| 
      
 298 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_layered_runtime(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 299 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(68, 128), const upb_Message*) = NULL;
         
     | 
| 
      
 300 
     | 
    
         
            +
            }
         
     | 
| 
      
 301 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_LayeredRuntime* envoy_config_bootstrap_v3_Bootstrap_layered_runtime(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 302 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(68, 128), const envoy_config_bootstrap_v3_LayeredRuntime*);
         
     | 
| 
      
 303 
     | 
    
         
            +
            }
         
     | 
| 
      
 304 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_header_prefix(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 305 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(72, 136), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 306 
     | 
    
         
            +
            }
         
     | 
| 
      
 307 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_header_prefix(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 308 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(72, 136), upb_StringView);
         
     | 
| 
      
 309 
     | 
    
         
            +
            }
         
     | 
| 
      
 310 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_stats_server_version_override(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 311 
     | 
    
         
            +
              return _upb_hasbit(msg, 13);
         
     | 
| 
      
 312 
     | 
    
         
            +
            }
         
     | 
| 
      
 313 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_stats_server_version_override(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 314 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(80, 152), const upb_Message*) = NULL;
         
     | 
| 
      
 315 
     | 
    
         
            +
            }
         
     | 
| 
      
 316 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_UInt64Value* envoy_config_bootstrap_v3_Bootstrap_stats_server_version_override(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 317 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(80, 152), const struct google_protobuf_UInt64Value*);
         
     | 
| 
      
 318 
     | 
    
         
            +
            }
         
     | 
| 
      
 319 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_use_tcp_for_dns_lookups(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 320 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(5, 5), bool) = 0;
         
     | 
| 
      
 321 
     | 
    
         
            +
            }
         
     | 
| 
      
 322 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_use_tcp_for_dns_lookups(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 323 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(5, 5), bool);
         
     | 
| 
      
 324 
     | 
    
         
            +
            }
         
     | 
| 
      
 325 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_bootstrap_extensions(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 326 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(84, 160));
         
     | 
| 
      
 327 
     | 
    
         
            +
            }
         
     | 
| 
      
 328 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_bootstrap_extensions(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 329 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(84, 160));
         
     | 
| 
      
 330 
     | 
    
         
            +
            }
         
     | 
| 
      
 331 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_config_bootstrap_v3_Bootstrap_bootstrap_extensions(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 332 
     | 
    
         
            +
              return (const struct envoy_config_core_v3_TypedExtensionConfig* const*)_upb_array_accessor(msg, UPB_SIZE(84, 160), len);
         
     | 
| 
      
 333 
     | 
    
         
            +
            }
         
     | 
| 
      
 334 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_config_sources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 335 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(88, 168));
         
     | 
| 
      
 336 
     | 
    
         
            +
            }
         
     | 
| 
      
 337 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_config_sources(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 338 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(88, 168));
         
     | 
| 
      
 339 
     | 
    
         
            +
            }
         
     | 
| 
      
 340 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* const* envoy_config_bootstrap_v3_Bootstrap_config_sources(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 341 
     | 
    
         
            +
              return (const struct envoy_config_core_v3_ConfigSource* const*)_upb_array_accessor(msg, UPB_SIZE(88, 168), len);
         
     | 
| 
      
 342 
     | 
    
         
            +
            }
         
     | 
| 
      
 343 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_default_config_source(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 344 
     | 
    
         
            +
              return _upb_hasbit(msg, 14);
         
     | 
| 
      
 345 
     | 
    
         
            +
            }
         
     | 
| 
      
 346 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_default_config_source(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 347 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(92, 176), const upb_Message*) = NULL;
         
     | 
| 
      
 348 
     | 
    
         
            +
            }
         
     | 
| 
      
 349 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_default_config_source(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 350 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(92, 176), const struct envoy_config_core_v3_ConfigSource*);
         
     | 
| 
      
 351 
     | 
    
         
            +
            }
         
     | 
| 
      
 352 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_default_socket_interface(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 353 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(96, 184), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 354 
     | 
    
         
            +
            }
         
     | 
| 
      
 355 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_default_socket_interface(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 356 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(96, 184), upb_StringView);
         
     | 
| 
      
 357 
     | 
    
         
            +
            }
         
     | 
| 
      
 358 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_certificate_provider_instances(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 359 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(104, 200));
         
     | 
| 
      
 360 
     | 
    
         
            +
            }
         
     | 
| 
      
 361 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_certificate_provider_instances(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 362 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(104, 200));
         
     | 
| 
      
 363 
     | 
    
         
            +
            }
         
     | 
| 
      
 364 
     | 
    
         
            +
            UPB_INLINE size_t envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_size(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 365 
     | 
    
         
            +
              return _upb_msg_map_size(msg, UPB_SIZE(104, 200));
         
     | 
| 
      
 366 
     | 
    
         
            +
            }
         
     | 
| 
      
 367 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_get(const envoy_config_bootstrap_v3_Bootstrap* msg, upb_StringView key, struct envoy_config_core_v3_TypedExtensionConfig** val) {
         
     | 
| 
      
 368 
     | 
    
         
            +
              return _upb_msg_map_get(msg, UPB_SIZE(104, 200), &key, 0, val, sizeof(*val));
         
     | 
| 
      
 369 
     | 
    
         
            +
            }
         
     | 
| 
      
 370 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry* envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_next(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* iter) {
         
     | 
| 
      
 371 
     | 
    
         
            +
              return (const envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry*)_upb_msg_map_next(msg, UPB_SIZE(104, 200), iter);
         
     | 
| 
      
 372 
     | 
    
         
            +
            }
         
     | 
| 
      
 373 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_node_context_params(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 374 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(108, 208));
         
     | 
| 
      
 375 
     | 
    
         
            +
            }
         
     | 
| 
      
 376 
     | 
    
         
            +
            UPB_INLINE upb_StringView const* envoy_config_bootstrap_v3_Bootstrap_node_context_params(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 377 
     | 
    
         
            +
              return (upb_StringView const*)_upb_array_accessor(msg, UPB_SIZE(108, 208), len);
         
     | 
| 
      
 378 
     | 
    
         
            +
            }
         
     | 
| 
      
 379 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_watchdogs(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 380 
     | 
    
         
            +
              return _upb_hasbit(msg, 15);
         
     | 
| 
      
 381 
     | 
    
         
            +
            }
         
     | 
| 
      
 382 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_watchdogs(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 383 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(112, 216), const upb_Message*) = NULL;
         
     | 
| 
      
 384 
     | 
    
         
            +
            }
         
     | 
| 
      
 385 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdogs* envoy_config_bootstrap_v3_Bootstrap_watchdogs(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 386 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(112, 216), const envoy_config_bootstrap_v3_Watchdogs*);
         
     | 
| 
      
 387 
     | 
    
         
            +
            }
         
     | 
| 
      
 388 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_fatal_actions(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 389 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(116, 224));
         
     | 
| 
      
 390 
     | 
    
         
            +
            }
         
     | 
| 
      
 391 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_fatal_actions(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 392 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(116, 224));
         
     | 
| 
      
 393 
     | 
    
         
            +
            }
         
     | 
| 
      
 394 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_FatalAction* const* envoy_config_bootstrap_v3_Bootstrap_fatal_actions(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 395 
     | 
    
         
            +
              return (const envoy_config_bootstrap_v3_FatalAction* const*)_upb_array_accessor(msg, UPB_SIZE(116, 224), len);
         
     | 
| 
      
 396 
     | 
    
         
            +
            }
         
     | 
| 
      
 397 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_stats_flush_on_admin(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 398 
     | 
    
         
            +
              return _upb_getoneofcase(msg, UPB_SIZE(8, 8)) == 29;
         
     | 
| 
      
 399 
     | 
    
         
            +
            }
         
     | 
| 
      
 400 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_stats_flush_on_admin(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 401 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(3, 3), 0, UPB_SIZE(8, 8), envoy_config_bootstrap_v3_Bootstrap_stats_flush_NOT_SET);
         
     | 
| 
      
 402 
     | 
    
         
            +
            }
         
     | 
| 
      
 403 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_stats_flush_on_admin(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 404 
     | 
    
         
            +
              return UPB_READ_ONEOF(msg, bool, UPB_SIZE(3, 3), UPB_SIZE(8, 8), 29, false);
         
     | 
| 
      
 405 
     | 
    
         
            +
            }
         
     | 
| 
      
 406 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_dns_resolution_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 407 
     | 
    
         
            +
              return _upb_hasbit(msg, 16);
         
     | 
| 
      
 408 
     | 
    
         
            +
            }
         
     | 
| 
      
 409 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_dns_resolution_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 410 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(120, 232), const upb_Message*) = NULL;
         
     | 
| 
      
 411 
     | 
    
         
            +
            }
         
     | 
| 
      
 412 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_DnsResolutionConfig* envoy_config_bootstrap_v3_Bootstrap_dns_resolution_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 413 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(120, 232), const struct envoy_config_core_v3_DnsResolutionConfig*);
         
     | 
| 
      
 414 
     | 
    
         
            +
            }
         
     | 
| 
      
 415 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_typed_dns_resolver_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 416 
     | 
    
         
            +
              return _upb_hasbit(msg, 17);
         
     | 
| 
      
 417 
     | 
    
         
            +
            }
         
     | 
| 
      
 418 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_typed_dns_resolver_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 419 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(124, 240), const upb_Message*) = NULL;
         
     | 
| 
      
 420 
     | 
    
         
            +
            }
         
     | 
| 
      
 421 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Bootstrap_typed_dns_resolver_config(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 422 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(124, 240), const struct envoy_config_core_v3_TypedExtensionConfig*);
         
     | 
| 
      
 423 
     | 
    
         
            +
            }
         
     | 
| 
      
 424 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_has_inline_headers(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 425 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(128, 248));
         
     | 
| 
      
 426 
     | 
    
         
            +
            }
         
     | 
| 
      
 427 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_inline_headers(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 428 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(128, 248));
         
     | 
| 
      
 429 
     | 
    
         
            +
            }
         
     | 
| 
      
 430 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_CustomInlineHeader* const* envoy_config_bootstrap_v3_Bootstrap_inline_headers(const envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 431 
     | 
    
         
            +
              return (const envoy_config_bootstrap_v3_CustomInlineHeader* const*)_upb_array_accessor(msg, UPB_SIZE(128, 248), len);
         
     | 
| 
      
 432 
     | 
    
         
            +
            }
         
     | 
| 
      
 433 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_clear_perf_tracing_file_path(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 434 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(132, 256), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 435 
     | 
    
         
            +
            }
         
     | 
| 
      
 436 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_perf_tracing_file_path(const envoy_config_bootstrap_v3_Bootstrap* msg) {
         
     | 
| 
      
 437 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(132, 256), upb_StringView);
         
     | 
| 
      
 438 
     | 
    
         
            +
            }
         
     | 
| 
       218 
439 
     | 
    
         | 
| 
       219 
440 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_node(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_core_v3_Node* value) {
         
     | 
| 
       220 
441 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       221 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 442 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 16), struct envoy_config_core_v3_Node*) = value;
         
     | 
| 
       222 
443 
     | 
    
         
             
            }
         
     | 
| 
       223 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_Node* envoy_config_bootstrap_v3_Bootstrap_mutable_node(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 444 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_Node* envoy_config_bootstrap_v3_Bootstrap_mutable_node(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       224 
445 
     | 
    
         
             
              struct envoy_config_core_v3_Node* sub = (struct envoy_config_core_v3_Node*)envoy_config_bootstrap_v3_Bootstrap_node(msg);
         
     | 
| 
       225 
446 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       226 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_Node*) 
     | 
| 
      
 447 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_Node*)_upb_Message_New(&envoy_config_core_v3_Node_msginit, arena);
         
     | 
| 
       227 
448 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       228 
449 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_node(msg, sub);
         
     | 
| 
       229 
450 
     | 
    
         
             
              }
         
     | 
| 
         @@ -231,12 +452,12 @@ UPB_INLINE struct envoy_config_core_v3_Node* envoy_config_bootstrap_v3_Bootstrap 
     | 
|
| 
       231 
452 
     | 
    
         
             
            }
         
     | 
| 
       232 
453 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_static_resources(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_Bootstrap_StaticResources* value) {
         
     | 
| 
       233 
454 
     | 
    
         
             
              _upb_sethas(msg, 2);
         
     | 
| 
       234 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 455 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(16, 24), envoy_config_bootstrap_v3_Bootstrap_StaticResources*) = value;
         
     | 
| 
       235 
456 
     | 
    
         
             
            }
         
     | 
| 
       236 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_config_bootstrap_v3_Bootstrap_mutable_static_resources(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 457 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_config_bootstrap_v3_Bootstrap_mutable_static_resources(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       237 
458 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Bootstrap_StaticResources* sub = (struct envoy_config_bootstrap_v3_Bootstrap_StaticResources*)envoy_config_bootstrap_v3_Bootstrap_static_resources(msg);
         
     | 
| 
       238 
459 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       239 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Bootstrap_StaticResources*) 
     | 
| 
      
 460 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Bootstrap_StaticResources*)_upb_Message_New(&envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, arena);
         
     | 
| 
       240 
461 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       241 
462 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_static_resources(msg, sub);
         
     | 
| 
       242 
463 
     | 
    
         
             
              }
         
     | 
| 
         @@ -244,12 +465,12 @@ UPB_INLINE struct envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_con 
     | 
|
| 
       244 
465 
     | 
    
         
             
            }
         
     | 
| 
       245 
466 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_dynamic_resources(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_Bootstrap_DynamicResources* value) {
         
     | 
| 
       246 
467 
     | 
    
         
             
              _upb_sethas(msg, 3);
         
     | 
| 
       247 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 468 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 32), envoy_config_bootstrap_v3_Bootstrap_DynamicResources*) = value;
         
     | 
| 
       248 
469 
     | 
    
         
             
            }
         
     | 
| 
       249 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_config_bootstrap_v3_Bootstrap_mutable_dynamic_resources(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 470 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_config_bootstrap_v3_Bootstrap_mutable_dynamic_resources(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       250 
471 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources* sub = (struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources*)envoy_config_bootstrap_v3_Bootstrap_dynamic_resources(msg);
         
     | 
| 
       251 
472 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       252 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources*) 
     | 
| 
      
 473 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources*)_upb_Message_New(&envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, arena);
         
     | 
| 
       253 
474 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       254 
475 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_dynamic_resources(msg, sub);
         
     | 
| 
       255 
476 
     | 
    
         
             
              }
         
     | 
| 
         @@ -257,41 +478,40 @@ UPB_INLINE struct envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_co 
     | 
|
| 
       257 
478 
     | 
    
         
             
            }
         
     | 
| 
       258 
479 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_cluster_manager(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_ClusterManager* value) {
         
     | 
| 
       259 
480 
     | 
    
         
             
              _upb_sethas(msg, 4);
         
     | 
| 
       260 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 481 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(24, 40), envoy_config_bootstrap_v3_ClusterManager*) = value;
         
     | 
| 
       261 
482 
     | 
    
         
             
            }
         
     | 
| 
       262 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_ClusterManager* envoy_config_bootstrap_v3_Bootstrap_mutable_cluster_manager(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 483 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_ClusterManager* envoy_config_bootstrap_v3_Bootstrap_mutable_cluster_manager(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       263 
484 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_ClusterManager* sub = (struct envoy_config_bootstrap_v3_ClusterManager*)envoy_config_bootstrap_v3_Bootstrap_cluster_manager(msg);
         
     | 
| 
       264 
485 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       265 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_ClusterManager*) 
     | 
| 
      
 486 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_ClusterManager*)_upb_Message_New(&envoy_config_bootstrap_v3_ClusterManager_msginit, arena);
         
     | 
| 
       266 
487 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       267 
488 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_cluster_manager(msg, sub);
         
     | 
| 
       268 
489 
     | 
    
         
             
              }
         
     | 
| 
       269 
490 
     | 
    
         
             
              return sub;
         
     | 
| 
       270 
491 
     | 
    
         
             
            }
         
     | 
| 
       271 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_flags_path(envoy_config_bootstrap_v3_Bootstrap *msg,  
     | 
| 
       272 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 492 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_flags_path(envoy_config_bootstrap_v3_Bootstrap *msg, upb_StringView value) {
         
     | 
| 
      
 493 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(28, 48), upb_StringView) = value;
         
     | 
| 
       273 
494 
     | 
    
         
             
            }
         
     | 
| 
       274 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_metrics_v3_StatsSink** envoy_config_bootstrap_v3_Bootstrap_mutable_stats_sinks(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       275 
     | 
    
         
            -
              return (struct envoy_config_metrics_v3_StatsSink**)_upb_array_mutable_accessor(msg, UPB_SIZE( 
     | 
| 
      
 495 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_metrics_v3_StatsSink** envoy_config_bootstrap_v3_Bootstrap_mutable_stats_sinks(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 496 
     | 
    
         
            +
              return (struct envoy_config_metrics_v3_StatsSink**)_upb_array_mutable_accessor(msg, UPB_SIZE(36, 64), len);
         
     | 
| 
       276 
497 
     | 
    
         
             
            }
         
     | 
| 
       277 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_metrics_v3_StatsSink** envoy_config_bootstrap_v3_Bootstrap_resize_stats_sinks(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       278 
     | 
    
         
            -
              return (struct envoy_config_metrics_v3_StatsSink**) 
     | 
| 
      
 498 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_metrics_v3_StatsSink** envoy_config_bootstrap_v3_Bootstrap_resize_stats_sinks(envoy_config_bootstrap_v3_Bootstrap* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 499 
     | 
    
         
            +
              return (struct envoy_config_metrics_v3_StatsSink**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(36, 64), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       279 
500 
     | 
    
         
             
            }
         
     | 
| 
       280 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_metrics_v3_StatsSink* envoy_config_bootstrap_v3_Bootstrap_add_stats_sinks(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       281 
     | 
    
         
            -
              struct envoy_config_metrics_v3_StatsSink* sub = (struct envoy_config_metrics_v3_StatsSink*) 
     | 
| 
       282 
     | 
    
         
            -
              bool ok =  
     | 
| 
       283 
     | 
    
         
            -
                  msg, UPB_SIZE(100, 192), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 501 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_metrics_v3_StatsSink* envoy_config_bootstrap_v3_Bootstrap_add_stats_sinks(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
      
 502 
     | 
    
         
            +
              struct envoy_config_metrics_v3_StatsSink* sub = (struct envoy_config_metrics_v3_StatsSink*)_upb_Message_New(&envoy_config_metrics_v3_StatsSink_msginit, arena);
         
     | 
| 
      
 503 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(36, 64), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       284 
504 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       285 
505 
     | 
    
         
             
              return sub;
         
     | 
| 
       286 
506 
     | 
    
         
             
            }
         
     | 
| 
       287 
507 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_stats_flush_interval(envoy_config_bootstrap_v3_Bootstrap *msg, struct google_protobuf_Duration* value) {
         
     | 
| 
       288 
508 
     | 
    
         
             
              _upb_sethas(msg, 5);
         
     | 
| 
       289 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 509 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(40, 72), struct google_protobuf_Duration*) = value;
         
     | 
| 
       290 
510 
     | 
    
         
             
            }
         
     | 
| 
       291 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Bootstrap_mutable_stats_flush_interval(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 511 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Bootstrap_mutable_stats_flush_interval(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       292 
512 
     | 
    
         
             
              struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_bootstrap_v3_Bootstrap_stats_flush_interval(msg);
         
     | 
| 
       293 
513 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       294 
     | 
    
         
            -
                sub = (struct google_protobuf_Duration*) 
     | 
| 
      
 514 
     | 
    
         
            +
                sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
         
     | 
| 
       295 
515 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       296 
516 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_stats_flush_interval(msg, sub);
         
     | 
| 
       297 
517 
     | 
    
         
             
              }
         
     | 
| 
         @@ -299,12 +519,12 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Bootstrap_ 
     | 
|
| 
       299 
519 
     | 
    
         
             
            }
         
     | 
| 
       300 
520 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_watchdog(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_Watchdog* value) {
         
     | 
| 
       301 
521 
     | 
    
         
             
              _upb_sethas(msg, 6);
         
     | 
| 
       302 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 522 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(44, 80), envoy_config_bootstrap_v3_Watchdog*) = value;
         
     | 
| 
       303 
523 
     | 
    
         
             
            }
         
     | 
| 
       304 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Bootstrap_mutable_watchdog(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 524 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Bootstrap_mutable_watchdog(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       305 
525 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Watchdog* sub = (struct envoy_config_bootstrap_v3_Watchdog*)envoy_config_bootstrap_v3_Bootstrap_watchdog(msg);
         
     | 
| 
       306 
526 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       307 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Watchdog*) 
     | 
| 
      
 527 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Watchdog*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdog_msginit, arena);
         
     | 
| 
       308 
528 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       309 
529 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_watchdog(msg, sub);
         
     | 
| 
       310 
530 
     | 
    
         
             
              }
         
     | 
| 
         @@ -312,12 +532,12 @@ UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_ 
     | 
|
| 
       312 
532 
     | 
    
         
             
            }
         
     | 
| 
       313 
533 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_tracing(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_trace_v3_Tracing* value) {
         
     | 
| 
       314 
534 
     | 
    
         
             
              _upb_sethas(msg, 7);
         
     | 
| 
       315 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 535 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(48, 88), struct envoy_config_trace_v3_Tracing*) = value;
         
     | 
| 
       316 
536 
     | 
    
         
             
            }
         
     | 
| 
       317 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_trace_v3_Tracing* envoy_config_bootstrap_v3_Bootstrap_mutable_tracing(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 537 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_trace_v3_Tracing* envoy_config_bootstrap_v3_Bootstrap_mutable_tracing(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       318 
538 
     | 
    
         
             
              struct envoy_config_trace_v3_Tracing* sub = (struct envoy_config_trace_v3_Tracing*)envoy_config_bootstrap_v3_Bootstrap_tracing(msg);
         
     | 
| 
       319 
539 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       320 
     | 
    
         
            -
                sub = (struct envoy_config_trace_v3_Tracing*) 
     | 
| 
      
 540 
     | 
    
         
            +
                sub = (struct envoy_config_trace_v3_Tracing*)_upb_Message_New(&envoy_config_trace_v3_Tracing_msginit, arena);
         
     | 
| 
       321 
541 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       322 
542 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_tracing(msg, sub);
         
     | 
| 
       323 
543 
     | 
    
         
             
              }
         
     | 
| 
         @@ -325,12 +545,12 @@ UPB_INLINE struct envoy_config_trace_v3_Tracing* envoy_config_bootstrap_v3_Boots 
     | 
|
| 
       325 
545 
     | 
    
         
             
            }
         
     | 
| 
       326 
546 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_admin(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_Admin* value) {
         
     | 
| 
       327 
547 
     | 
    
         
             
              _upb_sethas(msg, 8);
         
     | 
| 
       328 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 548 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(52, 96), envoy_config_bootstrap_v3_Admin*) = value;
         
     | 
| 
       329 
549 
     | 
    
         
             
            }
         
     | 
| 
       330 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Bootstrap_mutable_admin(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 550 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Bootstrap_mutable_admin(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       331 
551 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Admin* sub = (struct envoy_config_bootstrap_v3_Admin*)envoy_config_bootstrap_v3_Bootstrap_admin(msg);
         
     | 
| 
       332 
552 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       333 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Admin*) 
     | 
| 
      
 553 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Admin*)_upb_Message_New(&envoy_config_bootstrap_v3_Admin_msginit, arena);
         
     | 
| 
       334 
554 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       335 
555 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_admin(msg, sub);
         
     | 
| 
       336 
556 
     | 
    
         
             
              }
         
     | 
| 
         @@ -338,12 +558,12 @@ UPB_INLINE struct envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Boo 
     | 
|
| 
       338 
558 
     | 
    
         
             
            }
         
     | 
| 
       339 
559 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_stats_config(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_metrics_v3_StatsConfig* value) {
         
     | 
| 
       340 
560 
     | 
    
         
             
              _upb_sethas(msg, 9);
         
     | 
| 
       341 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 561 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(56, 104), struct envoy_config_metrics_v3_StatsConfig*) = value;
         
     | 
| 
       342 
562 
     | 
    
         
             
            }
         
     | 
| 
       343 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_metrics_v3_StatsConfig* envoy_config_bootstrap_v3_Bootstrap_mutable_stats_config(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 563 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_metrics_v3_StatsConfig* envoy_config_bootstrap_v3_Bootstrap_mutable_stats_config(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       344 
564 
     | 
    
         
             
              struct envoy_config_metrics_v3_StatsConfig* sub = (struct envoy_config_metrics_v3_StatsConfig*)envoy_config_bootstrap_v3_Bootstrap_stats_config(msg);
         
     | 
| 
       345 
565 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       346 
     | 
    
         
            -
                sub = (struct envoy_config_metrics_v3_StatsConfig*) 
     | 
| 
      
 566 
     | 
    
         
            +
                sub = (struct envoy_config_metrics_v3_StatsConfig*)_upb_Message_New(&envoy_config_metrics_v3_StatsConfig_msginit, arena);
         
     | 
| 
       347 
567 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       348 
568 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_stats_config(msg, sub);
         
     | 
| 
       349 
569 
     | 
    
         
             
              }
         
     | 
| 
         @@ -351,12 +571,12 @@ UPB_INLINE struct envoy_config_metrics_v3_StatsConfig* envoy_config_bootstrap_v3 
     | 
|
| 
       351 
571 
     | 
    
         
             
            }
         
     | 
| 
       352 
572 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_hds_config(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_core_v3_ApiConfigSource* value) {
         
     | 
| 
       353 
573 
     | 
    
         
             
              _upb_sethas(msg, 10);
         
     | 
| 
       354 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 574 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(60, 112), struct envoy_config_core_v3_ApiConfigSource*) = value;
         
     | 
| 
       355 
575 
     | 
    
         
             
            }
         
     | 
| 
       356 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_mutable_hds_config(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 576 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_mutable_hds_config(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       357 
577 
     | 
    
         
             
              struct envoy_config_core_v3_ApiConfigSource* sub = (struct envoy_config_core_v3_ApiConfigSource*)envoy_config_bootstrap_v3_Bootstrap_hds_config(msg);
         
     | 
| 
       358 
578 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       359 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ApiConfigSource*) 
     | 
| 
      
 579 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ApiConfigSource*)_upb_Message_New(&envoy_config_core_v3_ApiConfigSource_msginit, arena);
         
     | 
| 
       360 
580 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       361 
581 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_hds_config(msg, sub);
         
     | 
| 
       362 
582 
     | 
    
         
             
              }
         
     | 
| 
         @@ -364,145 +584,147 @@ UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v 
     | 
|
| 
       364 
584 
     | 
    
         
             
            }
         
     | 
| 
       365 
585 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_overload_manager(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_overload_v3_OverloadManager* value) {
         
     | 
| 
       366 
586 
     | 
    
         
             
              _upb_sethas(msg, 11);
         
     | 
| 
       367 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 587 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(64, 120), struct envoy_config_overload_v3_OverloadManager*) = value;
         
     | 
| 
       368 
588 
     | 
    
         
             
            }
         
     | 
| 
       369 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_overload_v3_OverloadManager* envoy_config_bootstrap_v3_Bootstrap_mutable_overload_manager(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 589 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_overload_v3_OverloadManager* envoy_config_bootstrap_v3_Bootstrap_mutable_overload_manager(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       370 
590 
     | 
    
         
             
              struct envoy_config_overload_v3_OverloadManager* sub = (struct envoy_config_overload_v3_OverloadManager*)envoy_config_bootstrap_v3_Bootstrap_overload_manager(msg);
         
     | 
| 
       371 
591 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       372 
     | 
    
         
            -
                sub = (struct envoy_config_overload_v3_OverloadManager*) 
     | 
| 
      
 592 
     | 
    
         
            +
                sub = (struct envoy_config_overload_v3_OverloadManager*)_upb_Message_New(&envoy_config_overload_v3_OverloadManager_msginit, arena);
         
     | 
| 
       373 
593 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       374 
594 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_overload_manager(msg, sub);
         
     | 
| 
       375 
595 
     | 
    
         
             
              }
         
     | 
| 
       376 
596 
     | 
    
         
             
              return sub;
         
     | 
| 
       377 
597 
     | 
    
         
             
            }
         
     | 
| 
       378 
598 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_enable_dispatcher_stats(envoy_config_bootstrap_v3_Bootstrap *msg, bool value) {
         
     | 
| 
       379 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 599 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 4), bool) = value;
         
     | 
| 
       380 
600 
     | 
    
         
             
            }
         
     | 
| 
       381 
601 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_layered_runtime(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_LayeredRuntime* value) {
         
     | 
| 
       382 
602 
     | 
    
         
             
              _upb_sethas(msg, 12);
         
     | 
| 
       383 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 603 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(68, 128), envoy_config_bootstrap_v3_LayeredRuntime*) = value;
         
     | 
| 
       384 
604 
     | 
    
         
             
            }
         
     | 
| 
       385 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_LayeredRuntime* envoy_config_bootstrap_v3_Bootstrap_mutable_layered_runtime(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 605 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_LayeredRuntime* envoy_config_bootstrap_v3_Bootstrap_mutable_layered_runtime(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       386 
606 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_LayeredRuntime* sub = (struct envoy_config_bootstrap_v3_LayeredRuntime*)envoy_config_bootstrap_v3_Bootstrap_layered_runtime(msg);
         
     | 
| 
       387 
607 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       388 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_LayeredRuntime*) 
     | 
| 
      
 608 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_LayeredRuntime*)_upb_Message_New(&envoy_config_bootstrap_v3_LayeredRuntime_msginit, arena);
         
     | 
| 
       389 
609 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       390 
610 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_layered_runtime(msg, sub);
         
     | 
| 
       391 
611 
     | 
    
         
             
              }
         
     | 
| 
       392 
612 
     | 
    
         
             
              return sub;
         
     | 
| 
       393 
613 
     | 
    
         
             
            }
         
     | 
| 
       394 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_header_prefix(envoy_config_bootstrap_v3_Bootstrap *msg,  
     | 
| 
       395 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 614 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_header_prefix(envoy_config_bootstrap_v3_Bootstrap *msg, upb_StringView value) {
         
     | 
| 
      
 615 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(72, 136), upb_StringView) = value;
         
     | 
| 
       396 
616 
     | 
    
         
             
            }
         
     | 
| 
       397 
617 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_stats_server_version_override(envoy_config_bootstrap_v3_Bootstrap *msg, struct google_protobuf_UInt64Value* value) {
         
     | 
| 
       398 
618 
     | 
    
         
             
              _upb_sethas(msg, 13);
         
     | 
| 
       399 
619 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(80, 152), struct google_protobuf_UInt64Value*) = value;
         
     | 
| 
       400 
620 
     | 
    
         
             
            }
         
     | 
| 
       401 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_UInt64Value* envoy_config_bootstrap_v3_Bootstrap_mutable_stats_server_version_override(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 621 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_UInt64Value* envoy_config_bootstrap_v3_Bootstrap_mutable_stats_server_version_override(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       402 
622 
     | 
    
         
             
              struct google_protobuf_UInt64Value* sub = (struct google_protobuf_UInt64Value*)envoy_config_bootstrap_v3_Bootstrap_stats_server_version_override(msg);
         
     | 
| 
       403 
623 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       404 
     | 
    
         
            -
                sub = (struct google_protobuf_UInt64Value*) 
     | 
| 
      
 624 
     | 
    
         
            +
                sub = (struct google_protobuf_UInt64Value*)_upb_Message_New(&google_protobuf_UInt64Value_msginit, arena);
         
     | 
| 
       405 
625 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       406 
626 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_stats_server_version_override(msg, sub);
         
     | 
| 
       407 
627 
     | 
    
         
             
              }
         
     | 
| 
       408 
628 
     | 
    
         
             
              return sub;
         
     | 
| 
       409 
629 
     | 
    
         
             
            }
         
     | 
| 
       410 
630 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_use_tcp_for_dns_lookups(envoy_config_bootstrap_v3_Bootstrap *msg, bool value) {
         
     | 
| 
       411 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 631 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(5, 5), bool) = value;
         
     | 
| 
       412 
632 
     | 
    
         
             
            }
         
     | 
| 
       413 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_bootstrap_v3_Bootstrap_mutable_bootstrap_extensions(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       414 
     | 
    
         
            -
              return (struct envoy_config_core_v3_TypedExtensionConfig**)_upb_array_mutable_accessor(msg, UPB_SIZE( 
     | 
| 
      
 633 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_bootstrap_v3_Bootstrap_mutable_bootstrap_extensions(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 634 
     | 
    
         
            +
              return (struct envoy_config_core_v3_TypedExtensionConfig**)_upb_array_mutable_accessor(msg, UPB_SIZE(84, 160), len);
         
     | 
| 
       415 
635 
     | 
    
         
             
            }
         
     | 
| 
       416 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_bootstrap_v3_Bootstrap_resize_bootstrap_extensions(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       417 
     | 
    
         
            -
              return (struct envoy_config_core_v3_TypedExtensionConfig**) 
     | 
| 
      
 636 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_config_bootstrap_v3_Bootstrap_resize_bootstrap_extensions(envoy_config_bootstrap_v3_Bootstrap* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 637 
     | 
    
         
            +
              return (struct envoy_config_core_v3_TypedExtensionConfig**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(84, 160), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       418 
638 
     | 
    
         
             
            }
         
     | 
| 
       419 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Bootstrap_add_bootstrap_extensions(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       420 
     | 
    
         
            -
              struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*) 
     | 
| 
       421 
     | 
    
         
            -
              bool ok =  
     | 
| 
       422 
     | 
    
         
            -
                  msg, UPB_SIZE(104, 200), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 639 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Bootstrap_add_bootstrap_extensions(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
      
 640 
     | 
    
         
            +
              struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)_upb_Message_New(&envoy_config_core_v3_TypedExtensionConfig_msginit, arena);
         
     | 
| 
      
 641 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(84, 160), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       423 
642 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       424 
643 
     | 
    
         
             
              return sub;
         
     | 
| 
       425 
644 
     | 
    
         
             
            }
         
     | 
| 
       426 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource** envoy_config_bootstrap_v3_Bootstrap_mutable_config_sources(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       427 
     | 
    
         
            -
              return (struct envoy_config_core_v3_ConfigSource**)_upb_array_mutable_accessor(msg, UPB_SIZE( 
     | 
| 
      
 645 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource** envoy_config_bootstrap_v3_Bootstrap_mutable_config_sources(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 646 
     | 
    
         
            +
              return (struct envoy_config_core_v3_ConfigSource**)_upb_array_mutable_accessor(msg, UPB_SIZE(88, 168), len);
         
     | 
| 
       428 
647 
     | 
    
         
             
            }
         
     | 
| 
       429 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource** envoy_config_bootstrap_v3_Bootstrap_resize_config_sources(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       430 
     | 
    
         
            -
              return (struct envoy_config_core_v3_ConfigSource**) 
     | 
| 
      
 648 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource** envoy_config_bootstrap_v3_Bootstrap_resize_config_sources(envoy_config_bootstrap_v3_Bootstrap* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 649 
     | 
    
         
            +
              return (struct envoy_config_core_v3_ConfigSource**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(88, 168), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       431 
650 
     | 
    
         
             
            }
         
     | 
| 
       432 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_add_config_sources(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       433 
     | 
    
         
            -
              struct envoy_config_core_v3_ConfigSource* sub = (struct envoy_config_core_v3_ConfigSource*) 
     | 
| 
       434 
     | 
    
         
            -
              bool ok =  
     | 
| 
       435 
     | 
    
         
            -
                  msg, UPB_SIZE(108, 208), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 651 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_add_config_sources(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
      
 652 
     | 
    
         
            +
              struct envoy_config_core_v3_ConfigSource* sub = (struct envoy_config_core_v3_ConfigSource*)_upb_Message_New(&envoy_config_core_v3_ConfigSource_msginit, arena);
         
     | 
| 
      
 653 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(88, 168), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       436 
654 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       437 
655 
     | 
    
         
             
              return sub;
         
     | 
| 
       438 
656 
     | 
    
         
             
            }
         
     | 
| 
       439 
657 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_default_config_source(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_core_v3_ConfigSource* value) {
         
     | 
| 
       440 
658 
     | 
    
         
             
              _upb_sethas(msg, 14);
         
     | 
| 
       441 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 659 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(92, 176), struct envoy_config_core_v3_ConfigSource*) = value;
         
     | 
| 
       442 
660 
     | 
    
         
             
            }
         
     | 
| 
       443 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_mutable_default_config_source(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 661 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_mutable_default_config_source(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       444 
662 
     | 
    
         
             
              struct envoy_config_core_v3_ConfigSource* sub = (struct envoy_config_core_v3_ConfigSource*)envoy_config_bootstrap_v3_Bootstrap_default_config_source(msg);
         
     | 
| 
       445 
663 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       446 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ConfigSource*) 
     | 
| 
      
 664 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ConfigSource*)_upb_Message_New(&envoy_config_core_v3_ConfigSource_msginit, arena);
         
     | 
| 
       447 
665 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       448 
666 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_default_config_source(msg, sub);
         
     | 
| 
       449 
667 
     | 
    
         
             
              }
         
     | 
| 
       450 
668 
     | 
    
         
             
              return sub;
         
     | 
| 
       451 
669 
     | 
    
         
             
            }
         
     | 
| 
       452 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_default_socket_interface(envoy_config_bootstrap_v3_Bootstrap *msg,  
     | 
| 
       453 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 670 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_default_socket_interface(envoy_config_bootstrap_v3_Bootstrap *msg, upb_StringView value) {
         
     | 
| 
      
 671 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(96, 184), upb_StringView) = value;
         
     | 
| 
      
 672 
     | 
    
         
            +
            }
         
     | 
| 
      
 673 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_clear(envoy_config_bootstrap_v3_Bootstrap* msg) { _upb_msg_map_clear(msg, UPB_SIZE(104, 200)); }
         
     | 
| 
      
 674 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_set(envoy_config_bootstrap_v3_Bootstrap* msg, upb_StringView key, struct envoy_config_core_v3_TypedExtensionConfig* val, upb_Arena* a) {
         
     | 
| 
      
 675 
     | 
    
         
            +
              return _upb_msg_map_set(msg, UPB_SIZE(104, 200), &key, 0, &val, sizeof(val), a);
         
     | 
| 
      
 676 
     | 
    
         
            +
            }
         
     | 
| 
      
 677 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_delete(envoy_config_bootstrap_v3_Bootstrap* msg, upb_StringView key) {
         
     | 
| 
      
 678 
     | 
    
         
            +
              return _upb_msg_map_delete(msg, UPB_SIZE(104, 200), &key, 0);
         
     | 
| 
       454 
679 
     | 
    
         
             
            }
         
     | 
| 
       455 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       456 
     | 
    
         
            -
             
     | 
| 
       457 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_delete(envoy_config_bootstrap_v3_Bootstrap *msg, upb_strview key) { return _upb_msg_map_delete(msg, UPB_SIZE(112, 216), &key, 0); }
         
     | 
| 
       458 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry* envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_nextmutable(envoy_config_bootstrap_v3_Bootstrap *msg, size_t* iter) { return (envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry*)_upb_msg_map_next(msg, UPB_SIZE(112, 216), iter); }
         
     | 
| 
       459 
     | 
    
         
            -
            UPB_INLINE upb_strview* envoy_config_bootstrap_v3_Bootstrap_mutable_node_context_params(envoy_config_bootstrap_v3_Bootstrap *msg, size_t *len) {
         
     | 
| 
       460 
     | 
    
         
            -
              return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(116, 224), len);
         
     | 
| 
      
 680 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry* envoy_config_bootstrap_v3_Bootstrap_certificate_provider_instances_nextmutable(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* iter) {
         
     | 
| 
      
 681 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry*)_upb_msg_map_next(msg, UPB_SIZE(104, 200), iter);
         
     | 
| 
       461 
682 
     | 
    
         
             
            }
         
     | 
| 
       462 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       463 
     | 
    
         
            -
              return ( 
     | 
| 
      
 683 
     | 
    
         
            +
            UPB_INLINE upb_StringView* envoy_config_bootstrap_v3_Bootstrap_mutable_node_context_params(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 684 
     | 
    
         
            +
              return (upb_StringView*)_upb_array_mutable_accessor(msg, UPB_SIZE(108, 208), len);
         
     | 
| 
       464 
685 
     | 
    
         
             
            }
         
     | 
| 
       465 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       466 
     | 
    
         
            -
              return  
     | 
| 
       467 
     | 
    
         
            -
             
     | 
| 
      
 686 
     | 
    
         
            +
            UPB_INLINE upb_StringView* envoy_config_bootstrap_v3_Bootstrap_resize_node_context_params(envoy_config_bootstrap_v3_Bootstrap* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 687 
     | 
    
         
            +
              return (upb_StringView*)_upb_Array_Resize_accessor2(msg, UPB_SIZE(108, 208), len, UPB_SIZE(3, 4), arena);
         
     | 
| 
      
 688 
     | 
    
         
            +
            }
         
     | 
| 
      
 689 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_add_node_context_params(envoy_config_bootstrap_v3_Bootstrap* msg, upb_StringView val, upb_Arena* arena) {
         
     | 
| 
      
 690 
     | 
    
         
            +
              return _upb_Array_Append_accessor2(msg, UPB_SIZE(108, 208), UPB_SIZE(3, 4), &val, arena);
         
     | 
| 
       468 
691 
     | 
    
         
             
            }
         
     | 
| 
       469 
692 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_watchdogs(envoy_config_bootstrap_v3_Bootstrap *msg, envoy_config_bootstrap_v3_Watchdogs* value) {
         
     | 
| 
       470 
693 
     | 
    
         
             
              _upb_sethas(msg, 15);
         
     | 
| 
       471 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 694 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(112, 216), envoy_config_bootstrap_v3_Watchdogs*) = value;
         
     | 
| 
       472 
695 
     | 
    
         
             
            }
         
     | 
| 
       473 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdogs* envoy_config_bootstrap_v3_Bootstrap_mutable_watchdogs(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 696 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdogs* envoy_config_bootstrap_v3_Bootstrap_mutable_watchdogs(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       474 
697 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Watchdogs* sub = (struct envoy_config_bootstrap_v3_Watchdogs*)envoy_config_bootstrap_v3_Bootstrap_watchdogs(msg);
         
     | 
| 
       475 
698 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       476 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Watchdogs*) 
     | 
| 
      
 699 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Watchdogs*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdogs_msginit, arena);
         
     | 
| 
       477 
700 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       478 
701 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_watchdogs(msg, sub);
         
     | 
| 
       479 
702 
     | 
    
         
             
              }
         
     | 
| 
       480 
703 
     | 
    
         
             
              return sub;
         
     | 
| 
       481 
704 
     | 
    
         
             
            }
         
     | 
| 
       482 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction** envoy_config_bootstrap_v3_Bootstrap_mutable_fatal_actions(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       483 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_FatalAction**)_upb_array_mutable_accessor(msg, UPB_SIZE( 
     | 
| 
      
 705 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction** envoy_config_bootstrap_v3_Bootstrap_mutable_fatal_actions(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 706 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_FatalAction**)_upb_array_mutable_accessor(msg, UPB_SIZE(116, 224), len);
         
     | 
| 
       484 
707 
     | 
    
         
             
            }
         
     | 
| 
       485 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction** envoy_config_bootstrap_v3_Bootstrap_resize_fatal_actions(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       486 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_FatalAction**) 
     | 
| 
      
 708 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction** envoy_config_bootstrap_v3_Bootstrap_resize_fatal_actions(envoy_config_bootstrap_v3_Bootstrap* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 709 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_FatalAction**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(116, 224), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       487 
710 
     | 
    
         
             
            }
         
     | 
| 
       488 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_FatalAction* envoy_config_bootstrap_v3_Bootstrap_add_fatal_actions(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       489 
     | 
    
         
            -
              struct envoy_config_bootstrap_v3_FatalAction* sub = (struct envoy_config_bootstrap_v3_FatalAction*) 
     | 
| 
       490 
     | 
    
         
            -
              bool ok =  
     | 
| 
       491 
     | 
    
         
            -
                  msg, UPB_SIZE(120, 232), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 711 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_FatalAction* envoy_config_bootstrap_v3_Bootstrap_add_fatal_actions(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
      
 712 
     | 
    
         
            +
              struct envoy_config_bootstrap_v3_FatalAction* sub = (struct envoy_config_bootstrap_v3_FatalAction*)_upb_Message_New(&envoy_config_bootstrap_v3_FatalAction_msginit, arena);
         
     | 
| 
      
 713 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(116, 224), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       492 
714 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       493 
715 
     | 
    
         
             
              return sub;
         
     | 
| 
       494 
716 
     | 
    
         
             
            }
         
     | 
| 
       495 
717 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_stats_flush_on_admin(envoy_config_bootstrap_v3_Bootstrap *msg, bool value) {
         
     | 
| 
       496 
     | 
    
         
            -
              UPB_WRITE_ONEOF(msg, bool, UPB_SIZE( 
     | 
| 
      
 718 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, bool, UPB_SIZE(3, 3), value, UPB_SIZE(8, 8), 29);
         
     | 
| 
       497 
719 
     | 
    
         
             
            }
         
     | 
| 
       498 
720 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_dns_resolution_config(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_core_v3_DnsResolutionConfig* value) {
         
     | 
| 
       499 
721 
     | 
    
         
             
              _upb_sethas(msg, 16);
         
     | 
| 
       500 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 722 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(120, 232), struct envoy_config_core_v3_DnsResolutionConfig*) = value;
         
     | 
| 
       501 
723 
     | 
    
         
             
            }
         
     | 
| 
       502 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_DnsResolutionConfig* envoy_config_bootstrap_v3_Bootstrap_mutable_dns_resolution_config(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 724 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_DnsResolutionConfig* envoy_config_bootstrap_v3_Bootstrap_mutable_dns_resolution_config(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       503 
725 
     | 
    
         
             
              struct envoy_config_core_v3_DnsResolutionConfig* sub = (struct envoy_config_core_v3_DnsResolutionConfig*)envoy_config_bootstrap_v3_Bootstrap_dns_resolution_config(msg);
         
     | 
| 
       504 
726 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       505 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_DnsResolutionConfig*) 
     | 
| 
      
 727 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_DnsResolutionConfig*)_upb_Message_New(&envoy_config_core_v3_DnsResolutionConfig_msginit, arena);
         
     | 
| 
       506 
728 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       507 
729 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_dns_resolution_config(msg, sub);
         
     | 
| 
       508 
730 
     | 
    
         
             
              }
         
     | 
| 
         @@ -510,135 +732,208 @@ UPB_INLINE struct envoy_config_core_v3_DnsResolutionConfig* envoy_config_bootstr 
     | 
|
| 
       510 
732 
     | 
    
         
             
            }
         
     | 
| 
       511 
733 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_typed_dns_resolver_config(envoy_config_bootstrap_v3_Bootstrap *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
         
     | 
| 
       512 
734 
     | 
    
         
             
              _upb_sethas(msg, 17);
         
     | 
| 
       513 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 735 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(124, 240), struct envoy_config_core_v3_TypedExtensionConfig*) = value;
         
     | 
| 
       514 
736 
     | 
    
         
             
            }
         
     | 
| 
       515 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Bootstrap_mutable_typed_dns_resolver_config(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
      
 737 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Bootstrap_mutable_typed_dns_resolver_config(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
       516 
738 
     | 
    
         
             
              struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_bootstrap_v3_Bootstrap_typed_dns_resolver_config(msg);
         
     | 
| 
       517 
739 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       518 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_TypedExtensionConfig*) 
     | 
| 
      
 740 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_TypedExtensionConfig*)_upb_Message_New(&envoy_config_core_v3_TypedExtensionConfig_msginit, arena);
         
     | 
| 
       519 
741 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       520 
742 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_set_typed_dns_resolver_config(msg, sub);
         
     | 
| 
       521 
743 
     | 
    
         
             
              }
         
     | 
| 
       522 
744 
     | 
    
         
             
              return sub;
         
     | 
| 
       523 
745 
     | 
    
         
             
            }
         
     | 
| 
       524 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader** envoy_config_bootstrap_v3_Bootstrap_mutable_inline_headers(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       525 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_CustomInlineHeader**)_upb_array_mutable_accessor(msg, UPB_SIZE( 
     | 
| 
      
 746 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader** envoy_config_bootstrap_v3_Bootstrap_mutable_inline_headers(envoy_config_bootstrap_v3_Bootstrap* msg, size_t* len) {
         
     | 
| 
      
 747 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_CustomInlineHeader**)_upb_array_mutable_accessor(msg, UPB_SIZE(128, 248), len);
         
     | 
| 
       526 
748 
     | 
    
         
             
            }
         
     | 
| 
       527 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader** envoy_config_bootstrap_v3_Bootstrap_resize_inline_headers(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       528 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_CustomInlineHeader**) 
     | 
| 
      
 749 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader** envoy_config_bootstrap_v3_Bootstrap_resize_inline_headers(envoy_config_bootstrap_v3_Bootstrap* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 750 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_CustomInlineHeader**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(128, 248), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       529 
751 
     | 
    
         
             
            }
         
     | 
| 
       530 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_CustomInlineHeader* envoy_config_bootstrap_v3_Bootstrap_add_inline_headers(envoy_config_bootstrap_v3_Bootstrap  
     | 
| 
       531 
     | 
    
         
            -
              struct envoy_config_bootstrap_v3_CustomInlineHeader* sub = (struct envoy_config_bootstrap_v3_CustomInlineHeader*) 
     | 
| 
       532 
     | 
    
         
            -
              bool ok =  
     | 
| 
       533 
     | 
    
         
            -
                  msg, UPB_SIZE(124, 240), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 752 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_CustomInlineHeader* envoy_config_bootstrap_v3_Bootstrap_add_inline_headers(envoy_config_bootstrap_v3_Bootstrap* msg, upb_Arena* arena) {
         
     | 
| 
      
 753 
     | 
    
         
            +
              struct envoy_config_bootstrap_v3_CustomInlineHeader* sub = (struct envoy_config_bootstrap_v3_CustomInlineHeader*)_upb_Message_New(&envoy_config_bootstrap_v3_CustomInlineHeader_msginit, arena);
         
     | 
| 
      
 754 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(128, 248), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       534 
755 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       535 
756 
     | 
    
         
             
              return sub;
         
     | 
| 
       536 
757 
     | 
    
         
             
            }
         
     | 
| 
      
 758 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_set_perf_tracing_file_path(envoy_config_bootstrap_v3_Bootstrap *msg, upb_StringView value) {
         
     | 
| 
      
 759 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(132, 256), upb_StringView) = value;
         
     | 
| 
      
 760 
     | 
    
         
            +
            }
         
     | 
| 
       537 
761 
     | 
    
         | 
| 
       538 
762 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Bootstrap.StaticResources */
         
     | 
| 
       539 
763 
     | 
    
         | 
| 
       540 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       541 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Bootstrap_StaticResources 
     | 
| 
      
 764 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_config_bootstrap_v3_Bootstrap_StaticResources_new(upb_Arena* arena) {
         
     | 
| 
      
 765 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Bootstrap_StaticResources*)_upb_Message_New(&envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, arena);
         
     | 
| 
      
 766 
     | 
    
         
            +
            }
         
     | 
| 
      
 767 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_config_bootstrap_v3_Bootstrap_StaticResources_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 768 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Bootstrap_StaticResources* ret = envoy_config_bootstrap_v3_Bootstrap_StaticResources_new(arena);
         
     | 
| 
      
 769 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 770 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 771 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 772 
     | 
    
         
            +
              }
         
     | 
| 
      
 773 
     | 
    
         
            +
              return ret;
         
     | 
| 
       542 
774 
     | 
    
         
             
            }
         
     | 
| 
       543 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       544 
     | 
    
         
            -
             
     | 
| 
       545 
     | 
    
         
            -
             
     | 
| 
       546 
     | 
    
         
            -
               
     | 
| 
      
 775 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_StaticResources* envoy_config_bootstrap_v3_Bootstrap_StaticResources_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 776 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 777 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 778 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Bootstrap_StaticResources* ret = envoy_config_bootstrap_v3_Bootstrap_StaticResources_new(arena);
         
     | 
| 
      
 779 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 780 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, extreg, options, arena) !=
         
     | 
| 
      
 781 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 782 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 783 
     | 
    
         
            +
              }
         
     | 
| 
      
 784 
     | 
    
         
            +
              return ret;
         
     | 
| 
       547 
785 
     | 
    
         
             
            }
         
     | 
| 
       548 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       549 
     | 
    
         
            -
             
     | 
| 
       550 
     | 
    
         
            -
              envoy_config_bootstrap_v3_Bootstrap_StaticResources *ret = envoy_config_bootstrap_v3_Bootstrap_StaticResources_new(arena);
         
     | 
| 
       551 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, arena, options))
         
     | 
| 
       552 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 786 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Bootstrap_StaticResources_serialize(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 787 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, 0, arena, len);
         
     | 
| 
       553 
788 
     | 
    
         
             
            }
         
     | 
| 
       554 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       555 
     | 
    
         
            -
             
     | 
| 
      
 789 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Bootstrap_StaticResources_serialize_ex(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, int options,
         
     | 
| 
      
 790 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 791 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Bootstrap_StaticResources_msginit, options, arena, len);
         
     | 
| 
      
 792 
     | 
    
         
            +
            }
         
     | 
| 
      
 793 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_StaticResources_has_listeners(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg) {
         
     | 
| 
      
 794 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0));
         
     | 
| 
      
 795 
     | 
    
         
            +
            }
         
     | 
| 
      
 796 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_StaticResources_clear_listeners(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg) {
         
     | 
| 
      
 797 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(0, 0));
         
     | 
| 
      
 798 
     | 
    
         
            +
            }
         
     | 
| 
      
 799 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_listener_v3_Listener* const* envoy_config_bootstrap_v3_Bootstrap_StaticResources_listeners(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t* len) {
         
     | 
| 
      
 800 
     | 
    
         
            +
              return (const struct envoy_config_listener_v3_Listener* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len);
         
     | 
| 
      
 801 
     | 
    
         
            +
            }
         
     | 
| 
      
 802 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_StaticResources_has_clusters(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg) {
         
     | 
| 
      
 803 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(4, 8));
         
     | 
| 
      
 804 
     | 
    
         
            +
            }
         
     | 
| 
      
 805 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_StaticResources_clear_clusters(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg) {
         
     | 
| 
      
 806 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(4, 8));
         
     | 
| 
      
 807 
     | 
    
         
            +
            }
         
     | 
| 
      
 808 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_cluster_v3_Cluster* const* envoy_config_bootstrap_v3_Bootstrap_StaticResources_clusters(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t* len) {
         
     | 
| 
      
 809 
     | 
    
         
            +
              return (const struct envoy_config_cluster_v3_Cluster* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len);
         
     | 
| 
      
 810 
     | 
    
         
            +
            }
         
     | 
| 
      
 811 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_StaticResources_has_secrets(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg) {
         
     | 
| 
      
 812 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(8, 16));
         
     | 
| 
      
 813 
     | 
    
         
            +
            }
         
     | 
| 
      
 814 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_StaticResources_clear_secrets(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg) {
         
     | 
| 
      
 815 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(8, 16));
         
     | 
| 
      
 816 
     | 
    
         
            +
            }
         
     | 
| 
      
 817 
     | 
    
         
            +
            UPB_INLINE const struct envoy_extensions_transport_sockets_tls_v3_Secret* const* envoy_config_bootstrap_v3_Bootstrap_StaticResources_secrets(const envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t* len) {
         
     | 
| 
      
 818 
     | 
    
         
            +
              return (const struct envoy_extensions_transport_sockets_tls_v3_Secret* const*)_upb_array_accessor(msg, UPB_SIZE(8, 16), len);
         
     | 
| 
       556 
819 
     | 
    
         
             
            }
         
     | 
| 
       557 
820 
     | 
    
         | 
| 
       558 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       559 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_listener_v3_Listener* const* envoy_config_bootstrap_v3_Bootstrap_StaticResources_listeners(const envoy_config_bootstrap_v3_Bootstrap_StaticResources *msg, size_t *len) { return (const struct envoy_config_listener_v3_Listener* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
         
     | 
| 
       560 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_StaticResources_has_clusters(const envoy_config_bootstrap_v3_Bootstrap_StaticResources *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(4, 8)); }
         
     | 
| 
       561 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_cluster_v3_Cluster* const* envoy_config_bootstrap_v3_Bootstrap_StaticResources_clusters(const envoy_config_bootstrap_v3_Bootstrap_StaticResources *msg, size_t *len) { return (const struct envoy_config_cluster_v3_Cluster* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
         
     | 
| 
       562 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_StaticResources_has_secrets(const envoy_config_bootstrap_v3_Bootstrap_StaticResources *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(8, 16)); }
         
     | 
| 
       563 
     | 
    
         
            -
            UPB_INLINE const struct envoy_extensions_transport_sockets_tls_v3_Secret* const* envoy_config_bootstrap_v3_Bootstrap_StaticResources_secrets(const envoy_config_bootstrap_v3_Bootstrap_StaticResources *msg, size_t *len) { return (const struct envoy_extensions_transport_sockets_tls_v3_Secret* const*)_upb_array_accessor(msg, UPB_SIZE(8, 16), len); }
         
     | 
| 
       564 
     | 
    
         
            -
             
     | 
| 
       565 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_listener_v3_Listener** envoy_config_bootstrap_v3_Bootstrap_StaticResources_mutable_listeners(envoy_config_bootstrap_v3_Bootstrap_StaticResources *msg, size_t *len) {
         
     | 
| 
      
 821 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_listener_v3_Listener** envoy_config_bootstrap_v3_Bootstrap_StaticResources_mutable_listeners(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t* len) {
         
     | 
| 
       566 
822 
     | 
    
         
             
              return (struct envoy_config_listener_v3_Listener**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
         
     | 
| 
       567 
823 
     | 
    
         
             
            }
         
     | 
| 
       568 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_listener_v3_Listener** envoy_config_bootstrap_v3_Bootstrap_StaticResources_resize_listeners(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       569 
     | 
    
         
            -
              return (struct envoy_config_listener_v3_Listener**) 
     | 
| 
      
 824 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_listener_v3_Listener** envoy_config_bootstrap_v3_Bootstrap_StaticResources_resize_listeners(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 825 
     | 
    
         
            +
              return (struct envoy_config_listener_v3_Listener**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       570 
826 
     | 
    
         
             
            }
         
     | 
| 
       571 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_listener_v3_Listener* envoy_config_bootstrap_v3_Bootstrap_StaticResources_add_listeners(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       572 
     | 
    
         
            -
              struct envoy_config_listener_v3_Listener* sub = (struct envoy_config_listener_v3_Listener*) 
     | 
| 
       573 
     | 
    
         
            -
              bool ok =  
     | 
| 
       574 
     | 
    
         
            -
                  msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 827 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_listener_v3_Listener* envoy_config_bootstrap_v3_Bootstrap_StaticResources_add_listeners(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, upb_Arena* arena) {
         
     | 
| 
      
 828 
     | 
    
         
            +
              struct envoy_config_listener_v3_Listener* sub = (struct envoy_config_listener_v3_Listener*)_upb_Message_New(&envoy_config_listener_v3_Listener_msginit, arena);
         
     | 
| 
      
 829 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       575 
830 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       576 
831 
     | 
    
         
             
              return sub;
         
     | 
| 
       577 
832 
     | 
    
         
             
            }
         
     | 
| 
       578 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_cluster_v3_Cluster** envoy_config_bootstrap_v3_Bootstrap_StaticResources_mutable_clusters(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
      
 833 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_cluster_v3_Cluster** envoy_config_bootstrap_v3_Bootstrap_StaticResources_mutable_clusters(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t* len) {
         
     | 
| 
       579 
834 
     | 
    
         
             
              return (struct envoy_config_cluster_v3_Cluster**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
         
     | 
| 
       580 
835 
     | 
    
         
             
            }
         
     | 
| 
       581 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_cluster_v3_Cluster** envoy_config_bootstrap_v3_Bootstrap_StaticResources_resize_clusters(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       582 
     | 
    
         
            -
              return (struct envoy_config_cluster_v3_Cluster**) 
     | 
| 
      
 836 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_cluster_v3_Cluster** envoy_config_bootstrap_v3_Bootstrap_StaticResources_resize_clusters(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 837 
     | 
    
         
            +
              return (struct envoy_config_cluster_v3_Cluster**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(4, 8), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       583 
838 
     | 
    
         
             
            }
         
     | 
| 
       584 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_cluster_v3_Cluster* envoy_config_bootstrap_v3_Bootstrap_StaticResources_add_clusters(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       585 
     | 
    
         
            -
              struct envoy_config_cluster_v3_Cluster* sub = (struct envoy_config_cluster_v3_Cluster*) 
     | 
| 
       586 
     | 
    
         
            -
              bool ok =  
     | 
| 
       587 
     | 
    
         
            -
                  msg, UPB_SIZE(4, 8), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 839 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_cluster_v3_Cluster* envoy_config_bootstrap_v3_Bootstrap_StaticResources_add_clusters(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, upb_Arena* arena) {
         
     | 
| 
      
 840 
     | 
    
         
            +
              struct envoy_config_cluster_v3_Cluster* sub = (struct envoy_config_cluster_v3_Cluster*)_upb_Message_New(&envoy_config_cluster_v3_Cluster_msginit, arena);
         
     | 
| 
      
 841 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(4, 8), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       588 
842 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       589 
843 
     | 
    
         
             
              return sub;
         
     | 
| 
       590 
844 
     | 
    
         
             
            }
         
     | 
| 
       591 
     | 
    
         
            -
            UPB_INLINE struct envoy_extensions_transport_sockets_tls_v3_Secret** envoy_config_bootstrap_v3_Bootstrap_StaticResources_mutable_secrets(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
      
 845 
     | 
    
         
            +
            UPB_INLINE struct envoy_extensions_transport_sockets_tls_v3_Secret** envoy_config_bootstrap_v3_Bootstrap_StaticResources_mutable_secrets(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t* len) {
         
     | 
| 
       592 
846 
     | 
    
         
             
              return (struct envoy_extensions_transport_sockets_tls_v3_Secret**)_upb_array_mutable_accessor(msg, UPB_SIZE(8, 16), len);
         
     | 
| 
       593 
847 
     | 
    
         
             
            }
         
     | 
| 
       594 
     | 
    
         
            -
            UPB_INLINE struct envoy_extensions_transport_sockets_tls_v3_Secret** envoy_config_bootstrap_v3_Bootstrap_StaticResources_resize_secrets(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       595 
     | 
    
         
            -
              return (struct envoy_extensions_transport_sockets_tls_v3_Secret**) 
     | 
| 
      
 848 
     | 
    
         
            +
            UPB_INLINE struct envoy_extensions_transport_sockets_tls_v3_Secret** envoy_config_bootstrap_v3_Bootstrap_StaticResources_resize_secrets(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 849 
     | 
    
         
            +
              return (struct envoy_extensions_transport_sockets_tls_v3_Secret**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(8, 16), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       596 
850 
     | 
    
         
             
            }
         
     | 
| 
       597 
     | 
    
         
            -
            UPB_INLINE struct envoy_extensions_transport_sockets_tls_v3_Secret* envoy_config_bootstrap_v3_Bootstrap_StaticResources_add_secrets(envoy_config_bootstrap_v3_Bootstrap_StaticResources  
     | 
| 
       598 
     | 
    
         
            -
              struct envoy_extensions_transport_sockets_tls_v3_Secret* sub = (struct envoy_extensions_transport_sockets_tls_v3_Secret*) 
     | 
| 
       599 
     | 
    
         
            -
              bool ok =  
     | 
| 
       600 
     | 
    
         
            -
                  msg, UPB_SIZE(8, 16), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 851 
     | 
    
         
            +
            UPB_INLINE struct envoy_extensions_transport_sockets_tls_v3_Secret* envoy_config_bootstrap_v3_Bootstrap_StaticResources_add_secrets(envoy_config_bootstrap_v3_Bootstrap_StaticResources* msg, upb_Arena* arena) {
         
     | 
| 
      
 852 
     | 
    
         
            +
              struct envoy_extensions_transport_sockets_tls_v3_Secret* sub = (struct envoy_extensions_transport_sockets_tls_v3_Secret*)_upb_Message_New(&envoy_extensions_transport_sockets_tls_v3_Secret_msginit, arena);
         
     | 
| 
      
 853 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(8, 16), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       601 
854 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       602 
855 
     | 
    
         
             
              return sub;
         
     | 
| 
       603 
856 
     | 
    
         
             
            }
         
     | 
| 
       604 
857 
     | 
    
         | 
| 
       605 
858 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Bootstrap.DynamicResources */
         
     | 
| 
       606 
859 
     | 
    
         | 
| 
       607 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_DynamicResources  
     | 
| 
       608 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Bootstrap_DynamicResources 
     | 
| 
      
 860 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_new(upb_Arena* arena) {
         
     | 
| 
      
 861 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Bootstrap_DynamicResources*)_upb_Message_New(&envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, arena);
         
     | 
| 
      
 862 
     | 
    
         
            +
            }
         
     | 
| 
      
 863 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 864 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Bootstrap_DynamicResources* ret = envoy_config_bootstrap_v3_Bootstrap_DynamicResources_new(arena);
         
     | 
| 
      
 865 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 866 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 867 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 868 
     | 
    
         
            +
              }
         
     | 
| 
      
 869 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 870 
     | 
    
         
            +
            }
         
     | 
| 
      
 871 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Bootstrap_DynamicResources* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 872 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 873 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 874 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Bootstrap_DynamicResources* ret = envoy_config_bootstrap_v3_Bootstrap_DynamicResources_new(arena);
         
     | 
| 
      
 875 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 876 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, extreg, options, arena) !=
         
     | 
| 
      
 877 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 878 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 879 
     | 
    
         
            +
              }
         
     | 
| 
      
 880 
     | 
    
         
            +
              return ret;
         
     | 
| 
       609 
881 
     | 
    
         
             
            }
         
     | 
| 
       610 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       611 
     | 
    
         
            -
             
     | 
| 
       612 
     | 
    
         
            -
              envoy_config_bootstrap_v3_Bootstrap_DynamicResources *ret = envoy_config_bootstrap_v3_Bootstrap_DynamicResources_new(arena);
         
     | 
| 
       613 
     | 
    
         
            -
              return (ret && upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, arena)) ? ret : NULL;
         
     | 
| 
      
 882 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_serialize(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 883 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, 0, arena, len);
         
     | 
| 
       614 
884 
     | 
    
         
             
            }
         
     | 
| 
       615 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       616 
     | 
    
         
            -
             
     | 
| 
       617 
     | 
    
         
            -
               
     | 
| 
       618 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, arena, options))
         
     | 
| 
       619 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 885 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_serialize_ex(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg, int options,
         
     | 
| 
      
 886 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 887 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Bootstrap_DynamicResources_msginit, options, arena, len);
         
     | 
| 
       620 
888 
     | 
    
         
             
            }
         
     | 
| 
       621 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       622 
     | 
    
         
            -
              return  
     | 
| 
      
 889 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_DynamicResources_has_lds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 890 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 891 
     | 
    
         
            +
            }
         
     | 
| 
      
 892 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_clear_lds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 893 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const upb_Message*) = NULL;
         
     | 
| 
      
 894 
     | 
    
         
            +
            }
         
     | 
| 
      
 895 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_lds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 896 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct envoy_config_core_v3_ConfigSource*);
         
     | 
| 
      
 897 
     | 
    
         
            +
            }
         
     | 
| 
      
 898 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_DynamicResources_has_cds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 899 
     | 
    
         
            +
              return _upb_hasbit(msg, 2);
         
     | 
| 
      
 900 
     | 
    
         
            +
            }
         
     | 
| 
      
 901 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_clear_cds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 902 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const upb_Message*) = NULL;
         
     | 
| 
      
 903 
     | 
    
         
            +
            }
         
     | 
| 
      
 904 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_cds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 905 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const struct envoy_config_core_v3_ConfigSource*);
         
     | 
| 
      
 906 
     | 
    
         
            +
            }
         
     | 
| 
      
 907 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_DynamicResources_has_ads_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 908 
     | 
    
         
            +
              return _upb_hasbit(msg, 3);
         
     | 
| 
      
 909 
     | 
    
         
            +
            }
         
     | 
| 
      
 910 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_clear_ads_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 911 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const upb_Message*) = NULL;
         
     | 
| 
      
 912 
     | 
    
         
            +
            }
         
     | 
| 
      
 913 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_ads_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 914 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct envoy_config_core_v3_ApiConfigSource*);
         
     | 
| 
      
 915 
     | 
    
         
            +
            }
         
     | 
| 
      
 916 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_clear_lds_resources_locator(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 917 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(16, 32), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 918 
     | 
    
         
            +
            }
         
     | 
| 
      
 919 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_DynamicResources_lds_resources_locator(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 920 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), upb_StringView);
         
     | 
| 
      
 921 
     | 
    
         
            +
            }
         
     | 
| 
      
 922 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_clear_cds_resources_locator(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 923 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(24, 48), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 924 
     | 
    
         
            +
            }
         
     | 
| 
      
 925 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_DynamicResources_cds_resources_locator(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg) {
         
     | 
| 
      
 926 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(24, 48), upb_StringView);
         
     | 
| 
       623 
927 
     | 
    
         
             
            }
         
     | 
| 
       624 
     | 
    
         
            -
             
     | 
| 
       625 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_DynamicResources_has_lds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return _upb_hasbit(msg, 1); }
         
     | 
| 
       626 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_lds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct envoy_config_core_v3_ConfigSource*); }
         
     | 
| 
       627 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_DynamicResources_has_cds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return _upb_hasbit(msg, 2); }
         
     | 
| 
       628 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_cds_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(24, 48), const struct envoy_config_core_v3_ConfigSource*); }
         
     | 
| 
       629 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_DynamicResources_has_ads_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return _upb_hasbit(msg, 3); }
         
     | 
| 
       630 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_ads_config(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const struct envoy_config_core_v3_ApiConfigSource*); }
         
     | 
| 
       631 
     | 
    
         
            -
            UPB_INLINE upb_strview envoy_config_bootstrap_v3_Bootstrap_DynamicResources_lds_resources_locator(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
         
     | 
| 
       632 
     | 
    
         
            -
            UPB_INLINE upb_strview envoy_config_bootstrap_v3_Bootstrap_DynamicResources_cds_resources_locator(const envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview); }
         
     | 
| 
       633 
928 
     | 
    
         | 
| 
       634 
929 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_lds_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg, struct envoy_config_core_v3_ConfigSource* value) {
         
     | 
| 
       635 
930 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       636 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 931 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), struct envoy_config_core_v3_ConfigSource*) = value;
         
     | 
| 
       637 
932 
     | 
    
         
             
            }
         
     | 
| 
       638 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_mutable_lds_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources  
     | 
| 
      
 933 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_mutable_lds_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg, upb_Arena* arena) {
         
     | 
| 
       639 
934 
     | 
    
         
             
              struct envoy_config_core_v3_ConfigSource* sub = (struct envoy_config_core_v3_ConfigSource*)envoy_config_bootstrap_v3_Bootstrap_DynamicResources_lds_config(msg);
         
     | 
| 
       640 
935 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       641 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ConfigSource*) 
     | 
| 
      
 936 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ConfigSource*)_upb_Message_New(&envoy_config_core_v3_ConfigSource_msginit, arena);
         
     | 
| 
       642 
937 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       643 
938 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_lds_config(msg, sub);
         
     | 
| 
       644 
939 
     | 
    
         
             
              }
         
     | 
| 
         @@ -646,12 +941,12 @@ UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_B 
     | 
|
| 
       646 
941 
     | 
    
         
             
            }
         
     | 
| 
       647 
942 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_cds_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg, struct envoy_config_core_v3_ConfigSource* value) {
         
     | 
| 
       648 
943 
     | 
    
         
             
              _upb_sethas(msg, 2);
         
     | 
| 
       649 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 944 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(8, 16), struct envoy_config_core_v3_ConfigSource*) = value;
         
     | 
| 
       650 
945 
     | 
    
         
             
            }
         
     | 
| 
       651 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_mutable_cds_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources  
     | 
| 
      
 946 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_mutable_cds_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg, upb_Arena* arena) {
         
     | 
| 
       652 
947 
     | 
    
         
             
              struct envoy_config_core_v3_ConfigSource* sub = (struct envoy_config_core_v3_ConfigSource*)envoy_config_bootstrap_v3_Bootstrap_DynamicResources_cds_config(msg);
         
     | 
| 
       653 
948 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       654 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ConfigSource*) 
     | 
| 
      
 949 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ConfigSource*)_upb_Message_New(&envoy_config_core_v3_ConfigSource_msginit, arena);
         
     | 
| 
       655 
950 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       656 
951 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_cds_config(msg, sub);
         
     | 
| 
       657 
952 
     | 
    
         
             
              }
         
     | 
| 
         @@ -659,33 +954,35 @@ UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_B 
     | 
|
| 
       659 
954 
     | 
    
         
             
            }
         
     | 
| 
       660 
955 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_ads_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg, struct envoy_config_core_v3_ApiConfigSource* value) {
         
     | 
| 
       661 
956 
     | 
    
         
             
              _upb_sethas(msg, 3);
         
     | 
| 
       662 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 957 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), struct envoy_config_core_v3_ApiConfigSource*) = value;
         
     | 
| 
       663 
958 
     | 
    
         
             
            }
         
     | 
| 
       664 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_mutable_ads_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources  
     | 
| 
      
 959 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_Bootstrap_DynamicResources_mutable_ads_config(envoy_config_bootstrap_v3_Bootstrap_DynamicResources* msg, upb_Arena* arena) {
         
     | 
| 
       665 
960 
     | 
    
         
             
              struct envoy_config_core_v3_ApiConfigSource* sub = (struct envoy_config_core_v3_ApiConfigSource*)envoy_config_bootstrap_v3_Bootstrap_DynamicResources_ads_config(msg);
         
     | 
| 
       666 
961 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       667 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ApiConfigSource*) 
     | 
| 
      
 962 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ApiConfigSource*)_upb_Message_New(&envoy_config_core_v3_ApiConfigSource_msginit, arena);
         
     | 
| 
       668 
963 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       669 
964 
     | 
    
         
             
                envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_ads_config(msg, sub);
         
     | 
| 
       670 
965 
     | 
    
         
             
              }
         
     | 
| 
       671 
966 
     | 
    
         
             
              return sub;
         
     | 
| 
       672 
967 
     | 
    
         
             
            }
         
     | 
| 
       673 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_lds_resources_locator(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg,  
     | 
| 
       674 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 968 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_lds_resources_locator(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg, upb_StringView value) {
         
     | 
| 
      
 969 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(16, 32), upb_StringView) = value;
         
     | 
| 
       675 
970 
     | 
    
         
             
            }
         
     | 
| 
       676 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_cds_resources_locator(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg,  
     | 
| 
       677 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 971 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_DynamicResources_set_cds_resources_locator(envoy_config_bootstrap_v3_Bootstrap_DynamicResources *msg, upb_StringView value) {
         
     | 
| 
      
 972 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(24, 48), upb_StringView) = value;
         
     | 
| 
       678 
973 
     | 
    
         
             
            }
         
     | 
| 
       679 
974 
     | 
    
         | 
| 
       680 
975 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Bootstrap.CertificateProviderInstancesEntry */
         
     | 
| 
       681 
976 
     | 
    
         | 
| 
       682 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       683 
     | 
    
         
            -
               
     | 
| 
      
 977 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry_key(const envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry* msg) {
         
     | 
| 
      
 978 
     | 
    
         
            +
              upb_StringView ret;
         
     | 
| 
       684 
979 
     | 
    
         
             
              _upb_msg_map_key(msg, &ret, 0);
         
     | 
| 
       685 
980 
     | 
    
         
             
              return ret;
         
     | 
| 
       686 
981 
     | 
    
         
             
            }
         
     | 
| 
       687 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry_has_value(const envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry  
     | 
| 
       688 
     | 
    
         
            -
             
     | 
| 
      
 982 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry_has_value(const envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry* msg) {
         
     | 
| 
      
 983 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(8, 16));
         
     | 
| 
      
 984 
     | 
    
         
            +
            }
         
     | 
| 
      
 985 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry_value(const envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstancesEntry* msg) {
         
     | 
| 
       689 
986 
     | 
    
         
             
              struct envoy_config_core_v3_TypedExtensionConfig* ret;
         
     | 
| 
       690 
987 
     | 
    
         
             
              _upb_msg_map_value(msg, &ret, sizeof(ret));
         
     | 
| 
       691 
988 
     | 
    
         
             
              return ret;
         
     | 
| 
         @@ -697,118 +994,204 @@ UPB_INLINE void envoy_config_bootstrap_v3_Bootstrap_CertificateProviderInstances 
     | 
|
| 
       697 
994 
     | 
    
         | 
| 
       698 
995 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Admin */
         
     | 
| 
       699 
996 
     | 
    
         | 
| 
       700 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Admin  
     | 
| 
       701 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Admin 
     | 
| 
      
 997 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Admin_new(upb_Arena* arena) {
         
     | 
| 
      
 998 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Admin*)_upb_Message_New(&envoy_config_bootstrap_v3_Admin_msginit, arena);
         
     | 
| 
       702 
999 
     | 
    
         
             
            }
         
     | 
| 
       703 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Admin  
     | 
| 
       704 
     | 
    
         
            -
             
     | 
| 
       705 
     | 
    
         
            -
               
     | 
| 
       706 
     | 
    
         
            -
               
     | 
| 
      
 1000 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Admin_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1001 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Admin* ret = envoy_config_bootstrap_v3_Admin_new(arena);
         
     | 
| 
      
 1002 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1003 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Admin_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1004 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1005 
     | 
    
         
            +
              }
         
     | 
| 
      
 1006 
     | 
    
         
            +
              return ret;
         
     | 
| 
       707 
1007 
     | 
    
         
             
            }
         
     | 
| 
       708 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Admin  
     | 
| 
       709 
     | 
    
         
            -
                                        
     | 
| 
       710 
     | 
    
         
            -
             
     | 
| 
       711 
     | 
    
         
            -
               
     | 
| 
       712 
     | 
    
         
            -
             
     | 
| 
      
 1008 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Admin* envoy_config_bootstrap_v3_Admin_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1009 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1010 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1011 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Admin* ret = envoy_config_bootstrap_v3_Admin_new(arena);
         
     | 
| 
      
 1012 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1013 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Admin_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1015 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1016 
     | 
    
         
            +
              }
         
     | 
| 
      
 1017 
     | 
    
         
            +
              return ret;
         
     | 
| 
       713 
1018 
     | 
    
         
             
            }
         
     | 
| 
       714 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       715 
     | 
    
         
            -
              return  
     | 
| 
      
 1019 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Admin_serialize(const envoy_config_bootstrap_v3_Admin* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1020 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Admin_msginit, 0, arena, len);
         
     | 
| 
      
 1021 
     | 
    
         
            +
            }
         
     | 
| 
      
 1022 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Admin_serialize_ex(const envoy_config_bootstrap_v3_Admin* msg, int options,
         
     | 
| 
      
 1023 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1024 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Admin_msginit, options, arena, len);
         
     | 
| 
      
 1025 
     | 
    
         
            +
            }
         
     | 
| 
      
 1026 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_clear_access_log_path(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1027 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1028 
     | 
    
         
            +
            }
         
     | 
| 
      
 1029 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Admin_access_log_path(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1030 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 1031 
     | 
    
         
            +
            }
         
     | 
| 
      
 1032 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_clear_profile_path(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1033 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1034 
     | 
    
         
            +
            }
         
     | 
| 
      
 1035 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Admin_profile_path(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1036 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView);
         
     | 
| 
      
 1037 
     | 
    
         
            +
            }
         
     | 
| 
      
 1038 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_has_address(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1039 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1040 
     | 
    
         
            +
            }
         
     | 
| 
      
 1041 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_clear_address(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1042 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const upb_Message*) = NULL;
         
     | 
| 
      
 1043 
     | 
    
         
            +
            }
         
     | 
| 
      
 1044 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_Address* envoy_config_bootstrap_v3_Admin_address(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1045 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct envoy_config_core_v3_Address*);
         
     | 
| 
      
 1046 
     | 
    
         
            +
            }
         
     | 
| 
      
 1047 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_has_socket_options(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1048 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(24, 48));
         
     | 
| 
      
 1049 
     | 
    
         
            +
            }
         
     | 
| 
      
 1050 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_clear_socket_options(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1051 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(24, 48));
         
     | 
| 
      
 1052 
     | 
    
         
            +
            }
         
     | 
| 
      
 1053 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_SocketOption* const* envoy_config_bootstrap_v3_Admin_socket_options(const envoy_config_bootstrap_v3_Admin* msg, size_t* len) {
         
     | 
| 
      
 1054 
     | 
    
         
            +
              return (const struct envoy_config_core_v3_SocketOption* const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len);
         
     | 
| 
      
 1055 
     | 
    
         
            +
            }
         
     | 
| 
      
 1056 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_has_access_log(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1057 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(28, 56));
         
     | 
| 
      
 1058 
     | 
    
         
            +
            }
         
     | 
| 
      
 1059 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_clear_access_log(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1060 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(28, 56));
         
     | 
| 
      
 1061 
     | 
    
         
            +
            }
         
     | 
| 
      
 1062 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_accesslog_v3_AccessLog* const* envoy_config_bootstrap_v3_Admin_access_log(const envoy_config_bootstrap_v3_Admin* msg, size_t* len) {
         
     | 
| 
      
 1063 
     | 
    
         
            +
              return (const struct envoy_config_accesslog_v3_AccessLog* const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len);
         
     | 
| 
      
 1064 
     | 
    
         
            +
            }
         
     | 
| 
      
 1065 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_clear_ignore_global_conn_limit(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1066 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = 0;
         
     | 
| 
      
 1067 
     | 
    
         
            +
            }
         
     | 
| 
      
 1068 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_ignore_global_conn_limit(const envoy_config_bootstrap_v3_Admin* msg) {
         
     | 
| 
      
 1069 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool);
         
     | 
| 
       716 
1070 
     | 
    
         
             
            }
         
     | 
| 
       717 
1071 
     | 
    
         | 
| 
       718 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       719 
     | 
    
         
            -
             
     | 
| 
       720 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_has_address(const envoy_config_bootstrap_v3_Admin *msg) { return _upb_hasbit(msg, 1); }
         
     | 
| 
       721 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_Address* envoy_config_bootstrap_v3_Admin_address(const envoy_config_bootstrap_v3_Admin *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct envoy_config_core_v3_Address*); }
         
     | 
| 
       722 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_has_socket_options(const envoy_config_bootstrap_v3_Admin *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(24, 48)); }
         
     | 
| 
       723 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_SocketOption* const* envoy_config_bootstrap_v3_Admin_socket_options(const envoy_config_bootstrap_v3_Admin *msg, size_t *len) { return (const struct envoy_config_core_v3_SocketOption* const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
         
     | 
| 
       724 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Admin_has_access_log(const envoy_config_bootstrap_v3_Admin *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(28, 56)); }
         
     | 
| 
       725 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_accesslog_v3_AccessLog* const* envoy_config_bootstrap_v3_Admin_access_log(const envoy_config_bootstrap_v3_Admin *msg, size_t *len) { return (const struct envoy_config_accesslog_v3_AccessLog* const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len); }
         
     | 
| 
       726 
     | 
    
         
            -
             
     | 
| 
       727 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_set_access_log_path(envoy_config_bootstrap_v3_Admin *msg, upb_strview value) {
         
     | 
| 
       728 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 1072 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_set_access_log_path(envoy_config_bootstrap_v3_Admin *msg, upb_StringView value) {
         
     | 
| 
      
 1073 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       729 
1074 
     | 
    
         
             
            }
         
     | 
| 
       730 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_set_profile_path(envoy_config_bootstrap_v3_Admin *msg,  
     | 
| 
       731 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24),  
     | 
| 
      
 1075 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_set_profile_path(envoy_config_bootstrap_v3_Admin *msg, upb_StringView value) {
         
     | 
| 
      
 1076 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView) = value;
         
     | 
| 
       732 
1077 
     | 
    
         
             
            }
         
     | 
| 
       733 
1078 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_set_address(envoy_config_bootstrap_v3_Admin *msg, struct envoy_config_core_v3_Address* value) {
         
     | 
| 
       734 
1079 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       735 
1080 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), struct envoy_config_core_v3_Address*) = value;
         
     | 
| 
       736 
1081 
     | 
    
         
             
            }
         
     | 
| 
       737 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_Address* envoy_config_bootstrap_v3_Admin_mutable_address(envoy_config_bootstrap_v3_Admin  
     | 
| 
      
 1082 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_Address* envoy_config_bootstrap_v3_Admin_mutable_address(envoy_config_bootstrap_v3_Admin* msg, upb_Arena* arena) {
         
     | 
| 
       738 
1083 
     | 
    
         
             
              struct envoy_config_core_v3_Address* sub = (struct envoy_config_core_v3_Address*)envoy_config_bootstrap_v3_Admin_address(msg);
         
     | 
| 
       739 
1084 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       740 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_Address*) 
     | 
| 
      
 1085 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_Address*)_upb_Message_New(&envoy_config_core_v3_Address_msginit, arena);
         
     | 
| 
       741 
1086 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       742 
1087 
     | 
    
         
             
                envoy_config_bootstrap_v3_Admin_set_address(msg, sub);
         
     | 
| 
       743 
1088 
     | 
    
         
             
              }
         
     | 
| 
       744 
1089 
     | 
    
         
             
              return sub;
         
     | 
| 
       745 
1090 
     | 
    
         
             
            }
         
     | 
| 
       746 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_SocketOption** envoy_config_bootstrap_v3_Admin_mutable_socket_options(envoy_config_bootstrap_v3_Admin  
     | 
| 
      
 1091 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_SocketOption** envoy_config_bootstrap_v3_Admin_mutable_socket_options(envoy_config_bootstrap_v3_Admin* msg, size_t* len) {
         
     | 
| 
       747 
1092 
     | 
    
         
             
              return (struct envoy_config_core_v3_SocketOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
         
     | 
| 
       748 
1093 
     | 
    
         
             
            }
         
     | 
| 
       749 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_SocketOption** envoy_config_bootstrap_v3_Admin_resize_socket_options(envoy_config_bootstrap_v3_Admin  
     | 
| 
       750 
     | 
    
         
            -
              return (struct envoy_config_core_v3_SocketOption**) 
     | 
| 
      
 1094 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_SocketOption** envoy_config_bootstrap_v3_Admin_resize_socket_options(envoy_config_bootstrap_v3_Admin* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 1095 
     | 
    
         
            +
              return (struct envoy_config_core_v3_SocketOption**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(24, 48), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       751 
1096 
     | 
    
         
             
            }
         
     | 
| 
       752 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_SocketOption* envoy_config_bootstrap_v3_Admin_add_socket_options(envoy_config_bootstrap_v3_Admin  
     | 
| 
       753 
     | 
    
         
            -
              struct envoy_config_core_v3_SocketOption* sub = (struct envoy_config_core_v3_SocketOption*) 
     | 
| 
       754 
     | 
    
         
            -
              bool ok =  
     | 
| 
       755 
     | 
    
         
            -
                  msg, UPB_SIZE(24, 48), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 1097 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_SocketOption* envoy_config_bootstrap_v3_Admin_add_socket_options(envoy_config_bootstrap_v3_Admin* msg, upb_Arena* arena) {
         
     | 
| 
      
 1098 
     | 
    
         
            +
              struct envoy_config_core_v3_SocketOption* sub = (struct envoy_config_core_v3_SocketOption*)_upb_Message_New(&envoy_config_core_v3_SocketOption_msginit, arena);
         
     | 
| 
      
 1099 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(24, 48), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       756 
1100 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       757 
1101 
     | 
    
         
             
              return sub;
         
     | 
| 
       758 
1102 
     | 
    
         
             
            }
         
     | 
| 
       759 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_config_bootstrap_v3_Admin_mutable_access_log(envoy_config_bootstrap_v3_Admin  
     | 
| 
      
 1103 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_config_bootstrap_v3_Admin_mutable_access_log(envoy_config_bootstrap_v3_Admin* msg, size_t* len) {
         
     | 
| 
       760 
1104 
     | 
    
         
             
              return (struct envoy_config_accesslog_v3_AccessLog**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
         
     | 
| 
       761 
1105 
     | 
    
         
             
            }
         
     | 
| 
       762 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_config_bootstrap_v3_Admin_resize_access_log(envoy_config_bootstrap_v3_Admin  
     | 
| 
       763 
     | 
    
         
            -
              return (struct envoy_config_accesslog_v3_AccessLog**) 
     | 
| 
      
 1106 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_config_bootstrap_v3_Admin_resize_access_log(envoy_config_bootstrap_v3_Admin* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 1107 
     | 
    
         
            +
              return (struct envoy_config_accesslog_v3_AccessLog**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 56), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       764 
1108 
     | 
    
         
             
            }
         
     | 
| 
       765 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_accesslog_v3_AccessLog* envoy_config_bootstrap_v3_Admin_add_access_log(envoy_config_bootstrap_v3_Admin  
     | 
| 
       766 
     | 
    
         
            -
              struct envoy_config_accesslog_v3_AccessLog* sub = (struct envoy_config_accesslog_v3_AccessLog*) 
     | 
| 
       767 
     | 
    
         
            -
              bool ok =  
     | 
| 
       768 
     | 
    
         
            -
                  msg, UPB_SIZE(28, 56), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 1109 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_accesslog_v3_AccessLog* envoy_config_bootstrap_v3_Admin_add_access_log(envoy_config_bootstrap_v3_Admin* msg, upb_Arena* arena) {
         
     | 
| 
      
 1110 
     | 
    
         
            +
              struct envoy_config_accesslog_v3_AccessLog* sub = (struct envoy_config_accesslog_v3_AccessLog*)_upb_Message_New(&envoy_config_accesslog_v3_AccessLog_msginit, arena);
         
     | 
| 
      
 1111 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 56), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       769 
1112 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       770 
1113 
     | 
    
         
             
              return sub;
         
     | 
| 
       771 
1114 
     | 
    
         
             
            }
         
     | 
| 
      
 1115 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Admin_set_ignore_global_conn_limit(envoy_config_bootstrap_v3_Admin *msg, bool value) {
         
     | 
| 
      
 1116 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
         
     | 
| 
      
 1117 
     | 
    
         
            +
            }
         
     | 
| 
       772 
1118 
     | 
    
         | 
| 
       773 
1119 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.ClusterManager */
         
     | 
| 
       774 
1120 
     | 
    
         | 
| 
       775 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager  
     | 
| 
       776 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_ClusterManager 
     | 
| 
      
 1121 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager* envoy_config_bootstrap_v3_ClusterManager_new(upb_Arena* arena) {
         
     | 
| 
      
 1122 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_ClusterManager*)_upb_Message_New(&envoy_config_bootstrap_v3_ClusterManager_msginit, arena);
         
     | 
| 
      
 1123 
     | 
    
         
            +
            }
         
     | 
| 
      
 1124 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager* envoy_config_bootstrap_v3_ClusterManager_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1125 
     | 
    
         
            +
              envoy_config_bootstrap_v3_ClusterManager* ret = envoy_config_bootstrap_v3_ClusterManager_new(arena);
         
     | 
| 
      
 1126 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1127 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_ClusterManager_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1128 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1129 
     | 
    
         
            +
              }
         
     | 
| 
      
 1130 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 1131 
     | 
    
         
            +
            }
         
     | 
| 
      
 1132 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager* envoy_config_bootstrap_v3_ClusterManager_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1133 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1134 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1135 
     | 
    
         
            +
              envoy_config_bootstrap_v3_ClusterManager* ret = envoy_config_bootstrap_v3_ClusterManager_new(arena);
         
     | 
| 
      
 1136 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1137 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_ClusterManager_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1138 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1139 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1140 
     | 
    
         
            +
              }
         
     | 
| 
      
 1141 
     | 
    
         
            +
              return ret;
         
     | 
| 
       777 
1142 
     | 
    
         
             
            }
         
     | 
| 
       778 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       779 
     | 
    
         
            -
             
     | 
| 
       780 
     | 
    
         
            -
              envoy_config_bootstrap_v3_ClusterManager *ret = envoy_config_bootstrap_v3_ClusterManager_new(arena);
         
     | 
| 
       781 
     | 
    
         
            -
              return (ret && upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_ClusterManager_msginit, arena)) ? ret : NULL;
         
     | 
| 
      
 1143 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_ClusterManager_serialize(const envoy_config_bootstrap_v3_ClusterManager* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1144 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_ClusterManager_msginit, 0, arena, len);
         
     | 
| 
       782 
1145 
     | 
    
         
             
            }
         
     | 
| 
       783 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       784 
     | 
    
         
            -
             
     | 
| 
       785 
     | 
    
         
            -
               
     | 
| 
       786 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_ClusterManager_msginit, arena, options))
         
     | 
| 
       787 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 1146 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_ClusterManager_serialize_ex(const envoy_config_bootstrap_v3_ClusterManager* msg, int options,
         
     | 
| 
      
 1147 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1148 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_ClusterManager_msginit, options, arena, len);
         
     | 
| 
       788 
1149 
     | 
    
         
             
            }
         
     | 
| 
       789 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       790 
     | 
    
         
            -
               
     | 
| 
      
 1150 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_clear_local_cluster_name(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1151 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1152 
     | 
    
         
            +
            }
         
     | 
| 
      
 1153 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_ClusterManager_local_cluster_name(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1154 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 1155 
     | 
    
         
            +
            }
         
     | 
| 
      
 1156 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_ClusterManager_has_outlier_detection(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1157 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1158 
     | 
    
         
            +
            }
         
     | 
| 
      
 1159 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_clear_outlier_detection(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1160 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const upb_Message*) = NULL;
         
     | 
| 
      
 1161 
     | 
    
         
            +
            }
         
     | 
| 
      
 1162 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_outlier_detection(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1163 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*);
         
     | 
| 
      
 1164 
     | 
    
         
            +
            }
         
     | 
| 
      
 1165 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_ClusterManager_has_upstream_bind_config(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1166 
     | 
    
         
            +
              return _upb_hasbit(msg, 2);
         
     | 
| 
      
 1167 
     | 
    
         
            +
            }
         
     | 
| 
      
 1168 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_clear_upstream_bind_config(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1169 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const upb_Message*) = NULL;
         
     | 
| 
      
 1170 
     | 
    
         
            +
            }
         
     | 
| 
      
 1171 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_BindConfig* envoy_config_bootstrap_v3_ClusterManager_upstream_bind_config(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1172 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const struct envoy_config_core_v3_BindConfig*);
         
     | 
| 
      
 1173 
     | 
    
         
            +
            }
         
     | 
| 
      
 1174 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_ClusterManager_has_load_stats_config(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1175 
     | 
    
         
            +
              return _upb_hasbit(msg, 3);
         
     | 
| 
      
 1176 
     | 
    
         
            +
            }
         
     | 
| 
      
 1177 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_clear_load_stats_config(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1178 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const upb_Message*) = NULL;
         
     | 
| 
      
 1179 
     | 
    
         
            +
            }
         
     | 
| 
      
 1180 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_ClusterManager_load_stats_config(const envoy_config_bootstrap_v3_ClusterManager* msg) {
         
     | 
| 
      
 1181 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct envoy_config_core_v3_ApiConfigSource*);
         
     | 
| 
       791 
1182 
     | 
    
         
             
            }
         
     | 
| 
       792 
1183 
     | 
    
         | 
| 
       793 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       794 
     | 
    
         
            -
             
     | 
| 
       795 
     | 
    
         
            -
            UPB_INLINE const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_outlier_detection(const envoy_config_bootstrap_v3_ClusterManager *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*); }
         
     | 
| 
       796 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_ClusterManager_has_upstream_bind_config(const envoy_config_bootstrap_v3_ClusterManager *msg) { return _upb_hasbit(msg, 2); }
         
     | 
| 
       797 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_BindConfig* envoy_config_bootstrap_v3_ClusterManager_upstream_bind_config(const envoy_config_bootstrap_v3_ClusterManager *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const struct envoy_config_core_v3_BindConfig*); }
         
     | 
| 
       798 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_ClusterManager_has_load_stats_config(const envoy_config_bootstrap_v3_ClusterManager *msg) { return _upb_hasbit(msg, 3); }
         
     | 
| 
       799 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_ClusterManager_load_stats_config(const envoy_config_bootstrap_v3_ClusterManager *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct envoy_config_core_v3_ApiConfigSource*); }
         
     | 
| 
       800 
     | 
    
         
            -
             
     | 
| 
       801 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_set_local_cluster_name(envoy_config_bootstrap_v3_ClusterManager *msg, upb_strview value) {
         
     | 
| 
       802 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 1184 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_set_local_cluster_name(envoy_config_bootstrap_v3_ClusterManager *msg, upb_StringView value) {
         
     | 
| 
      
 1185 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       803 
1186 
     | 
    
         
             
            }
         
     | 
| 
       804 
1187 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_set_outlier_detection(envoy_config_bootstrap_v3_ClusterManager *msg, envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* value) {
         
     | 
| 
       805 
1188 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       806 
1189 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*) = value;
         
     | 
| 
       807 
1190 
     | 
    
         
             
            }
         
     | 
| 
       808 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_mutable_outlier_detection(envoy_config_bootstrap_v3_ClusterManager  
     | 
| 
      
 1191 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_mutable_outlier_detection(envoy_config_bootstrap_v3_ClusterManager* msg, upb_Arena* arena) {
         
     | 
| 
       809 
1192 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* sub = (struct envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*)envoy_config_bootstrap_v3_ClusterManager_outlier_detection(msg);
         
     | 
| 
       810 
1193 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       811 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*) 
     | 
| 
      
 1194 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*)_upb_Message_New(&envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit, arena);
         
     | 
| 
       812 
1195 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       813 
1196 
     | 
    
         
             
                envoy_config_bootstrap_v3_ClusterManager_set_outlier_detection(msg, sub);
         
     | 
| 
       814 
1197 
     | 
    
         
             
              }
         
     | 
| 
         @@ -818,10 +1201,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_set_upstream_bind_confi 
     | 
|
| 
       818 
1201 
     | 
    
         
             
              _upb_sethas(msg, 2);
         
     | 
| 
       819 
1202 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(16, 32), struct envoy_config_core_v3_BindConfig*) = value;
         
     | 
| 
       820 
1203 
     | 
    
         
             
            }
         
     | 
| 
       821 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_BindConfig* envoy_config_bootstrap_v3_ClusterManager_mutable_upstream_bind_config(envoy_config_bootstrap_v3_ClusterManager  
     | 
| 
      
 1204 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_BindConfig* envoy_config_bootstrap_v3_ClusterManager_mutable_upstream_bind_config(envoy_config_bootstrap_v3_ClusterManager* msg, upb_Arena* arena) {
         
     | 
| 
       822 
1205 
     | 
    
         
             
              struct envoy_config_core_v3_BindConfig* sub = (struct envoy_config_core_v3_BindConfig*)envoy_config_bootstrap_v3_ClusterManager_upstream_bind_config(msg);
         
     | 
| 
       823 
1206 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       824 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_BindConfig*) 
     | 
| 
      
 1207 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_BindConfig*)_upb_Message_New(&envoy_config_core_v3_BindConfig_msginit, arena);
         
     | 
| 
       825 
1208 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       826 
1209 
     | 
    
         
             
                envoy_config_bootstrap_v3_ClusterManager_set_upstream_bind_config(msg, sub);
         
     | 
| 
       827 
1210 
     | 
    
         
             
              }
         
     | 
| 
         @@ -831,10 +1214,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_set_load_stats_config(e 
     | 
|
| 
       831 
1214 
     | 
    
         
             
              _upb_sethas(msg, 3);
         
     | 
| 
       832 
1215 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), struct envoy_config_core_v3_ApiConfigSource*) = value;
         
     | 
| 
       833 
1216 
     | 
    
         
             
            }
         
     | 
| 
       834 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_ClusterManager_mutable_load_stats_config(envoy_config_bootstrap_v3_ClusterManager  
     | 
| 
      
 1217 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v3_ClusterManager_mutable_load_stats_config(envoy_config_bootstrap_v3_ClusterManager* msg, upb_Arena* arena) {
         
     | 
| 
       835 
1218 
     | 
    
         
             
              struct envoy_config_core_v3_ApiConfigSource* sub = (struct envoy_config_core_v3_ApiConfigSource*)envoy_config_bootstrap_v3_ClusterManager_load_stats_config(msg);
         
     | 
| 
       836 
1219 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       837 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ApiConfigSource*) 
     | 
| 
      
 1220 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ApiConfigSource*)_upb_Message_New(&envoy_config_core_v3_ApiConfigSource_msginit, arena);
         
     | 
| 
       838 
1221 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       839 
1222 
     | 
    
         
             
                envoy_config_bootstrap_v3_ClusterManager_set_load_stats_config(msg, sub);
         
     | 
| 
       840 
1223 
     | 
    
         
             
              }
         
     | 
| 
         @@ -843,39 +1226,62 @@ UPB_INLINE struct envoy_config_core_v3_ApiConfigSource* envoy_config_bootstrap_v 
     | 
|
| 
       843 
1226 
     | 
    
         | 
| 
       844 
1227 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.ClusterManager.OutlierDetection */
         
     | 
| 
       845 
1228 
     | 
    
         | 
| 
       846 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager_OutlierDetection  
     | 
| 
       847 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_ClusterManager_OutlierDetection 
     | 
| 
      
 1229 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_new(upb_Arena* arena) {
         
     | 
| 
      
 1230 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_ClusterManager_OutlierDetection*)_upb_Message_New(&envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit, arena);
         
     | 
| 
       848 
1231 
     | 
    
         
             
            }
         
     | 
| 
       849 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager_OutlierDetection  
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
     | 
    
         
            -
               
     | 
| 
       852 
     | 
    
         
            -
               
     | 
| 
      
 1232 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1233 
     | 
    
         
            +
              envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* ret = envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_new(arena);
         
     | 
| 
      
 1234 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1235 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1236 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1237 
     | 
    
         
            +
              }
         
     | 
| 
      
 1238 
     | 
    
         
            +
              return ret;
         
     | 
| 
       853 
1239 
     | 
    
         
             
            }
         
     | 
| 
       854 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager_OutlierDetection  
     | 
| 
       855 
     | 
    
         
            -
                                        
     | 
| 
       856 
     | 
    
         
            -
             
     | 
| 
       857 
     | 
    
         
            -
               
     | 
| 
       858 
     | 
    
         
            -
             
     | 
| 
      
 1240 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1241 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1242 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1243 
     | 
    
         
            +
              envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* ret = envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_new(arena);
         
     | 
| 
      
 1244 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1245 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1246 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1247 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1248 
     | 
    
         
            +
              }
         
     | 
| 
      
 1249 
     | 
    
         
            +
              return ret;
         
     | 
| 
       859 
1250 
     | 
    
         
             
            }
         
     | 
| 
       860 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       861 
     | 
    
         
            -
              return  
     | 
| 
      
 1251 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_serialize(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1252 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit, 0, arena, len);
         
     | 
| 
      
 1253 
     | 
    
         
            +
            }
         
     | 
| 
      
 1254 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_serialize_ex(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg, int options,
         
     | 
| 
      
 1255 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1256 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_msginit, options, arena, len);
         
     | 
| 
      
 1257 
     | 
    
         
            +
            }
         
     | 
| 
      
 1258 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_clear_event_log_path(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg) {
         
     | 
| 
      
 1259 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1260 
     | 
    
         
            +
            }
         
     | 
| 
      
 1261 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_event_log_path(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg) {
         
     | 
| 
      
 1262 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 1263 
     | 
    
         
            +
            }
         
     | 
| 
      
 1264 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_has_event_service(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg) {
         
     | 
| 
      
 1265 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1266 
     | 
    
         
            +
            }
         
     | 
| 
      
 1267 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_clear_event_service(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg) {
         
     | 
| 
      
 1268 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const upb_Message*) = NULL;
         
     | 
| 
      
 1269 
     | 
    
         
            +
            }
         
     | 
| 
      
 1270 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_EventServiceConfig* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_event_service(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg) {
         
     | 
| 
      
 1271 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct envoy_config_core_v3_EventServiceConfig*);
         
     | 
| 
       862 
1272 
     | 
    
         
             
            }
         
     | 
| 
       863 
1273 
     | 
    
         | 
| 
       864 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       865 
     | 
    
         
            -
             
     | 
| 
       866 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_EventServiceConfig* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_event_service(const envoy_config_bootstrap_v3_ClusterManager_OutlierDetection *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct envoy_config_core_v3_EventServiceConfig*); }
         
     | 
| 
       867 
     | 
    
         
            -
             
     | 
| 
       868 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_set_event_log_path(envoy_config_bootstrap_v3_ClusterManager_OutlierDetection *msg, upb_strview value) {
         
     | 
| 
       869 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 1274 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_set_event_log_path(envoy_config_bootstrap_v3_ClusterManager_OutlierDetection *msg, upb_StringView value) {
         
     | 
| 
      
 1275 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       870 
1276 
     | 
    
         
             
            }
         
     | 
| 
       871 
1277 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_set_event_service(envoy_config_bootstrap_v3_ClusterManager_OutlierDetection *msg, struct envoy_config_core_v3_EventServiceConfig* value) {
         
     | 
| 
       872 
1278 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       873 
1279 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), struct envoy_config_core_v3_EventServiceConfig*) = value;
         
     | 
| 
       874 
1280 
     | 
    
         
             
            }
         
     | 
| 
       875 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_EventServiceConfig* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_mutable_event_service(envoy_config_bootstrap_v3_ClusterManager_OutlierDetection  
     | 
| 
      
 1281 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_EventServiceConfig* envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_mutable_event_service(envoy_config_bootstrap_v3_ClusterManager_OutlierDetection* msg, upb_Arena* arena) {
         
     | 
| 
       876 
1282 
     | 
    
         
             
              struct envoy_config_core_v3_EventServiceConfig* sub = (struct envoy_config_core_v3_EventServiceConfig*)envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_event_service(msg);
         
     | 
| 
       877 
1283 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       878 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_EventServiceConfig*) 
     | 
| 
      
 1284 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_EventServiceConfig*)_upb_Message_New(&envoy_config_core_v3_EventServiceConfig_msginit, arena);
         
     | 
| 
       879 
1285 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       880 
1286 
     | 
    
         
             
                envoy_config_bootstrap_v3_ClusterManager_OutlierDetection_set_event_service(msg, sub);
         
     | 
| 
       881 
1287 
     | 
    
         
             
              }
         
     | 
| 
         @@ -884,37 +1290,62 @@ UPB_INLINE struct envoy_config_core_v3_EventServiceConfig* envoy_config_bootstra 
     | 
|
| 
       884 
1290 
     | 
    
         | 
| 
       885 
1291 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Watchdogs */
         
     | 
| 
       886 
1292 
     | 
    
         | 
| 
       887 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Watchdogs  
     | 
| 
       888 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Watchdogs 
     | 
| 
      
 1293 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdogs* envoy_config_bootstrap_v3_Watchdogs_new(upb_Arena* arena) {
         
     | 
| 
      
 1294 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Watchdogs*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdogs_msginit, arena);
         
     | 
| 
      
 1295 
     | 
    
         
            +
            }
         
     | 
| 
      
 1296 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdogs* envoy_config_bootstrap_v3_Watchdogs_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1297 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Watchdogs* ret = envoy_config_bootstrap_v3_Watchdogs_new(arena);
         
     | 
| 
      
 1298 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1299 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdogs_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1300 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1301 
     | 
    
         
            +
              }
         
     | 
| 
      
 1302 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 1303 
     | 
    
         
            +
            }
         
     | 
| 
      
 1304 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdogs* envoy_config_bootstrap_v3_Watchdogs_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1305 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1306 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1307 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Watchdogs* ret = envoy_config_bootstrap_v3_Watchdogs_new(arena);
         
     | 
| 
      
 1308 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1309 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdogs_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1310 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1311 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1312 
     | 
    
         
            +
              }
         
     | 
| 
      
 1313 
     | 
    
         
            +
              return ret;
         
     | 
| 
       889 
1314 
     | 
    
         
             
            }
         
     | 
| 
       890 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       891 
     | 
    
         
            -
             
     | 
| 
       892 
     | 
    
         
            -
              envoy_config_bootstrap_v3_Watchdogs *ret = envoy_config_bootstrap_v3_Watchdogs_new(arena);
         
     | 
| 
       893 
     | 
    
         
            -
              return (ret && upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdogs_msginit, arena)) ? ret : NULL;
         
     | 
| 
      
 1315 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Watchdogs_serialize(const envoy_config_bootstrap_v3_Watchdogs* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1316 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Watchdogs_msginit, 0, arena, len);
         
     | 
| 
       894 
1317 
     | 
    
         
             
            }
         
     | 
| 
       895 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       896 
     | 
    
         
            -
             
     | 
| 
       897 
     | 
    
         
            -
               
     | 
| 
       898 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdogs_msginit, arena, options))
         
     | 
| 
       899 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 1318 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Watchdogs_serialize_ex(const envoy_config_bootstrap_v3_Watchdogs* msg, int options,
         
     | 
| 
      
 1319 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1320 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Watchdogs_msginit, options, arena, len);
         
     | 
| 
       900 
1321 
     | 
    
         
             
            }
         
     | 
| 
       901 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       902 
     | 
    
         
            -
              return  
     | 
| 
      
 1322 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdogs_has_main_thread_watchdog(const envoy_config_bootstrap_v3_Watchdogs* msg) {
         
     | 
| 
      
 1323 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1324 
     | 
    
         
            +
            }
         
     | 
| 
      
 1325 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdogs_clear_main_thread_watchdog(const envoy_config_bootstrap_v3_Watchdogs* msg) {
         
     | 
| 
      
 1326 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const upb_Message*) = NULL;
         
     | 
| 
      
 1327 
     | 
    
         
            +
            }
         
     | 
| 
      
 1328 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_main_thread_watchdog(const envoy_config_bootstrap_v3_Watchdogs* msg) {
         
     | 
| 
      
 1329 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const envoy_config_bootstrap_v3_Watchdog*);
         
     | 
| 
      
 1330 
     | 
    
         
            +
            }
         
     | 
| 
      
 1331 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdogs_has_worker_watchdog(const envoy_config_bootstrap_v3_Watchdogs* msg) {
         
     | 
| 
      
 1332 
     | 
    
         
            +
              return _upb_hasbit(msg, 2);
         
     | 
| 
      
 1333 
     | 
    
         
            +
            }
         
     | 
| 
      
 1334 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdogs_clear_worker_watchdog(const envoy_config_bootstrap_v3_Watchdogs* msg) {
         
     | 
| 
      
 1335 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const upb_Message*) = NULL;
         
     | 
| 
      
 1336 
     | 
    
         
            +
            }
         
     | 
| 
      
 1337 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_worker_watchdog(const envoy_config_bootstrap_v3_Watchdogs* msg) {
         
     | 
| 
      
 1338 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const envoy_config_bootstrap_v3_Watchdog*);
         
     | 
| 
       903 
1339 
     | 
    
         
             
            }
         
     | 
| 
       904 
     | 
    
         
            -
             
     | 
| 
       905 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdogs_has_main_thread_watchdog(const envoy_config_bootstrap_v3_Watchdogs *msg) { return _upb_hasbit(msg, 1); }
         
     | 
| 
       906 
     | 
    
         
            -
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_main_thread_watchdog(const envoy_config_bootstrap_v3_Watchdogs *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const envoy_config_bootstrap_v3_Watchdog*); }
         
     | 
| 
       907 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdogs_has_worker_watchdog(const envoy_config_bootstrap_v3_Watchdogs *msg) { return _upb_hasbit(msg, 2); }
         
     | 
| 
       908 
     | 
    
         
            -
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_worker_watchdog(const envoy_config_bootstrap_v3_Watchdogs *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const envoy_config_bootstrap_v3_Watchdog*); }
         
     | 
| 
       909 
1340 
     | 
    
         | 
| 
       910 
1341 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdogs_set_main_thread_watchdog(envoy_config_bootstrap_v3_Watchdogs *msg, envoy_config_bootstrap_v3_Watchdog* value) {
         
     | 
| 
       911 
1342 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       912 
1343 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), envoy_config_bootstrap_v3_Watchdog*) = value;
         
     | 
| 
       913 
1344 
     | 
    
         
             
            }
         
     | 
| 
       914 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_mutable_main_thread_watchdog(envoy_config_bootstrap_v3_Watchdogs  
     | 
| 
      
 1345 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_mutable_main_thread_watchdog(envoy_config_bootstrap_v3_Watchdogs* msg, upb_Arena* arena) {
         
     | 
| 
       915 
1346 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Watchdog* sub = (struct envoy_config_bootstrap_v3_Watchdog*)envoy_config_bootstrap_v3_Watchdogs_main_thread_watchdog(msg);
         
     | 
| 
       916 
1347 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       917 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Watchdog*) 
     | 
| 
      
 1348 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Watchdog*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdog_msginit, arena);
         
     | 
| 
       918 
1349 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       919 
1350 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdogs_set_main_thread_watchdog(msg, sub);
         
     | 
| 
       920 
1351 
     | 
    
         
             
              }
         
     | 
| 
         @@ -924,10 +1355,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdogs_set_worker_watchdog(envoy_co 
     | 
|
| 
       924 
1355 
     | 
    
         
             
              _upb_sethas(msg, 2);
         
     | 
| 
       925 
1356 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(8, 16), envoy_config_bootstrap_v3_Watchdog*) = value;
         
     | 
| 
       926 
1357 
     | 
    
         
             
            }
         
     | 
| 
       927 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_mutable_worker_watchdog(envoy_config_bootstrap_v3_Watchdogs  
     | 
| 
      
 1358 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdogs_mutable_worker_watchdog(envoy_config_bootstrap_v3_Watchdogs* msg, upb_Arena* arena) {
         
     | 
| 
       928 
1359 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_Watchdog* sub = (struct envoy_config_bootstrap_v3_Watchdog*)envoy_config_bootstrap_v3_Watchdogs_worker_watchdog(msg);
         
     | 
| 
       929 
1360 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       930 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_Watchdog*) 
     | 
| 
      
 1361 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_Watchdog*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdog_msginit, arena);
         
     | 
| 
       931 
1362 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       932 
1363 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdogs_set_worker_watchdog(msg, sub);
         
     | 
| 
       933 
1364 
     | 
    
         
             
              }
         
     | 
| 
         @@ -936,47 +1367,107 @@ UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_ 
     | 
|
| 
       936 
1367 
     | 
    
         | 
| 
       937 
1368 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Watchdog */
         
     | 
| 
       938 
1369 
     | 
    
         | 
| 
       939 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog  
     | 
| 
       940 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Watchdog 
     | 
| 
       941 
     | 
    
         
            -
            }
         
     | 
| 
       942 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog  
     | 
| 
       943 
     | 
    
         
            -
             
     | 
| 
       944 
     | 
    
         
            -
               
     | 
| 
       945 
     | 
    
         
            -
               
     | 
| 
       946 
     | 
    
         
            -
             
     | 
| 
       947 
     | 
    
         
            -
             
     | 
| 
       948 
     | 
    
         
            -
             
     | 
| 
       949 
     | 
    
         
            -
             
     | 
| 
       950 
     | 
    
         
            -
             
     | 
| 
       951 
     | 
    
         
            -
             
     | 
| 
       952 
     | 
    
         
            -
             
     | 
| 
       953 
     | 
    
         
            -
             
     | 
| 
       954 
     | 
    
         
            -
               
     | 
| 
       955 
     | 
    
         
            -
             
     | 
| 
       956 
     | 
    
         
            -
             
     | 
| 
       957 
     | 
    
         
            -
             
     | 
| 
       958 
     | 
    
         
            -
             
     | 
| 
       959 
     | 
    
         
            -
             
     | 
| 
       960 
     | 
    
         
            -
             
     | 
| 
       961 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       962 
     | 
    
         
            -
             
     | 
| 
       963 
     | 
    
         
            -
             
     | 
| 
       964 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       965 
     | 
    
         
            -
             
     | 
| 
       966 
     | 
    
         
            -
             
     | 
| 
       967 
     | 
    
         
            -
             
     | 
| 
       968 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       969 
     | 
    
         
            -
             
     | 
| 
       970 
     | 
    
         
            -
             
     | 
| 
      
 1370 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdog_new(upb_Arena* arena) {
         
     | 
| 
      
 1371 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Watchdog*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdog_msginit, arena);
         
     | 
| 
      
 1372 
     | 
    
         
            +
            }
         
     | 
| 
      
 1373 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdog_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1374 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Watchdog* ret = envoy_config_bootstrap_v3_Watchdog_new(arena);
         
     | 
| 
      
 1375 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1376 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdog_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1377 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1378 
     | 
    
         
            +
              }
         
     | 
| 
      
 1379 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 1380 
     | 
    
         
            +
            }
         
     | 
| 
      
 1381 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog* envoy_config_bootstrap_v3_Watchdog_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1382 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1383 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1384 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Watchdog* ret = envoy_config_bootstrap_v3_Watchdog_new(arena);
         
     | 
| 
      
 1385 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1386 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdog_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1387 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1388 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1389 
     | 
    
         
            +
              }
         
     | 
| 
      
 1390 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 1391 
     | 
    
         
            +
            }
         
     | 
| 
      
 1392 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Watchdog_serialize(const envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1393 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Watchdog_msginit, 0, arena, len);
         
     | 
| 
      
 1394 
     | 
    
         
            +
            }
         
     | 
| 
      
 1395 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Watchdog_serialize_ex(const envoy_config_bootstrap_v3_Watchdog* msg, int options,
         
     | 
| 
      
 1396 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1397 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Watchdog_msginit, options, arena, len);
         
     | 
| 
      
 1398 
     | 
    
         
            +
            }
         
     | 
| 
      
 1399 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_miss_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1400 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1401 
     | 
    
         
            +
            }
         
     | 
| 
      
 1402 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_miss_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1403 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const upb_Message*) = NULL;
         
     | 
| 
      
 1404 
     | 
    
         
            +
            }
         
     | 
| 
      
 1405 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_miss_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1406 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct google_protobuf_Duration*);
         
     | 
| 
      
 1407 
     | 
    
         
            +
            }
         
     | 
| 
      
 1408 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_megamiss_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1409 
     | 
    
         
            +
              return _upb_hasbit(msg, 2);
         
     | 
| 
      
 1410 
     | 
    
         
            +
            }
         
     | 
| 
      
 1411 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_megamiss_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1412 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const upb_Message*) = NULL;
         
     | 
| 
      
 1413 
     | 
    
         
            +
            }
         
     | 
| 
      
 1414 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_megamiss_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1415 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(8, 16), const struct google_protobuf_Duration*);
         
     | 
| 
      
 1416 
     | 
    
         
            +
            }
         
     | 
| 
      
 1417 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_kill_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1418 
     | 
    
         
            +
              return _upb_hasbit(msg, 3);
         
     | 
| 
      
 1419 
     | 
    
         
            +
            }
         
     | 
| 
      
 1420 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_kill_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1421 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const upb_Message*) = NULL;
         
     | 
| 
      
 1422 
     | 
    
         
            +
            }
         
     | 
| 
      
 1423 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_kill_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1424 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct google_protobuf_Duration*);
         
     | 
| 
      
 1425 
     | 
    
         
            +
            }
         
     | 
| 
      
 1426 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_multikill_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1427 
     | 
    
         
            +
              return _upb_hasbit(msg, 4);
         
     | 
| 
      
 1428 
     | 
    
         
            +
            }
         
     | 
| 
      
 1429 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_multikill_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1430 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const upb_Message*) = NULL;
         
     | 
| 
      
 1431 
     | 
    
         
            +
            }
         
     | 
| 
      
 1432 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_multikill_timeout(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1433 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(16, 32), const struct google_protobuf_Duration*);
         
     | 
| 
      
 1434 
     | 
    
         
            +
            }
         
     | 
| 
      
 1435 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_multikill_threshold(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1436 
     | 
    
         
            +
              return _upb_hasbit(msg, 5);
         
     | 
| 
      
 1437 
     | 
    
         
            +
            }
         
     | 
| 
      
 1438 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_multikill_threshold(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1439 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const upb_Message*) = NULL;
         
     | 
| 
      
 1440 
     | 
    
         
            +
            }
         
     | 
| 
      
 1441 
     | 
    
         
            +
            UPB_INLINE const struct envoy_type_v3_Percent* envoy_config_bootstrap_v3_Watchdog_multikill_threshold(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1442 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), const struct envoy_type_v3_Percent*);
         
     | 
| 
      
 1443 
     | 
    
         
            +
            }
         
     | 
| 
      
 1444 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_max_kill_timeout_jitter(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1445 
     | 
    
         
            +
              return _upb_hasbit(msg, 6);
         
     | 
| 
      
 1446 
     | 
    
         
            +
            }
         
     | 
| 
      
 1447 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_max_kill_timeout_jitter(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1448 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(24, 48), const upb_Message*) = NULL;
         
     | 
| 
      
 1449 
     | 
    
         
            +
            }
         
     | 
| 
      
 1450 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_max_kill_timeout_jitter(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1451 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(24, 48), const struct google_protobuf_Duration*);
         
     | 
| 
      
 1452 
     | 
    
         
            +
            }
         
     | 
| 
      
 1453 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_has_actions(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1454 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(28, 56));
         
     | 
| 
      
 1455 
     | 
    
         
            +
            }
         
     | 
| 
      
 1456 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_clear_actions(const envoy_config_bootstrap_v3_Watchdog* msg) {
         
     | 
| 
      
 1457 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(28, 56));
         
     | 
| 
      
 1458 
     | 
    
         
            +
            }
         
     | 
| 
      
 1459 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* const* envoy_config_bootstrap_v3_Watchdog_actions(const envoy_config_bootstrap_v3_Watchdog* msg, size_t* len) {
         
     | 
| 
      
 1460 
     | 
    
         
            +
              return (const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len);
         
     | 
| 
      
 1461 
     | 
    
         
            +
            }
         
     | 
| 
       971 
1462 
     | 
    
         | 
| 
       972 
1463 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_set_miss_timeout(envoy_config_bootstrap_v3_Watchdog *msg, struct google_protobuf_Duration* value) {
         
     | 
| 
       973 
1464 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       974 
1465 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), struct google_protobuf_Duration*) = value;
         
     | 
| 
       975 
1466 
     | 
    
         
             
            }
         
     | 
| 
       976 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_miss_timeout(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1467 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_miss_timeout(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
       977 
1468 
     | 
    
         
             
              struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_bootstrap_v3_Watchdog_miss_timeout(msg);
         
     | 
| 
       978 
1469 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       979 
     | 
    
         
            -
                sub = (struct google_protobuf_Duration*) 
     | 
| 
      
 1470 
     | 
    
         
            +
                sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
         
     | 
| 
       980 
1471 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       981 
1472 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_set_miss_timeout(msg, sub);
         
     | 
| 
       982 
1473 
     | 
    
         
             
              }
         
     | 
| 
         @@ -986,10 +1477,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_set_megamiss_timeout(envoy_co 
     | 
|
| 
       986 
1477 
     | 
    
         
             
              _upb_sethas(msg, 2);
         
     | 
| 
       987 
1478 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(8, 16), struct google_protobuf_Duration*) = value;
         
     | 
| 
       988 
1479 
     | 
    
         
             
            }
         
     | 
| 
       989 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_megamiss_timeout(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1480 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_megamiss_timeout(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
       990 
1481 
     | 
    
         
             
              struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_bootstrap_v3_Watchdog_megamiss_timeout(msg);
         
     | 
| 
       991 
1482 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       992 
     | 
    
         
            -
                sub = (struct google_protobuf_Duration*) 
     | 
| 
      
 1483 
     | 
    
         
            +
                sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
         
     | 
| 
       993 
1484 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       994 
1485 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_set_megamiss_timeout(msg, sub);
         
     | 
| 
       995 
1486 
     | 
    
         
             
              }
         
     | 
| 
         @@ -999,10 +1490,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_set_kill_timeout(envoy_config 
     | 
|
| 
       999 
1490 
     | 
    
         
             
              _upb_sethas(msg, 3);
         
     | 
| 
       1000 
1491 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), struct google_protobuf_Duration*) = value;
         
     | 
| 
       1001 
1492 
     | 
    
         
             
            }
         
     | 
| 
       1002 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_kill_timeout(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1493 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_kill_timeout(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
       1003 
1494 
     | 
    
         
             
              struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_bootstrap_v3_Watchdog_kill_timeout(msg);
         
     | 
| 
       1004 
1495 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1005 
     | 
    
         
            -
                sub = (struct google_protobuf_Duration*) 
     | 
| 
      
 1496 
     | 
    
         
            +
                sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
         
     | 
| 
       1006 
1497 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1007 
1498 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_set_kill_timeout(msg, sub);
         
     | 
| 
       1008 
1499 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1012,10 +1503,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_set_multikill_timeout(envoy_c 
     | 
|
| 
       1012 
1503 
     | 
    
         
             
              _upb_sethas(msg, 4);
         
     | 
| 
       1013 
1504 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(16, 32), struct google_protobuf_Duration*) = value;
         
     | 
| 
       1014 
1505 
     | 
    
         
             
            }
         
     | 
| 
       1015 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_multikill_timeout(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1506 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_multikill_timeout(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
       1016 
1507 
     | 
    
         
             
              struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_bootstrap_v3_Watchdog_multikill_timeout(msg);
         
     | 
| 
       1017 
1508 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1018 
     | 
    
         
            -
                sub = (struct google_protobuf_Duration*) 
     | 
| 
      
 1509 
     | 
    
         
            +
                sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
         
     | 
| 
       1019 
1510 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1020 
1511 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_set_multikill_timeout(msg, sub);
         
     | 
| 
       1021 
1512 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1025,10 +1516,10 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_set_multikill_threshold(envoy 
     | 
|
| 
       1025 
1516 
     | 
    
         
             
              _upb_sethas(msg, 5);
         
     | 
| 
       1026 
1517 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), struct envoy_type_v3_Percent*) = value;
         
     | 
| 
       1027 
1518 
     | 
    
         
             
            }
         
     | 
| 
       1028 
     | 
    
         
            -
            UPB_INLINE struct envoy_type_v3_Percent* envoy_config_bootstrap_v3_Watchdog_mutable_multikill_threshold(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1519 
     | 
    
         
            +
            UPB_INLINE struct envoy_type_v3_Percent* envoy_config_bootstrap_v3_Watchdog_mutable_multikill_threshold(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
       1029 
1520 
     | 
    
         
             
              struct envoy_type_v3_Percent* sub = (struct envoy_type_v3_Percent*)envoy_config_bootstrap_v3_Watchdog_multikill_threshold(msg);
         
     | 
| 
       1030 
1521 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1031 
     | 
    
         
            -
                sub = (struct envoy_type_v3_Percent*) 
     | 
| 
      
 1522 
     | 
    
         
            +
                sub = (struct envoy_type_v3_Percent*)_upb_Message_New(&envoy_type_v3_Percent_msginit, arena);
         
     | 
| 
       1032 
1523 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1033 
1524 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_set_multikill_threshold(msg, sub);
         
     | 
| 
       1034 
1525 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1038,61 +1529,83 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_set_max_kill_timeout_jitter(e 
     | 
|
| 
       1038 
1529 
     | 
    
         
             
              _upb_sethas(msg, 6);
         
     | 
| 
       1039 
1530 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(24, 48), struct google_protobuf_Duration*) = value;
         
     | 
| 
       1040 
1531 
     | 
    
         
             
            }
         
     | 
| 
       1041 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_max_kill_timeout_jitter(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1532 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Duration* envoy_config_bootstrap_v3_Watchdog_mutable_max_kill_timeout_jitter(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
       1042 
1533 
     | 
    
         
             
              struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_bootstrap_v3_Watchdog_max_kill_timeout_jitter(msg);
         
     | 
| 
       1043 
1534 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1044 
     | 
    
         
            -
                sub = (struct google_protobuf_Duration*) 
     | 
| 
      
 1535 
     | 
    
         
            +
                sub = (struct google_protobuf_Duration*)_upb_Message_New(&google_protobuf_Duration_msginit, arena);
         
     | 
| 
       1045 
1536 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1046 
1537 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_set_max_kill_timeout_jitter(msg, sub);
         
     | 
| 
       1047 
1538 
     | 
    
         
             
              }
         
     | 
| 
       1048 
1539 
     | 
    
         
             
              return sub;
         
     | 
| 
       1049 
1540 
     | 
    
         
             
            }
         
     | 
| 
       1050 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction** envoy_config_bootstrap_v3_Watchdog_mutable_actions(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
      
 1541 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction** envoy_config_bootstrap_v3_Watchdog_mutable_actions(envoy_config_bootstrap_v3_Watchdog* msg, size_t* len) {
         
     | 
| 
       1051 
1542 
     | 
    
         
             
              return (envoy_config_bootstrap_v3_Watchdog_WatchdogAction**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
         
     | 
| 
       1052 
1543 
     | 
    
         
             
            }
         
     | 
| 
       1053 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction** envoy_config_bootstrap_v3_Watchdog_resize_actions(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
       1054 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Watchdog_WatchdogAction**) 
     | 
| 
      
 1544 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction** envoy_config_bootstrap_v3_Watchdog_resize_actions(envoy_config_bootstrap_v3_Watchdog* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 1545 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Watchdog_WatchdogAction**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(28, 56), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       1055 
1546 
     | 
    
         
             
            }
         
     | 
| 
       1056 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog_WatchdogAction* envoy_config_bootstrap_v3_Watchdog_add_actions(envoy_config_bootstrap_v3_Watchdog  
     | 
| 
       1057 
     | 
    
         
            -
              struct envoy_config_bootstrap_v3_Watchdog_WatchdogAction* sub = (struct envoy_config_bootstrap_v3_Watchdog_WatchdogAction*) 
     | 
| 
       1058 
     | 
    
         
            -
              bool ok =  
     | 
| 
       1059 
     | 
    
         
            -
                  msg, UPB_SIZE(28, 56), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 1547 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_Watchdog_WatchdogAction* envoy_config_bootstrap_v3_Watchdog_add_actions(envoy_config_bootstrap_v3_Watchdog* msg, upb_Arena* arena) {
         
     | 
| 
      
 1548 
     | 
    
         
            +
              struct envoy_config_bootstrap_v3_Watchdog_WatchdogAction* sub = (struct envoy_config_bootstrap_v3_Watchdog_WatchdogAction*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, arena);
         
     | 
| 
      
 1549 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(28, 56), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       1060 
1550 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       1061 
1551 
     | 
    
         
             
              return sub;
         
     | 
| 
       1062 
1552 
     | 
    
         
             
            }
         
     | 
| 
       1063 
1553 
     | 
    
         | 
| 
       1064 
1554 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Watchdog.WatchdogAction */
         
     | 
| 
       1065 
1555 
     | 
    
         | 
| 
       1066 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction  
     | 
| 
       1067 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Watchdog_WatchdogAction 
     | 
| 
      
 1556 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_new(upb_Arena* arena) {
         
     | 
| 
      
 1557 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Watchdog_WatchdogAction*)_upb_Message_New(&envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, arena);
         
     | 
| 
      
 1558 
     | 
    
         
            +
            }
         
     | 
| 
      
 1559 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1560 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Watchdog_WatchdogAction* ret = envoy_config_bootstrap_v3_Watchdog_WatchdogAction_new(arena);
         
     | 
| 
      
 1561 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1562 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1563 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1564 
     | 
    
         
            +
              }
         
     | 
| 
      
 1565 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 1566 
     | 
    
         
            +
            }
         
     | 
| 
      
 1567 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Watchdog_WatchdogAction* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1568 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1569 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1570 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Watchdog_WatchdogAction* ret = envoy_config_bootstrap_v3_Watchdog_WatchdogAction_new(arena);
         
     | 
| 
      
 1571 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1572 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1573 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1574 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1575 
     | 
    
         
            +
              }
         
     | 
| 
      
 1576 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1068 
1577 
     | 
    
         
             
            }
         
     | 
| 
       1069 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1070 
     | 
    
         
            -
             
     | 
| 
       1071 
     | 
    
         
            -
              envoy_config_bootstrap_v3_Watchdog_WatchdogAction *ret = envoy_config_bootstrap_v3_Watchdog_WatchdogAction_new(arena);
         
     | 
| 
       1072 
     | 
    
         
            -
              return (ret && upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, arena)) ? ret : NULL;
         
     | 
| 
      
 1578 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_serialize(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1579 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, 0, arena, len);
         
     | 
| 
       1073 
1580 
     | 
    
         
             
            }
         
     | 
| 
       1074 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1075 
     | 
    
         
            -
             
     | 
| 
       1076 
     | 
    
         
            -
               
     | 
| 
       1077 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, arena, options))
         
     | 
| 
       1078 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 1581 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_serialize_ex(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg, int options,
         
     | 
| 
      
 1582 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1583 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Watchdog_WatchdogAction_msginit, options, arena, len);
         
     | 
| 
       1079 
1584 
     | 
    
         
             
            }
         
     | 
| 
       1080 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1081 
     | 
    
         
            -
              return  
     | 
| 
      
 1585 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_WatchdogAction_has_config(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg) {
         
     | 
| 
      
 1586 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1587 
     | 
    
         
            +
            }
         
     | 
| 
      
 1588 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_WatchdogAction_clear_config(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg) {
         
     | 
| 
      
 1589 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(8, 8), const upb_Message*) = NULL;
         
     | 
| 
      
 1590 
     | 
    
         
            +
            }
         
     | 
| 
      
 1591 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_config(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg) {
         
     | 
| 
      
 1592 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), const struct envoy_config_core_v3_TypedExtensionConfig*);
         
     | 
| 
      
 1593 
     | 
    
         
            +
            }
         
     | 
| 
      
 1594 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_WatchdogAction_clear_event(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg) {
         
     | 
| 
      
 1595 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = 0;
         
     | 
| 
      
 1596 
     | 
    
         
            +
            }
         
     | 
| 
      
 1597 
     | 
    
         
            +
            UPB_INLINE int32_t envoy_config_bootstrap_v3_Watchdog_WatchdogAction_event(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg) {
         
     | 
| 
      
 1598 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t);
         
     | 
| 
       1082 
1599 
     | 
    
         
             
            }
         
     | 
| 
       1083 
     | 
    
         
            -
             
     | 
| 
       1084 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Watchdog_WatchdogAction_has_config(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction *msg) { return _upb_hasbit(msg, 1); }
         
     | 
| 
       1085 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_config(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), const struct envoy_config_core_v3_TypedExtensionConfig*); }
         
     | 
| 
       1086 
     | 
    
         
            -
            UPB_INLINE int32_t envoy_config_bootstrap_v3_Watchdog_WatchdogAction_event(const envoy_config_bootstrap_v3_Watchdog_WatchdogAction *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
         
     | 
| 
       1087 
1600 
     | 
    
         | 
| 
       1088 
1601 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_WatchdogAction_set_config(envoy_config_bootstrap_v3_Watchdog_WatchdogAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
         
     | 
| 
       1089 
1602 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       1090 
1603 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(8, 8), struct envoy_config_core_v3_TypedExtensionConfig*) = value;
         
     | 
| 
       1091 
1604 
     | 
    
         
             
            }
         
     | 
| 
       1092 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_mutable_config(envoy_config_bootstrap_v3_Watchdog_WatchdogAction  
     | 
| 
      
 1605 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_Watchdog_WatchdogAction_mutable_config(envoy_config_bootstrap_v3_Watchdog_WatchdogAction* msg, upb_Arena* arena) {
         
     | 
| 
       1093 
1606 
     | 
    
         
             
              struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_bootstrap_v3_Watchdog_WatchdogAction_config(msg);
         
     | 
| 
       1094 
1607 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1095 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_TypedExtensionConfig*) 
     | 
| 
      
 1608 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_TypedExtensionConfig*)_upb_Message_New(&envoy_config_core_v3_TypedExtensionConfig_msginit, arena);
         
     | 
| 
       1096 
1609 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1097 
1610 
     | 
    
         
             
                envoy_config_bootstrap_v3_Watchdog_WatchdogAction_set_config(msg, sub);
         
     | 
| 
       1098 
1611 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1104,35 +1617,53 @@ UPB_INLINE void envoy_config_bootstrap_v3_Watchdog_WatchdogAction_set_event(envo 
     | 
|
| 
       1104 
1617 
     | 
    
         | 
| 
       1105 
1618 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.FatalAction */
         
     | 
| 
       1106 
1619 
     | 
    
         | 
| 
       1107 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction  
     | 
| 
       1108 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_FatalAction 
     | 
| 
      
 1620 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction* envoy_config_bootstrap_v3_FatalAction_new(upb_Arena* arena) {
         
     | 
| 
      
 1621 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_FatalAction*)_upb_Message_New(&envoy_config_bootstrap_v3_FatalAction_msginit, arena);
         
     | 
| 
       1109 
1622 
     | 
    
         
             
            }
         
     | 
| 
       1110 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction  
     | 
| 
       1111 
     | 
    
         
            -
             
     | 
| 
       1112 
     | 
    
         
            -
               
     | 
| 
       1113 
     | 
    
         
            -
               
     | 
| 
      
 1623 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction* envoy_config_bootstrap_v3_FatalAction_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1624 
     | 
    
         
            +
              envoy_config_bootstrap_v3_FatalAction* ret = envoy_config_bootstrap_v3_FatalAction_new(arena);
         
     | 
| 
      
 1625 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1626 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_FatalAction_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1627 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1628 
     | 
    
         
            +
              }
         
     | 
| 
      
 1629 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1114 
1630 
     | 
    
         
             
            }
         
     | 
| 
       1115 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction  
     | 
| 
       1116 
     | 
    
         
            -
                                        
     | 
| 
       1117 
     | 
    
         
            -
             
     | 
| 
       1118 
     | 
    
         
            -
               
     | 
| 
       1119 
     | 
    
         
            -
             
     | 
| 
      
 1631 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_FatalAction* envoy_config_bootstrap_v3_FatalAction_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1632 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1633 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1634 
     | 
    
         
            +
              envoy_config_bootstrap_v3_FatalAction* ret = envoy_config_bootstrap_v3_FatalAction_new(arena);
         
     | 
| 
      
 1635 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1636 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_FatalAction_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1637 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1638 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1639 
     | 
    
         
            +
              }
         
     | 
| 
      
 1640 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1120 
1641 
     | 
    
         
             
            }
         
     | 
| 
       1121 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1122 
     | 
    
         
            -
              return  
     | 
| 
      
 1642 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_FatalAction_serialize(const envoy_config_bootstrap_v3_FatalAction* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1643 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_FatalAction_msginit, 0, arena, len);
         
     | 
| 
      
 1644 
     | 
    
         
            +
            }
         
     | 
| 
      
 1645 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_FatalAction_serialize_ex(const envoy_config_bootstrap_v3_FatalAction* msg, int options,
         
     | 
| 
      
 1646 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1647 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_FatalAction_msginit, options, arena, len);
         
     | 
| 
      
 1648 
     | 
    
         
            +
            }
         
     | 
| 
      
 1649 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_FatalAction_has_config(const envoy_config_bootstrap_v3_FatalAction* msg) {
         
     | 
| 
      
 1650 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1651 
     | 
    
         
            +
            }
         
     | 
| 
      
 1652 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_FatalAction_clear_config(const envoy_config_bootstrap_v3_FatalAction* msg) {
         
     | 
| 
      
 1653 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const upb_Message*) = NULL;
         
     | 
| 
      
 1654 
     | 
    
         
            +
            }
         
     | 
| 
      
 1655 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_FatalAction_config(const envoy_config_bootstrap_v3_FatalAction* msg) {
         
     | 
| 
      
 1656 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct envoy_config_core_v3_TypedExtensionConfig*);
         
     | 
| 
       1123 
1657 
     | 
    
         
             
            }
         
     | 
| 
       1124 
     | 
    
         
            -
             
     | 
| 
       1125 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_FatalAction_has_config(const envoy_config_bootstrap_v3_FatalAction *msg) { return _upb_hasbit(msg, 1); }
         
     | 
| 
       1126 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_FatalAction_config(const envoy_config_bootstrap_v3_FatalAction *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), const struct envoy_config_core_v3_TypedExtensionConfig*); }
         
     | 
| 
       1127 
1658 
     | 
    
         | 
| 
       1128 
1659 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_FatalAction_set_config(envoy_config_bootstrap_v3_FatalAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
         
     | 
| 
       1129 
1660 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       1130 
1661 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), struct envoy_config_core_v3_TypedExtensionConfig*) = value;
         
     | 
| 
       1131 
1662 
     | 
    
         
             
            }
         
     | 
| 
       1132 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_FatalAction_mutable_config(envoy_config_bootstrap_v3_FatalAction  
     | 
| 
      
 1663 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootstrap_v3_FatalAction_mutable_config(envoy_config_bootstrap_v3_FatalAction* msg, upb_Arena* arena) {
         
     | 
| 
       1133 
1664 
     | 
    
         
             
              struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_bootstrap_v3_FatalAction_config(msg);
         
     | 
| 
       1134 
1665 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1135 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_TypedExtensionConfig*) 
     | 
| 
      
 1666 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_TypedExtensionConfig*)_upb_Message_New(&envoy_config_core_v3_TypedExtensionConfig_msginit, arena);
         
     | 
| 
       1136 
1667 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1137 
1668 
     | 
    
         
             
                envoy_config_bootstrap_v3_FatalAction_set_config(msg, sub);
         
     | 
| 
       1138 
1669 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1141,47 +1672,80 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_bootst 
     | 
|
| 
       1141 
1672 
     | 
    
         | 
| 
       1142 
1673 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.Runtime */
         
     | 
| 
       1143 
1674 
     | 
    
         | 
| 
       1144 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Runtime  
     | 
| 
       1145 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_Runtime 
     | 
| 
      
 1675 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Runtime* envoy_config_bootstrap_v3_Runtime_new(upb_Arena* arena) {
         
     | 
| 
      
 1676 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_Runtime*)_upb_Message_New(&envoy_config_bootstrap_v3_Runtime_msginit, arena);
         
     | 
| 
       1146 
1677 
     | 
    
         
             
            }
         
     | 
| 
       1147 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Runtime  
     | 
| 
       1148 
     | 
    
         
            -
             
     | 
| 
       1149 
     | 
    
         
            -
               
     | 
| 
       1150 
     | 
    
         
            -
               
     | 
| 
      
 1678 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Runtime* envoy_config_bootstrap_v3_Runtime_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1679 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Runtime* ret = envoy_config_bootstrap_v3_Runtime_new(arena);
         
     | 
| 
      
 1680 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1681 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Runtime_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1682 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1683 
     | 
    
         
            +
              }
         
     | 
| 
      
 1684 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1151 
1685 
     | 
    
         
             
            }
         
     | 
| 
       1152 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_Runtime  
     | 
| 
       1153 
     | 
    
         
            -
                                        
     | 
| 
       1154 
     | 
    
         
            -
             
     | 
| 
       1155 
     | 
    
         
            -
               
     | 
| 
       1156 
     | 
    
         
            -
             
     | 
| 
      
 1686 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_Runtime* envoy_config_bootstrap_v3_Runtime_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1687 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1688 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1689 
     | 
    
         
            +
              envoy_config_bootstrap_v3_Runtime* ret = envoy_config_bootstrap_v3_Runtime_new(arena);
         
     | 
| 
      
 1690 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1691 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_Runtime_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1692 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1693 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1694 
     | 
    
         
            +
              }
         
     | 
| 
      
 1695 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1157 
1696 
     | 
    
         
             
            }
         
     | 
| 
       1158 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1159 
     | 
    
         
            -
              return  
     | 
| 
      
 1697 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Runtime_serialize(const envoy_config_bootstrap_v3_Runtime* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1698 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Runtime_msginit, 0, arena, len);
         
     | 
| 
      
 1699 
     | 
    
         
            +
            }
         
     | 
| 
      
 1700 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_Runtime_serialize_ex(const envoy_config_bootstrap_v3_Runtime* msg, int options,
         
     | 
| 
      
 1701 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1702 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_Runtime_msginit, options, arena, len);
         
     | 
| 
      
 1703 
     | 
    
         
            +
            }
         
     | 
| 
      
 1704 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_clear_symlink_root(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1705 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1706 
     | 
    
         
            +
            }
         
     | 
| 
      
 1707 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Runtime_symlink_root(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1708 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 1709 
     | 
    
         
            +
            }
         
     | 
| 
      
 1710 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_clear_subdirectory(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1711 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1712 
     | 
    
         
            +
            }
         
     | 
| 
      
 1713 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Runtime_subdirectory(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1714 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView);
         
     | 
| 
      
 1715 
     | 
    
         
            +
            }
         
     | 
| 
      
 1716 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_clear_override_subdirectory(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1717 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1718 
     | 
    
         
            +
            }
         
     | 
| 
      
 1719 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_Runtime_override_subdirectory(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1720 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_StringView);
         
     | 
| 
      
 1721 
     | 
    
         
            +
            }
         
     | 
| 
      
 1722 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_Runtime_has_base(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1723 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 1724 
     | 
    
         
            +
            }
         
     | 
| 
      
 1725 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_clear_base(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1726 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const upb_Message*) = NULL;
         
     | 
| 
      
 1727 
     | 
    
         
            +
            }
         
     | 
| 
      
 1728 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Struct* envoy_config_bootstrap_v3_Runtime_base(const envoy_config_bootstrap_v3_Runtime* msg) {
         
     | 
| 
      
 1729 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const struct google_protobuf_Struct*);
         
     | 
| 
       1160 
1730 
     | 
    
         
             
            }
         
     | 
| 
       1161 
1731 
     | 
    
         | 
| 
       1162 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1163 
     | 
    
         
            -
             
     | 
| 
       1164 
     | 
    
         
            -
            UPB_INLINE upb_strview envoy_config_bootstrap_v3_Runtime_override_subdirectory(const envoy_config_bootstrap_v3_Runtime *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_strview); }
         
     | 
| 
       1165 
     | 
    
         
            -
            UPB_INLINE bool envoy_config_bootstrap_v3_Runtime_has_base(const envoy_config_bootstrap_v3_Runtime *msg) { return _upb_hasbit(msg, 1); }
         
     | 
| 
       1166 
     | 
    
         
            -
            UPB_INLINE const struct google_protobuf_Struct* envoy_config_bootstrap_v3_Runtime_base(const envoy_config_bootstrap_v3_Runtime *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const struct google_protobuf_Struct*); }
         
     | 
| 
       1167 
     | 
    
         
            -
             
     | 
| 
       1168 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_symlink_root(envoy_config_bootstrap_v3_Runtime *msg, upb_strview value) {
         
     | 
| 
       1169 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 1732 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_symlink_root(envoy_config_bootstrap_v3_Runtime *msg, upb_StringView value) {
         
     | 
| 
      
 1733 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       1170 
1734 
     | 
    
         
             
            }
         
     | 
| 
       1171 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_subdirectory(envoy_config_bootstrap_v3_Runtime *msg,  
     | 
| 
       1172 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24),  
     | 
| 
      
 1735 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_subdirectory(envoy_config_bootstrap_v3_Runtime *msg, upb_StringView value) {
         
     | 
| 
      
 1736 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView) = value;
         
     | 
| 
       1173 
1737 
     | 
    
         
             
            }
         
     | 
| 
       1174 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_override_subdirectory(envoy_config_bootstrap_v3_Runtime *msg,  
     | 
| 
       1175 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40),  
     | 
| 
      
 1738 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_override_subdirectory(envoy_config_bootstrap_v3_Runtime *msg, upb_StringView value) {
         
     | 
| 
      
 1739 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_StringView) = value;
         
     | 
| 
       1176 
1740 
     | 
    
         
             
            }
         
     | 
| 
       1177 
1741 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_Runtime_set_base(envoy_config_bootstrap_v3_Runtime *msg, struct google_protobuf_Struct* value) {
         
     | 
| 
       1178 
1742 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       1179 
1743 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(28, 56), struct google_protobuf_Struct*) = value;
         
     | 
| 
       1180 
1744 
     | 
    
         
             
            }
         
     | 
| 
       1181 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Struct* envoy_config_bootstrap_v3_Runtime_mutable_base(envoy_config_bootstrap_v3_Runtime  
     | 
| 
      
 1745 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Struct* envoy_config_bootstrap_v3_Runtime_mutable_base(envoy_config_bootstrap_v3_Runtime* msg, upb_Arena* arena) {
         
     | 
| 
       1182 
1746 
     | 
    
         
             
              struct google_protobuf_Struct* sub = (struct google_protobuf_Struct*)envoy_config_bootstrap_v3_Runtime_base(msg);
         
     | 
| 
       1183 
1747 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1184 
     | 
    
         
            -
                sub = (struct google_protobuf_Struct*) 
     | 
| 
      
 1748 
     | 
    
         
            +
                sub = (struct google_protobuf_Struct*)_upb_Message_New(&google_protobuf_Struct_msginit, arena);
         
     | 
| 
       1185 
1749 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1186 
1750 
     | 
    
         
             
                envoy_config_bootstrap_v3_Runtime_set_base(msg, sub);
         
     | 
| 
       1187 
1751 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1190,24 +1754,35 @@ UPB_INLINE struct google_protobuf_Struct* envoy_config_bootstrap_v3_Runtime_muta 
     | 
|
| 
       1190 
1754 
     | 
    
         | 
| 
       1191 
1755 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.RuntimeLayer */
         
     | 
| 
       1192 
1756 
     | 
    
         | 
| 
       1193 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer  
     | 
| 
       1194 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_RuntimeLayer 
     | 
| 
      
 1757 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer* envoy_config_bootstrap_v3_RuntimeLayer_new(upb_Arena* arena) {
         
     | 
| 
      
 1758 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_RuntimeLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_msginit, arena);
         
     | 
| 
       1195 
1759 
     | 
    
         
             
            }
         
     | 
| 
       1196 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer  
     | 
| 
       1197 
     | 
    
         
            -
             
     | 
| 
       1198 
     | 
    
         
            -
               
     | 
| 
       1199 
     | 
    
         
            -
               
     | 
| 
      
 1760 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer* envoy_config_bootstrap_v3_RuntimeLayer_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1761 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_new(arena);
         
     | 
| 
      
 1762 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1763 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1764 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1765 
     | 
    
         
            +
              }
         
     | 
| 
      
 1766 
     | 
    
         
            +
              return ret;
         
     | 
| 
      
 1767 
     | 
    
         
            +
            }
         
     | 
| 
      
 1768 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer* envoy_config_bootstrap_v3_RuntimeLayer_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1769 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1770 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1771 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_new(arena);
         
     | 
| 
      
 1772 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1773 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1774 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1775 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1776 
     | 
    
         
            +
              }
         
     | 
| 
      
 1777 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1200 
1778 
     | 
    
         
             
            }
         
     | 
| 
       1201 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1202 
     | 
    
         
            -
             
     | 
| 
       1203 
     | 
    
         
            -
              envoy_config_bootstrap_v3_RuntimeLayer *ret = envoy_config_bootstrap_v3_RuntimeLayer_new(arena);
         
     | 
| 
       1204 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_msginit, arena, options))
         
     | 
| 
       1205 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 1779 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_serialize(const envoy_config_bootstrap_v3_RuntimeLayer* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1780 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_msginit, 0, arena, len);
         
     | 
| 
       1206 
1781 
     | 
    
         
             
            }
         
     | 
| 
       1207 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1208 
     | 
    
         
            -
             
     | 
| 
      
 1782 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_serialize_ex(const envoy_config_bootstrap_v3_RuntimeLayer* msg, int options,
         
     | 
| 
      
 1783 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1784 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_msginit, options, arena, len);
         
     | 
| 
       1209 
1785 
     | 
    
         
             
            }
         
     | 
| 
       1210 
     | 
    
         
            -
             
     | 
| 
       1211 
1786 
     | 
    
         
             
            typedef enum {
         
     | 
| 
       1212 
1787 
     | 
    
         
             
              envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_static_layer = 2,
         
     | 
| 
       1213 
1788 
     | 
    
         
             
              envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_disk_layer = 3,
         
     | 
| 
         @@ -1215,64 +1790,98 @@ typedef enum { 
     | 
|
| 
       1215 
1790 
     | 
    
         
             
              envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_rtds_layer = 5,
         
     | 
| 
       1216 
1791 
     | 
    
         
             
              envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_NOT_SET = 0
         
     | 
| 
       1217 
1792 
     | 
    
         
             
            } envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_oneofcases;
         
     | 
| 
       1218 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_oneofcases envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_case(const envoy_config_bootstrap_v3_RuntimeLayer* msg) { 
     | 
| 
       1219 
     | 
    
         
            -
             
     | 
| 
       1220 
     | 
    
         
            -
             
     | 
| 
       1221 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1222 
     | 
    
         
            -
             
     | 
| 
       1223 
     | 
    
         
            -
             
     | 
| 
       1224 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1225 
     | 
    
         
            -
             
     | 
| 
       1226 
     | 
    
         
            -
             
     | 
| 
       1227 
     | 
    
         
            -
            UPB_INLINE bool  
     | 
| 
       1228 
     | 
    
         
            -
             
     | 
| 
      
 1793 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_oneofcases envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_case(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1794 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_oneofcases)*UPB_PTR_AT(msg, UPB_SIZE(0, 0), int32_t);
         
     | 
| 
      
 1795 
     | 
    
         
            +
            }
         
     | 
| 
      
 1796 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_clear_name(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1797 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1798 
     | 
    
         
            +
            }
         
     | 
| 
      
 1799 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_RuntimeLayer_name(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1800 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 1801 
     | 
    
         
            +
            }
         
     | 
| 
      
 1802 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_RuntimeLayer_has_static_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1803 
     | 
    
         
            +
              return _upb_getoneofcase(msg, UPB_SIZE(0, 0)) == 2;
         
     | 
| 
      
 1804 
     | 
    
         
            +
            }
         
     | 
| 
      
 1805 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_clear_static_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1806 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, struct google_protobuf_Struct*, UPB_SIZE(12, 24), 0, UPB_SIZE(0, 0), envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_NOT_SET);
         
     | 
| 
      
 1807 
     | 
    
         
            +
            }
         
     | 
| 
      
 1808 
     | 
    
         
            +
            UPB_INLINE const struct google_protobuf_Struct* envoy_config_bootstrap_v3_RuntimeLayer_static_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1809 
     | 
    
         
            +
              return UPB_READ_ONEOF(msg, const struct google_protobuf_Struct*, UPB_SIZE(12, 24), UPB_SIZE(0, 0), 2, NULL);
         
     | 
| 
      
 1810 
     | 
    
         
            +
            }
         
     | 
| 
      
 1811 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_RuntimeLayer_has_disk_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1812 
     | 
    
         
            +
              return _upb_getoneofcase(msg, UPB_SIZE(0, 0)) == 3;
         
     | 
| 
      
 1813 
     | 
    
         
            +
            }
         
     | 
| 
      
 1814 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_clear_disk_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1815 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*, UPB_SIZE(12, 24), 0, UPB_SIZE(0, 0), envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_NOT_SET);
         
     | 
| 
      
 1816 
     | 
    
         
            +
            }
         
     | 
| 
      
 1817 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* envoy_config_bootstrap_v3_RuntimeLayer_disk_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1818 
     | 
    
         
            +
              return UPB_READ_ONEOF(msg, const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*, UPB_SIZE(12, 24), UPB_SIZE(0, 0), 3, NULL);
         
     | 
| 
      
 1819 
     | 
    
         
            +
            }
         
     | 
| 
      
 1820 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_RuntimeLayer_has_admin_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1821 
     | 
    
         
            +
              return _upb_getoneofcase(msg, UPB_SIZE(0, 0)) == 4;
         
     | 
| 
      
 1822 
     | 
    
         
            +
            }
         
     | 
| 
      
 1823 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_clear_admin_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1824 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*, UPB_SIZE(12, 24), 0, UPB_SIZE(0, 0), envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_NOT_SET);
         
     | 
| 
      
 1825 
     | 
    
         
            +
            }
         
     | 
| 
      
 1826 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* envoy_config_bootstrap_v3_RuntimeLayer_admin_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1827 
     | 
    
         
            +
              return UPB_READ_ONEOF(msg, const envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*, UPB_SIZE(12, 24), UPB_SIZE(0, 0), 4, NULL);
         
     | 
| 
      
 1828 
     | 
    
         
            +
            }
         
     | 
| 
      
 1829 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_RuntimeLayer_has_rtds_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1830 
     | 
    
         
            +
              return _upb_getoneofcase(msg, UPB_SIZE(0, 0)) == 5;
         
     | 
| 
      
 1831 
     | 
    
         
            +
            }
         
     | 
| 
      
 1832 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_clear_rtds_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1833 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*, UPB_SIZE(12, 24), 0, UPB_SIZE(0, 0), envoy_config_bootstrap_v3_RuntimeLayer_layer_specifier_NOT_SET);
         
     | 
| 
      
 1834 
     | 
    
         
            +
            }
         
     | 
| 
      
 1835 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config_bootstrap_v3_RuntimeLayer_rtds_layer(const envoy_config_bootstrap_v3_RuntimeLayer* msg) {
         
     | 
| 
      
 1836 
     | 
    
         
            +
              return UPB_READ_ONEOF(msg, const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*, UPB_SIZE(12, 24), UPB_SIZE(0, 0), 5, NULL);
         
     | 
| 
      
 1837 
     | 
    
         
            +
            }
         
     | 
| 
       1229 
1838 
     | 
    
         | 
| 
       1230 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_set_name(envoy_config_bootstrap_v3_RuntimeLayer *msg,  
     | 
| 
       1231 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE( 
     | 
| 
      
 1839 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_set_name(envoy_config_bootstrap_v3_RuntimeLayer *msg, upb_StringView value) {
         
     | 
| 
      
 1840 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       1232 
1841 
     | 
    
         
             
            }
         
     | 
| 
       1233 
1842 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_set_static_layer(envoy_config_bootstrap_v3_RuntimeLayer *msg, struct google_protobuf_Struct* value) {
         
     | 
| 
       1234 
     | 
    
         
            -
              UPB_WRITE_ONEOF(msg, struct google_protobuf_Struct*, UPB_SIZE( 
     | 
| 
      
 1843 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, struct google_protobuf_Struct*, UPB_SIZE(12, 24), value, UPB_SIZE(0, 0), 2);
         
     | 
| 
       1235 
1844 
     | 
    
         
             
            }
         
     | 
| 
       1236 
     | 
    
         
            -
            UPB_INLINE struct google_protobuf_Struct* envoy_config_bootstrap_v3_RuntimeLayer_mutable_static_layer(envoy_config_bootstrap_v3_RuntimeLayer  
     | 
| 
      
 1845 
     | 
    
         
            +
            UPB_INLINE struct google_protobuf_Struct* envoy_config_bootstrap_v3_RuntimeLayer_mutable_static_layer(envoy_config_bootstrap_v3_RuntimeLayer* msg, upb_Arena* arena) {
         
     | 
| 
       1237 
1846 
     | 
    
         
             
              struct google_protobuf_Struct* sub = (struct google_protobuf_Struct*)envoy_config_bootstrap_v3_RuntimeLayer_static_layer(msg);
         
     | 
| 
       1238 
1847 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1239 
     | 
    
         
            -
                sub = (struct google_protobuf_Struct*) 
     | 
| 
      
 1848 
     | 
    
         
            +
                sub = (struct google_protobuf_Struct*)_upb_Message_New(&google_protobuf_Struct_msginit, arena);
         
     | 
| 
       1240 
1849 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1241 
1850 
     | 
    
         
             
                envoy_config_bootstrap_v3_RuntimeLayer_set_static_layer(msg, sub);
         
     | 
| 
       1242 
1851 
     | 
    
         
             
              }
         
     | 
| 
       1243 
1852 
     | 
    
         
             
              return sub;
         
     | 
| 
       1244 
1853 
     | 
    
         
             
            }
         
     | 
| 
       1245 
1854 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_set_disk_layer(envoy_config_bootstrap_v3_RuntimeLayer *msg, envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* value) {
         
     | 
| 
       1246 
     | 
    
         
            -
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*, UPB_SIZE( 
     | 
| 
      
 1855 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*, UPB_SIZE(12, 24), value, UPB_SIZE(0, 0), 3);
         
     | 
| 
       1247 
1856 
     | 
    
         
             
            }
         
     | 
| 
       1248 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* envoy_config_bootstrap_v3_RuntimeLayer_mutable_disk_layer(envoy_config_bootstrap_v3_RuntimeLayer  
     | 
| 
      
 1857 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* envoy_config_bootstrap_v3_RuntimeLayer_mutable_disk_layer(envoy_config_bootstrap_v3_RuntimeLayer* msg, upb_Arena* arena) {
         
     | 
| 
       1249 
1858 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*)envoy_config_bootstrap_v3_RuntimeLayer_disk_layer(msg);
         
     | 
| 
       1250 
1859 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1251 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*) 
     | 
| 
      
 1860 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, arena);
         
     | 
| 
       1252 
1861 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1253 
1862 
     | 
    
         
             
                envoy_config_bootstrap_v3_RuntimeLayer_set_disk_layer(msg, sub);
         
     | 
| 
       1254 
1863 
     | 
    
         
             
              }
         
     | 
| 
       1255 
1864 
     | 
    
         
             
              return sub;
         
     | 
| 
       1256 
1865 
     | 
    
         
             
            }
         
     | 
| 
       1257 
1866 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_set_admin_layer(envoy_config_bootstrap_v3_RuntimeLayer *msg, envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* value) {
         
     | 
| 
       1258 
     | 
    
         
            -
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*, UPB_SIZE( 
     | 
| 
      
 1867 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*, UPB_SIZE(12, 24), value, UPB_SIZE(0, 0), 4);
         
     | 
| 
       1259 
1868 
     | 
    
         
             
            }
         
     | 
| 
       1260 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* envoy_config_bootstrap_v3_RuntimeLayer_mutable_admin_layer(envoy_config_bootstrap_v3_RuntimeLayer  
     | 
| 
      
 1869 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* envoy_config_bootstrap_v3_RuntimeLayer_mutable_admin_layer(envoy_config_bootstrap_v3_RuntimeLayer* msg, upb_Arena* arena) {
         
     | 
| 
       1261 
1870 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*)envoy_config_bootstrap_v3_RuntimeLayer_admin_layer(msg);
         
     | 
| 
       1262 
1871 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1263 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*) 
     | 
| 
      
 1872 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit, arena);
         
     | 
| 
       1264 
1873 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1265 
1874 
     | 
    
         
             
                envoy_config_bootstrap_v3_RuntimeLayer_set_admin_layer(msg, sub);
         
     | 
| 
       1266 
1875 
     | 
    
         
             
              }
         
     | 
| 
       1267 
1876 
     | 
    
         
             
              return sub;
         
     | 
| 
       1268 
1877 
     | 
    
         
             
            }
         
     | 
| 
       1269 
1878 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_set_rtds_layer(envoy_config_bootstrap_v3_RuntimeLayer *msg, envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* value) {
         
     | 
| 
       1270 
     | 
    
         
            -
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*, UPB_SIZE( 
     | 
| 
      
 1879 
     | 
    
         
            +
              UPB_WRITE_ONEOF(msg, envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*, UPB_SIZE(12, 24), value, UPB_SIZE(0, 0), 5);
         
     | 
| 
       1271 
1880 
     | 
    
         
             
            }
         
     | 
| 
       1272 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config_bootstrap_v3_RuntimeLayer_mutable_rtds_layer(envoy_config_bootstrap_v3_RuntimeLayer  
     | 
| 
      
 1881 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config_bootstrap_v3_RuntimeLayer_mutable_rtds_layer(envoy_config_bootstrap_v3_RuntimeLayer* msg, upb_Arena* arena) {
         
     | 
| 
       1273 
1882 
     | 
    
         
             
              struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*)envoy_config_bootstrap_v3_RuntimeLayer_rtds_layer(msg);
         
     | 
| 
       1274 
1883 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1275 
     | 
    
         
            -
                sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*) 
     | 
| 
      
 1884 
     | 
    
         
            +
                sub = (struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit, arena);
         
     | 
| 
       1276 
1885 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1277 
1886 
     | 
    
         
             
                envoy_config_bootstrap_v3_RuntimeLayer_set_rtds_layer(msg, sub);
         
     | 
| 
       1278 
1887 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1281,95 +1890,155 @@ UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config 
     | 
|
| 
       1281 
1890 
     | 
    
         | 
| 
       1282 
1891 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.RuntimeLayer.DiskLayer */
         
     | 
| 
       1283 
1892 
     | 
    
         | 
| 
       1284 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer  
     | 
| 
       1285 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer 
     | 
| 
      
 1893 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_new(upb_Arena* arena) {
         
     | 
| 
      
 1894 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, arena);
         
     | 
| 
      
 1895 
     | 
    
         
            +
            }
         
     | 
| 
      
 1896 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1897 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_new(arena);
         
     | 
| 
      
 1898 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1899 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1900 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1901 
     | 
    
         
            +
              }
         
     | 
| 
      
 1902 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1286 
1903 
     | 
    
         
             
            }
         
     | 
| 
       1287 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer  
     | 
| 
       1288 
     | 
    
         
            -
             
     | 
| 
       1289 
     | 
    
         
            -
             
     | 
| 
       1290 
     | 
    
         
            -
               
     | 
| 
      
 1904 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1905 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1906 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1907 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_new(arena);
         
     | 
| 
      
 1908 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1909 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1910 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1911 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1912 
     | 
    
         
            +
              }
         
     | 
| 
      
 1913 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1291 
1914 
     | 
    
         
             
            }
         
     | 
| 
       1292 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1293 
     | 
    
         
            -
             
     | 
| 
       1294 
     | 
    
         
            -
              envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *ret = envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_new(arena);
         
     | 
| 
       1295 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, arena, options))
         
     | 
| 
       1296 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 1915 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_serialize(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1916 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, 0, arena, len);
         
     | 
| 
       1297 
1917 
     | 
    
         
             
            }
         
     | 
| 
       1298 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1299 
     | 
    
         
            -
             
     | 
| 
      
 1918 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_serialize_ex(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg, int options,
         
     | 
| 
      
 1919 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1920 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_msginit, options, arena, len);
         
     | 
| 
      
 1921 
     | 
    
         
            +
            }
         
     | 
| 
      
 1922 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_clear_symlink_root(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg) {
         
     | 
| 
      
 1923 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1924 
     | 
    
         
            +
            }
         
     | 
| 
      
 1925 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_symlink_root(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg) {
         
     | 
| 
      
 1926 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 1927 
     | 
    
         
            +
            }
         
     | 
| 
      
 1928 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_clear_append_service_cluster(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg) {
         
     | 
| 
      
 1929 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(0, 0), bool) = 0;
         
     | 
| 
      
 1930 
     | 
    
         
            +
            }
         
     | 
| 
      
 1931 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_append_service_cluster(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg) {
         
     | 
| 
      
 1932 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(0, 0), bool);
         
     | 
| 
      
 1933 
     | 
    
         
            +
            }
         
     | 
| 
      
 1934 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_clear_subdirectory(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg) {
         
     | 
| 
      
 1935 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 1936 
     | 
    
         
            +
            }
         
     | 
| 
      
 1937 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_subdirectory(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer* msg) {
         
     | 
| 
      
 1938 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView);
         
     | 
| 
       1300 
1939 
     | 
    
         
             
            }
         
     | 
| 
       1301 
1940 
     | 
    
         | 
| 
       1302 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1303 
     | 
    
         
            -
             
     | 
| 
       1304 
     | 
    
         
            -
            UPB_INLINE upb_strview envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_subdirectory(const envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview); }
         
     | 
| 
       1305 
     | 
    
         
            -
             
     | 
| 
       1306 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_set_symlink_root(envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *msg, upb_strview value) {
         
     | 
| 
       1307 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 1941 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_set_symlink_root(envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *msg, upb_StringView value) {
         
     | 
| 
      
 1942 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       1308 
1943 
     | 
    
         
             
            }
         
     | 
| 
       1309 
1944 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_set_append_service_cluster(envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *msg, bool value) {
         
     | 
| 
       1310 
1945 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(0, 0), bool) = value;
         
     | 
| 
       1311 
1946 
     | 
    
         
             
            }
         
     | 
| 
       1312 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_set_subdirectory(envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *msg,  
     | 
| 
       1313 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24),  
     | 
| 
      
 1947 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer_set_subdirectory(envoy_config_bootstrap_v3_RuntimeLayer_DiskLayer *msg, upb_StringView value) {
         
     | 
| 
      
 1948 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_StringView) = value;
         
     | 
| 
       1314 
1949 
     | 
    
         
             
            }
         
     | 
| 
       1315 
1950 
     | 
    
         | 
| 
       1316 
1951 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.RuntimeLayer.AdminLayer */
         
     | 
| 
       1317 
1952 
     | 
    
         | 
| 
       1318 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer  
     | 
| 
       1319 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer 
     | 
| 
      
 1953 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_new(upb_Arena* arena) {
         
     | 
| 
      
 1954 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit, arena);
         
     | 
| 
       1320 
1955 
     | 
    
         
             
            }
         
     | 
| 
       1321 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer  
     | 
| 
       1322 
     | 
    
         
            -
             
     | 
| 
       1323 
     | 
    
         
            -
               
     | 
| 
       1324 
     | 
    
         
            -
               
     | 
| 
      
 1956 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1957 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_new(arena);
         
     | 
| 
      
 1958 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1959 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1960 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1961 
     | 
    
         
            +
              }
         
     | 
| 
      
 1962 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1325 
1963 
     | 
    
         
             
            }
         
     | 
| 
       1326 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer  
     | 
| 
       1327 
     | 
    
         
            -
                                        
     | 
| 
       1328 
     | 
    
         
            -
             
     | 
| 
       1329 
     | 
    
         
            -
               
     | 
| 
       1330 
     | 
    
         
            -
             
     | 
| 
      
 1964 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1965 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1966 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 1967 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_new(arena);
         
     | 
| 
      
 1968 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1969 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit, extreg, options, arena) !=
         
     | 
| 
      
 1970 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1971 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1972 
     | 
    
         
            +
              }
         
     | 
| 
      
 1973 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1331 
1974 
     | 
    
         
             
            }
         
     | 
| 
       1332 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1333 
     | 
    
         
            -
              return  
     | 
| 
      
 1975 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_serialize(const envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1976 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit, 0, arena, len);
         
     | 
| 
      
 1977 
     | 
    
         
            +
            }
         
     | 
| 
      
 1978 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_serialize_ex(const envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer* msg, int options,
         
     | 
| 
      
 1979 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 1980 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_AdminLayer_msginit, options, arena, len);
         
     | 
| 
       1334 
1981 
     | 
    
         
             
            }
         
     | 
| 
       1335 
     | 
    
         
            -
             
     | 
| 
       1336 
1982 
     | 
    
         | 
| 
       1337 
1983 
     | 
    
         | 
| 
       1338 
1984 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.RuntimeLayer.RtdsLayer */
         
     | 
| 
       1339 
1985 
     | 
    
         | 
| 
       1340 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer  
     | 
| 
       1341 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer 
     | 
| 
      
 1986 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_new(upb_Arena* arena) {
         
     | 
| 
      
 1987 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit, arena);
         
     | 
| 
       1342 
1988 
     | 
    
         
             
            }
         
     | 
| 
       1343 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer  
     | 
| 
       1344 
     | 
    
         
            -
             
     | 
| 
       1345 
     | 
    
         
            -
               
     | 
| 
       1346 
     | 
    
         
            -
               
     | 
| 
      
 1989 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 1990 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_new(arena);
         
     | 
| 
      
 1991 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 1992 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 1993 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 1994 
     | 
    
         
            +
              }
         
     | 
| 
      
 1995 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1347 
1996 
     | 
    
         
             
            }
         
     | 
| 
       1348 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer  
     | 
| 
       1349 
     | 
    
         
            -
                                        
     | 
| 
       1350 
     | 
    
         
            -
             
     | 
| 
       1351 
     | 
    
         
            -
               
     | 
| 
       1352 
     | 
    
         
            -
             
     | 
| 
      
 1997 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 1998 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 1999 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 2000 
     | 
    
         
            +
              envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* ret = envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_new(arena);
         
     | 
| 
      
 2001 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 2002 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit, extreg, options, arena) !=
         
     | 
| 
      
 2003 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 2004 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 2005 
     | 
    
         
            +
              }
         
     | 
| 
      
 2006 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1353 
2007 
     | 
    
         
             
            }
         
     | 
| 
       1354 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1355 
     | 
    
         
            -
              return  
     | 
| 
      
 2008 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_serialize(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 2009 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit, 0, arena, len);
         
     | 
| 
      
 2010 
     | 
    
         
            +
            }
         
     | 
| 
      
 2011 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_serialize_ex(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg, int options,
         
     | 
| 
      
 2012 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 2013 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_msginit, options, arena, len);
         
     | 
| 
      
 2014 
     | 
    
         
            +
            }
         
     | 
| 
      
 2015 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_clear_name(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg) {
         
     | 
| 
      
 2016 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 2017 
     | 
    
         
            +
            }
         
     | 
| 
      
 2018 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_name(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg) {
         
     | 
| 
      
 2019 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 2020 
     | 
    
         
            +
            }
         
     | 
| 
      
 2021 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_has_rtds_config(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg) {
         
     | 
| 
      
 2022 
     | 
    
         
            +
              return _upb_hasbit(msg, 1);
         
     | 
| 
      
 2023 
     | 
    
         
            +
            }
         
     | 
| 
      
 2024 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_clear_rtds_config(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg) {
         
     | 
| 
      
 2025 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const upb_Message*) = NULL;
         
     | 
| 
      
 2026 
     | 
    
         
            +
            }
         
     | 
| 
      
 2027 
     | 
    
         
            +
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_rtds_config(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg) {
         
     | 
| 
      
 2028 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct envoy_config_core_v3_ConfigSource*);
         
     | 
| 
       1356 
2029 
     | 
    
         
             
            }
         
     | 
| 
       1357 
2030 
     | 
    
         | 
| 
       1358 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1359 
     | 
    
         
            -
             
     | 
| 
       1360 
     | 
    
         
            -
            UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_rtds_config(const envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const struct envoy_config_core_v3_ConfigSource*); }
         
     | 
| 
       1361 
     | 
    
         
            -
             
     | 
| 
       1362 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_set_name(envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer *msg, upb_strview value) {
         
     | 
| 
       1363 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 2031 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_set_name(envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer *msg, upb_StringView value) {
         
     | 
| 
      
 2032 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       1364 
2033 
     | 
    
         
             
            }
         
     | 
| 
       1365 
2034 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_set_rtds_config(envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer *msg, struct envoy_config_core_v3_ConfigSource* value) {
         
     | 
| 
       1366 
2035 
     | 
    
         
             
              _upb_sethas(msg, 1);
         
     | 
| 
       1367 
2036 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(12, 24), struct envoy_config_core_v3_ConfigSource*) = value;
         
     | 
| 
       1368 
2037 
     | 
    
         
             
            }
         
     | 
| 
       1369 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_mutable_rtds_config(envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer  
     | 
| 
      
 2038 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_mutable_rtds_config(envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer* msg, upb_Arena* arena) {
         
     | 
| 
       1370 
2039 
     | 
    
         
             
              struct envoy_config_core_v3_ConfigSource* sub = (struct envoy_config_core_v3_ConfigSource*)envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_rtds_config(msg);
         
     | 
| 
       1371 
2040 
     | 
    
         
             
              if (sub == NULL) {
         
     | 
| 
       1372 
     | 
    
         
            -
                sub = (struct envoy_config_core_v3_ConfigSource*) 
     | 
| 
      
 2041 
     | 
    
         
            +
                sub = (struct envoy_config_core_v3_ConfigSource*)_upb_Message_New(&envoy_config_core_v3_ConfigSource_msginit, arena);
         
     | 
| 
       1373 
2042 
     | 
    
         
             
                if (!sub) return NULL;
         
     | 
| 
       1374 
2043 
     | 
    
         
             
                envoy_config_bootstrap_v3_RuntimeLayer_RtdsLayer_set_rtds_config(msg, sub);
         
     | 
| 
       1375 
2044 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1378,71 +2047,111 @@ UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_config_bootstrap_v3_R 
     | 
|
| 
       1378 
2047 
     | 
    
         | 
| 
       1379 
2048 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.LayeredRuntime */
         
     | 
| 
       1380 
2049 
     | 
    
         | 
| 
       1381 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_LayeredRuntime  
     | 
| 
       1382 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_LayeredRuntime 
     | 
| 
      
 2050 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_LayeredRuntime* envoy_config_bootstrap_v3_LayeredRuntime_new(upb_Arena* arena) {
         
     | 
| 
      
 2051 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_LayeredRuntime*)_upb_Message_New(&envoy_config_bootstrap_v3_LayeredRuntime_msginit, arena);
         
     | 
| 
       1383 
2052 
     | 
    
         
             
            }
         
     | 
| 
       1384 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_LayeredRuntime  
     | 
| 
       1385 
     | 
    
         
            -
             
     | 
| 
       1386 
     | 
    
         
            -
               
     | 
| 
       1387 
     | 
    
         
            -
               
     | 
| 
      
 2053 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_LayeredRuntime* envoy_config_bootstrap_v3_LayeredRuntime_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 2054 
     | 
    
         
            +
              envoy_config_bootstrap_v3_LayeredRuntime* ret = envoy_config_bootstrap_v3_LayeredRuntime_new(arena);
         
     | 
| 
      
 2055 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 2056 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_LayeredRuntime_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 2057 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 2058 
     | 
    
         
            +
              }
         
     | 
| 
      
 2059 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1388 
2060 
     | 
    
         
             
            }
         
     | 
| 
       1389 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_LayeredRuntime  
     | 
| 
       1390 
     | 
    
         
            -
                                        
     | 
| 
       1391 
     | 
    
         
            -
             
     | 
| 
       1392 
     | 
    
         
            -
               
     | 
| 
       1393 
     | 
    
         
            -
             
     | 
| 
      
 2061 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_LayeredRuntime* envoy_config_bootstrap_v3_LayeredRuntime_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 2062 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 2063 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 2064 
     | 
    
         
            +
              envoy_config_bootstrap_v3_LayeredRuntime* ret = envoy_config_bootstrap_v3_LayeredRuntime_new(arena);
         
     | 
| 
      
 2065 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 2066 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_LayeredRuntime_msginit, extreg, options, arena) !=
         
     | 
| 
      
 2067 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 2068 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 2069 
     | 
    
         
            +
              }
         
     | 
| 
      
 2070 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1394 
2071 
     | 
    
         
             
            }
         
     | 
| 
       1395 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1396 
     | 
    
         
            -
              return  
     | 
| 
      
 2072 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_LayeredRuntime_serialize(const envoy_config_bootstrap_v3_LayeredRuntime* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 2073 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_LayeredRuntime_msginit, 0, arena, len);
         
     | 
| 
      
 2074 
     | 
    
         
            +
            }
         
     | 
| 
      
 2075 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_LayeredRuntime_serialize_ex(const envoy_config_bootstrap_v3_LayeredRuntime* msg, int options,
         
     | 
| 
      
 2076 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 2077 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_LayeredRuntime_msginit, options, arena, len);
         
     | 
| 
      
 2078 
     | 
    
         
            +
            }
         
     | 
| 
      
 2079 
     | 
    
         
            +
            UPB_INLINE bool envoy_config_bootstrap_v3_LayeredRuntime_has_layers(const envoy_config_bootstrap_v3_LayeredRuntime* msg) {
         
     | 
| 
      
 2080 
     | 
    
         
            +
              return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0));
         
     | 
| 
      
 2081 
     | 
    
         
            +
            }
         
     | 
| 
      
 2082 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_LayeredRuntime_clear_layers(const envoy_config_bootstrap_v3_LayeredRuntime* msg) {
         
     | 
| 
      
 2083 
     | 
    
         
            +
              _upb_array_detach(msg, UPB_SIZE(0, 0));
         
     | 
| 
      
 2084 
     | 
    
         
            +
            }
         
     | 
| 
      
 2085 
     | 
    
         
            +
            UPB_INLINE const envoy_config_bootstrap_v3_RuntimeLayer* const* envoy_config_bootstrap_v3_LayeredRuntime_layers(const envoy_config_bootstrap_v3_LayeredRuntime* msg, size_t* len) {
         
     | 
| 
      
 2086 
     | 
    
         
            +
              return (const envoy_config_bootstrap_v3_RuntimeLayer* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len);
         
     | 
| 
       1397 
2087 
     | 
    
         
             
            }
         
     | 
| 
       1398 
2088 
     | 
    
         | 
| 
       1399 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1400 
     | 
    
         
            -
            UPB_INLINE const envoy_config_bootstrap_v3_RuntimeLayer* const* envoy_config_bootstrap_v3_LayeredRuntime_layers(const envoy_config_bootstrap_v3_LayeredRuntime *msg, size_t *len) { return (const envoy_config_bootstrap_v3_RuntimeLayer* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
         
     | 
| 
       1401 
     | 
    
         
            -
             
     | 
| 
       1402 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer** envoy_config_bootstrap_v3_LayeredRuntime_mutable_layers(envoy_config_bootstrap_v3_LayeredRuntime *msg, size_t *len) {
         
     | 
| 
      
 2089 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer** envoy_config_bootstrap_v3_LayeredRuntime_mutable_layers(envoy_config_bootstrap_v3_LayeredRuntime* msg, size_t* len) {
         
     | 
| 
       1403 
2090 
     | 
    
         
             
              return (envoy_config_bootstrap_v3_RuntimeLayer**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
         
     | 
| 
       1404 
2091 
     | 
    
         
             
            }
         
     | 
| 
       1405 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer** envoy_config_bootstrap_v3_LayeredRuntime_resize_layers(envoy_config_bootstrap_v3_LayeredRuntime  
     | 
| 
       1406 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_RuntimeLayer**) 
     | 
| 
      
 2092 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_RuntimeLayer** envoy_config_bootstrap_v3_LayeredRuntime_resize_layers(envoy_config_bootstrap_v3_LayeredRuntime* msg, size_t len, upb_Arena* arena) {
         
     | 
| 
      
 2093 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_RuntimeLayer**)_upb_Array_Resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
         
     | 
| 
       1407 
2094 
     | 
    
         
             
            }
         
     | 
| 
       1408 
     | 
    
         
            -
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer* envoy_config_bootstrap_v3_LayeredRuntime_add_layers(envoy_config_bootstrap_v3_LayeredRuntime  
     | 
| 
       1409 
     | 
    
         
            -
              struct envoy_config_bootstrap_v3_RuntimeLayer* sub = (struct envoy_config_bootstrap_v3_RuntimeLayer*) 
     | 
| 
       1410 
     | 
    
         
            -
              bool ok =  
     | 
| 
       1411 
     | 
    
         
            -
                  msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
      
 2095 
     | 
    
         
            +
            UPB_INLINE struct envoy_config_bootstrap_v3_RuntimeLayer* envoy_config_bootstrap_v3_LayeredRuntime_add_layers(envoy_config_bootstrap_v3_LayeredRuntime* msg, upb_Arena* arena) {
         
     | 
| 
      
 2096 
     | 
    
         
            +
              struct envoy_config_bootstrap_v3_RuntimeLayer* sub = (struct envoy_config_bootstrap_v3_RuntimeLayer*)_upb_Message_New(&envoy_config_bootstrap_v3_RuntimeLayer_msginit, arena);
         
     | 
| 
      
 2097 
     | 
    
         
            +
              bool ok = _upb_Array_Append_accessor2(msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
         
     | 
| 
       1412 
2098 
     | 
    
         
             
              if (!ok) return NULL;
         
     | 
| 
       1413 
2099 
     | 
    
         
             
              return sub;
         
     | 
| 
       1414 
2100 
     | 
    
         
             
            }
         
     | 
| 
       1415 
2101 
     | 
    
         | 
| 
       1416 
2102 
     | 
    
         
             
            /* envoy.config.bootstrap.v3.CustomInlineHeader */
         
     | 
| 
       1417 
2103 
     | 
    
         | 
| 
       1418 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader  
     | 
| 
       1419 
     | 
    
         
            -
              return (envoy_config_bootstrap_v3_CustomInlineHeader 
     | 
| 
      
 2104 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader* envoy_config_bootstrap_v3_CustomInlineHeader_new(upb_Arena* arena) {
         
     | 
| 
      
 2105 
     | 
    
         
            +
              return (envoy_config_bootstrap_v3_CustomInlineHeader*)_upb_Message_New(&envoy_config_bootstrap_v3_CustomInlineHeader_msginit, arena);
         
     | 
| 
      
 2106 
     | 
    
         
            +
            }
         
     | 
| 
      
 2107 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader* envoy_config_bootstrap_v3_CustomInlineHeader_parse(const char* buf, size_t size, upb_Arena* arena) {
         
     | 
| 
      
 2108 
     | 
    
         
            +
              envoy_config_bootstrap_v3_CustomInlineHeader* ret = envoy_config_bootstrap_v3_CustomInlineHeader_new(arena);
         
     | 
| 
      
 2109 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 2110 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_CustomInlineHeader_msginit, NULL, 0, arena) != kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 2111 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 2112 
     | 
    
         
            +
              }
         
     | 
| 
      
 2113 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1420 
2114 
     | 
    
         
             
            }
         
     | 
| 
       1421 
     | 
    
         
            -
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader  
     | 
| 
       1422 
     | 
    
         
            -
             
     | 
| 
       1423 
     | 
    
         
            -
             
     | 
| 
       1424 
     | 
    
         
            -
               
     | 
| 
      
 2115 
     | 
    
         
            +
            UPB_INLINE envoy_config_bootstrap_v3_CustomInlineHeader* envoy_config_bootstrap_v3_CustomInlineHeader_parse_ex(const char* buf, size_t size,
         
     | 
| 
      
 2116 
     | 
    
         
            +
                                       const upb_ExtensionRegistry* extreg,
         
     | 
| 
      
 2117 
     | 
    
         
            +
                                       int options, upb_Arena* arena) {
         
     | 
| 
      
 2118 
     | 
    
         
            +
              envoy_config_bootstrap_v3_CustomInlineHeader* ret = envoy_config_bootstrap_v3_CustomInlineHeader_new(arena);
         
     | 
| 
      
 2119 
     | 
    
         
            +
              if (!ret) return NULL;
         
     | 
| 
      
 2120 
     | 
    
         
            +
              if (upb_Decode(buf, size, ret, &envoy_config_bootstrap_v3_CustomInlineHeader_msginit, extreg, options, arena) !=
         
     | 
| 
      
 2121 
     | 
    
         
            +
                  kUpb_DecodeStatus_Ok) {
         
     | 
| 
      
 2122 
     | 
    
         
            +
                return NULL;
         
     | 
| 
      
 2123 
     | 
    
         
            +
              }
         
     | 
| 
      
 2124 
     | 
    
         
            +
              return ret;
         
     | 
| 
       1425 
2125 
     | 
    
         
             
            }
         
     | 
| 
       1426 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1427 
     | 
    
         
            -
             
     | 
| 
       1428 
     | 
    
         
            -
              envoy_config_bootstrap_v3_CustomInlineHeader *ret = envoy_config_bootstrap_v3_CustomInlineHeader_new(arena);
         
     | 
| 
       1429 
     | 
    
         
            -
              return (ret && _upb_decode(buf, size, ret, &envoy_config_bootstrap_v3_CustomInlineHeader_msginit, arena, options))
         
     | 
| 
       1430 
     | 
    
         
            -
                  ? ret : NULL;
         
     | 
| 
      
 2126 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_CustomInlineHeader_serialize(const envoy_config_bootstrap_v3_CustomInlineHeader* msg, upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 2127 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_CustomInlineHeader_msginit, 0, arena, len);
         
     | 
| 
       1431 
2128 
     | 
    
         
             
            }
         
     | 
| 
       1432 
     | 
    
         
            -
            UPB_INLINE char  
     | 
| 
       1433 
     | 
    
         
            -
             
     | 
| 
      
 2129 
     | 
    
         
            +
            UPB_INLINE char* envoy_config_bootstrap_v3_CustomInlineHeader_serialize_ex(const envoy_config_bootstrap_v3_CustomInlineHeader* msg, int options,
         
     | 
| 
      
 2130 
     | 
    
         
            +
                                             upb_Arena* arena, size_t* len) {
         
     | 
| 
      
 2131 
     | 
    
         
            +
              return upb_Encode(msg, &envoy_config_bootstrap_v3_CustomInlineHeader_msginit, options, arena, len);
         
     | 
| 
      
 2132 
     | 
    
         
            +
            }
         
     | 
| 
      
 2133 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_CustomInlineHeader_clear_inline_header_name(const envoy_config_bootstrap_v3_CustomInlineHeader* msg) {
         
     | 
| 
      
 2134 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = upb_StringView_FromDataAndSize(NULL, 0);
         
     | 
| 
      
 2135 
     | 
    
         
            +
            }
         
     | 
| 
      
 2136 
     | 
    
         
            +
            UPB_INLINE upb_StringView envoy_config_bootstrap_v3_CustomInlineHeader_inline_header_name(const envoy_config_bootstrap_v3_CustomInlineHeader* msg) {
         
     | 
| 
      
 2137 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView);
         
     | 
| 
      
 2138 
     | 
    
         
            +
            }
         
     | 
| 
      
 2139 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_CustomInlineHeader_clear_inline_header_type(const envoy_config_bootstrap_v3_CustomInlineHeader* msg) {
         
     | 
| 
      
 2140 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(0, 0), int32_t) = 0;
         
     | 
| 
      
 2141 
     | 
    
         
            +
            }
         
     | 
| 
      
 2142 
     | 
    
         
            +
            UPB_INLINE int32_t envoy_config_bootstrap_v3_CustomInlineHeader_inline_header_type(const envoy_config_bootstrap_v3_CustomInlineHeader* msg) {
         
     | 
| 
      
 2143 
     | 
    
         
            +
              return *UPB_PTR_AT(msg, UPB_SIZE(0, 0), int32_t);
         
     | 
| 
       1434 
2144 
     | 
    
         
             
            }
         
     | 
| 
       1435 
2145 
     | 
    
         | 
| 
       1436 
     | 
    
         
            -
            UPB_INLINE  
     | 
| 
       1437 
     | 
    
         
            -
             
     | 
| 
       1438 
     | 
    
         
            -
             
     | 
| 
       1439 
     | 
    
         
            -
            UPB_INLINE void envoy_config_bootstrap_v3_CustomInlineHeader_set_inline_header_name(envoy_config_bootstrap_v3_CustomInlineHeader *msg, upb_strview value) {
         
     | 
| 
       1440 
     | 
    
         
            -
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
         
     | 
| 
      
 2146 
     | 
    
         
            +
            UPB_INLINE void envoy_config_bootstrap_v3_CustomInlineHeader_set_inline_header_name(envoy_config_bootstrap_v3_CustomInlineHeader *msg, upb_StringView value) {
         
     | 
| 
      
 2147 
     | 
    
         
            +
              *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_StringView) = value;
         
     | 
| 
       1441 
2148 
     | 
    
         
             
            }
         
     | 
| 
       1442 
2149 
     | 
    
         
             
            UPB_INLINE void envoy_config_bootstrap_v3_CustomInlineHeader_set_inline_header_type(envoy_config_bootstrap_v3_CustomInlineHeader *msg, int32_t value) {
         
     | 
| 
       1443 
2150 
     | 
    
         
             
              *UPB_PTR_AT(msg, UPB_SIZE(0, 0), int32_t) = value;
         
     | 
| 
       1444 
2151 
     | 
    
         
             
            }
         
     | 
| 
       1445 
2152 
     | 
    
         | 
| 
      
 2153 
     | 
    
         
            +
            extern const upb_MiniTable_File envoy_config_bootstrap_v3_bootstrap_proto_upb_file_layout;
         
     | 
| 
      
 2154 
     | 
    
         
            +
             
     | 
| 
       1446 
2155 
     | 
    
         
             
            #ifdef __cplusplus
         
     | 
| 
       1447 
2156 
     | 
    
         
             
            }  /* extern "C" */
         
     | 
| 
       1448 
2157 
     | 
    
         
             
            #endif
         
     |