Current section
Files
Jump to
Current section
Files
gen/envoy/api/v2/endpoint/endpoint_components.pb.ex
defmodule Envoy.Api.V2.Endpoint.Endpoint.HealthCheckConfig do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :port_value, 1, type: :uint32, json_name: "portValue", deprecated: false
field :hostname, 2, type: :string
end
defmodule Envoy.Api.V2.Endpoint.Endpoint do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :address, 1, type: Envoy.Api.V2.Core.Address
field :health_check_config, 2,
type: Envoy.Api.V2.Endpoint.Endpoint.HealthCheckConfig,
json_name: "healthCheckConfig"
field :hostname, 3, type: :string
end
defmodule Envoy.Api.V2.Endpoint.LbEndpoint do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
oneof :host_identifier, 0
field :endpoint, 1, type: Envoy.Api.V2.Endpoint.Endpoint, oneof: 0
field :endpoint_name, 5, type: :string, json_name: "endpointName", oneof: 0
field :health_status, 2,
type: Envoy.Api.V2.Core.HealthStatus,
json_name: "healthStatus",
enum: true
field :metadata, 3, type: Envoy.Api.V2.Core.Metadata
field :load_balancing_weight, 4,
type: Google.Protobuf.UInt32Value,
json_name: "loadBalancingWeight",
deprecated: false
end
defmodule Envoy.Api.V2.Endpoint.LocalityLbEndpoints do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :locality, 1, type: Envoy.Api.V2.Core.Locality
field :lb_endpoints, 2,
repeated: true,
type: Envoy.Api.V2.Endpoint.LbEndpoint,
json_name: "lbEndpoints"
field :load_balancing_weight, 3,
type: Google.Protobuf.UInt32Value,
json_name: "loadBalancingWeight",
deprecated: false
field :priority, 5, type: :uint32, deprecated: false
field :proximity, 6, type: Google.Protobuf.UInt32Value
end