grpc 1.78.0 → 1.80.0.pre1
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.
- checksums.yaml +4 -4
- data/Makefile +22 -8
- data/include/grpc/credentials.h +47 -37
- data/include/grpc/credentials_cpp.h +39 -0
- data/include/grpc/event_engine/event_engine.h +8 -3
- data/include/grpc/grpc.h +4 -0
- data/include/grpc/impl/call.h +9 -0
- data/include/grpc/impl/channel_arg_names.h +7 -0
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/private_key_signer.h +104 -0
- data/include/grpc/support/port_platform.h +6 -0
- data/src/core/call/call_filters.h +101 -78
- data/src/core/call/call_spine.h +91 -68
- data/src/core/call/call_state.h +60 -4
- data/src/core/call/client_call.cc +9 -9
- data/src/core/call/client_call.h +1 -1
- data/src/core/call/metadata_batch.cc +2 -0
- data/src/core/call/metadata_batch.h +48 -1
- data/src/core/call/metadata_info.cc +35 -0
- data/src/core/call/metadata_info.h +2 -0
- data/src/core/call/simple_slice_based_metadata.h +2 -1
- data/src/core/channelz/channelz.cc +9 -6
- data/src/core/channelz/channelz.h +7 -4
- data/src/core/channelz/property_list.h +5 -0
- data/src/core/channelz/v2tov1/convert.cc +1 -1
- data/src/core/channelz/v2tov1/legacy_api.cc +164 -307
- data/src/core/client_channel/buffered_call.cc +7 -3
- data/src/core/client_channel/buffered_call.h +11 -5
- data/src/core/client_channel/client_channel.cc +106 -44
- data/src/core/client_channel/client_channel.h +3 -6
- data/src/core/client_channel/client_channel_filter.cc +90 -64
- data/src/core/client_channel/client_channel_filter.h +3 -6
- data/src/core/client_channel/client_channel_internal.h +5 -0
- data/src/core/client_channel/config_selector.h +17 -12
- data/src/core/client_channel/dynamic_filters.cc +8 -7
- data/src/core/client_channel/dynamic_filters.h +7 -5
- data/src/core/client_channel/retry_filter.cc +1 -1
- data/src/core/client_channel/retry_filter.h +2 -2
- data/src/core/client_channel/subchannel.cc +1682 -266
- data/src/core/client_channel/subchannel.h +411 -134
- data/src/core/client_channel/subchannel_stream_client.cc +22 -18
- data/src/core/client_channel/subchannel_stream_client.h +8 -9
- data/src/core/client_channel/subchannel_stream_limiter.cc +76 -0
- data/src/core/client_channel/subchannel_stream_limiter.h +51 -0
- data/src/core/config/config_vars.cc +9 -1
- data/src/core/config/config_vars.h +6 -0
- data/src/core/credentials/call/call_creds_registry.h +51 -22
- data/src/core/credentials/call/call_creds_registry_init.cc +86 -2
- data/src/core/credentials/call/external/aws_external_account_credentials.cc +2 -2
- data/src/core/credentials/call/external/external_account_credentials.cc +11 -4
- data/src/core/credentials/call/external/file_external_account_credentials.cc +2 -2
- data/src/core/credentials/transport/channel_creds_registry.h +71 -20
- data/src/core/credentials/transport/channel_creds_registry_init.cc +338 -29
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +43 -24
- data/src/core/credentials/transport/ssl/ssl_credentials.h +7 -1
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +2 -8
- data/src/core/credentials/transport/ssl/ssl_security_connector.h +4 -3
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +25 -5
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +7 -5
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +181 -109
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +55 -42
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.cc +28 -23
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.h +26 -23
- data/src/core/credentials/transport/tls/spiffe_utils.cc +2 -2
- data/src/core/credentials/transport/tls/ssl_utils.cc +18 -18
- data/src/core/credentials/transport/tls/ssl_utils.h +12 -10
- data/src/core/credentials/transport/tls/tls_security_connector.cc +106 -74
- data/src/core/credentials/transport/tls/tls_security_connector.h +12 -8
- data/src/core/credentials/transport/xds/xds_credentials.cc +76 -32
- data/src/core/credentials/transport/xds/xds_credentials.h +4 -2
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +117 -35
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +42 -4
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +58 -29
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +19 -11
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +82 -25
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +28 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +9 -7
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +1 -1
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +7 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +117 -67
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +11 -1
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -15
- data/src/core/ext/transport/chttp2/transport/frame.h +0 -4
- data/src/core/ext/transport/chttp2/transport/goaway.cc +17 -2
- data/src/core/ext/transport/chttp2/transport/goaway.h +27 -6
- data/src/core/ext/transport/chttp2/transport/header_assembler.h +8 -21
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +101 -40
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +95 -0
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +923 -772
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +406 -423
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +8 -1
- data/src/core/ext/transport/chttp2/transport/http2_settings_promises.h +25 -13
- data/src/core/ext/transport/chttp2/transport/http2_transport.cc +71 -24
- data/src/core/ext/transport/chttp2/transport/http2_transport.h +25 -49
- data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata_tracker.h +29 -9
- data/src/core/ext/transport/chttp2/transport/internal.h +6 -2
- data/src/core/ext/transport/chttp2/transport/keepalive.cc +14 -20
- data/src/core/ext/transport/chttp2/transport/keepalive.h +9 -6
- data/src/core/ext/transport/chttp2/transport/parsing.cc +11 -0
- data/src/core/ext/transport/chttp2/transport/ping_promise.cc +34 -74
- data/src/core/ext/transport/chttp2/transport/ping_promise.h +123 -79
- data/src/core/ext/transport/chttp2/transport/security_frame.h +233 -3
- data/src/core/ext/transport/chttp2/transport/stream.h +152 -73
- data/src/core/ext/transport/chttp2/transport/stream_data_queue.h +155 -85
- data/src/core/ext/transport/chttp2/transport/transport_common.h +0 -5
- data/src/core/ext/transport/chttp2/transport/writable_streams.h +8 -7
- data/src/core/ext/transport/chttp2/transport/write_cycle.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/write_cycle.h +355 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +31 -29
- data/src/core/ext/upb-gen/cel/expr/checked.upb.h +1875 -0
- data/src/core/ext/upb-gen/cel/expr/checked.upb_minitable.c +409 -0
- data/src/core/ext/upb-gen/cel/expr/checked.upb_minitable.h +56 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb.h +2223 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb_minitable.c +489 -0
- data/src/core/ext/upb-gen/cel/expr/syntax.upb_minitable.h +60 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +130 -18
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +18 -13
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +70 -38
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +20 -17
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +26 -10
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +8 -7
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb.h +495 -0
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.c +114 -0
- data/src/core/ext/upb-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +26 -10
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +8 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb.h +121 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/cel.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +143 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +18 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +112 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +22 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +276 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +60 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +72 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +23 -2
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +129 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +36 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +16 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +63 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +12 -7
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +97 -81
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +40 -23
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +604 -228
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +146 -100
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +5 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +35 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +66 -14
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +22 -11
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +87 -0
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +29 -2
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +20 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +239 -60
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +59 -28
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb.h +89 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/call_credentials/access_token/v3/access_token_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb.h +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb_minitable.c +53 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/tls/v3/tls_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb.h +105 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/extensions/grpc_service/channel_credentials/xds/v3/xds_credentials.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +6 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +206 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +41 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +64 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +31 -5
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +283 -14
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -11
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +144 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +35 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +42 -21
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +9 -8
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb.h +164 -1
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.c +37 -6
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/promise.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +26 -11
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +8 -8
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +33 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +14 -3
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +90 -10
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +18 -7
- data/src/core/ext/upbdefs-gen/cel/expr/checked.upbdefs.c +248 -0
- data/src/core/ext/upbdefs-gen/cel/expr/checked.upbdefs.h +97 -0
- data/src/core/ext/upbdefs-gen/cel/expr/syntax.upbdefs.c +283 -0
- data/src/core/ext/upbdefs-gen/cel/expr/syntax.upbdefs.h +107 -0
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +213 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +635 -614
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1012 -1000
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +276 -273
- data/src/core/ext/upbdefs-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upbdefs.c +152 -0
- data/src/core/ext/upbdefs-gen/envoy/config/common/mutation_rules/v3/mutation_rules.upbdefs.h +47 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +149 -144
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +367 -370
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/cel.upbdefs.c +63 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/cel.upbdefs.h +37 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +297 -284
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +492 -469
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +74 -43
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +60 -59
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +202 -184
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +354 -339
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +28 -19
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +30 -27
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +94 -91
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +386 -369
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +60 -57
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +1974 -1884
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +119 -112
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +62 -51
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +109 -88
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +54 -36
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +78 -84
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +48 -46
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1041 -984
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +304 -290
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +94 -77
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +246 -193
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +37 -23
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +5 -3
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +4 -4
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +4 -5
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.c +113 -87
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/promise.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +6 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +25 -30
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +14 -20
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +180 -183
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +56 -47
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +69 -47
- data/src/core/filter/filter_chain.h +95 -0
- data/src/core/handshaker/http_connect/{http_connect_handshaker.cc → http_connect_client_handshaker.cc} +32 -31
- data/src/core/handshaker/http_connect/{http_connect_handshaker.h → http_connect_client_handshaker.h} +4 -4
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +1 -1
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +1 -1
- data/src/core/handshaker/security/pipelined_secure_endpoint.cc +14 -13
- data/src/core/handshaker/security/secure_endpoint.cc +282 -68
- data/src/core/handshaker/security/secure_endpoint.h +0 -7
- data/src/core/lib/channel/channel_args.h +1 -1
- data/src/core/lib/channel/promise_based_filter.cc +17 -4
- data/src/core/lib/channel/promise_based_filter.h +3 -2
- data/src/core/lib/debug/trace_flags.cc +2 -0
- data/src/core/lib/debug/trace_flags.h +1 -0
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +35 -8
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +9 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +0 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +1 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +34 -9
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +24 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +1 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +141 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +19 -2
- data/src/core/lib/event_engine/posix_engine/posix_interface.h +7 -0
- data/src/core/lib/event_engine/posix_engine/posix_interface_posix.cc +21 -3
- data/src/core/lib/event_engine/posix_engine/posix_interface_windows.cc +16 -0
- data/src/core/lib/experiments/experiments.cc +309 -201
- data/src/core/lib/experiments/experiments.h +141 -80
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +2 -2
- data/src/core/lib/iomgr/resolve_address.h +0 -2
- data/src/core/lib/iomgr/resolved_address.h +0 -2
- data/src/core/lib/iomgr/tcp_posix.cc +13 -5
- data/src/core/lib/iomgr/tcp_server.cc +0 -5
- data/src/core/lib/iomgr/tcp_server.h +0 -7
- data/src/core/lib/iomgr/tcp_server_posix.cc +0 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -3
- data/src/core/lib/iomgr/tcp_server_windows.cc +12 -51
- data/src/core/lib/promise/all_ok.h +17 -12
- data/src/core/lib/promise/cancel_callback.h +12 -13
- data/src/core/lib/promise/detail/join_state.h +626 -0
- data/src/core/lib/promise/detail/promise_factory.h +14 -14
- data/src/core/lib/promise/for_each.h +32 -8
- data/src/core/lib/promise/if.h +9 -7
- data/src/core/lib/promise/loop.h +18 -16
- data/src/core/lib/promise/map.h +54 -47
- data/src/core/lib/promise/mpsc.h +11 -10
- data/src/core/lib/promise/observable.h +6 -6
- data/src/core/lib/promise/party.h +25 -19
- data/src/core/lib/promise/poll.h +5 -5
- data/src/core/lib/promise/prioritized_race.h +10 -7
- data/src/core/lib/promise/promise.h +16 -11
- data/src/core/lib/promise/race.h +6 -5
- data/src/core/lib/promise/seq.h +109 -74
- data/src/core/lib/promise/try_join.h +14 -6
- data/src/core/lib/promise/try_seq.h +76 -60
- data/src/core/lib/resource_quota/api.cc +7 -0
- data/src/core/lib/resource_quota/arena.h +1 -1
- data/src/core/lib/resource_quota/memory_quota.cc +4 -1
- data/src/core/lib/resource_quota/resource_quota.cc +2 -1
- data/src/core/lib/resource_quota/resource_quota.h +3 -0
- data/src/core/lib/resource_quota/stream_quota.cc +77 -1
- data/src/core/lib/resource_quota/stream_quota.h +64 -1
- data/src/core/lib/resource_quota/telemetry.h +1 -1
- data/src/core/lib/surface/call.cc +13 -0
- data/src/core/lib/surface/call_utils.h +58 -43
- data/src/core/lib/surface/channel.h +1 -4
- data/src/core/lib/surface/completion_queue.cc +13 -6
- data/src/core/lib/surface/validate_metadata.cc +20 -15
- data/src/core/lib/surface/validate_metadata.h +3 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/promise_endpoint.cc +1 -1
- data/src/core/lib/transport/promise_endpoint.h +1 -1
- data/src/core/lib/transport/transport.h +5 -0
- data/src/core/load_balancing/health_check_client.cc +1 -15
- data/src/core/load_balancing/health_check_client_internal.h +0 -2
- data/src/core/load_balancing/oob_backend_metric.cc +1 -5
- data/src/core/load_balancing/oob_backend_metric_internal.h +0 -1
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +12 -9
- data/src/core/plugin_registry/grpc_plugin_registry.cc +3 -2
- data/src/core/resolver/xds/xds_resolver.cc +162 -116
- data/src/core/server/server.cc +18 -1
- data/src/core/server/server.h +2 -0
- data/src/core/server/xds_server_config_fetcher.cc +4 -4
- data/src/core/telemetry/call_tracer.cc +87 -2
- data/src/core/telemetry/call_tracer.h +46 -8
- data/src/core/telemetry/instrument.cc +102 -40
- data/src/core/telemetry/instrument.h +246 -65
- data/src/core/tsi/fake_transport_security.cc +3 -1
- data/src/core/tsi/ssl_transport_security.cc +516 -137
- data/src/core/tsi/ssl_transport_security.h +28 -22
- data/src/core/tsi/ssl_transport_security_utils.cc +2 -2
- data/src/core/tsi/ssl_transport_security_utils.h +2 -2
- data/src/core/util/bitset.h +6 -0
- data/src/core/util/function_signature.h +3 -1
- data/src/core/util/http_client/httpcli_security_connector.cc +2 -1
- data/src/core/util/json/json_reader.cc +0 -4
- data/src/core/xds/grpc/certificate_provider_store.cc +2 -1
- data/src/core/xds/grpc/certificate_provider_store.h +3 -17
- data/src/core/xds/grpc/certificate_provider_store_interface.h +61 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +48 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +18 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +7 -2
- data/src/core/xds/grpc/xds_certificate_provider.h +13 -2
- data/src/core/xds/grpc/xds_client_grpc.cc +13 -6
- data/src/core/xds/grpc/xds_client_grpc.h +10 -7
- data/src/core/xds/grpc/xds_cluster.cc +18 -4
- data/src/core/xds/grpc/xds_cluster.h +17 -2
- data/src/core/xds/grpc/xds_cluster_parser.cc +36 -11
- data/src/core/xds/grpc/xds_common_types.cc +45 -0
- data/src/core/xds/grpc/xds_common_types.h +31 -0
- data/src/core/xds/grpc/xds_common_types_parser.cc +274 -16
- data/src/core/xds/grpc/xds_common_types_parser.h +12 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +128 -24
- data/src/core/xds/grpc/xds_http_fault_filter.h +19 -10
- data/src/core/xds/grpc/xds_http_filter.cc +38 -0
- data/src/core/xds/grpc/xds_http_filter.h +70 -47
- data/src/core/xds/grpc/xds_http_filter_registry.cc +48 -14
- data/src/core/xds/grpc/xds_http_filter_registry.h +29 -15
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +88 -22
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +22 -11
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +36 -20
- data/src/core/xds/grpc/xds_http_rbac_filter.h +19 -10
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +143 -26
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +19 -10
- data/src/core/xds/grpc/xds_listener.cc +4 -1
- data/src/core/xds/grpc/xds_listener.h +10 -2
- data/src/core/xds/grpc/xds_listener_parser.cc +23 -18
- data/src/core/xds/grpc/xds_matcher.cc +40 -5
- data/src/core/xds/grpc/xds_matcher.h +13 -0
- data/src/core/xds/grpc/xds_matcher_action.h +1 -1
- data/src/core/xds/grpc/xds_matcher_parse.cc +60 -40
- data/src/core/xds/grpc/xds_matcher_parse.h +2 -1
- data/src/core/xds/grpc/xds_route_config.cc +12 -1
- data/src/core/xds/grpc/xds_route_config.h +15 -2
- data/src/core/xds/grpc/xds_route_config_parser.cc +11 -5
- data/src/core/xds/grpc/xds_routing.cc +181 -6
- data/src/core/xds/grpc/xds_routing.h +57 -0
- data/src/core/xds/grpc/xds_server_grpc.cc +55 -43
- data/src/core/xds/grpc/xds_server_grpc.h +13 -6
- data/src/core/xds/grpc/xds_server_grpc_interface.h +3 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +12 -6
- data/src/core/xds/grpc/xds_transport_grpc.h +5 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -8
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +18 -12
- data/src/ruby/lib/grpc/grpc.rb +7 -9
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +1 -1
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -4
- data/src/ruby/spec/spec_helper.rb +1 -1
- metadata +64 -14
- data/src/core/ext/transport/chttp2/transport/security_frame.cc +0 -31
- data/src/core/handshaker/security/legacy_secure_endpoint.cc +0 -597
|
@@ -13,9 +13,12 @@
|
|
|
13
13
|
|
|
14
14
|
#include "envoy/config/route/v3/route_components.upb_minitable.h"
|
|
15
15
|
|
|
16
|
+
#include "envoy/config/common/mutation_rules/v3/mutation_rules.upb_minitable.h"
|
|
16
17
|
#include "envoy/config/core/v3/base.upb_minitable.h"
|
|
17
18
|
#include "envoy/config/core/v3/extension.upb_minitable.h"
|
|
18
19
|
#include "envoy/config/core/v3/proxy_protocol.upb_minitable.h"
|
|
20
|
+
#include "envoy/config/core/v3/substitution_format_string.upb_minitable.h"
|
|
21
|
+
#include "envoy/type/matcher/v3/filter_state.upb_minitable.h"
|
|
19
22
|
#include "envoy/type/matcher/v3/metadata.upb_minitable.h"
|
|
20
23
|
#include "envoy/type/matcher/v3/regex.upb_minitable.h"
|
|
21
24
|
#include "envoy/type/matcher/v3/string.upb_minitable.h"
|
|
@@ -97,12 +100,15 @@ typedef struct envoy_config_route_v3_HeaderMatcher { upb_Message UPB_PRIVATE(bas
|
|
|
97
100
|
typedef struct envoy_config_route_v3_QueryParameterMatcher { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_QueryParameterMatcher;
|
|
98
101
|
typedef struct envoy_config_route_v3_InternalRedirectPolicy { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_InternalRedirectPolicy;
|
|
99
102
|
typedef struct envoy_config_route_v3_FilterConfig { upb_Message UPB_PRIVATE(base); } envoy_config_route_v3_FilterConfig;
|
|
103
|
+
struct envoy_config_common_mutation_rules_v3_HeaderMutation;
|
|
100
104
|
struct envoy_config_core_v3_DataSource;
|
|
101
105
|
struct envoy_config_core_v3_HeaderValueOption;
|
|
102
106
|
struct envoy_config_core_v3_Metadata;
|
|
103
107
|
struct envoy_config_core_v3_ProxyProtocolConfig;
|
|
104
108
|
struct envoy_config_core_v3_RuntimeFractionalPercent;
|
|
109
|
+
struct envoy_config_core_v3_SubstitutionFormatString;
|
|
105
110
|
struct envoy_config_core_v3_TypedExtensionConfig;
|
|
111
|
+
struct envoy_type_matcher_v3_FilterStateMatcher;
|
|
106
112
|
struct envoy_type_matcher_v3_MetadataMatcher;
|
|
107
113
|
struct envoy_type_matcher_v3_RegexMatchAndSubstitute;
|
|
108
114
|
struct envoy_type_matcher_v3_RegexMatcher;
|
|
@@ -192,13 +198,13 @@ UPB_INLINE char* envoy_config_route_v3_VirtualHost_serialize_ex(const envoy_conf
|
|
|
192
198
|
return ptr;
|
|
193
199
|
}
|
|
194
200
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_name(envoy_config_route_v3_VirtualHost* msg) {
|
|
195
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
201
|
+
const upb_MiniTableField field = {1, UPB_SIZE(88, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
196
202
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
197
203
|
}
|
|
198
204
|
UPB_INLINE upb_StringView envoy_config_route_v3_VirtualHost_name(const envoy_config_route_v3_VirtualHost* msg) {
|
|
199
205
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
200
206
|
upb_StringView ret;
|
|
201
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
207
|
+
const upb_MiniTableField field = {1, UPB_SIZE(88, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
202
208
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
203
209
|
&default_val, &ret);
|
|
204
210
|
return ret;
|
|
@@ -719,9 +725,26 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_has_metadata(const envoy_confi
|
|
|
719
725
|
const upb_MiniTableField field = {24, UPB_SIZE(80, 160), 70, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
720
726
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
721
727
|
}
|
|
728
|
+
UPB_INLINE void envoy_config_route_v3_VirtualHost_clear_request_body_buffer_limit(envoy_config_route_v3_VirtualHost* msg) {
|
|
729
|
+
const upb_MiniTableField field = {25, UPB_SIZE(84, 168), 71, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
730
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
731
|
+
}
|
|
732
|
+
UPB_INLINE const struct google_protobuf_UInt64Value* envoy_config_route_v3_VirtualHost_request_body_buffer_limit(const envoy_config_route_v3_VirtualHost* msg) {
|
|
733
|
+
const struct google_protobuf_UInt64Value* default_val = NULL;
|
|
734
|
+
const struct google_protobuf_UInt64Value* ret;
|
|
735
|
+
const upb_MiniTableField field = {25, UPB_SIZE(84, 168), 71, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
736
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt64Value_msg_init);
|
|
737
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
738
|
+
&default_val, &ret);
|
|
739
|
+
return ret;
|
|
740
|
+
}
|
|
741
|
+
UPB_INLINE bool envoy_config_route_v3_VirtualHost_has_request_body_buffer_limit(const envoy_config_route_v3_VirtualHost* msg) {
|
|
742
|
+
const upb_MiniTableField field = {25, UPB_SIZE(84, 168), 71, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
743
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
744
|
+
}
|
|
722
745
|
|
|
723
746
|
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_name(envoy_config_route_v3_VirtualHost *msg, upb_StringView value) {
|
|
724
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
747
|
+
const upb_MiniTableField field = {1, UPB_SIZE(88, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
725
748
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
726
749
|
}
|
|
727
750
|
UPB_INLINE upb_StringView* envoy_config_route_v3_VirtualHost_mutable_domains(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
|
|
@@ -1128,6 +1151,19 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_VirtualHo
|
|
|
1128
1151
|
}
|
|
1129
1152
|
return sub;
|
|
1130
1153
|
}
|
|
1154
|
+
UPB_INLINE void envoy_config_route_v3_VirtualHost_set_request_body_buffer_limit(envoy_config_route_v3_VirtualHost *msg, struct google_protobuf_UInt64Value* value) {
|
|
1155
|
+
const upb_MiniTableField field = {25, UPB_SIZE(84, 168), 71, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1156
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt64Value_msg_init);
|
|
1157
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1158
|
+
}
|
|
1159
|
+
UPB_INLINE struct google_protobuf_UInt64Value* envoy_config_route_v3_VirtualHost_mutable_request_body_buffer_limit(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
|
|
1160
|
+
struct google_protobuf_UInt64Value* sub = (struct google_protobuf_UInt64Value*)envoy_config_route_v3_VirtualHost_request_body_buffer_limit(msg);
|
|
1161
|
+
if (sub == NULL) {
|
|
1162
|
+
sub = (struct google_protobuf_UInt64Value*)_upb_Message_New(&google__protobuf__UInt64Value_msg_init, arena);
|
|
1163
|
+
if (sub) envoy_config_route_v3_VirtualHost_set_request_body_buffer_limit(msg, sub);
|
|
1164
|
+
}
|
|
1165
|
+
return sub;
|
|
1166
|
+
}
|
|
1131
1167
|
|
|
1132
1168
|
/* envoy.config.route.v3.FilterAction */
|
|
1133
1169
|
|
|
@@ -1347,12 +1383,12 @@ typedef enum {
|
|
|
1347
1383
|
envoy_config_route_v3_Route_action_NOT_SET = 0
|
|
1348
1384
|
} envoy_config_route_v3_Route_action_oneofcases;
|
|
1349
1385
|
UPB_INLINE envoy_config_route_v3_Route_action_oneofcases envoy_config_route_v3_Route_action_case(const envoy_config_route_v3_Route* msg) {
|
|
1350
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
1386
|
+
const upb_MiniTableField field = {2, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1351
1387
|
return (envoy_config_route_v3_Route_action_oneofcases)upb_Message_WhichOneofFieldNumber(
|
|
1352
1388
|
UPB_UPCAST(msg), &field);
|
|
1353
1389
|
}
|
|
1354
1390
|
UPB_INLINE void envoy_config_route_v3_Route_clear_action(envoy_config_route_v3_Route* msg) {
|
|
1355
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
1391
|
+
const upb_MiniTableField field = {2, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1356
1392
|
upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__config__route__v3__Route_msg_init, &field);
|
|
1357
1393
|
}
|
|
1358
1394
|
UPB_INLINE void envoy_config_route_v3_Route_clear_match(envoy_config_route_v3_Route* msg) {
|
|
@@ -1373,37 +1409,37 @@ UPB_INLINE bool envoy_config_route_v3_Route_has_match(const envoy_config_route_v
|
|
|
1373
1409
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1374
1410
|
}
|
|
1375
1411
|
UPB_INLINE void envoy_config_route_v3_Route_clear_route(envoy_config_route_v3_Route* msg) {
|
|
1376
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
1412
|
+
const upb_MiniTableField field = {2, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1377
1413
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1378
1414
|
}
|
|
1379
1415
|
UPB_INLINE const envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route_route(const envoy_config_route_v3_Route* msg) {
|
|
1380
1416
|
const envoy_config_route_v3_RouteAction* default_val = NULL;
|
|
1381
1417
|
const envoy_config_route_v3_RouteAction* ret;
|
|
1382
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
1418
|
+
const upb_MiniTableField field = {2, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1383
1419
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction_msg_init);
|
|
1384
1420
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1385
1421
|
&default_val, &ret);
|
|
1386
1422
|
return ret;
|
|
1387
1423
|
}
|
|
1388
1424
|
UPB_INLINE bool envoy_config_route_v3_Route_has_route(const envoy_config_route_v3_Route* msg) {
|
|
1389
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
1425
|
+
const upb_MiniTableField field = {2, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1390
1426
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1391
1427
|
}
|
|
1392
1428
|
UPB_INLINE void envoy_config_route_v3_Route_clear_redirect(envoy_config_route_v3_Route* msg) {
|
|
1393
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
1429
|
+
const upb_MiniTableField field = {3, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1394
1430
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1395
1431
|
}
|
|
1396
1432
|
UPB_INLINE const envoy_config_route_v3_RedirectAction* envoy_config_route_v3_Route_redirect(const envoy_config_route_v3_Route* msg) {
|
|
1397
1433
|
const envoy_config_route_v3_RedirectAction* default_val = NULL;
|
|
1398
1434
|
const envoy_config_route_v3_RedirectAction* ret;
|
|
1399
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
1435
|
+
const upb_MiniTableField field = {3, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1400
1436
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RedirectAction_msg_init);
|
|
1401
1437
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1402
1438
|
&default_val, &ret);
|
|
1403
1439
|
return ret;
|
|
1404
1440
|
}
|
|
1405
1441
|
UPB_INLINE bool envoy_config_route_v3_Route_has_redirect(const envoy_config_route_v3_Route* msg) {
|
|
1406
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
1442
|
+
const upb_MiniTableField field = {3, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1407
1443
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1408
1444
|
}
|
|
1409
1445
|
UPB_INLINE void envoy_config_route_v3_Route_clear_metadata(envoy_config_route_v3_Route* msg) {
|
|
@@ -1441,20 +1477,20 @@ UPB_INLINE bool envoy_config_route_v3_Route_has_decorator(const envoy_config_rou
|
|
|
1441
1477
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1442
1478
|
}
|
|
1443
1479
|
UPB_INLINE void envoy_config_route_v3_Route_clear_direct_response(envoy_config_route_v3_Route* msg) {
|
|
1444
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
1480
|
+
const upb_MiniTableField field = {7, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1445
1481
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1446
1482
|
}
|
|
1447
1483
|
UPB_INLINE const envoy_config_route_v3_DirectResponseAction* envoy_config_route_v3_Route_direct_response(const envoy_config_route_v3_Route* msg) {
|
|
1448
1484
|
const envoy_config_route_v3_DirectResponseAction* default_val = NULL;
|
|
1449
1485
|
const envoy_config_route_v3_DirectResponseAction* ret;
|
|
1450
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
1486
|
+
const upb_MiniTableField field = {7, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1451
1487
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__DirectResponseAction_msg_init);
|
|
1452
1488
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1453
1489
|
&default_val, &ret);
|
|
1454
1490
|
return ret;
|
|
1455
1491
|
}
|
|
1456
1492
|
UPB_INLINE bool envoy_config_route_v3_Route_has_direct_response(const envoy_config_route_v3_Route* msg) {
|
|
1457
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
1493
|
+
const upb_MiniTableField field = {7, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1458
1494
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1459
1495
|
}
|
|
1460
1496
|
UPB_INLINE void envoy_config_route_v3_Route_clear_request_headers_to_add(envoy_config_route_v3_Route* msg) {
|
|
@@ -1635,13 +1671,13 @@ UPB_INLINE upb_Map* _envoy_config_route_v3_Route_typed_per_filter_config_mutable
|
|
|
1635
1671
|
return _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), &field, 0, sizeof(struct google_protobuf_Any*), a);
|
|
1636
1672
|
}
|
|
1637
1673
|
UPB_INLINE void envoy_config_route_v3_Route_clear_name(envoy_config_route_v3_Route* msg) {
|
|
1638
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
1674
|
+
const upb_MiniTableField field = {14, UPB_SIZE(64, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1639
1675
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1640
1676
|
}
|
|
1641
1677
|
UPB_INLINE upb_StringView envoy_config_route_v3_Route_name(const envoy_config_route_v3_Route* msg) {
|
|
1642
1678
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
1643
1679
|
upb_StringView ret;
|
|
1644
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
1680
|
+
const upb_MiniTableField field = {14, UPB_SIZE(64, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1645
1681
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1646
1682
|
&default_val, &ret);
|
|
1647
1683
|
return ret;
|
|
@@ -1681,51 +1717,68 @@ UPB_INLINE bool envoy_config_route_v3_Route_has_per_request_buffer_limit_bytes(c
|
|
|
1681
1717
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1682
1718
|
}
|
|
1683
1719
|
UPB_INLINE void envoy_config_route_v3_Route_clear_filter_action(envoy_config_route_v3_Route* msg) {
|
|
1684
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
|
1720
|
+
const upb_MiniTableField field = {17, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1685
1721
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1686
1722
|
}
|
|
1687
1723
|
UPB_INLINE const envoy_config_route_v3_FilterAction* envoy_config_route_v3_Route_filter_action(const envoy_config_route_v3_Route* msg) {
|
|
1688
1724
|
const envoy_config_route_v3_FilterAction* default_val = NULL;
|
|
1689
1725
|
const envoy_config_route_v3_FilterAction* ret;
|
|
1690
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
|
1726
|
+
const upb_MiniTableField field = {17, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1691
1727
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__FilterAction_msg_init);
|
|
1692
1728
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1693
1729
|
&default_val, &ret);
|
|
1694
1730
|
return ret;
|
|
1695
1731
|
}
|
|
1696
1732
|
UPB_INLINE bool envoy_config_route_v3_Route_has_filter_action(const envoy_config_route_v3_Route* msg) {
|
|
1697
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
|
1733
|
+
const upb_MiniTableField field = {17, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1698
1734
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1699
1735
|
}
|
|
1700
1736
|
UPB_INLINE void envoy_config_route_v3_Route_clear_non_forwarding_action(envoy_config_route_v3_Route* msg) {
|
|
1701
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
|
1737
|
+
const upb_MiniTableField field = {18, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1702
1738
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1703
1739
|
}
|
|
1704
1740
|
UPB_INLINE const envoy_config_route_v3_NonForwardingAction* envoy_config_route_v3_Route_non_forwarding_action(const envoy_config_route_v3_Route* msg) {
|
|
1705
1741
|
const envoy_config_route_v3_NonForwardingAction* default_val = NULL;
|
|
1706
1742
|
const envoy_config_route_v3_NonForwardingAction* ret;
|
|
1707
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
|
1743
|
+
const upb_MiniTableField field = {18, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1708
1744
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__NonForwardingAction_msg_init);
|
|
1709
1745
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1710
1746
|
&default_val, &ret);
|
|
1711
1747
|
return ret;
|
|
1712
1748
|
}
|
|
1713
1749
|
UPB_INLINE bool envoy_config_route_v3_Route_has_non_forwarding_action(const envoy_config_route_v3_Route* msg) {
|
|
1714
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
|
1750
|
+
const upb_MiniTableField field = {18, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1715
1751
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1716
1752
|
}
|
|
1717
1753
|
UPB_INLINE void envoy_config_route_v3_Route_clear_stat_prefix(envoy_config_route_v3_Route* msg) {
|
|
1718
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
|
1754
|
+
const upb_MiniTableField field = {19, UPB_SIZE(72, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1719
1755
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1720
1756
|
}
|
|
1721
1757
|
UPB_INLINE upb_StringView envoy_config_route_v3_Route_stat_prefix(const envoy_config_route_v3_Route* msg) {
|
|
1722
1758
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
1723
1759
|
upb_StringView ret;
|
|
1724
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
|
1760
|
+
const upb_MiniTableField field = {19, UPB_SIZE(72, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1761
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1762
|
+
&default_val, &ret);
|
|
1763
|
+
return ret;
|
|
1764
|
+
}
|
|
1765
|
+
UPB_INLINE void envoy_config_route_v3_Route_clear_request_body_buffer_limit(envoy_config_route_v3_Route* msg) {
|
|
1766
|
+
const upb_MiniTableField field = {20, UPB_SIZE(52, 128), 69, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1767
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
1768
|
+
}
|
|
1769
|
+
UPB_INLINE const struct google_protobuf_UInt64Value* envoy_config_route_v3_Route_request_body_buffer_limit(const envoy_config_route_v3_Route* msg) {
|
|
1770
|
+
const struct google_protobuf_UInt64Value* default_val = NULL;
|
|
1771
|
+
const struct google_protobuf_UInt64Value* ret;
|
|
1772
|
+
const upb_MiniTableField field = {20, UPB_SIZE(52, 128), 69, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1773
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt64Value_msg_init);
|
|
1725
1774
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
1726
1775
|
&default_val, &ret);
|
|
1727
1776
|
return ret;
|
|
1728
1777
|
}
|
|
1778
|
+
UPB_INLINE bool envoy_config_route_v3_Route_has_request_body_buffer_limit(const envoy_config_route_v3_Route* msg) {
|
|
1779
|
+
const upb_MiniTableField field = {20, UPB_SIZE(52, 128), 69, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1780
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
1781
|
+
}
|
|
1729
1782
|
|
|
1730
1783
|
UPB_INLINE void envoy_config_route_v3_Route_set_match(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RouteMatch* value) {
|
|
1731
1784
|
const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
@@ -1741,7 +1794,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch* envoy_config_route_v3_Route_
|
|
|
1741
1794
|
return sub;
|
|
1742
1795
|
}
|
|
1743
1796
|
UPB_INLINE void envoy_config_route_v3_Route_set_route(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RouteAction* value) {
|
|
1744
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
1797
|
+
const upb_MiniTableField field = {2, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1745
1798
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction_msg_init);
|
|
1746
1799
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1747
1800
|
}
|
|
@@ -1754,7 +1807,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route
|
|
|
1754
1807
|
return sub;
|
|
1755
1808
|
}
|
|
1756
1809
|
UPB_INLINE void envoy_config_route_v3_Route_set_redirect(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RedirectAction* value) {
|
|
1757
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
1810
|
+
const upb_MiniTableField field = {3, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1758
1811
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RedirectAction_msg_init);
|
|
1759
1812
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1760
1813
|
}
|
|
@@ -1793,7 +1846,7 @@ UPB_INLINE struct envoy_config_route_v3_Decorator* envoy_config_route_v3_Route_m
|
|
|
1793
1846
|
return sub;
|
|
1794
1847
|
}
|
|
1795
1848
|
UPB_INLINE void envoy_config_route_v3_Route_set_direct_response(envoy_config_route_v3_Route *msg, envoy_config_route_v3_DirectResponseAction* value) {
|
|
1796
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
1849
|
+
const upb_MiniTableField field = {7, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1797
1850
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__DirectResponseAction_msg_init);
|
|
1798
1851
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1799
1852
|
}
|
|
@@ -1947,7 +2000,7 @@ UPB_INLINE bool envoy_config_route_v3_Route_typed_per_filter_config_delete(envoy
|
|
|
1947
2000
|
return _upb_Map_Delete(map, &key, 0, NULL);
|
|
1948
2001
|
}
|
|
1949
2002
|
UPB_INLINE void envoy_config_route_v3_Route_set_name(envoy_config_route_v3_Route *msg, upb_StringView value) {
|
|
1950
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
2003
|
+
const upb_MiniTableField field = {14, UPB_SIZE(64, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
1951
2004
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1952
2005
|
}
|
|
1953
2006
|
UPB_INLINE void envoy_config_route_v3_Route_set_tracing(envoy_config_route_v3_Route *msg, envoy_config_route_v3_Tracing* value) {
|
|
@@ -1977,7 +2030,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_Route_mutab
|
|
|
1977
2030
|
return sub;
|
|
1978
2031
|
}
|
|
1979
2032
|
UPB_INLINE void envoy_config_route_v3_Route_set_filter_action(envoy_config_route_v3_Route *msg, envoy_config_route_v3_FilterAction* value) {
|
|
1980
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
|
2033
|
+
const upb_MiniTableField field = {17, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1981
2034
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__FilterAction_msg_init);
|
|
1982
2035
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1983
2036
|
}
|
|
@@ -1990,7 +2043,7 @@ UPB_INLINE struct envoy_config_route_v3_FilterAction* envoy_config_route_v3_Rout
|
|
|
1990
2043
|
return sub;
|
|
1991
2044
|
}
|
|
1992
2045
|
UPB_INLINE void envoy_config_route_v3_Route_set_non_forwarding_action(envoy_config_route_v3_Route *msg, envoy_config_route_v3_NonForwardingAction* value) {
|
|
1993
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
|
2046
|
+
const upb_MiniTableField field = {18, UPB_SIZE(60, 136), UPB_SIZE(-57, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
1994
2047
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__NonForwardingAction_msg_init);
|
|
1995
2048
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
1996
2049
|
}
|
|
@@ -2003,9 +2056,22 @@ UPB_INLINE struct envoy_config_route_v3_NonForwardingAction* envoy_config_route_
|
|
|
2003
2056
|
return sub;
|
|
2004
2057
|
}
|
|
2005
2058
|
UPB_INLINE void envoy_config_route_v3_Route_set_stat_prefix(envoy_config_route_v3_Route *msg, upb_StringView value) {
|
|
2006
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
|
2059
|
+
const upb_MiniTableField field = {19, UPB_SIZE(72, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2007
2060
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2008
2061
|
}
|
|
2062
|
+
UPB_INLINE void envoy_config_route_v3_Route_set_request_body_buffer_limit(envoy_config_route_v3_Route *msg, struct google_protobuf_UInt64Value* value) {
|
|
2063
|
+
const upb_MiniTableField field = {20, UPB_SIZE(52, 128), 69, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2064
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt64Value_msg_init);
|
|
2065
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2066
|
+
}
|
|
2067
|
+
UPB_INLINE struct google_protobuf_UInt64Value* envoy_config_route_v3_Route_mutable_request_body_buffer_limit(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
|
|
2068
|
+
struct google_protobuf_UInt64Value* sub = (struct google_protobuf_UInt64Value*)envoy_config_route_v3_Route_request_body_buffer_limit(msg);
|
|
2069
|
+
if (sub == NULL) {
|
|
2070
|
+
sub = (struct google_protobuf_UInt64Value*)_upb_Message_New(&google__protobuf__UInt64Value_msg_init, arena);
|
|
2071
|
+
if (sub) envoy_config_route_v3_Route_set_request_body_buffer_limit(msg, sub);
|
|
2072
|
+
}
|
|
2073
|
+
return sub;
|
|
2074
|
+
}
|
|
2009
2075
|
|
|
2010
2076
|
/* envoy.config.route.v3.WeightedCluster */
|
|
2011
2077
|
|
|
@@ -2045,6 +2111,7 @@ UPB_INLINE char* envoy_config_route_v3_WeightedCluster_serialize_ex(const envoy_
|
|
|
2045
2111
|
}
|
|
2046
2112
|
typedef enum {
|
|
2047
2113
|
envoy_config_route_v3_WeightedCluster_random_value_specifier_header_name = 4,
|
|
2114
|
+
envoy_config_route_v3_WeightedCluster_random_value_specifier_use_hash_policy = 5,
|
|
2048
2115
|
envoy_config_route_v3_WeightedCluster_random_value_specifier_NOT_SET = 0
|
|
2049
2116
|
} envoy_config_route_v3_WeightedCluster_random_value_specifier_oneofcases;
|
|
2050
2117
|
UPB_INLINE envoy_config_route_v3_WeightedCluster_random_value_specifier_oneofcases envoy_config_route_v3_WeightedCluster_random_value_specifier_case(const envoy_config_route_v3_WeightedCluster* msg) {
|
|
@@ -2136,6 +2203,23 @@ UPB_INLINE bool envoy_config_route_v3_WeightedCluster_has_header_name(const envo
|
|
|
2136
2203
|
const upb_MiniTableField field = {4, 32, UPB_SIZE(-21, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2137
2204
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2138
2205
|
}
|
|
2206
|
+
UPB_INLINE void envoy_config_route_v3_WeightedCluster_clear_use_hash_policy(envoy_config_route_v3_WeightedCluster* msg) {
|
|
2207
|
+
const upb_MiniTableField field = {5, 32, UPB_SIZE(-21, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2208
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
2209
|
+
}
|
|
2210
|
+
UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_WeightedCluster_use_hash_policy(const envoy_config_route_v3_WeightedCluster* msg) {
|
|
2211
|
+
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
2212
|
+
const struct google_protobuf_BoolValue* ret;
|
|
2213
|
+
const upb_MiniTableField field = {5, 32, UPB_SIZE(-21, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2214
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
2215
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2216
|
+
&default_val, &ret);
|
|
2217
|
+
return ret;
|
|
2218
|
+
}
|
|
2219
|
+
UPB_INLINE bool envoy_config_route_v3_WeightedCluster_has_use_hash_policy(const envoy_config_route_v3_WeightedCluster* msg) {
|
|
2220
|
+
const upb_MiniTableField field = {5, 32, UPB_SIZE(-21, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2221
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2222
|
+
}
|
|
2139
2223
|
|
|
2140
2224
|
UPB_INLINE envoy_config_route_v3_WeightedCluster_ClusterWeight** envoy_config_route_v3_WeightedCluster_mutable_clusters(envoy_config_route_v3_WeightedCluster* msg, size_t* size) {
|
|
2141
2225
|
upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
@@ -2190,6 +2274,19 @@ UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_header_name(envoy_conf
|
|
|
2190
2274
|
const upb_MiniTableField field = {4, 32, UPB_SIZE(-21, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2191
2275
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2192
2276
|
}
|
|
2277
|
+
UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_use_hash_policy(envoy_config_route_v3_WeightedCluster *msg, struct google_protobuf_BoolValue* value) {
|
|
2278
|
+
const upb_MiniTableField field = {5, 32, UPB_SIZE(-21, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2279
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
2280
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
2281
|
+
}
|
|
2282
|
+
UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_WeightedCluster_mutable_use_hash_policy(envoy_config_route_v3_WeightedCluster* msg, upb_Arena* arena) {
|
|
2283
|
+
struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_WeightedCluster_use_hash_policy(msg);
|
|
2284
|
+
if (sub == NULL) {
|
|
2285
|
+
sub = (struct google_protobuf_BoolValue*)_upb_Message_New(&google__protobuf__BoolValue_msg_init, arena);
|
|
2286
|
+
if (sub) envoy_config_route_v3_WeightedCluster_set_use_hash_policy(msg, sub);
|
|
2287
|
+
}
|
|
2288
|
+
return sub;
|
|
2289
|
+
}
|
|
2193
2290
|
|
|
2194
2291
|
/* envoy.config.route.v3.WeightedCluster.ClusterWeight */
|
|
2195
2292
|
|
|
@@ -2802,44 +2899,44 @@ typedef enum {
|
|
|
2802
2899
|
envoy_config_route_v3_RouteMatch_path_specifier_NOT_SET = 0
|
|
2803
2900
|
} envoy_config_route_v3_RouteMatch_path_specifier_oneofcases;
|
|
2804
2901
|
UPB_INLINE envoy_config_route_v3_RouteMatch_path_specifier_oneofcases envoy_config_route_v3_RouteMatch_path_specifier_case(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2805
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
2902
|
+
const upb_MiniTableField field = {1, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2806
2903
|
return (envoy_config_route_v3_RouteMatch_path_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
|
|
2807
2904
|
UPB_UPCAST(msg), &field);
|
|
2808
2905
|
}
|
|
2809
2906
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_path_specifier(envoy_config_route_v3_RouteMatch* msg) {
|
|
2810
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
2907
|
+
const upb_MiniTableField field = {1, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2811
2908
|
upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__config__route__v3__RouteMatch_msg_init, &field);
|
|
2812
2909
|
}
|
|
2813
2910
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_prefix(envoy_config_route_v3_RouteMatch* msg) {
|
|
2814
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
2911
|
+
const upb_MiniTableField field = {1, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2815
2912
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
2816
2913
|
}
|
|
2817
2914
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteMatch_prefix(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2818
2915
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
2819
2916
|
upb_StringView ret;
|
|
2820
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
2917
|
+
const upb_MiniTableField field = {1, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2821
2918
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2822
2919
|
&default_val, &ret);
|
|
2823
2920
|
return ret;
|
|
2824
2921
|
}
|
|
2825
2922
|
UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_prefix(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2826
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
2923
|
+
const upb_MiniTableField field = {1, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2827
2924
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2828
2925
|
}
|
|
2829
2926
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_path(envoy_config_route_v3_RouteMatch* msg) {
|
|
2830
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
2927
|
+
const upb_MiniTableField field = {2, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2831
2928
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
2832
2929
|
}
|
|
2833
2930
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteMatch_path(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2834
2931
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
2835
2932
|
upb_StringView ret;
|
|
2836
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
2933
|
+
const upb_MiniTableField field = {2, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2837
2934
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2838
2935
|
&default_val, &ret);
|
|
2839
2936
|
return ret;
|
|
2840
2937
|
}
|
|
2841
2938
|
UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_path(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2842
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
2939
|
+
const upb_MiniTableField field = {2, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
2843
2940
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2844
2941
|
}
|
|
2845
2942
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_case_sensitive(envoy_config_route_v3_RouteMatch* msg) {
|
|
@@ -2964,20 +3061,20 @@ UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_runtime_fraction(const envo
|
|
|
2964
3061
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2965
3062
|
}
|
|
2966
3063
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_safe_regex(envoy_config_route_v3_RouteMatch* msg) {
|
|
2967
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
|
3064
|
+
const upb_MiniTableField field = {10, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2968
3065
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
2969
3066
|
}
|
|
2970
3067
|
UPB_INLINE const struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_RouteMatch_safe_regex(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2971
3068
|
const struct envoy_type_matcher_v3_RegexMatcher* default_val = NULL;
|
|
2972
3069
|
const struct envoy_type_matcher_v3_RegexMatcher* ret;
|
|
2973
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
|
3070
|
+
const upb_MiniTableField field = {10, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2974
3071
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatcher_msg_init);
|
|
2975
3072
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
2976
3073
|
&default_val, &ret);
|
|
2977
3074
|
return ret;
|
|
2978
3075
|
}
|
|
2979
3076
|
UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_safe_regex(const envoy_config_route_v3_RouteMatch* msg) {
|
|
2980
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
|
3077
|
+
const upb_MiniTableField field = {10, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
2981
3078
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2982
3079
|
}
|
|
2983
3080
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_tls_context(envoy_config_route_v3_RouteMatch* msg) {
|
|
@@ -2998,20 +3095,20 @@ UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_tls_context(const envoy_con
|
|
|
2998
3095
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
2999
3096
|
}
|
|
3000
3097
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_connect_matcher(envoy_config_route_v3_RouteMatch* msg) {
|
|
3001
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
|
3098
|
+
const upb_MiniTableField field = {12, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3002
3099
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3003
3100
|
}
|
|
3004
3101
|
UPB_INLINE const envoy_config_route_v3_RouteMatch_ConnectMatcher* envoy_config_route_v3_RouteMatch_connect_matcher(const envoy_config_route_v3_RouteMatch* msg) {
|
|
3005
3102
|
const envoy_config_route_v3_RouteMatch_ConnectMatcher* default_val = NULL;
|
|
3006
3103
|
const envoy_config_route_v3_RouteMatch_ConnectMatcher* ret;
|
|
3007
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
|
3104
|
+
const upb_MiniTableField field = {12, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3008
3105
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__ConnectMatcher_msg_init);
|
|
3009
3106
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3010
3107
|
&default_val, &ret);
|
|
3011
3108
|
return ret;
|
|
3012
3109
|
}
|
|
3013
3110
|
UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_connect_matcher(const envoy_config_route_v3_RouteMatch* msg) {
|
|
3014
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
|
3111
|
+
const upb_MiniTableField field = {12, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3015
3112
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3016
3113
|
}
|
|
3017
3114
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_dynamic_metadata(envoy_config_route_v3_RouteMatch* msg) {
|
|
@@ -3050,45 +3147,80 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteMatch_dynamic_metadata_mutable
|
|
|
3050
3147
|
return arr;
|
|
3051
3148
|
}
|
|
3052
3149
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_path_separated_prefix(envoy_config_route_v3_RouteMatch* msg) {
|
|
3053
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
3150
|
+
const upb_MiniTableField field = {14, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3054
3151
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3055
3152
|
}
|
|
3056
3153
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteMatch_path_separated_prefix(const envoy_config_route_v3_RouteMatch* msg) {
|
|
3057
3154
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3058
3155
|
upb_StringView ret;
|
|
3059
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
3156
|
+
const upb_MiniTableField field = {14, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3060
3157
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3061
3158
|
&default_val, &ret);
|
|
3062
3159
|
return ret;
|
|
3063
3160
|
}
|
|
3064
3161
|
UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_path_separated_prefix(const envoy_config_route_v3_RouteMatch* msg) {
|
|
3065
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
3162
|
+
const upb_MiniTableField field = {14, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3066
3163
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3067
3164
|
}
|
|
3068
3165
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_path_match_policy(envoy_config_route_v3_RouteMatch* msg) {
|
|
3069
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
|
3166
|
+
const upb_MiniTableField field = {15, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3070
3167
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3071
3168
|
}
|
|
3072
3169
|
UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteMatch_path_match_policy(const envoy_config_route_v3_RouteMatch* msg) {
|
|
3073
3170
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
3074
3171
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
3075
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
|
3172
|
+
const upb_MiniTableField field = {15, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3076
3173
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
3077
3174
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3078
3175
|
&default_val, &ret);
|
|
3079
3176
|
return ret;
|
|
3080
3177
|
}
|
|
3081
3178
|
UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_path_match_policy(const envoy_config_route_v3_RouteMatch* msg) {
|
|
3082
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
|
3179
|
+
const upb_MiniTableField field = {15, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3083
3180
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3084
3181
|
}
|
|
3182
|
+
UPB_INLINE void envoy_config_route_v3_RouteMatch_clear_filter_state(envoy_config_route_v3_RouteMatch* msg) {
|
|
3183
|
+
const upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3184
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3185
|
+
}
|
|
3186
|
+
UPB_INLINE const struct envoy_type_matcher_v3_FilterStateMatcher* const* envoy_config_route_v3_RouteMatch_filter_state(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
3187
|
+
const upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3188
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__FilterStateMatcher_msg_init);
|
|
3189
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3190
|
+
if (arr) {
|
|
3191
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
3192
|
+
return (const struct envoy_type_matcher_v3_FilterStateMatcher* const*)upb_Array_DataPtr(arr);
|
|
3193
|
+
} else {
|
|
3194
|
+
if (size) *size = 0;
|
|
3195
|
+
return NULL;
|
|
3196
|
+
}
|
|
3197
|
+
}
|
|
3198
|
+
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteMatch_filter_state_upb_array(const envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
3199
|
+
const upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3200
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__FilterStateMatcher_msg_init);
|
|
3201
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
3202
|
+
if (size) {
|
|
3203
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
3204
|
+
}
|
|
3205
|
+
return arr;
|
|
3206
|
+
}
|
|
3207
|
+
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteMatch_filter_state_mutable_upb_array(envoy_config_route_v3_RouteMatch* msg, size_t* size, upb_Arena* arena) {
|
|
3208
|
+
const upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3209
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__FilterStateMatcher_msg_init);
|
|
3210
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
3211
|
+
&field, arena);
|
|
3212
|
+
if (size) {
|
|
3213
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
3214
|
+
}
|
|
3215
|
+
return arr;
|
|
3216
|
+
}
|
|
3085
3217
|
|
|
3086
3218
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_prefix(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
|
|
3087
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
3219
|
+
const upb_MiniTableField field = {1, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3088
3220
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3089
3221
|
}
|
|
3090
3222
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
|
|
3091
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
3223
|
+
const upb_MiniTableField field = {2, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3092
3224
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3093
3225
|
}
|
|
3094
3226
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_case_sensitive(envoy_config_route_v3_RouteMatch *msg, struct google_protobuf_BoolValue* value) {
|
|
@@ -3195,7 +3327,7 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
|
|
|
3195
3327
|
return sub;
|
|
3196
3328
|
}
|
|
3197
3329
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_safe_regex(envoy_config_route_v3_RouteMatch *msg, struct envoy_type_matcher_v3_RegexMatcher* value) {
|
|
3198
|
-
const upb_MiniTableField field = {10, UPB_SIZE(
|
|
3330
|
+
const upb_MiniTableField field = {10, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3199
3331
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatcher_msg_init);
|
|
3200
3332
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3201
3333
|
}
|
|
@@ -3221,7 +3353,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* envoy
|
|
|
3221
3353
|
return sub;
|
|
3222
3354
|
}
|
|
3223
3355
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_connect_matcher(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_ConnectMatcher* value) {
|
|
3224
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
|
3356
|
+
const upb_MiniTableField field = {12, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3225
3357
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteMatch__ConnectMatcher_msg_init);
|
|
3226
3358
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3227
3359
|
}
|
|
@@ -3266,11 +3398,11 @@ UPB_INLINE struct envoy_type_matcher_v3_MetadataMatcher* envoy_config_route_v3_R
|
|
|
3266
3398
|
return sub;
|
|
3267
3399
|
}
|
|
3268
3400
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path_separated_prefix(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
|
|
3269
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
|
3401
|
+
const upb_MiniTableField field = {14, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3270
3402
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3271
3403
|
}
|
|
3272
3404
|
UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path_match_policy(envoy_config_route_v3_RouteMatch *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
3273
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
|
3405
|
+
const upb_MiniTableField field = {15, UPB_SIZE(48, 16), UPB_SIZE(-45, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3274
3406
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
3275
3407
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
3276
3408
|
}
|
|
@@ -3282,6 +3414,38 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
3282
3414
|
}
|
|
3283
3415
|
return sub;
|
|
3284
3416
|
}
|
|
3417
|
+
UPB_INLINE struct envoy_type_matcher_v3_FilterStateMatcher** envoy_config_route_v3_RouteMatch_mutable_filter_state(envoy_config_route_v3_RouteMatch* msg, size_t* size) {
|
|
3418
|
+
upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3419
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__FilterStateMatcher_msg_init);
|
|
3420
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
3421
|
+
if (arr) {
|
|
3422
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
3423
|
+
return (struct envoy_type_matcher_v3_FilterStateMatcher**)upb_Array_MutableDataPtr(arr);
|
|
3424
|
+
} else {
|
|
3425
|
+
if (size) *size = 0;
|
|
3426
|
+
return NULL;
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3429
|
+
UPB_INLINE struct envoy_type_matcher_v3_FilterStateMatcher** envoy_config_route_v3_RouteMatch_resize_filter_state(envoy_config_route_v3_RouteMatch* msg, size_t size, upb_Arena* arena) {
|
|
3430
|
+
upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3431
|
+
return (struct envoy_type_matcher_v3_FilterStateMatcher**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
3432
|
+
&field, size, arena);
|
|
3433
|
+
}
|
|
3434
|
+
UPB_INLINE struct envoy_type_matcher_v3_FilterStateMatcher* envoy_config_route_v3_RouteMatch_add_filter_state(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
|
|
3435
|
+
upb_MiniTableField field = {16, UPB_SIZE(40, 88), 0, 10, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3436
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__FilterStateMatcher_msg_init);
|
|
3437
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
3438
|
+
UPB_UPCAST(msg), &field, arena);
|
|
3439
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
3440
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
|
3441
|
+
return NULL;
|
|
3442
|
+
}
|
|
3443
|
+
struct envoy_type_matcher_v3_FilterStateMatcher* sub = (struct envoy_type_matcher_v3_FilterStateMatcher*)_upb_Message_New(&envoy__type__matcher__v3__FilterStateMatcher_msg_init, arena);
|
|
3444
|
+
if (!arr || !sub) return NULL;
|
|
3445
|
+
UPB_PRIVATE(_upb_Array_Set)
|
|
3446
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
|
3447
|
+
return sub;
|
|
3448
|
+
}
|
|
3285
3449
|
|
|
3286
3450
|
/* envoy.config.route.v3.RouteMatch.GrpcRouteMatchOptions */
|
|
3287
3451
|
|
|
@@ -3834,12 +3998,12 @@ typedef enum {
|
|
|
3834
3998
|
envoy_config_route_v3_RouteAction_cluster_specifier_NOT_SET = 0
|
|
3835
3999
|
} envoy_config_route_v3_RouteAction_cluster_specifier_oneofcases;
|
|
3836
4000
|
UPB_INLINE envoy_config_route_v3_RouteAction_cluster_specifier_oneofcases envoy_config_route_v3_RouteAction_cluster_specifier_case(const envoy_config_route_v3_RouteAction* msg) {
|
|
3837
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4001
|
+
const upb_MiniTableField field = {1, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3838
4002
|
return (envoy_config_route_v3_RouteAction_cluster_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
|
|
3839
4003
|
UPB_UPCAST(msg), &field);
|
|
3840
4004
|
}
|
|
3841
4005
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_cluster_specifier(envoy_config_route_v3_RouteAction* msg) {
|
|
3842
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4006
|
+
const upb_MiniTableField field = {1, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3843
4007
|
upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__config__route__v3__RouteAction_msg_init, &field);
|
|
3844
4008
|
}
|
|
3845
4009
|
typedef enum {
|
|
@@ -3847,160 +4011,161 @@ typedef enum {
|
|
|
3847
4011
|
envoy_config_route_v3_RouteAction_host_rewrite_specifier_auto_host_rewrite = 7,
|
|
3848
4012
|
envoy_config_route_v3_RouteAction_host_rewrite_specifier_host_rewrite_header = 29,
|
|
3849
4013
|
envoy_config_route_v3_RouteAction_host_rewrite_specifier_host_rewrite_path_regex = 35,
|
|
4014
|
+
envoy_config_route_v3_RouteAction_host_rewrite_specifier_host_rewrite = 44,
|
|
3850
4015
|
envoy_config_route_v3_RouteAction_host_rewrite_specifier_NOT_SET = 0
|
|
3851
4016
|
} envoy_config_route_v3_RouteAction_host_rewrite_specifier_oneofcases;
|
|
3852
4017
|
UPB_INLINE envoy_config_route_v3_RouteAction_host_rewrite_specifier_oneofcases envoy_config_route_v3_RouteAction_host_rewrite_specifier_case(const envoy_config_route_v3_RouteAction* msg) {
|
|
3853
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
|
4018
|
+
const upb_MiniTableField field = {6, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3854
4019
|
return (envoy_config_route_v3_RouteAction_host_rewrite_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
|
|
3855
4020
|
UPB_UPCAST(msg), &field);
|
|
3856
4021
|
}
|
|
3857
4022
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_host_rewrite_specifier(envoy_config_route_v3_RouteAction* msg) {
|
|
3858
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
|
4023
|
+
const upb_MiniTableField field = {6, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3859
4024
|
upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__config__route__v3__RouteAction_msg_init, &field);
|
|
3860
4025
|
}
|
|
3861
4026
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_cluster(envoy_config_route_v3_RouteAction* msg) {
|
|
3862
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4027
|
+
const upb_MiniTableField field = {1, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3863
4028
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3864
4029
|
}
|
|
3865
4030
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_cluster(const envoy_config_route_v3_RouteAction* msg) {
|
|
3866
4031
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3867
4032
|
upb_StringView ret;
|
|
3868
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4033
|
+
const upb_MiniTableField field = {1, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3869
4034
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3870
4035
|
&default_val, &ret);
|
|
3871
4036
|
return ret;
|
|
3872
4037
|
}
|
|
3873
4038
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_cluster(const envoy_config_route_v3_RouteAction* msg) {
|
|
3874
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4039
|
+
const upb_MiniTableField field = {1, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3875
4040
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3876
4041
|
}
|
|
3877
4042
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_cluster_header(envoy_config_route_v3_RouteAction* msg) {
|
|
3878
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
4043
|
+
const upb_MiniTableField field = {2, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3879
4044
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3880
4045
|
}
|
|
3881
4046
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_cluster_header(const envoy_config_route_v3_RouteAction* msg) {
|
|
3882
4047
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3883
4048
|
upb_StringView ret;
|
|
3884
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
4049
|
+
const upb_MiniTableField field = {2, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3885
4050
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3886
4051
|
&default_val, &ret);
|
|
3887
4052
|
return ret;
|
|
3888
4053
|
}
|
|
3889
4054
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_cluster_header(const envoy_config_route_v3_RouteAction* msg) {
|
|
3890
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
4055
|
+
const upb_MiniTableField field = {2, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3891
4056
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3892
4057
|
}
|
|
3893
4058
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_weighted_clusters(envoy_config_route_v3_RouteAction* msg) {
|
|
3894
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
4059
|
+
const upb_MiniTableField field = {3, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3895
4060
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3896
4061
|
}
|
|
3897
4062
|
UPB_INLINE const envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_RouteAction_weighted_clusters(const envoy_config_route_v3_RouteAction* msg) {
|
|
3898
4063
|
const envoy_config_route_v3_WeightedCluster* default_val = NULL;
|
|
3899
4064
|
const envoy_config_route_v3_WeightedCluster* ret;
|
|
3900
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
4065
|
+
const upb_MiniTableField field = {3, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3901
4066
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster_msg_init);
|
|
3902
4067
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3903
4068
|
&default_val, &ret);
|
|
3904
4069
|
return ret;
|
|
3905
4070
|
}
|
|
3906
4071
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_weighted_clusters(const envoy_config_route_v3_RouteAction* msg) {
|
|
3907
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
4072
|
+
const upb_MiniTableField field = {3, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3908
4073
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3909
4074
|
}
|
|
3910
4075
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_metadata_match(envoy_config_route_v3_RouteAction* msg) {
|
|
3911
|
-
const upb_MiniTableField field = {4, UPB_SIZE(12,
|
|
4076
|
+
const upb_MiniTableField field = {4, UPB_SIZE(12, 96), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3912
4077
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3913
4078
|
}
|
|
3914
4079
|
UPB_INLINE const struct envoy_config_core_v3_Metadata* envoy_config_route_v3_RouteAction_metadata_match(const envoy_config_route_v3_RouteAction* msg) {
|
|
3915
4080
|
const struct envoy_config_core_v3_Metadata* default_val = NULL;
|
|
3916
4081
|
const struct envoy_config_core_v3_Metadata* ret;
|
|
3917
|
-
const upb_MiniTableField field = {4, UPB_SIZE(12,
|
|
4082
|
+
const upb_MiniTableField field = {4, UPB_SIZE(12, 96), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3918
4083
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
3919
4084
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3920
4085
|
&default_val, &ret);
|
|
3921
4086
|
return ret;
|
|
3922
4087
|
}
|
|
3923
4088
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_metadata_match(const envoy_config_route_v3_RouteAction* msg) {
|
|
3924
|
-
const upb_MiniTableField field = {4, UPB_SIZE(12,
|
|
4089
|
+
const upb_MiniTableField field = {4, UPB_SIZE(12, 96), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3925
4090
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3926
4091
|
}
|
|
3927
4092
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_prefix_rewrite(envoy_config_route_v3_RouteAction* msg) {
|
|
3928
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
|
4093
|
+
const upb_MiniTableField field = {5, UPB_SIZE(116, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3929
4094
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3930
4095
|
}
|
|
3931
4096
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_prefix_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
3932
4097
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3933
4098
|
upb_StringView ret;
|
|
3934
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
|
4099
|
+
const upb_MiniTableField field = {5, UPB_SIZE(116, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3935
4100
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3936
4101
|
&default_val, &ret);
|
|
3937
4102
|
return ret;
|
|
3938
4103
|
}
|
|
3939
4104
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_host_rewrite_literal(envoy_config_route_v3_RouteAction* msg) {
|
|
3940
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
|
4105
|
+
const upb_MiniTableField field = {6, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3941
4106
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3942
4107
|
}
|
|
3943
4108
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_host_rewrite_literal(const envoy_config_route_v3_RouteAction* msg) {
|
|
3944
4109
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
3945
4110
|
upb_StringView ret;
|
|
3946
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
|
4111
|
+
const upb_MiniTableField field = {6, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3947
4112
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3948
4113
|
&default_val, &ret);
|
|
3949
4114
|
return ret;
|
|
3950
4115
|
}
|
|
3951
4116
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_host_rewrite_literal(const envoy_config_route_v3_RouteAction* msg) {
|
|
3952
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
|
4117
|
+
const upb_MiniTableField field = {6, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
3953
4118
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3954
4119
|
}
|
|
3955
4120
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_auto_host_rewrite(envoy_config_route_v3_RouteAction* msg) {
|
|
3956
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
4121
|
+
const upb_MiniTableField field = {7, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3957
4122
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3958
4123
|
}
|
|
3959
4124
|
UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_auto_host_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
3960
4125
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
3961
4126
|
const struct google_protobuf_BoolValue* ret;
|
|
3962
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
4127
|
+
const upb_MiniTableField field = {7, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3963
4128
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
3964
4129
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3965
4130
|
&default_val, &ret);
|
|
3966
4131
|
return ret;
|
|
3967
4132
|
}
|
|
3968
4133
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_auto_host_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
3969
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
4134
|
+
const upb_MiniTableField field = {7, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3970
4135
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3971
4136
|
}
|
|
3972
4137
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_timeout(envoy_config_route_v3_RouteAction* msg) {
|
|
3973
|
-
const upb_MiniTableField field = {8, UPB_SIZE(16,
|
|
4138
|
+
const upb_MiniTableField field = {8, UPB_SIZE(16, 104), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3974
4139
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3975
4140
|
}
|
|
3976
4141
|
UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
3977
4142
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
3978
4143
|
const struct google_protobuf_Duration* ret;
|
|
3979
|
-
const upb_MiniTableField field = {8, UPB_SIZE(16,
|
|
4144
|
+
const upb_MiniTableField field = {8, UPB_SIZE(16, 104), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3980
4145
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
3981
4146
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3982
4147
|
&default_val, &ret);
|
|
3983
4148
|
return ret;
|
|
3984
4149
|
}
|
|
3985
4150
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
3986
|
-
const upb_MiniTableField field = {8, UPB_SIZE(16,
|
|
4151
|
+
const upb_MiniTableField field = {8, UPB_SIZE(16, 104), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3987
4152
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
3988
4153
|
}
|
|
3989
4154
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_retry_policy(envoy_config_route_v3_RouteAction* msg) {
|
|
3990
|
-
const upb_MiniTableField field = {9, UPB_SIZE(20,
|
|
4155
|
+
const upb_MiniTableField field = {9, UPB_SIZE(20, 112), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3991
4156
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
3992
4157
|
}
|
|
3993
4158
|
UPB_INLINE const envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_RouteAction_retry_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
3994
4159
|
const envoy_config_route_v3_RetryPolicy* default_val = NULL;
|
|
3995
4160
|
const envoy_config_route_v3_RetryPolicy* ret;
|
|
3996
|
-
const upb_MiniTableField field = {9, UPB_SIZE(20,
|
|
4161
|
+
const upb_MiniTableField field = {9, UPB_SIZE(20, 112), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
3997
4162
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy_msg_init);
|
|
3998
4163
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
3999
4164
|
&default_val, &ret);
|
|
4000
4165
|
return ret;
|
|
4001
4166
|
}
|
|
4002
4167
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_retry_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4003
|
-
const upb_MiniTableField field = {9, UPB_SIZE(20,
|
|
4168
|
+
const upb_MiniTableField field = {9, UPB_SIZE(20, 112), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4004
4169
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4005
4170
|
}
|
|
4006
4171
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_priority(envoy_config_route_v3_RouteAction* msg) {
|
|
@@ -4016,11 +4181,11 @@ UPB_INLINE int32_t envoy_config_route_v3_RouteAction_priority(const envoy_config
|
|
|
4016
4181
|
return ret;
|
|
4017
4182
|
}
|
|
4018
4183
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_rate_limits(envoy_config_route_v3_RouteAction* msg) {
|
|
4019
|
-
const upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4184
|
+
const upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4020
4185
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4021
4186
|
}
|
|
4022
4187
|
UPB_INLINE const envoy_config_route_v3_RateLimit* const* envoy_config_route_v3_RouteAction_rate_limits(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4023
|
-
const upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4188
|
+
const upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4024
4189
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4025
4190
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4026
4191
|
if (arr) {
|
|
@@ -4032,7 +4197,7 @@ UPB_INLINE const envoy_config_route_v3_RateLimit* const* envoy_config_route_v3_R
|
|
|
4032
4197
|
}
|
|
4033
4198
|
}
|
|
4034
4199
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4035
|
-
const upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4200
|
+
const upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4036
4201
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4037
4202
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4038
4203
|
if (size) {
|
|
@@ -4041,7 +4206,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_upb_a
|
|
|
4041
4206
|
return arr;
|
|
4042
4207
|
}
|
|
4043
4208
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
4044
|
-
const upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4209
|
+
const upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4045
4210
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4046
4211
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
4047
4212
|
&field, arena);
|
|
@@ -4051,28 +4216,28 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_rate_limits_mutable_upb
|
|
|
4051
4216
|
return arr;
|
|
4052
4217
|
}
|
|
4053
4218
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_include_vh_rate_limits(envoy_config_route_v3_RouteAction* msg) {
|
|
4054
|
-
const upb_MiniTableField field = {14, UPB_SIZE(32,
|
|
4219
|
+
const upb_MiniTableField field = {14, UPB_SIZE(32, 128), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4055
4220
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4056
4221
|
}
|
|
4057
4222
|
UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_include_vh_rate_limits(const envoy_config_route_v3_RouteAction* msg) {
|
|
4058
4223
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
4059
4224
|
const struct google_protobuf_BoolValue* ret;
|
|
4060
|
-
const upb_MiniTableField field = {14, UPB_SIZE(32,
|
|
4225
|
+
const upb_MiniTableField field = {14, UPB_SIZE(32, 128), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4061
4226
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4062
4227
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4063
4228
|
&default_val, &ret);
|
|
4064
4229
|
return ret;
|
|
4065
4230
|
}
|
|
4066
4231
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_include_vh_rate_limits(const envoy_config_route_v3_RouteAction* msg) {
|
|
4067
|
-
const upb_MiniTableField field = {14, UPB_SIZE(32,
|
|
4232
|
+
const upb_MiniTableField field = {14, UPB_SIZE(32, 128), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4068
4233
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4069
4234
|
}
|
|
4070
4235
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_hash_policy(envoy_config_route_v3_RouteAction* msg) {
|
|
4071
|
-
const upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4236
|
+
const upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4072
4237
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4073
4238
|
}
|
|
4074
4239
|
UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy* const* envoy_config_route_v3_RouteAction_hash_policy(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4075
|
-
const upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4240
|
+
const upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4076
4241
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4077
4242
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4078
4243
|
if (arr) {
|
|
@@ -4084,7 +4249,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_HashPolicy* const* envoy_conf
|
|
|
4084
4249
|
}
|
|
4085
4250
|
}
|
|
4086
4251
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4087
|
-
const upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4252
|
+
const upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4088
4253
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4089
4254
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4090
4255
|
if (size) {
|
|
@@ -4093,7 +4258,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_upb_a
|
|
|
4093
4258
|
return arr;
|
|
4094
4259
|
}
|
|
4095
4260
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
4096
|
-
const upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4261
|
+
const upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4097
4262
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4098
4263
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
4099
4264
|
&field, arena);
|
|
@@ -4103,20 +4268,20 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_hash_policy_mutable_upb
|
|
|
4103
4268
|
return arr;
|
|
4104
4269
|
}
|
|
4105
4270
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_cors(envoy_config_route_v3_RouteAction* msg) {
|
|
4106
|
-
const upb_MiniTableField field = {17, UPB_SIZE(40,
|
|
4271
|
+
const upb_MiniTableField field = {17, UPB_SIZE(40, 144), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4107
4272
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4108
4273
|
}
|
|
4109
4274
|
UPB_INLINE const envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_RouteAction_cors(const envoy_config_route_v3_RouteAction* msg) {
|
|
4110
4275
|
const envoy_config_route_v3_CorsPolicy* default_val = NULL;
|
|
4111
4276
|
const envoy_config_route_v3_CorsPolicy* ret;
|
|
4112
|
-
const upb_MiniTableField field = {17, UPB_SIZE(40,
|
|
4277
|
+
const upb_MiniTableField field = {17, UPB_SIZE(40, 144), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4113
4278
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__CorsPolicy_msg_init);
|
|
4114
4279
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4115
4280
|
&default_val, &ret);
|
|
4116
4281
|
return ret;
|
|
4117
4282
|
}
|
|
4118
4283
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_cors(const envoy_config_route_v3_RouteAction* msg) {
|
|
4119
|
-
const upb_MiniTableField field = {17, UPB_SIZE(40,
|
|
4284
|
+
const upb_MiniTableField field = {17, UPB_SIZE(40, 144), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4120
4285
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4121
4286
|
}
|
|
4122
4287
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_cluster_not_found_response_code(envoy_config_route_v3_RouteAction* msg) {
|
|
@@ -4132,45 +4297,45 @@ UPB_INLINE int32_t envoy_config_route_v3_RouteAction_cluster_not_found_response_
|
|
|
4132
4297
|
return ret;
|
|
4133
4298
|
}
|
|
4134
4299
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_max_grpc_timeout(envoy_config_route_v3_RouteAction* msg) {
|
|
4135
|
-
const upb_MiniTableField field = {23, UPB_SIZE(48,
|
|
4300
|
+
const upb_MiniTableField field = {23, UPB_SIZE(48, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4136
4301
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4137
4302
|
}
|
|
4138
4303
|
UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_max_grpc_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
4139
4304
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
4140
4305
|
const struct google_protobuf_Duration* ret;
|
|
4141
|
-
const upb_MiniTableField field = {23, UPB_SIZE(48,
|
|
4306
|
+
const upb_MiniTableField field = {23, UPB_SIZE(48, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4142
4307
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4143
4308
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4144
4309
|
&default_val, &ret);
|
|
4145
4310
|
return ret;
|
|
4146
4311
|
}
|
|
4147
4312
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_max_grpc_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
4148
|
-
const upb_MiniTableField field = {23, UPB_SIZE(48,
|
|
4313
|
+
const upb_MiniTableField field = {23, UPB_SIZE(48, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4149
4314
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4150
4315
|
}
|
|
4151
4316
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_idle_timeout(envoy_config_route_v3_RouteAction* msg) {
|
|
4152
|
-
const upb_MiniTableField field = {24, UPB_SIZE(52,
|
|
4317
|
+
const upb_MiniTableField field = {24, UPB_SIZE(52, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4153
4318
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4154
4319
|
}
|
|
4155
4320
|
UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_idle_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
4156
4321
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
4157
4322
|
const struct google_protobuf_Duration* ret;
|
|
4158
|
-
const upb_MiniTableField field = {24, UPB_SIZE(52,
|
|
4323
|
+
const upb_MiniTableField field = {24, UPB_SIZE(52, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4159
4324
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4160
4325
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4161
4326
|
&default_val, &ret);
|
|
4162
4327
|
return ret;
|
|
4163
4328
|
}
|
|
4164
4329
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_idle_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
4165
|
-
const upb_MiniTableField field = {24, UPB_SIZE(52,
|
|
4330
|
+
const upb_MiniTableField field = {24, UPB_SIZE(52, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4166
4331
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4167
4332
|
}
|
|
4168
4333
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_upgrade_configs(envoy_config_route_v3_RouteAction* msg) {
|
|
4169
|
-
const upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4334
|
+
const upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4170
4335
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4171
4336
|
}
|
|
4172
4337
|
UPB_INLINE const envoy_config_route_v3_RouteAction_UpgradeConfig* const* envoy_config_route_v3_RouteAction_upgrade_configs(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4173
|
-
const upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4338
|
+
const upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4174
4339
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4175
4340
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4176
4341
|
if (arr) {
|
|
@@ -4182,7 +4347,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_UpgradeConfig* const* envoy_c
|
|
|
4182
4347
|
}
|
|
4183
4348
|
}
|
|
4184
4349
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_upgrade_configs_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4185
|
-
const upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4350
|
+
const upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4186
4351
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4187
4352
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4188
4353
|
if (size) {
|
|
@@ -4191,7 +4356,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_upgrade_configs_u
|
|
|
4191
4356
|
return arr;
|
|
4192
4357
|
}
|
|
4193
4358
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_upgrade_configs_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
4194
|
-
const upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4359
|
+
const upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4195
4360
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4196
4361
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
4197
4362
|
&field, arena);
|
|
@@ -4213,61 +4378,61 @@ UPB_INLINE int32_t envoy_config_route_v3_RouteAction_internal_redirect_action(co
|
|
|
4213
4378
|
return ret;
|
|
4214
4379
|
}
|
|
4215
4380
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_hedge_policy(envoy_config_route_v3_RouteAction* msg) {
|
|
4216
|
-
const upb_MiniTableField field = {27, UPB_SIZE(64,
|
|
4381
|
+
const upb_MiniTableField field = {27, UPB_SIZE(64, 176), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4217
4382
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4218
4383
|
}
|
|
4219
4384
|
UPB_INLINE const envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_RouteAction_hedge_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4220
4385
|
const envoy_config_route_v3_HedgePolicy* default_val = NULL;
|
|
4221
4386
|
const envoy_config_route_v3_HedgePolicy* ret;
|
|
4222
|
-
const upb_MiniTableField field = {27, UPB_SIZE(64,
|
|
4387
|
+
const upb_MiniTableField field = {27, UPB_SIZE(64, 176), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4223
4388
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HedgePolicy_msg_init);
|
|
4224
4389
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4225
4390
|
&default_val, &ret);
|
|
4226
4391
|
return ret;
|
|
4227
4392
|
}
|
|
4228
4393
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_hedge_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4229
|
-
const upb_MiniTableField field = {27, UPB_SIZE(64,
|
|
4394
|
+
const upb_MiniTableField field = {27, UPB_SIZE(64, 176), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4230
4395
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4231
4396
|
}
|
|
4232
4397
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_grpc_timeout_offset(envoy_config_route_v3_RouteAction* msg) {
|
|
4233
|
-
const upb_MiniTableField field = {28, UPB_SIZE(68,
|
|
4398
|
+
const upb_MiniTableField field = {28, UPB_SIZE(68, 184), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4234
4399
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4235
4400
|
}
|
|
4236
4401
|
UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_grpc_timeout_offset(const envoy_config_route_v3_RouteAction* msg) {
|
|
4237
4402
|
const struct google_protobuf_Duration* default_val = NULL;
|
|
4238
4403
|
const struct google_protobuf_Duration* ret;
|
|
4239
|
-
const upb_MiniTableField field = {28, UPB_SIZE(68,
|
|
4404
|
+
const upb_MiniTableField field = {28, UPB_SIZE(68, 184), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4240
4405
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4241
4406
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4242
4407
|
&default_val, &ret);
|
|
4243
4408
|
return ret;
|
|
4244
4409
|
}
|
|
4245
4410
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_grpc_timeout_offset(const envoy_config_route_v3_RouteAction* msg) {
|
|
4246
|
-
const upb_MiniTableField field = {28, UPB_SIZE(68,
|
|
4411
|
+
const upb_MiniTableField field = {28, UPB_SIZE(68, 184), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4247
4412
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4248
4413
|
}
|
|
4249
4414
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_host_rewrite_header(envoy_config_route_v3_RouteAction* msg) {
|
|
4250
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
|
4415
|
+
const upb_MiniTableField field = {29, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4251
4416
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4252
4417
|
}
|
|
4253
4418
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_host_rewrite_header(const envoy_config_route_v3_RouteAction* msg) {
|
|
4254
4419
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
4255
4420
|
upb_StringView ret;
|
|
4256
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
|
4421
|
+
const upb_MiniTableField field = {29, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4257
4422
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4258
4423
|
&default_val, &ret);
|
|
4259
4424
|
return ret;
|
|
4260
4425
|
}
|
|
4261
4426
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_host_rewrite_header(const envoy_config_route_v3_RouteAction* msg) {
|
|
4262
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
|
4427
|
+
const upb_MiniTableField field = {29, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4263
4428
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4264
4429
|
}
|
|
4265
4430
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_request_mirror_policies(envoy_config_route_v3_RouteAction* msg) {
|
|
4266
|
-
const upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4431
|
+
const upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4267
4432
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4268
4433
|
}
|
|
4269
4434
|
UPB_INLINE const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* const* envoy_config_route_v3_RouteAction_request_mirror_policies(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4270
|
-
const upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4435
|
+
const upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4271
4436
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4272
4437
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4273
4438
|
if (arr) {
|
|
@@ -4279,7 +4444,7 @@ UPB_INLINE const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* const* e
|
|
|
4279
4444
|
}
|
|
4280
4445
|
}
|
|
4281
4446
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_policies_upb_array(const envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4282
|
-
const upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4447
|
+
const upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4283
4448
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4284
4449
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
4285
4450
|
if (size) {
|
|
@@ -4288,7 +4453,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_po
|
|
|
4288
4453
|
return arr;
|
|
4289
4454
|
}
|
|
4290
4455
|
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_policies_mutable_upb_array(envoy_config_route_v3_RouteAction* msg, size_t* size, upb_Arena* arena) {
|
|
4291
|
-
const upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4456
|
+
const upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4292
4457
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4293
4458
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
4294
4459
|
&field, arena);
|
|
@@ -4298,197 +4463,242 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_request_mirror_policies
|
|
|
4298
4463
|
return arr;
|
|
4299
4464
|
}
|
|
4300
4465
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_max_internal_redirects(envoy_config_route_v3_RouteAction* msg) {
|
|
4301
|
-
const upb_MiniTableField field = {31, UPB_SIZE(76,
|
|
4466
|
+
const upb_MiniTableField field = {31, UPB_SIZE(76, 200), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4302
4467
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4303
4468
|
}
|
|
4304
4469
|
UPB_INLINE const struct google_protobuf_UInt32Value* envoy_config_route_v3_RouteAction_max_internal_redirects(const envoy_config_route_v3_RouteAction* msg) {
|
|
4305
4470
|
const struct google_protobuf_UInt32Value* default_val = NULL;
|
|
4306
4471
|
const struct google_protobuf_UInt32Value* ret;
|
|
4307
|
-
const upb_MiniTableField field = {31, UPB_SIZE(76,
|
|
4472
|
+
const upb_MiniTableField field = {31, UPB_SIZE(76, 200), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4308
4473
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
4309
4474
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4310
4475
|
&default_val, &ret);
|
|
4311
4476
|
return ret;
|
|
4312
4477
|
}
|
|
4313
4478
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_max_internal_redirects(const envoy_config_route_v3_RouteAction* msg) {
|
|
4314
|
-
const upb_MiniTableField field = {31, UPB_SIZE(76,
|
|
4479
|
+
const upb_MiniTableField field = {31, UPB_SIZE(76, 200), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4315
4480
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4316
4481
|
}
|
|
4317
4482
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_regex_rewrite(envoy_config_route_v3_RouteAction* msg) {
|
|
4318
|
-
const upb_MiniTableField field = {32, UPB_SIZE(80,
|
|
4483
|
+
const upb_MiniTableField field = {32, UPB_SIZE(80, 208), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4319
4484
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4320
4485
|
}
|
|
4321
4486
|
UPB_INLINE const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_regex_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
4322
4487
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* default_val = NULL;
|
|
4323
4488
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* ret;
|
|
4324
|
-
const upb_MiniTableField field = {32, UPB_SIZE(80,
|
|
4489
|
+
const upb_MiniTableField field = {32, UPB_SIZE(80, 208), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4325
4490
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4326
4491
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4327
4492
|
&default_val, &ret);
|
|
4328
4493
|
return ret;
|
|
4329
4494
|
}
|
|
4330
4495
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_regex_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
4331
|
-
const upb_MiniTableField field = {32, UPB_SIZE(80,
|
|
4496
|
+
const upb_MiniTableField field = {32, UPB_SIZE(80, 208), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4332
4497
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4333
4498
|
}
|
|
4334
4499
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_retry_policy_typed_config(envoy_config_route_v3_RouteAction* msg) {
|
|
4335
|
-
const upb_MiniTableField field = {33, UPB_SIZE(84,
|
|
4500
|
+
const upb_MiniTableField field = {33, UPB_SIZE(84, 216), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4336
4501
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4337
4502
|
}
|
|
4338
4503
|
UPB_INLINE const struct google_protobuf_Any* envoy_config_route_v3_RouteAction_retry_policy_typed_config(const envoy_config_route_v3_RouteAction* msg) {
|
|
4339
4504
|
const struct google_protobuf_Any* default_val = NULL;
|
|
4340
4505
|
const struct google_protobuf_Any* ret;
|
|
4341
|
-
const upb_MiniTableField field = {33, UPB_SIZE(84,
|
|
4506
|
+
const upb_MiniTableField field = {33, UPB_SIZE(84, 216), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4342
4507
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
4343
4508
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4344
4509
|
&default_val, &ret);
|
|
4345
4510
|
return ret;
|
|
4346
4511
|
}
|
|
4347
4512
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_retry_policy_typed_config(const envoy_config_route_v3_RouteAction* msg) {
|
|
4348
|
-
const upb_MiniTableField field = {33, UPB_SIZE(84,
|
|
4513
|
+
const upb_MiniTableField field = {33, UPB_SIZE(84, 216), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4349
4514
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4350
4515
|
}
|
|
4351
4516
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_internal_redirect_policy(envoy_config_route_v3_RouteAction* msg) {
|
|
4352
|
-
const upb_MiniTableField field = {34, UPB_SIZE(88,
|
|
4517
|
+
const upb_MiniTableField field = {34, UPB_SIZE(88, 224), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4353
4518
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4354
4519
|
}
|
|
4355
4520
|
UPB_INLINE const envoy_config_route_v3_InternalRedirectPolicy* envoy_config_route_v3_RouteAction_internal_redirect_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4356
4521
|
const envoy_config_route_v3_InternalRedirectPolicy* default_val = NULL;
|
|
4357
4522
|
const envoy_config_route_v3_InternalRedirectPolicy* ret;
|
|
4358
|
-
const upb_MiniTableField field = {34, UPB_SIZE(88,
|
|
4523
|
+
const upb_MiniTableField field = {34, UPB_SIZE(88, 224), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4359
4524
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__InternalRedirectPolicy_msg_init);
|
|
4360
4525
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4361
4526
|
&default_val, &ret);
|
|
4362
4527
|
return ret;
|
|
4363
4528
|
}
|
|
4364
4529
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_internal_redirect_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4365
|
-
const upb_MiniTableField field = {34, UPB_SIZE(88,
|
|
4530
|
+
const upb_MiniTableField field = {34, UPB_SIZE(88, 224), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4366
4531
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4367
4532
|
}
|
|
4368
4533
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_host_rewrite_path_regex(envoy_config_route_v3_RouteAction* msg) {
|
|
4369
|
-
const upb_MiniTableField field = {35, UPB_SIZE(
|
|
4534
|
+
const upb_MiniTableField field = {35, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4370
4535
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4371
4536
|
}
|
|
4372
4537
|
UPB_INLINE const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_host_rewrite_path_regex(const envoy_config_route_v3_RouteAction* msg) {
|
|
4373
4538
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* default_val = NULL;
|
|
4374
4539
|
const struct envoy_type_matcher_v3_RegexMatchAndSubstitute* ret;
|
|
4375
|
-
const upb_MiniTableField field = {35, UPB_SIZE(
|
|
4540
|
+
const upb_MiniTableField field = {35, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4376
4541
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4377
4542
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4378
4543
|
&default_val, &ret);
|
|
4379
4544
|
return ret;
|
|
4380
4545
|
}
|
|
4381
4546
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_host_rewrite_path_regex(const envoy_config_route_v3_RouteAction* msg) {
|
|
4382
|
-
const upb_MiniTableField field = {35, UPB_SIZE(
|
|
4547
|
+
const upb_MiniTableField field = {35, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4383
4548
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4384
4549
|
}
|
|
4385
4550
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_max_stream_duration(envoy_config_route_v3_RouteAction* msg) {
|
|
4386
|
-
const upb_MiniTableField field = {36, UPB_SIZE(92,
|
|
4551
|
+
const upb_MiniTableField field = {36, UPB_SIZE(92, 232), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4387
4552
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4388
4553
|
}
|
|
4389
4554
|
UPB_INLINE const envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_config_route_v3_RouteAction_max_stream_duration(const envoy_config_route_v3_RouteAction* msg) {
|
|
4390
4555
|
const envoy_config_route_v3_RouteAction_MaxStreamDuration* default_val = NULL;
|
|
4391
4556
|
const envoy_config_route_v3_RouteAction_MaxStreamDuration* ret;
|
|
4392
|
-
const upb_MiniTableField field = {36, UPB_SIZE(92,
|
|
4557
|
+
const upb_MiniTableField field = {36, UPB_SIZE(92, 232), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4393
4558
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__MaxStreamDuration_msg_init);
|
|
4394
4559
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4395
4560
|
&default_val, &ret);
|
|
4396
4561
|
return ret;
|
|
4397
4562
|
}
|
|
4398
4563
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_max_stream_duration(const envoy_config_route_v3_RouteAction* msg) {
|
|
4399
|
-
const upb_MiniTableField field = {36, UPB_SIZE(92,
|
|
4564
|
+
const upb_MiniTableField field = {36, UPB_SIZE(92, 232), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4400
4565
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4401
4566
|
}
|
|
4402
4567
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_cluster_specifier_plugin(envoy_config_route_v3_RouteAction* msg) {
|
|
4403
|
-
const upb_MiniTableField field = {37, UPB_SIZE(
|
|
4568
|
+
const upb_MiniTableField field = {37, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4404
4569
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4405
4570
|
}
|
|
4406
4571
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_cluster_specifier_plugin(const envoy_config_route_v3_RouteAction* msg) {
|
|
4407
4572
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
4408
4573
|
upb_StringView ret;
|
|
4409
|
-
const upb_MiniTableField field = {37, UPB_SIZE(
|
|
4574
|
+
const upb_MiniTableField field = {37, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4410
4575
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4411
4576
|
&default_val, &ret);
|
|
4412
4577
|
return ret;
|
|
4413
4578
|
}
|
|
4414
4579
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_cluster_specifier_plugin(const envoy_config_route_v3_RouteAction* msg) {
|
|
4415
|
-
const upb_MiniTableField field = {37, UPB_SIZE(
|
|
4580
|
+
const upb_MiniTableField field = {37, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4416
4581
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4417
4582
|
}
|
|
4418
4583
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_append_x_forwarded_host(envoy_config_route_v3_RouteAction* msg) {
|
|
4419
|
-
const upb_MiniTableField field = {38,
|
|
4584
|
+
const upb_MiniTableField field = {38, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
4420
4585
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4421
4586
|
}
|
|
4422
4587
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_append_x_forwarded_host(const envoy_config_route_v3_RouteAction* msg) {
|
|
4423
4588
|
bool default_val = false;
|
|
4424
4589
|
bool ret;
|
|
4425
|
-
const upb_MiniTableField field = {38,
|
|
4590
|
+
const upb_MiniTableField field = {38, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
4426
4591
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4427
4592
|
&default_val, &ret);
|
|
4428
4593
|
return ret;
|
|
4429
4594
|
}
|
|
4430
4595
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_inline_cluster_specifier_plugin(envoy_config_route_v3_RouteAction* msg) {
|
|
4431
|
-
const upb_MiniTableField field = {39, UPB_SIZE(
|
|
4596
|
+
const upb_MiniTableField field = {39, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4432
4597
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4433
4598
|
}
|
|
4434
4599
|
UPB_INLINE const envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_route_v3_RouteAction_inline_cluster_specifier_plugin(const envoy_config_route_v3_RouteAction* msg) {
|
|
4435
4600
|
const envoy_config_route_v3_ClusterSpecifierPlugin* default_val = NULL;
|
|
4436
4601
|
const envoy_config_route_v3_ClusterSpecifierPlugin* ret;
|
|
4437
|
-
const upb_MiniTableField field = {39, UPB_SIZE(
|
|
4602
|
+
const upb_MiniTableField field = {39, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4438
4603
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__ClusterSpecifierPlugin_msg_init);
|
|
4439
4604
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4440
4605
|
&default_val, &ret);
|
|
4441
4606
|
return ret;
|
|
4442
4607
|
}
|
|
4443
4608
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_inline_cluster_specifier_plugin(const envoy_config_route_v3_RouteAction* msg) {
|
|
4444
|
-
const upb_MiniTableField field = {39, UPB_SIZE(
|
|
4609
|
+
const upb_MiniTableField field = {39, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4445
4610
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4446
4611
|
}
|
|
4447
4612
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_early_data_policy(envoy_config_route_v3_RouteAction* msg) {
|
|
4448
|
-
const upb_MiniTableField field = {40, UPB_SIZE(96,
|
|
4613
|
+
const upb_MiniTableField field = {40, UPB_SIZE(96, 240), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4449
4614
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4450
4615
|
}
|
|
4451
4616
|
UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteAction_early_data_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4452
4617
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
4453
4618
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
4454
|
-
const upb_MiniTableField field = {40, UPB_SIZE(96,
|
|
4619
|
+
const upb_MiniTableField field = {40, UPB_SIZE(96, 240), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4455
4620
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4456
4621
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4457
4622
|
&default_val, &ret);
|
|
4458
4623
|
return ret;
|
|
4459
4624
|
}
|
|
4460
4625
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_early_data_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4461
|
-
const upb_MiniTableField field = {40, UPB_SIZE(96,
|
|
4626
|
+
const upb_MiniTableField field = {40, UPB_SIZE(96, 240), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4462
4627
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4463
4628
|
}
|
|
4464
4629
|
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_path_rewrite_policy(envoy_config_route_v3_RouteAction* msg) {
|
|
4465
|
-
const upb_MiniTableField field = {41, UPB_SIZE(100,
|
|
4630
|
+
const upb_MiniTableField field = {41, UPB_SIZE(100, 248), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4466
4631
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4467
4632
|
}
|
|
4468
4633
|
UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteAction_path_rewrite_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4469
4634
|
const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
|
|
4470
4635
|
const struct envoy_config_core_v3_TypedExtensionConfig* ret;
|
|
4471
|
-
const upb_MiniTableField field = {41, UPB_SIZE(100,
|
|
4636
|
+
const upb_MiniTableField field = {41, UPB_SIZE(100, 248), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4472
4637
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4473
4638
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4474
4639
|
&default_val, &ret);
|
|
4475
4640
|
return ret;
|
|
4476
4641
|
}
|
|
4477
4642
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_path_rewrite_policy(const envoy_config_route_v3_RouteAction* msg) {
|
|
4478
|
-
const upb_MiniTableField field = {41, UPB_SIZE(100,
|
|
4643
|
+
const upb_MiniTableField field = {41, UPB_SIZE(100, 248), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4479
4644
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4480
4645
|
}
|
|
4646
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_flush_timeout(envoy_config_route_v3_RouteAction* msg) {
|
|
4647
|
+
const upb_MiniTableField field = {42, UPB_SIZE(104, 256), 80, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4648
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4649
|
+
}
|
|
4650
|
+
UPB_INLINE const struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_flush_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
4651
|
+
const struct google_protobuf_Duration* default_val = NULL;
|
|
4652
|
+
const struct google_protobuf_Duration* ret;
|
|
4653
|
+
const upb_MiniTableField field = {42, UPB_SIZE(104, 256), 80, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4654
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4655
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4656
|
+
&default_val, &ret);
|
|
4657
|
+
return ret;
|
|
4658
|
+
}
|
|
4659
|
+
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_flush_timeout(const envoy_config_route_v3_RouteAction* msg) {
|
|
4660
|
+
const upb_MiniTableField field = {42, UPB_SIZE(104, 256), 80, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4661
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4662
|
+
}
|
|
4663
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_host_rewrite(envoy_config_route_v3_RouteAction* msg) {
|
|
4664
|
+
const upb_MiniTableField field = {44, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4665
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4666
|
+
}
|
|
4667
|
+
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_host_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
4668
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
4669
|
+
upb_StringView ret;
|
|
4670
|
+
const upb_MiniTableField field = {44, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4671
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4672
|
+
&default_val, &ret);
|
|
4673
|
+
return ret;
|
|
4674
|
+
}
|
|
4675
|
+
UPB_INLINE bool envoy_config_route_v3_RouteAction_has_host_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
4676
|
+
const upb_MiniTableField field = {44, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4677
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4678
|
+
}
|
|
4679
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_clear_path_rewrite(envoy_config_route_v3_RouteAction* msg) {
|
|
4680
|
+
const upb_MiniTableField field = {45, UPB_SIZE(124, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4681
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4682
|
+
}
|
|
4683
|
+
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_path_rewrite(const envoy_config_route_v3_RouteAction* msg) {
|
|
4684
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
4685
|
+
upb_StringView ret;
|
|
4686
|
+
const upb_MiniTableField field = {45, UPB_SIZE(124, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4687
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4688
|
+
&default_val, &ret);
|
|
4689
|
+
return ret;
|
|
4690
|
+
}
|
|
4481
4691
|
|
|
4482
4692
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4483
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
4693
|
+
const upb_MiniTableField field = {1, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4484
4694
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4485
4695
|
}
|
|
4486
4696
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_header(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4487
|
-
const upb_MiniTableField field = {2, UPB_SIZE(
|
|
4697
|
+
const upb_MiniTableField field = {2, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4488
4698
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4489
4699
|
}
|
|
4490
4700
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_weighted_clusters(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_WeightedCluster* value) {
|
|
4491
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
|
4701
|
+
const upb_MiniTableField field = {3, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4492
4702
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__WeightedCluster_msg_init);
|
|
4493
4703
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4494
4704
|
}
|
|
@@ -4501,7 +4711,7 @@ UPB_INLINE struct envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_R
|
|
|
4501
4711
|
return sub;
|
|
4502
4712
|
}
|
|
4503
4713
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_metadata_match(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_Metadata* value) {
|
|
4504
|
-
const upb_MiniTableField field = {4, UPB_SIZE(12,
|
|
4714
|
+
const upb_MiniTableField field = {4, UPB_SIZE(12, 96), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4505
4715
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Metadata_msg_init);
|
|
4506
4716
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4507
4717
|
}
|
|
@@ -4514,15 +4724,15 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_RouteActi
|
|
|
4514
4724
|
return sub;
|
|
4515
4725
|
}
|
|
4516
4726
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_prefix_rewrite(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4517
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
|
4727
|
+
const upb_MiniTableField field = {5, UPB_SIZE(116, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4518
4728
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4519
4729
|
}
|
|
4520
4730
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_literal(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4521
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
|
4731
|
+
const upb_MiniTableField field = {6, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4522
4732
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4523
4733
|
}
|
|
4524
4734
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_auto_host_rewrite(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_BoolValue* value) {
|
|
4525
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
|
4735
|
+
const upb_MiniTableField field = {7, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4526
4736
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4527
4737
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4528
4738
|
}
|
|
@@ -4535,7 +4745,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_m
|
|
|
4535
4745
|
return sub;
|
|
4536
4746
|
}
|
|
4537
4747
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4538
|
-
const upb_MiniTableField field = {8, UPB_SIZE(16,
|
|
4748
|
+
const upb_MiniTableField field = {8, UPB_SIZE(16, 104), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4539
4749
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4540
4750
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4541
4751
|
}
|
|
@@ -4548,7 +4758,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4548
4758
|
return sub;
|
|
4549
4759
|
}
|
|
4550
4760
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_retry_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_RetryPolicy* value) {
|
|
4551
|
-
const upb_MiniTableField field = {9, UPB_SIZE(20,
|
|
4761
|
+
const upb_MiniTableField field = {9, UPB_SIZE(20, 112), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4552
4762
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RetryPolicy_msg_init);
|
|
4553
4763
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4554
4764
|
}
|
|
@@ -4565,7 +4775,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_set_priority(envoy_config_rout
|
|
|
4565
4775
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4566
4776
|
}
|
|
4567
4777
|
UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_RouteAction_mutable_rate_limits(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4568
|
-
upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4778
|
+
upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4569
4779
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4570
4780
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4571
4781
|
if (arr) {
|
|
@@ -4577,12 +4787,12 @@ UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_RouteAction_m
|
|
|
4577
4787
|
}
|
|
4578
4788
|
}
|
|
4579
4789
|
UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_RouteAction_resize_rate_limits(envoy_config_route_v3_RouteAction* msg, size_t size, upb_Arena* arena) {
|
|
4580
|
-
upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4790
|
+
upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4581
4791
|
return (envoy_config_route_v3_RateLimit**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
4582
4792
|
&field, size, arena);
|
|
4583
4793
|
}
|
|
4584
4794
|
UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_RouteAction_add_rate_limits(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4585
|
-
upb_MiniTableField field = {13, UPB_SIZE(28,
|
|
4795
|
+
upb_MiniTableField field = {13, UPB_SIZE(28, 120), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4586
4796
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RateLimit_msg_init);
|
|
4587
4797
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4588
4798
|
UPB_UPCAST(msg), &field, arena);
|
|
@@ -4597,7 +4807,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_RouteAc
|
|
|
4597
4807
|
return sub;
|
|
4598
4808
|
}
|
|
4599
4809
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_include_vh_rate_limits(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_BoolValue* value) {
|
|
4600
|
-
const upb_MiniTableField field = {14, UPB_SIZE(32,
|
|
4810
|
+
const upb_MiniTableField field = {14, UPB_SIZE(32, 128), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4601
4811
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4602
4812
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4603
4813
|
}
|
|
@@ -4610,7 +4820,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_m
|
|
|
4610
4820
|
return sub;
|
|
4611
4821
|
}
|
|
4612
4822
|
UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy** envoy_config_route_v3_RouteAction_mutable_hash_policy(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4613
|
-
upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4823
|
+
upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4614
4824
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4615
4825
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4616
4826
|
if (arr) {
|
|
@@ -4622,12 +4832,12 @@ UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy** envoy_config_route_v3_
|
|
|
4622
4832
|
}
|
|
4623
4833
|
}
|
|
4624
4834
|
UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy** envoy_config_route_v3_RouteAction_resize_hash_policy(envoy_config_route_v3_RouteAction* msg, size_t size, upb_Arena* arena) {
|
|
4625
|
-
upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4835
|
+
upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4626
4836
|
return (envoy_config_route_v3_RouteAction_HashPolicy**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
4627
4837
|
&field, size, arena);
|
|
4628
4838
|
}
|
|
4629
4839
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy* envoy_config_route_v3_RouteAction_add_hash_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4630
|
-
upb_MiniTableField field = {15, UPB_SIZE(36,
|
|
4840
|
+
upb_MiniTableField field = {15, UPB_SIZE(36, 136), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4631
4841
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__HashPolicy_msg_init);
|
|
4632
4842
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4633
4843
|
UPB_UPCAST(msg), &field, arena);
|
|
@@ -4642,7 +4852,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy* envoy_config_rou
|
|
|
4642
4852
|
return sub;
|
|
4643
4853
|
}
|
|
4644
4854
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cors(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_CorsPolicy* value) {
|
|
4645
|
-
const upb_MiniTableField field = {17, UPB_SIZE(40,
|
|
4855
|
+
const upb_MiniTableField field = {17, UPB_SIZE(40, 144), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4646
4856
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__CorsPolicy_msg_init);
|
|
4647
4857
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4648
4858
|
}
|
|
@@ -4659,7 +4869,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_not_found_response
|
|
|
4659
4869
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4660
4870
|
}
|
|
4661
4871
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_grpc_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4662
|
-
const upb_MiniTableField field = {23, UPB_SIZE(48,
|
|
4872
|
+
const upb_MiniTableField field = {23, UPB_SIZE(48, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4663
4873
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4664
4874
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4665
4875
|
}
|
|
@@ -4672,7 +4882,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4672
4882
|
return sub;
|
|
4673
4883
|
}
|
|
4674
4884
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_idle_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4675
|
-
const upb_MiniTableField field = {24, UPB_SIZE(52,
|
|
4885
|
+
const upb_MiniTableField field = {24, UPB_SIZE(52, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4676
4886
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4677
4887
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4678
4888
|
}
|
|
@@ -4685,7 +4895,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4685
4895
|
return sub;
|
|
4686
4896
|
}
|
|
4687
4897
|
UPB_INLINE envoy_config_route_v3_RouteAction_UpgradeConfig** envoy_config_route_v3_RouteAction_mutable_upgrade_configs(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4688
|
-
upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4898
|
+
upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4689
4899
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4690
4900
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4691
4901
|
if (arr) {
|
|
@@ -4697,12 +4907,12 @@ UPB_INLINE envoy_config_route_v3_RouteAction_UpgradeConfig** envoy_config_route_
|
|
|
4697
4907
|
}
|
|
4698
4908
|
}
|
|
4699
4909
|
UPB_INLINE envoy_config_route_v3_RouteAction_UpgradeConfig** envoy_config_route_v3_RouteAction_resize_upgrade_configs(envoy_config_route_v3_RouteAction* msg, size_t size, upb_Arena* arena) {
|
|
4700
|
-
upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4910
|
+
upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4701
4911
|
return (envoy_config_route_v3_RouteAction_UpgradeConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
4702
4912
|
&field, size, arena);
|
|
4703
4913
|
}
|
|
4704
4914
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_UpgradeConfig* envoy_config_route_v3_RouteAction_add_upgrade_configs(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4705
|
-
upb_MiniTableField field = {25, UPB_SIZE(56,
|
|
4915
|
+
upb_MiniTableField field = {25, UPB_SIZE(56, 168), 0, 11, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4706
4916
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__UpgradeConfig_msg_init);
|
|
4707
4917
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4708
4918
|
UPB_UPCAST(msg), &field, arena);
|
|
@@ -4721,7 +4931,7 @@ UPB_INLINE void envoy_config_route_v3_RouteAction_set_internal_redirect_action(e
|
|
|
4721
4931
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4722
4932
|
}
|
|
4723
4933
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_hedge_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_HedgePolicy* value) {
|
|
4724
|
-
const upb_MiniTableField field = {27, UPB_SIZE(64,
|
|
4934
|
+
const upb_MiniTableField field = {27, UPB_SIZE(64, 176), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4725
4935
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__HedgePolicy_msg_init);
|
|
4726
4936
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4727
4937
|
}
|
|
@@ -4734,7 +4944,7 @@ UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_Route
|
|
|
4734
4944
|
return sub;
|
|
4735
4945
|
}
|
|
4736
4946
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_grpc_timeout_offset(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
4737
|
-
const upb_MiniTableField field = {28, UPB_SIZE(68,
|
|
4947
|
+
const upb_MiniTableField field = {28, UPB_SIZE(68, 184), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4738
4948
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
4739
4949
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4740
4950
|
}
|
|
@@ -4747,11 +4957,11 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
|
|
|
4747
4957
|
return sub;
|
|
4748
4958
|
}
|
|
4749
4959
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_header(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4750
|
-
const upb_MiniTableField field = {29, UPB_SIZE(
|
|
4960
|
+
const upb_MiniTableField field = {29, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4751
4961
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4752
4962
|
}
|
|
4753
4963
|
UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_route_v3_RouteAction_mutable_request_mirror_policies(envoy_config_route_v3_RouteAction* msg, size_t* size) {
|
|
4754
|
-
upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4964
|
+
upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4755
4965
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4756
4966
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
4757
4967
|
if (arr) {
|
|
@@ -4763,12 +4973,12 @@ UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_
|
|
|
4763
4973
|
}
|
|
4764
4974
|
}
|
|
4765
4975
|
UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_route_v3_RouteAction_resize_request_mirror_policies(envoy_config_route_v3_RouteAction* msg, size_t size, upb_Arena* arena) {
|
|
4766
|
-
upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4976
|
+
upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4767
4977
|
return (envoy_config_route_v3_RouteAction_RequestMirrorPolicy**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
4768
4978
|
&field, size, arena);
|
|
4769
4979
|
}
|
|
4770
4980
|
UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_config_route_v3_RouteAction_add_request_mirror_policies(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
4771
|
-
upb_MiniTableField field = {30, UPB_SIZE(72,
|
|
4981
|
+
upb_MiniTableField field = {30, UPB_SIZE(72, 192), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4772
4982
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__RequestMirrorPolicy_msg_init);
|
|
4773
4983
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
4774
4984
|
UPB_UPCAST(msg), &field, arena);
|
|
@@ -4783,7 +4993,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_c
|
|
|
4783
4993
|
return sub;
|
|
4784
4994
|
}
|
|
4785
4995
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_internal_redirects(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_UInt32Value* value) {
|
|
4786
|
-
const upb_MiniTableField field = {31, UPB_SIZE(76,
|
|
4996
|
+
const upb_MiniTableField field = {31, UPB_SIZE(76, 200), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4787
4997
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
|
|
4788
4998
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4789
4999
|
}
|
|
@@ -4796,7 +5006,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RouteAction
|
|
|
4796
5006
|
return sub;
|
|
4797
5007
|
}
|
|
4798
5008
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_regex_rewrite(envoy_config_route_v3_RouteAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
|
|
4799
|
-
const upb_MiniTableField field = {32, UPB_SIZE(80,
|
|
5009
|
+
const upb_MiniTableField field = {32, UPB_SIZE(80, 208), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4800
5010
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4801
5011
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4802
5012
|
}
|
|
@@ -4809,7 +5019,7 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_ro
|
|
|
4809
5019
|
return sub;
|
|
4810
5020
|
}
|
|
4811
5021
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_retry_policy_typed_config(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Any* value) {
|
|
4812
|
-
const upb_MiniTableField field = {33, UPB_SIZE(84,
|
|
5022
|
+
const upb_MiniTableField field = {33, UPB_SIZE(84, 216), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4813
5023
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
|
|
4814
5024
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4815
5025
|
}
|
|
@@ -4822,7 +5032,7 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RouteAction_mutable
|
|
|
4822
5032
|
return sub;
|
|
4823
5033
|
}
|
|
4824
5034
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_internal_redirect_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_InternalRedirectPolicy* value) {
|
|
4825
|
-
const upb_MiniTableField field = {34, UPB_SIZE(88,
|
|
5035
|
+
const upb_MiniTableField field = {34, UPB_SIZE(88, 224), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4826
5036
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__InternalRedirectPolicy_msg_init);
|
|
4827
5037
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4828
5038
|
}
|
|
@@ -4835,7 +5045,7 @@ UPB_INLINE struct envoy_config_route_v3_InternalRedirectPolicy* envoy_config_rou
|
|
|
4835
5045
|
return sub;
|
|
4836
5046
|
}
|
|
4837
5047
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_path_regex(envoy_config_route_v3_RouteAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
|
|
4838
|
-
const upb_MiniTableField field = {35, UPB_SIZE(
|
|
5048
|
+
const upb_MiniTableField field = {35, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4839
5049
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__matcher__v3__RegexMatchAndSubstitute_msg_init);
|
|
4840
5050
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4841
5051
|
}
|
|
@@ -4848,7 +5058,7 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_ro
|
|
|
4848
5058
|
return sub;
|
|
4849
5059
|
}
|
|
4850
5060
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_stream_duration(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_RouteAction_MaxStreamDuration* value) {
|
|
4851
|
-
const upb_MiniTableField field = {36, UPB_SIZE(92,
|
|
5061
|
+
const upb_MiniTableField field = {36, UPB_SIZE(92, 232), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4852
5062
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteAction__MaxStreamDuration_msg_init);
|
|
4853
5063
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4854
5064
|
}
|
|
@@ -4861,15 +5071,15 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_con
|
|
|
4861
5071
|
return sub;
|
|
4862
5072
|
}
|
|
4863
5073
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_specifier_plugin(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
4864
|
-
const upb_MiniTableField field = {37, UPB_SIZE(
|
|
5074
|
+
const upb_MiniTableField field = {37, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4865
5075
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4866
5076
|
}
|
|
4867
5077
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_append_x_forwarded_host(envoy_config_route_v3_RouteAction *msg, bool value) {
|
|
4868
|
-
const upb_MiniTableField field = {38,
|
|
5078
|
+
const upb_MiniTableField field = {38, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
4869
5079
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4870
5080
|
}
|
|
4871
5081
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_inline_cluster_specifier_plugin(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_ClusterSpecifierPlugin* value) {
|
|
4872
|
-
const upb_MiniTableField field = {39, UPB_SIZE(
|
|
5082
|
+
const upb_MiniTableField field = {39, UPB_SIZE(132, 64), UPB_SIZE(-109, -25), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4873
5083
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__ClusterSpecifierPlugin_msg_init);
|
|
4874
5084
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4875
5085
|
}
|
|
@@ -4882,7 +5092,7 @@ UPB_INLINE struct envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_rou
|
|
|
4882
5092
|
return sub;
|
|
4883
5093
|
}
|
|
4884
5094
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_early_data_policy(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
4885
|
-
const upb_MiniTableField field = {40, UPB_SIZE(96,
|
|
5095
|
+
const upb_MiniTableField field = {40, UPB_SIZE(96, 240), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4886
5096
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4887
5097
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4888
5098
|
}
|
|
@@ -4895,7 +5105,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
4895
5105
|
return sub;
|
|
4896
5106
|
}
|
|
4897
5107
|
UPB_INLINE void envoy_config_route_v3_RouteAction_set_path_rewrite_policy(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
|
|
4898
|
-
const upb_MiniTableField field = {41, UPB_SIZE(100,
|
|
5108
|
+
const upb_MiniTableField field = {41, UPB_SIZE(100, 248), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4899
5109
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
|
|
4900
5110
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
4901
5111
|
}
|
|
@@ -4907,6 +5117,27 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
|
|
|
4907
5117
|
}
|
|
4908
5118
|
return sub;
|
|
4909
5119
|
}
|
|
5120
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_set_flush_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
|
|
5121
|
+
const upb_MiniTableField field = {42, UPB_SIZE(104, 256), 80, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5122
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
|
5123
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5124
|
+
}
|
|
5125
|
+
UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_flush_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
|
|
5126
|
+
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_flush_timeout(msg);
|
|
5127
|
+
if (sub == NULL) {
|
|
5128
|
+
sub = (struct google_protobuf_Duration*)_upb_Message_New(&google__protobuf__Duration_msg_init, arena);
|
|
5129
|
+
if (sub) envoy_config_route_v3_RouteAction_set_flush_timeout(msg, sub);
|
|
5130
|
+
}
|
|
5131
|
+
return sub;
|
|
5132
|
+
}
|
|
5133
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
5134
|
+
const upb_MiniTableField field = {44, UPB_SIZE(140, 80), UPB_SIZE(-113, -29), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5135
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5136
|
+
}
|
|
5137
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_set_path_rewrite(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
|
|
5138
|
+
const upb_MiniTableField field = {45, UPB_SIZE(124, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5139
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5140
|
+
}
|
|
4910
5141
|
|
|
4911
5142
|
/* envoy.config.route.v3.RouteAction.RequestMirrorPolicy */
|
|
4912
5143
|
|
|
@@ -4945,59 +5176,59 @@ UPB_INLINE char* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_serialize
|
|
|
4945
5176
|
return ptr;
|
|
4946
5177
|
}
|
|
4947
5178
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_cluster(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4948
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
5179
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4949
5180
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4950
5181
|
}
|
|
4951
5182
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_cluster(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4952
5183
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
4953
5184
|
upb_StringView ret;
|
|
4954
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
5185
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4955
5186
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4956
5187
|
&default_val, &ret);
|
|
4957
5188
|
return ret;
|
|
4958
5189
|
}
|
|
4959
5190
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_runtime_fraction(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4960
|
-
const upb_MiniTableField field = {3, UPB_SIZE(12,
|
|
5191
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4961
5192
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4962
5193
|
}
|
|
4963
5194
|
UPB_INLINE const struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_runtime_fraction(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4964
5195
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* default_val = NULL;
|
|
4965
5196
|
const struct envoy_config_core_v3_RuntimeFractionalPercent* ret;
|
|
4966
|
-
const upb_MiniTableField field = {3, UPB_SIZE(12,
|
|
5197
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4967
5198
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
4968
5199
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4969
5200
|
&default_val, &ret);
|
|
4970
5201
|
return ret;
|
|
4971
5202
|
}
|
|
4972
5203
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_has_runtime_fraction(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4973
|
-
const upb_MiniTableField field = {3, UPB_SIZE(12,
|
|
5204
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4974
5205
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4975
5206
|
}
|
|
4976
5207
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_trace_sampled(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4977
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
|
5208
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4978
5209
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4979
5210
|
}
|
|
4980
5211
|
UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_trace_sampled(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4981
5212
|
const struct google_protobuf_BoolValue* default_val = NULL;
|
|
4982
5213
|
const struct google_protobuf_BoolValue* ret;
|
|
4983
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
|
5214
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4984
5215
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
4985
5216
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
4986
5217
|
&default_val, &ret);
|
|
4987
5218
|
return ret;
|
|
4988
5219
|
}
|
|
4989
5220
|
UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_has_trace_sampled(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4990
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
|
5221
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
4991
5222
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
4992
5223
|
}
|
|
4993
5224
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_cluster_header(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4994
|
-
const upb_MiniTableField field = {5,
|
|
5225
|
+
const upb_MiniTableField field = {5, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
4995
5226
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
4996
5227
|
}
|
|
4997
5228
|
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_cluster_header(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
4998
5229
|
upb_StringView default_val = upb_StringView_FromString("");
|
|
4999
5230
|
upb_StringView ret;
|
|
5000
|
-
const upb_MiniTableField field = {5,
|
|
5231
|
+
const upb_MiniTableField field = {5, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5001
5232
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5002
5233
|
&default_val, &ret);
|
|
5003
5234
|
return ret;
|
|
@@ -5014,13 +5245,60 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_disable_sh
|
|
|
5014
5245
|
&default_val, &ret);
|
|
5015
5246
|
return ret;
|
|
5016
5247
|
}
|
|
5248
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_request_headers_mutations(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
5249
|
+
const upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5250
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
5251
|
+
}
|
|
5252
|
+
UPB_INLINE const struct envoy_config_common_mutation_rules_v3_HeaderMutation* const* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_request_headers_mutations(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, size_t* size) {
|
|
5253
|
+
const upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5254
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__common__mutation_0rules__v3__HeaderMutation_msg_init);
|
|
5255
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5256
|
+
if (arr) {
|
|
5257
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
5258
|
+
return (const struct envoy_config_common_mutation_rules_v3_HeaderMutation* const*)upb_Array_DataPtr(arr);
|
|
5259
|
+
} else {
|
|
5260
|
+
if (size) *size = 0;
|
|
5261
|
+
return NULL;
|
|
5262
|
+
}
|
|
5263
|
+
}
|
|
5264
|
+
UPB_INLINE const upb_Array* _envoy_config_route_v3_RouteAction_RequestMirrorPolicy_request_headers_mutations_upb_array(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, size_t* size) {
|
|
5265
|
+
const upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5266
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__common__mutation_0rules__v3__HeaderMutation_msg_init);
|
|
5267
|
+
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
5268
|
+
if (size) {
|
|
5269
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
5270
|
+
}
|
|
5271
|
+
return arr;
|
|
5272
|
+
}
|
|
5273
|
+
UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_RequestMirrorPolicy_request_headers_mutations_mutable_upb_array(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, size_t* size, upb_Arena* arena) {
|
|
5274
|
+
const upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5275
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__common__mutation_0rules__v3__HeaderMutation_msg_init);
|
|
5276
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
5277
|
+
&field, arena);
|
|
5278
|
+
if (size) {
|
|
5279
|
+
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
|
5280
|
+
}
|
|
5281
|
+
return arr;
|
|
5282
|
+
}
|
|
5283
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_host_rewrite_literal(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
5284
|
+
const upb_MiniTableField field = {8, UPB_SIZE(40, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5285
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
5286
|
+
}
|
|
5287
|
+
UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_host_rewrite_literal(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
|
|
5288
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
5289
|
+
upb_StringView ret;
|
|
5290
|
+
const upb_MiniTableField field = {8, UPB_SIZE(40, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5291
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
5292
|
+
&default_val, &ret);
|
|
5293
|
+
return ret;
|
|
5294
|
+
}
|
|
5017
5295
|
|
|
5018
5296
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_cluster(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
|
|
5019
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
|
5297
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5020
5298
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5021
5299
|
}
|
|
5022
5300
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_runtime_fraction(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
|
|
5023
|
-
const upb_MiniTableField field = {3, UPB_SIZE(12,
|
|
5301
|
+
const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5024
5302
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__RuntimeFractionalPercent_msg_init);
|
|
5025
5303
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5026
5304
|
}
|
|
@@ -5033,7 +5311,7 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
|
|
|
5033
5311
|
return sub;
|
|
5034
5312
|
}
|
|
5035
5313
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_trace_sampled(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, struct google_protobuf_BoolValue* value) {
|
|
5036
|
-
const upb_MiniTableField field = {4, UPB_SIZE(16,
|
|
5314
|
+
const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5037
5315
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
|
|
5038
5316
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5039
5317
|
}
|
|
@@ -5046,13 +5324,49 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_R
|
|
|
5046
5324
|
return sub;
|
|
5047
5325
|
}
|
|
5048
5326
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_cluster_header(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
|
|
5049
|
-
const upb_MiniTableField field = {5,
|
|
5327
|
+
const upb_MiniTableField field = {5, 32, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5050
5328
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5051
5329
|
}
|
|
5052
5330
|
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_disable_shadow_host_suffix_append(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, bool value) {
|
|
5053
5331
|
const upb_MiniTableField field = {6, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
|
5054
5332
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5055
5333
|
}
|
|
5334
|
+
UPB_INLINE struct envoy_config_common_mutation_rules_v3_HeaderMutation** envoy_config_route_v3_RouteAction_RequestMirrorPolicy_mutable_request_headers_mutations(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, size_t* size) {
|
|
5335
|
+
upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5336
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__common__mutation_0rules__v3__HeaderMutation_msg_init);
|
|
5337
|
+
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
5338
|
+
if (arr) {
|
|
5339
|
+
if (size) *size = arr->UPB_PRIVATE(size);
|
|
5340
|
+
return (struct envoy_config_common_mutation_rules_v3_HeaderMutation**)upb_Array_MutableDataPtr(arr);
|
|
5341
|
+
} else {
|
|
5342
|
+
if (size) *size = 0;
|
|
5343
|
+
return NULL;
|
|
5344
|
+
}
|
|
5345
|
+
}
|
|
5346
|
+
UPB_INLINE struct envoy_config_common_mutation_rules_v3_HeaderMutation** envoy_config_route_v3_RouteAction_RequestMirrorPolicy_resize_request_headers_mutations(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, size_t size, upb_Arena* arena) {
|
|
5347
|
+
upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5348
|
+
return (struct envoy_config_common_mutation_rules_v3_HeaderMutation**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
5349
|
+
&field, size, arena);
|
|
5350
|
+
}
|
|
5351
|
+
UPB_INLINE struct envoy_config_common_mutation_rules_v3_HeaderMutation* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_add_request_headers_mutations(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, upb_Arena* arena) {
|
|
5352
|
+
upb_MiniTableField field = {7, UPB_SIZE(20, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
5353
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__common__mutation_0rules__v3__HeaderMutation_msg_init);
|
|
5354
|
+
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
5355
|
+
UPB_UPCAST(msg), &field, arena);
|
|
5356
|
+
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
|
5357
|
+
arr, arr->UPB_PRIVATE(size) + 1, arena)) {
|
|
5358
|
+
return NULL;
|
|
5359
|
+
}
|
|
5360
|
+
struct envoy_config_common_mutation_rules_v3_HeaderMutation* sub = (struct envoy_config_common_mutation_rules_v3_HeaderMutation*)_upb_Message_New(&envoy__config__common__mutation_0rules__v3__HeaderMutation_msg_init, arena);
|
|
5361
|
+
if (!arr || !sub) return NULL;
|
|
5362
|
+
UPB_PRIVATE(_upb_Array_Set)
|
|
5363
|
+
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
|
5364
|
+
return sub;
|
|
5365
|
+
}
|
|
5366
|
+
UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_host_rewrite_literal(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
|
|
5367
|
+
const upb_MiniTableField field = {8, UPB_SIZE(40, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
5368
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
5369
|
+
}
|
|
5056
5370
|
|
|
5057
5371
|
/* envoy.config.route.v3.RouteAction.HashPolicy */
|
|
5058
5372
|
|
|
@@ -7579,6 +7893,23 @@ UPB_INLINE bool envoy_config_route_v3_DirectResponseAction_has_body(const envoy_
|
|
|
7579
7893
|
const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7580
7894
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7581
7895
|
}
|
|
7896
|
+
UPB_INLINE void envoy_config_route_v3_DirectResponseAction_clear_body_format(envoy_config_route_v3_DirectResponseAction* msg) {
|
|
7897
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7898
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
7899
|
+
}
|
|
7900
|
+
UPB_INLINE const struct envoy_config_core_v3_SubstitutionFormatString* envoy_config_route_v3_DirectResponseAction_body_format(const envoy_config_route_v3_DirectResponseAction* msg) {
|
|
7901
|
+
const struct envoy_config_core_v3_SubstitutionFormatString* default_val = NULL;
|
|
7902
|
+
const struct envoy_config_core_v3_SubstitutionFormatString* ret;
|
|
7903
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7904
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__SubstitutionFormatString_msg_init);
|
|
7905
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7906
|
+
&default_val, &ret);
|
|
7907
|
+
return ret;
|
|
7908
|
+
}
|
|
7909
|
+
UPB_INLINE bool envoy_config_route_v3_DirectResponseAction_has_body_format(const envoy_config_route_v3_DirectResponseAction* msg) {
|
|
7910
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7911
|
+
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7912
|
+
}
|
|
7582
7913
|
|
|
7583
7914
|
UPB_INLINE void envoy_config_route_v3_DirectResponseAction_set_status(envoy_config_route_v3_DirectResponseAction *msg, uint32_t value) {
|
|
7584
7915
|
const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
|
@@ -7597,6 +7928,19 @@ UPB_INLINE struct envoy_config_core_v3_DataSource* envoy_config_route_v3_DirectR
|
|
|
7597
7928
|
}
|
|
7598
7929
|
return sub;
|
|
7599
7930
|
}
|
|
7931
|
+
UPB_INLINE void envoy_config_route_v3_DirectResponseAction_set_body_format(envoy_config_route_v3_DirectResponseAction *msg, struct envoy_config_core_v3_SubstitutionFormatString* value) {
|
|
7932
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7933
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__SubstitutionFormatString_msg_init);
|
|
7934
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7935
|
+
}
|
|
7936
|
+
UPB_INLINE struct envoy_config_core_v3_SubstitutionFormatString* envoy_config_route_v3_DirectResponseAction_mutable_body_format(envoy_config_route_v3_DirectResponseAction* msg, upb_Arena* arena) {
|
|
7937
|
+
struct envoy_config_core_v3_SubstitutionFormatString* sub = (struct envoy_config_core_v3_SubstitutionFormatString*)envoy_config_route_v3_DirectResponseAction_body_format(msg);
|
|
7938
|
+
if (sub == NULL) {
|
|
7939
|
+
sub = (struct envoy_config_core_v3_SubstitutionFormatString*)_upb_Message_New(&envoy__config__core__v3__SubstitutionFormatString_msg_init, arena);
|
|
7940
|
+
if (sub) envoy_config_route_v3_DirectResponseAction_set_body_format(msg, sub);
|
|
7941
|
+
}
|
|
7942
|
+
return sub;
|
|
7943
|
+
}
|
|
7600
7944
|
|
|
7601
7945
|
/* envoy.config.route.v3.NonForwardingAction */
|
|
7602
7946
|
|
|
@@ -7757,62 +8101,62 @@ UPB_INLINE char* envoy_config_route_v3_Tracing_serialize_ex(const envoy_config_r
|
|
|
7757
8101
|
return ptr;
|
|
7758
8102
|
}
|
|
7759
8103
|
UPB_INLINE void envoy_config_route_v3_Tracing_clear_client_sampling(envoy_config_route_v3_Tracing* msg) {
|
|
7760
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
|
8104
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7761
8105
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
7762
8106
|
}
|
|
7763
8107
|
UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_client_sampling(const envoy_config_route_v3_Tracing* msg) {
|
|
7764
8108
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
7765
8109
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
7766
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
|
8110
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7767
8111
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7768
8112
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7769
8113
|
&default_val, &ret);
|
|
7770
8114
|
return ret;
|
|
7771
8115
|
}
|
|
7772
8116
|
UPB_INLINE bool envoy_config_route_v3_Tracing_has_client_sampling(const envoy_config_route_v3_Tracing* msg) {
|
|
7773
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
|
8117
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7774
8118
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7775
8119
|
}
|
|
7776
8120
|
UPB_INLINE void envoy_config_route_v3_Tracing_clear_random_sampling(envoy_config_route_v3_Tracing* msg) {
|
|
7777
|
-
const upb_MiniTableField field = {2, UPB_SIZE(16,
|
|
8121
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7778
8122
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
7779
8123
|
}
|
|
7780
8124
|
UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_random_sampling(const envoy_config_route_v3_Tracing* msg) {
|
|
7781
8125
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
7782
8126
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
7783
|
-
const upb_MiniTableField field = {2, UPB_SIZE(16,
|
|
8127
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7784
8128
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7785
8129
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7786
8130
|
&default_val, &ret);
|
|
7787
8131
|
return ret;
|
|
7788
8132
|
}
|
|
7789
8133
|
UPB_INLINE bool envoy_config_route_v3_Tracing_has_random_sampling(const envoy_config_route_v3_Tracing* msg) {
|
|
7790
|
-
const upb_MiniTableField field = {2, UPB_SIZE(16,
|
|
8134
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7791
8135
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7792
8136
|
}
|
|
7793
8137
|
UPB_INLINE void envoy_config_route_v3_Tracing_clear_overall_sampling(envoy_config_route_v3_Tracing* msg) {
|
|
7794
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
|
8138
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 64), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7795
8139
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
7796
8140
|
}
|
|
7797
8141
|
UPB_INLINE const struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_overall_sampling(const envoy_config_route_v3_Tracing* msg) {
|
|
7798
8142
|
const struct envoy_type_v3_FractionalPercent* default_val = NULL;
|
|
7799
8143
|
const struct envoy_type_v3_FractionalPercent* ret;
|
|
7800
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
|
8144
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 64), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7801
8145
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7802
8146
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
7803
8147
|
&default_val, &ret);
|
|
7804
8148
|
return ret;
|
|
7805
8149
|
}
|
|
7806
8150
|
UPB_INLINE bool envoy_config_route_v3_Tracing_has_overall_sampling(const envoy_config_route_v3_Tracing* msg) {
|
|
7807
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
|
8151
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 64), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7808
8152
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
|
7809
8153
|
}
|
|
7810
8154
|
UPB_INLINE void envoy_config_route_v3_Tracing_clear_custom_tags(envoy_config_route_v3_Tracing* msg) {
|
|
7811
|
-
const upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8155
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7812
8156
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
7813
8157
|
}
|
|
7814
8158
|
UPB_INLINE const struct envoy_type_tracing_v3_CustomTag* const* envoy_config_route_v3_Tracing_custom_tags(const envoy_config_route_v3_Tracing* msg, size_t* size) {
|
|
7815
|
-
const upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8159
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7816
8160
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7817
8161
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7818
8162
|
if (arr) {
|
|
@@ -7824,7 +8168,7 @@ UPB_INLINE const struct envoy_type_tracing_v3_CustomTag* const* envoy_config_rou
|
|
|
7824
8168
|
}
|
|
7825
8169
|
}
|
|
7826
8170
|
UPB_INLINE const upb_Array* _envoy_config_route_v3_Tracing_custom_tags_upb_array(const envoy_config_route_v3_Tracing* msg, size_t* size) {
|
|
7827
|
-
const upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8171
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7828
8172
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7829
8173
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
|
7830
8174
|
if (size) {
|
|
@@ -7833,7 +8177,7 @@ UPB_INLINE const upb_Array* _envoy_config_route_v3_Tracing_custom_tags_upb_array
|
|
|
7833
8177
|
return arr;
|
|
7834
8178
|
}
|
|
7835
8179
|
UPB_INLINE upb_Array* _envoy_config_route_v3_Tracing_custom_tags_mutable_upb_array(envoy_config_route_v3_Tracing* msg, size_t* size, upb_Arena* arena) {
|
|
7836
|
-
const upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8180
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7837
8181
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7838
8182
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
|
7839
8183
|
&field, arena);
|
|
@@ -7842,9 +8186,33 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_Tracing_custom_tags_mutable_upb_arr
|
|
|
7842
8186
|
}
|
|
7843
8187
|
return arr;
|
|
7844
8188
|
}
|
|
8189
|
+
UPB_INLINE void envoy_config_route_v3_Tracing_clear_operation(envoy_config_route_v3_Tracing* msg) {
|
|
8190
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8191
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
8192
|
+
}
|
|
8193
|
+
UPB_INLINE upb_StringView envoy_config_route_v3_Tracing_operation(const envoy_config_route_v3_Tracing* msg) {
|
|
8194
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
8195
|
+
upb_StringView ret;
|
|
8196
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8197
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8198
|
+
&default_val, &ret);
|
|
8199
|
+
return ret;
|
|
8200
|
+
}
|
|
8201
|
+
UPB_INLINE void envoy_config_route_v3_Tracing_clear_upstream_operation(envoy_config_route_v3_Tracing* msg) {
|
|
8202
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8203
|
+
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
|
8204
|
+
}
|
|
8205
|
+
UPB_INLINE upb_StringView envoy_config_route_v3_Tracing_upstream_operation(const envoy_config_route_v3_Tracing* msg) {
|
|
8206
|
+
upb_StringView default_val = upb_StringView_FromString("");
|
|
8207
|
+
upb_StringView ret;
|
|
8208
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8209
|
+
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
|
8210
|
+
&default_val, &ret);
|
|
8211
|
+
return ret;
|
|
8212
|
+
}
|
|
7845
8213
|
|
|
7846
8214
|
UPB_INLINE void envoy_config_route_v3_Tracing_set_client_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
7847
|
-
const upb_MiniTableField field = {1, UPB_SIZE(12,
|
|
8215
|
+
const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7848
8216
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7849
8217
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7850
8218
|
}
|
|
@@ -7857,7 +8225,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
|
|
|
7857
8225
|
return sub;
|
|
7858
8226
|
}
|
|
7859
8227
|
UPB_INLINE void envoy_config_route_v3_Tracing_set_random_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
7860
|
-
const upb_MiniTableField field = {2, UPB_SIZE(16,
|
|
8228
|
+
const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7861
8229
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7862
8230
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7863
8231
|
}
|
|
@@ -7870,7 +8238,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
|
|
|
7870
8238
|
return sub;
|
|
7871
8239
|
}
|
|
7872
8240
|
UPB_INLINE void envoy_config_route_v3_Tracing_set_overall_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
|
|
7873
|
-
const upb_MiniTableField field = {3, UPB_SIZE(20,
|
|
8241
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 64), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7874
8242
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__v3__FractionalPercent_msg_init);
|
|
7875
8243
|
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
7876
8244
|
}
|
|
@@ -7883,7 +8251,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
|
|
|
7883
8251
|
return sub;
|
|
7884
8252
|
}
|
|
7885
8253
|
UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_config_route_v3_Tracing_mutable_custom_tags(envoy_config_route_v3_Tracing* msg, size_t* size) {
|
|
7886
|
-
upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8254
|
+
upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7887
8255
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7888
8256
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
|
7889
8257
|
if (arr) {
|
|
@@ -7895,12 +8263,12 @@ UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_config_route_v3_Tracin
|
|
|
7895
8263
|
}
|
|
7896
8264
|
}
|
|
7897
8265
|
UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_config_route_v3_Tracing_resize_custom_tags(envoy_config_route_v3_Tracing* msg, size_t size, upb_Arena* arena) {
|
|
7898
|
-
upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8266
|
+
upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7899
8267
|
return (struct envoy_type_tracing_v3_CustomTag**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
|
7900
8268
|
&field, size, arena);
|
|
7901
8269
|
}
|
|
7902
8270
|
UPB_INLINE struct envoy_type_tracing_v3_CustomTag* envoy_config_route_v3_Tracing_add_custom_tags(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
|
|
7903
|
-
upb_MiniTableField field = {4, UPB_SIZE(24,
|
|
8271
|
+
upb_MiniTableField field = {4, UPB_SIZE(24, 72), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
|
7904
8272
|
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
|
|
7905
8273
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
|
7906
8274
|
UPB_UPCAST(msg), &field, arena);
|
|
@@ -7914,6 +8282,14 @@ UPB_INLINE struct envoy_type_tracing_v3_CustomTag* envoy_config_route_v3_Tracing
|
|
|
7914
8282
|
(arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
|
|
7915
8283
|
return sub;
|
|
7916
8284
|
}
|
|
8285
|
+
UPB_INLINE void envoy_config_route_v3_Tracing_set_operation(envoy_config_route_v3_Tracing *msg, upb_StringView value) {
|
|
8286
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8287
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8288
|
+
}
|
|
8289
|
+
UPB_INLINE void envoy_config_route_v3_Tracing_set_upstream_operation(envoy_config_route_v3_Tracing *msg, upb_StringView value) {
|
|
8290
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
|
8291
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
|
8292
|
+
}
|
|
7917
8293
|
|
|
7918
8294
|
/* envoy.config.route.v3.VirtualCluster */
|
|
7919
8295
|
|