envoy_admin_v4alpha

package
v0.9.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 21, 2021 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ClientResourceStatus_name = map[int32]string{
		0: "UNKNOWN",
		1: "REQUESTED",
		2: "DOES_NOT_EXIST",
		3: "ACKED",
		4: "NACKED",
	}
	ClientResourceStatus_value = map[string]int32{
		"UNKNOWN":        0,
		"REQUESTED":      1,
		"DOES_NOT_EXIST": 2,
		"ACKED":          3,
		"NACKED":         4,
	}
)

Enum value maps for ClientResourceStatus.

View Source
var (
	SimpleMetric_Type_name = map[int32]string{
		0: "COUNTER",
		1: "GAUGE",
	}
	SimpleMetric_Type_value = map[string]int32{
		"COUNTER": 0,
		"GAUGE":   1,
	}
)

Enum value maps for SimpleMetric_Type.

View Source
var (
	ServerInfo_State_name = map[int32]string{
		0: "LIVE",
		1: "DRAINING",
		2: "PRE_INITIALIZING",
		3: "INITIALIZING",
	}
	ServerInfo_State_value = map[string]int32{
		"LIVE":             0,
		"DRAINING":         1,
		"PRE_INITIALIZING": 2,
		"INITIALIZING":     3,
	}
)

Enum value maps for ServerInfo_State.

View Source
var (
	CommandLineOptions_IpVersion_name = map[int32]string{
		0: "v4",
		1: "v6",
	}
	CommandLineOptions_IpVersion_value = map[string]int32{
		"v4": 0,
		"v6": 1,
	}
)

Enum value maps for CommandLineOptions_IpVersion.

View Source
var (
	CommandLineOptions_Mode_name = map[int32]string{
		0: "Serve",
		1: "Validate",
		2: "InitOnly",
	}
	CommandLineOptions_Mode_value = map[string]int32{
		"Serve":    0,
		"Validate": 1,
		"InitOnly": 2,
	}
)

Enum value maps for CommandLineOptions_Mode.

View Source
var (
	CommandLineOptions_DrainStrategy_name = map[int32]string{
		0: "Gradual",
		1: "Immediate",
	}
	CommandLineOptions_DrainStrategy_value = map[string]int32{
		"Gradual":   0,
		"Immediate": 1,
	}
)

Enum value maps for CommandLineOptions_DrainStrategy.

View Source
var File_envoy_admin_v4alpha_certs_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_clusters_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_config_dump_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_init_dump_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_listeners_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_memory_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_metrics_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_mutex_stats_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_server_info_proto protoreflect.FileDescriptor
View Source
var File_envoy_admin_v4alpha_tap_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BootstrapConfigDump

type BootstrapConfigDump struct {
	Bootstrap *v4alpha.Bootstrap `protobuf:"bytes,1,opt,name=bootstrap,proto3" json:"bootstrap,omitempty"`
	// The timestamp when the BootstrapConfig was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

This message describes the bootstrap configuration that Envoy was started with. This includes any CLI overrides that were merged. Bootstrap configuration information can be used to recreate the static portions of an Envoy configuration by reusing the output as the bootstrap configuration for another Envoy.

func (*BootstrapConfigDump) Descriptor deprecated

func (*BootstrapConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use BootstrapConfigDump.ProtoReflect.Descriptor instead.

func (*BootstrapConfigDump) GetBootstrap

func (x *BootstrapConfigDump) GetBootstrap() *v4alpha.Bootstrap

func (*BootstrapConfigDump) GetLastUpdated

func (x *BootstrapConfigDump) GetLastUpdated() *timestamp.Timestamp

func (*BootstrapConfigDump) ProtoMessage

func (*BootstrapConfigDump) ProtoMessage()

func (*BootstrapConfigDump) ProtoReflect

func (x *BootstrapConfigDump) ProtoReflect() protoreflect.Message

func (*BootstrapConfigDump) Reset

func (x *BootstrapConfigDump) Reset()

func (*BootstrapConfigDump) String

func (x *BootstrapConfigDump) String() string

func (*BootstrapConfigDump) Validate

func (m *BootstrapConfigDump) Validate() error

Validate checks the field values on BootstrapConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type BootstrapConfigDumpValidationError

type BootstrapConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

BootstrapConfigDumpValidationError is the validation error returned by BootstrapConfigDump.Validate if the designated constraints aren't met.

func (BootstrapConfigDumpValidationError) Cause

Cause function returns cause value.

func (BootstrapConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (BootstrapConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (BootstrapConfigDumpValidationError) Field

Field function returns field value.

func (BootstrapConfigDumpValidationError) Key

Key function returns key value.

func (BootstrapConfigDumpValidationError) Reason

Reason function returns reason value.

type Certificate

type Certificate struct {

	// Details of CA certificate.
	CaCert []*CertificateDetails `protobuf:"bytes,1,rep,name=ca_cert,json=caCert,proto3" json:"ca_cert,omitempty"`
	// Details of Certificate Chain
	CertChain []*CertificateDetails `protobuf:"bytes,2,rep,name=cert_chain,json=certChain,proto3" json:"cert_chain,omitempty"`
	// contains filtered or unexported fields
}

func (*Certificate) Descriptor deprecated

func (*Certificate) Descriptor() ([]byte, []int)

Deprecated: Use Certificate.ProtoReflect.Descriptor instead.

func (*Certificate) GetCaCert

func (x *Certificate) GetCaCert() []*CertificateDetails

func (*Certificate) GetCertChain

func (x *Certificate) GetCertChain() []*CertificateDetails

func (*Certificate) ProtoMessage

func (*Certificate) ProtoMessage()

func (*Certificate) ProtoReflect

func (x *Certificate) ProtoReflect() protoreflect.Message

func (*Certificate) Reset

func (x *Certificate) Reset()

func (*Certificate) String

func (x *Certificate) String() string

func (*Certificate) Validate

func (m *Certificate) Validate() error

Validate checks the field values on Certificate with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CertificateDetails

type CertificateDetails struct {

	// Path of the certificate.
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// Certificate Serial Number.
	SerialNumber string `protobuf:"bytes,2,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
	// List of Subject Alternate names.
	SubjectAltNames []*SubjectAlternateName `protobuf:"bytes,3,rep,name=subject_alt_names,json=subjectAltNames,proto3" json:"subject_alt_names,omitempty"`
	// Minimum of days until expiration of certificate and it's chain.
	DaysUntilExpiration uint64 `protobuf:"varint,4,opt,name=days_until_expiration,json=daysUntilExpiration,proto3" json:"days_until_expiration,omitempty"`
	// Indicates the time from which the certificate is valid.
	ValidFrom *timestamp.Timestamp `protobuf:"bytes,5,opt,name=valid_from,json=validFrom,proto3" json:"valid_from,omitempty"`
	// Indicates the time at which the certificate expires.
	ExpirationTime *timestamp.Timestamp `protobuf:"bytes,6,opt,name=expiration_time,json=expirationTime,proto3" json:"expiration_time,omitempty"`
	// Details related to the OCSP response associated with this certificate, if any.
	OcspDetails *CertificateDetails_OcspDetails `protobuf:"bytes,7,opt,name=ocsp_details,json=ocspDetails,proto3" json:"ocsp_details,omitempty"`
	// contains filtered or unexported fields
}

[#next-free-field: 8]

func (*CertificateDetails) Descriptor deprecated

func (*CertificateDetails) Descriptor() ([]byte, []int)

Deprecated: Use CertificateDetails.ProtoReflect.Descriptor instead.

func (*CertificateDetails) GetDaysUntilExpiration

func (x *CertificateDetails) GetDaysUntilExpiration() uint64

func (*CertificateDetails) GetExpirationTime

func (x *CertificateDetails) GetExpirationTime() *timestamp.Timestamp

func (*CertificateDetails) GetOcspDetails added in v0.9.7

func (*CertificateDetails) GetPath

func (x *CertificateDetails) GetPath() string

func (*CertificateDetails) GetSerialNumber

func (x *CertificateDetails) GetSerialNumber() string

func (*CertificateDetails) GetSubjectAltNames

func (x *CertificateDetails) GetSubjectAltNames() []*SubjectAlternateName

func (*CertificateDetails) GetValidFrom

func (x *CertificateDetails) GetValidFrom() *timestamp.Timestamp

func (*CertificateDetails) ProtoMessage

func (*CertificateDetails) ProtoMessage()

func (*CertificateDetails) ProtoReflect

func (x *CertificateDetails) ProtoReflect() protoreflect.Message

func (*CertificateDetails) Reset

func (x *CertificateDetails) Reset()

func (*CertificateDetails) String

func (x *CertificateDetails) String() string

func (*CertificateDetails) Validate

func (m *CertificateDetails) Validate() error

Validate checks the field values on CertificateDetails with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CertificateDetailsValidationError

type CertificateDetailsValidationError struct {
	// contains filtered or unexported fields
}

CertificateDetailsValidationError is the validation error returned by CertificateDetails.Validate if the designated constraints aren't met.

func (CertificateDetailsValidationError) Cause

Cause function returns cause value.

func (CertificateDetailsValidationError) Error

Error satisfies the builtin error interface

func (CertificateDetailsValidationError) ErrorName

ErrorName returns error name.

func (CertificateDetailsValidationError) Field

Field function returns field value.

func (CertificateDetailsValidationError) Key

Key function returns key value.

func (CertificateDetailsValidationError) Reason

Reason function returns reason value.

type CertificateDetails_OcspDetails added in v0.9.7

type CertificateDetails_OcspDetails struct {

	// Indicates the time from which the OCSP response is valid.
	ValidFrom *timestamp.Timestamp `protobuf:"bytes,1,opt,name=valid_from,json=validFrom,proto3" json:"valid_from,omitempty"`
	// Indicates the time at which the OCSP response expires.
	Expiration *timestamp.Timestamp `protobuf:"bytes,2,opt,name=expiration,proto3" json:"expiration,omitempty"`
	// contains filtered or unexported fields
}

func (*CertificateDetails_OcspDetails) Descriptor deprecated added in v0.9.7

func (*CertificateDetails_OcspDetails) Descriptor() ([]byte, []int)

Deprecated: Use CertificateDetails_OcspDetails.ProtoReflect.Descriptor instead.

func (*CertificateDetails_OcspDetails) GetExpiration added in v0.9.7

func (*CertificateDetails_OcspDetails) GetValidFrom added in v0.9.7

func (*CertificateDetails_OcspDetails) ProtoMessage added in v0.9.7

func (*CertificateDetails_OcspDetails) ProtoMessage()

func (*CertificateDetails_OcspDetails) ProtoReflect added in v0.9.7

func (*CertificateDetails_OcspDetails) Reset added in v0.9.7

func (x *CertificateDetails_OcspDetails) Reset()

func (*CertificateDetails_OcspDetails) String added in v0.9.7

func (*CertificateDetails_OcspDetails) Validate added in v0.9.7

func (m *CertificateDetails_OcspDetails) Validate() error

Validate checks the field values on CertificateDetails_OcspDetails with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CertificateDetails_OcspDetailsValidationError added in v0.9.7

type CertificateDetails_OcspDetailsValidationError struct {
	// contains filtered or unexported fields
}

CertificateDetails_OcspDetailsValidationError is the validation error returned by CertificateDetails_OcspDetails.Validate if the designated constraints aren't met.

func (CertificateDetails_OcspDetailsValidationError) Cause added in v0.9.7

Cause function returns cause value.

func (CertificateDetails_OcspDetailsValidationError) Error added in v0.9.7

Error satisfies the builtin error interface

func (CertificateDetails_OcspDetailsValidationError) ErrorName added in v0.9.7

ErrorName returns error name.

func (CertificateDetails_OcspDetailsValidationError) Field added in v0.9.7

Field function returns field value.

func (CertificateDetails_OcspDetailsValidationError) Key added in v0.9.7

Key function returns key value.

func (CertificateDetails_OcspDetailsValidationError) Reason added in v0.9.7

Reason function returns reason value.

type CertificateValidationError

type CertificateValidationError struct {
	// contains filtered or unexported fields
}

CertificateValidationError is the validation error returned by Certificate.Validate if the designated constraints aren't met.

func (CertificateValidationError) Cause

Cause function returns cause value.

func (CertificateValidationError) Error

Error satisfies the builtin error interface

func (CertificateValidationError) ErrorName

func (e CertificateValidationError) ErrorName() string

ErrorName returns error name.

func (CertificateValidationError) Field

Field function returns field value.

func (CertificateValidationError) Key

Key function returns key value.

func (CertificateValidationError) Reason

Reason function returns reason value.

type Certificates

type Certificates struct {

	// List of certificates known to an Envoy.
	Certificates []*Certificate `protobuf:"bytes,1,rep,name=certificates,proto3" json:"certificates,omitempty"`
	// contains filtered or unexported fields
}

Proto representation of certificate details. Admin endpoint uses this wrapper for `/certs` to display certificate information. See :ref:`/certs <operations_admin_interface_certs>` for more information.

func (*Certificates) Descriptor deprecated

func (*Certificates) Descriptor() ([]byte, []int)

Deprecated: Use Certificates.ProtoReflect.Descriptor instead.

func (*Certificates) GetCertificates

func (x *Certificates) GetCertificates() []*Certificate

func (*Certificates) ProtoMessage

func (*Certificates) ProtoMessage()

func (*Certificates) ProtoReflect

func (x *Certificates) ProtoReflect() protoreflect.Message

func (*Certificates) Reset

func (x *Certificates) Reset()

func (*Certificates) String

func (x *Certificates) String() string

func (*Certificates) Validate

func (m *Certificates) Validate() error

Validate checks the field values on Certificates with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CertificatesValidationError

type CertificatesValidationError struct {
	// contains filtered or unexported fields
}

CertificatesValidationError is the validation error returned by Certificates.Validate if the designated constraints aren't met.

func (CertificatesValidationError) Cause

Cause function returns cause value.

func (CertificatesValidationError) Error

Error satisfies the builtin error interface

func (CertificatesValidationError) ErrorName

func (e CertificatesValidationError) ErrorName() string

ErrorName returns error name.

func (CertificatesValidationError) Field

Field function returns field value.

func (CertificatesValidationError) Key

Key function returns key value.

func (CertificatesValidationError) Reason

Reason function returns reason value.

type ClientResourceStatus added in v0.9.9

type ClientResourceStatus int32

Resource status from the view of a xDS client, which tells the synchronization status between the xDS client and the xDS server.

const (
	// Resource status is not available/unknown.
	ClientResourceStatus_UNKNOWN ClientResourceStatus = 0
	// Client requested this resource but hasn't received any update from management
	// server. The client will not fail requests, but will queue them until update
	// arrives or the client times out waiting for the resource.
	ClientResourceStatus_REQUESTED ClientResourceStatus = 1
	// This resource has been requested by the client but has either not been
	// delivered by the server or was previously delivered by the server and then
	// subsequently removed from resources provided by the server. For more
	// information, please refer to the :ref:`"Knowing When a Requested Resource
	// Does Not Exist" <xds_protocol_resource_not_existed>` section.
	ClientResourceStatus_DOES_NOT_EXIST ClientResourceStatus = 2
	// Client received this resource and replied with ACK.
	ClientResourceStatus_ACKED ClientResourceStatus = 3
	// Client received this resource and replied with NACK.
	ClientResourceStatus_NACKED ClientResourceStatus = 4
)

func (ClientResourceStatus) Descriptor added in v0.9.9

func (ClientResourceStatus) Enum added in v0.9.9

func (ClientResourceStatus) EnumDescriptor deprecated added in v0.9.9

func (ClientResourceStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use ClientResourceStatus.Descriptor instead.

func (ClientResourceStatus) Number added in v0.9.9

func (ClientResourceStatus) String added in v0.9.9

func (x ClientResourceStatus) String() string

func (ClientResourceStatus) Type added in v0.9.9

type ClusterStatus

type ClusterStatus struct {

	// Name of the cluster.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Denotes whether this cluster was added via API or configured statically.
	AddedViaApi bool `protobuf:"varint,2,opt,name=added_via_api,json=addedViaApi,proto3" json:"added_via_api,omitempty"`
	// The success rate threshold used in the last interval.
	// If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
	// is *false*, all errors: externally and locally generated were used to calculate the threshold.
	// If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
	// is *true*, only externally generated errors were used to calculate the threshold.
	// The threshold is used to eject hosts based on their success rate. See
	// :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for details.
	//
	// Note: this field may be omitted in any of the three following cases:
	//
	// 1. There were not enough hosts with enough request volume to proceed with success rate based
	//    outlier ejection.
	// 2. The threshold is computed to be < 0 because a negative value implies that there was no
	//    threshold for that interval.
	// 3. Outlier detection is not enabled for this cluster.
	SuccessRateEjectionThreshold *v3.Percent `` /* 149-byte string literal not displayed */
	// Mapping from host address to the host's current status.
	HostStatuses []*HostStatus `protobuf:"bytes,4,rep,name=host_statuses,json=hostStatuses,proto3" json:"host_statuses,omitempty"`
	// The success rate threshold used in the last interval when only locally originated failures were
	// taken into account and externally originated errors were treated as success.
	// This field should be interpreted only when
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
	// is *true*. The threshold is used to eject hosts based on their success rate.
	// See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
	// details.
	//
	// Note: this field may be omitted in any of the three following cases:
	//
	// 1. There were not enough hosts with enough request volume to proceed with success rate based
	//    outlier ejection.
	// 2. The threshold is computed to be < 0 because a negative value implies that there was no
	//    threshold for that interval.
	// 3. Outlier detection is not enabled for this cluster.
	LocalOriginSuccessRateEjectionThreshold *v3.Percent `` /* 186-byte string literal not displayed */
	// :ref:`Circuit breaking <arch_overview_circuit_break>` settings of the cluster.
	CircuitBreakers *v4alpha.CircuitBreakers `protobuf:"bytes,6,opt,name=circuit_breakers,json=circuitBreakers,proto3" json:"circuit_breakers,omitempty"`
	// Observability name of the cluster.
	ObservabilityName string `protobuf:"bytes,7,opt,name=observability_name,json=observabilityName,proto3" json:"observability_name,omitempty"`
	// contains filtered or unexported fields
}

Details an individual cluster's current status. [#next-free-field: 8]

func (*ClusterStatus) Descriptor deprecated

func (*ClusterStatus) Descriptor() ([]byte, []int)

Deprecated: Use ClusterStatus.ProtoReflect.Descriptor instead.

func (*ClusterStatus) GetAddedViaApi

func (x *ClusterStatus) GetAddedViaApi() bool

func (*ClusterStatus) GetCircuitBreakers added in v0.9.7

func (x *ClusterStatus) GetCircuitBreakers() *v4alpha.CircuitBreakers

func (*ClusterStatus) GetHostStatuses

func (x *ClusterStatus) GetHostStatuses() []*HostStatus

func (*ClusterStatus) GetLocalOriginSuccessRateEjectionThreshold

func (x *ClusterStatus) GetLocalOriginSuccessRateEjectionThreshold() *v3.Percent

func (*ClusterStatus) GetName

func (x *ClusterStatus) GetName() string

func (*ClusterStatus) GetObservabilityName added in v0.9.9

func (x *ClusterStatus) GetObservabilityName() string

func (*ClusterStatus) GetSuccessRateEjectionThreshold

func (x *ClusterStatus) GetSuccessRateEjectionThreshold() *v3.Percent

func (*ClusterStatus) ProtoMessage

func (*ClusterStatus) ProtoMessage()

func (*ClusterStatus) ProtoReflect

func (x *ClusterStatus) ProtoReflect() protoreflect.Message

func (*ClusterStatus) Reset

func (x *ClusterStatus) Reset()

func (*ClusterStatus) String

func (x *ClusterStatus) String() string

func (*ClusterStatus) Validate

func (m *ClusterStatus) Validate() error

Validate checks the field values on ClusterStatus with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ClusterStatusValidationError

type ClusterStatusValidationError struct {
	// contains filtered or unexported fields
}

ClusterStatusValidationError is the validation error returned by ClusterStatus.Validate if the designated constraints aren't met.

func (ClusterStatusValidationError) Cause

Cause function returns cause value.

func (ClusterStatusValidationError) Error

Error satisfies the builtin error interface

func (ClusterStatusValidationError) ErrorName

func (e ClusterStatusValidationError) ErrorName() string

ErrorName returns error name.

func (ClusterStatusValidationError) Field

Field function returns field value.

func (ClusterStatusValidationError) Key

Key function returns key value.

func (ClusterStatusValidationError) Reason

Reason function returns reason value.

type Clusters

type Clusters struct {

	// Mapping from cluster name to each cluster's status.
	ClusterStatuses []*ClusterStatus `protobuf:"bytes,1,rep,name=cluster_statuses,json=clusterStatuses,proto3" json:"cluster_statuses,omitempty"`
	// contains filtered or unexported fields
}

Admin endpoint uses this wrapper for `/clusters` to display cluster status information. See :ref:`/clusters <operations_admin_interface_clusters>` for more information.

func (*Clusters) Descriptor deprecated

func (*Clusters) Descriptor() ([]byte, []int)

Deprecated: Use Clusters.ProtoReflect.Descriptor instead.

func (*Clusters) GetClusterStatuses

func (x *Clusters) GetClusterStatuses() []*ClusterStatus

func (*Clusters) ProtoMessage

func (*Clusters) ProtoMessage()

func (*Clusters) ProtoReflect

func (x *Clusters) ProtoReflect() protoreflect.Message

func (*Clusters) Reset

func (x *Clusters) Reset()

func (*Clusters) String

func (x *Clusters) String() string

func (*Clusters) Validate

func (m *Clusters) Validate() error

Validate checks the field values on Clusters with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ClustersConfigDump

type ClustersConfigDump struct {

	// This is the :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` in the
	// last processed CDS discovery response. If there are only static bootstrap clusters, this field
	// will be "".
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The statically loaded cluster configs.
	StaticClusters []*ClustersConfigDump_StaticCluster `protobuf:"bytes,2,rep,name=static_clusters,json=staticClusters,proto3" json:"static_clusters,omitempty"`
	// The dynamically loaded active clusters. These are clusters that are available to service
	// data plane traffic.
	DynamicActiveClusters []*ClustersConfigDump_DynamicCluster `` /* 126-byte string literal not displayed */
	// The dynamically loaded warming clusters. These are clusters that are currently undergoing
	// warming in preparation to service data plane traffic. Note that if attempting to recreate an
	// Envoy configuration from a configuration dump, the warming clusters should generally be
	// discarded.
	DynamicWarmingClusters []*ClustersConfigDump_DynamicCluster `` /* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

Envoy's cluster manager fills this message with all currently known clusters. Cluster configuration information can be used to recreate an Envoy configuration by populating all clusters as static clusters or by returning them in a CDS response.

func (*ClustersConfigDump) Descriptor deprecated

func (*ClustersConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use ClustersConfigDump.ProtoReflect.Descriptor instead.

func (*ClustersConfigDump) GetDynamicActiveClusters

func (x *ClustersConfigDump) GetDynamicActiveClusters() []*ClustersConfigDump_DynamicCluster

func (*ClustersConfigDump) GetDynamicWarmingClusters

func (x *ClustersConfigDump) GetDynamicWarmingClusters() []*ClustersConfigDump_DynamicCluster

func (*ClustersConfigDump) GetStaticClusters

func (x *ClustersConfigDump) GetStaticClusters() []*ClustersConfigDump_StaticCluster

func (*ClustersConfigDump) GetVersionInfo

func (x *ClustersConfigDump) GetVersionInfo() string

func (*ClustersConfigDump) ProtoMessage

func (*ClustersConfigDump) ProtoMessage()

func (*ClustersConfigDump) ProtoReflect

func (x *ClustersConfigDump) ProtoReflect() protoreflect.Message

func (*ClustersConfigDump) Reset

func (x *ClustersConfigDump) Reset()

func (*ClustersConfigDump) String

func (x *ClustersConfigDump) String() string

func (*ClustersConfigDump) Validate

func (m *ClustersConfigDump) Validate() error

Validate checks the field values on ClustersConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ClustersConfigDumpValidationError

type ClustersConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

ClustersConfigDumpValidationError is the validation error returned by ClustersConfigDump.Validate if the designated constraints aren't met.

func (ClustersConfigDumpValidationError) Cause

Cause function returns cause value.

func (ClustersConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (ClustersConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (ClustersConfigDumpValidationError) Field

Field function returns field value.

func (ClustersConfigDumpValidationError) Key

Key function returns key value.

func (ClustersConfigDumpValidationError) Reason

Reason function returns reason value.

type ClustersConfigDump_DynamicCluster

type ClustersConfigDump_DynamicCluster struct {

	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` field at the time
	// that the cluster was loaded. In the future, discrete per-cluster versions may be supported by
	// the API.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The cluster config.
	Cluster *any.Any `protobuf:"bytes,2,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// The timestamp when the Cluster was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// Set if the last update failed, cleared after the next successful update.
	// The *error_state* field contains the rejected version of this particular
	// resource along with the reason and timestamp. For successfully updated or
	// acknowledged resource, this field should be empty.
	// [#not-implemented-hide:]
	ErrorState *UpdateFailureState `protobuf:"bytes,4,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
	// The client status of this resource.
	// [#not-implemented-hide:]
	ClientStatus ClientResourceStatus `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

Describes a dynamically loaded cluster via the CDS API. [#next-free-field: 6]

func (*ClustersConfigDump_DynamicCluster) Descriptor deprecated

func (*ClustersConfigDump_DynamicCluster) Descriptor() ([]byte, []int)

Deprecated: Use ClustersConfigDump_DynamicCluster.ProtoReflect.Descriptor instead.

func (*ClustersConfigDump_DynamicCluster) GetClientStatus added in v0.9.9

func (*ClustersConfigDump_DynamicCluster) GetCluster

func (x *ClustersConfigDump_DynamicCluster) GetCluster() *any.Any

func (*ClustersConfigDump_DynamicCluster) GetErrorState added in v0.9.9

func (*ClustersConfigDump_DynamicCluster) GetLastUpdated

func (*ClustersConfigDump_DynamicCluster) GetVersionInfo

func (x *ClustersConfigDump_DynamicCluster) GetVersionInfo() string

func (*ClustersConfigDump_DynamicCluster) ProtoMessage

func (*ClustersConfigDump_DynamicCluster) ProtoMessage()

func (*ClustersConfigDump_DynamicCluster) ProtoReflect

func (*ClustersConfigDump_DynamicCluster) Reset

func (*ClustersConfigDump_DynamicCluster) String

func (*ClustersConfigDump_DynamicCluster) Validate

Validate checks the field values on ClustersConfigDump_DynamicCluster with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ClustersConfigDump_DynamicClusterValidationError

type ClustersConfigDump_DynamicClusterValidationError struct {
	// contains filtered or unexported fields
}

ClustersConfigDump_DynamicClusterValidationError is the validation error returned by ClustersConfigDump_DynamicCluster.Validate if the designated constraints aren't met.

func (ClustersConfigDump_DynamicClusterValidationError) Cause

Cause function returns cause value.

func (ClustersConfigDump_DynamicClusterValidationError) Error

Error satisfies the builtin error interface

func (ClustersConfigDump_DynamicClusterValidationError) ErrorName

ErrorName returns error name.

func (ClustersConfigDump_DynamicClusterValidationError) Field

Field function returns field value.

func (ClustersConfigDump_DynamicClusterValidationError) Key

Key function returns key value.

func (ClustersConfigDump_DynamicClusterValidationError) Reason

Reason function returns reason value.

type ClustersConfigDump_StaticCluster

type ClustersConfigDump_StaticCluster struct {

	// The cluster config.
	Cluster *any.Any `protobuf:"bytes,1,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// The timestamp when the Cluster was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

Describes a statically loaded cluster.

func (*ClustersConfigDump_StaticCluster) Descriptor deprecated

func (*ClustersConfigDump_StaticCluster) Descriptor() ([]byte, []int)

Deprecated: Use ClustersConfigDump_StaticCluster.ProtoReflect.Descriptor instead.

func (*ClustersConfigDump_StaticCluster) GetCluster

func (x *ClustersConfigDump_StaticCluster) GetCluster() *any.Any

func (*ClustersConfigDump_StaticCluster) GetLastUpdated

func (*ClustersConfigDump_StaticCluster) ProtoMessage

func (*ClustersConfigDump_StaticCluster) ProtoMessage()

func (*ClustersConfigDump_StaticCluster) ProtoReflect

func (*ClustersConfigDump_StaticCluster) Reset

func (*ClustersConfigDump_StaticCluster) String

func (*ClustersConfigDump_StaticCluster) Validate

Validate checks the field values on ClustersConfigDump_StaticCluster with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ClustersConfigDump_StaticClusterValidationError

type ClustersConfigDump_StaticClusterValidationError struct {
	// contains filtered or unexported fields
}

ClustersConfigDump_StaticClusterValidationError is the validation error returned by ClustersConfigDump_StaticCluster.Validate if the designated constraints aren't met.

func (ClustersConfigDump_StaticClusterValidationError) Cause

Cause function returns cause value.

func (ClustersConfigDump_StaticClusterValidationError) Error

Error satisfies the builtin error interface

func (ClustersConfigDump_StaticClusterValidationError) ErrorName

ErrorName returns error name.

func (ClustersConfigDump_StaticClusterValidationError) Field

Field function returns field value.

func (ClustersConfigDump_StaticClusterValidationError) Key

Key function returns key value.

func (ClustersConfigDump_StaticClusterValidationError) Reason

Reason function returns reason value.

type ClustersValidationError

type ClustersValidationError struct {
	// contains filtered or unexported fields
}

ClustersValidationError is the validation error returned by Clusters.Validate if the designated constraints aren't met.

func (ClustersValidationError) Cause

func (e ClustersValidationError) Cause() error

Cause function returns cause value.

func (ClustersValidationError) Error

func (e ClustersValidationError) Error() string

Error satisfies the builtin error interface

func (ClustersValidationError) ErrorName

func (e ClustersValidationError) ErrorName() string

ErrorName returns error name.

func (ClustersValidationError) Field

func (e ClustersValidationError) Field() string

Field function returns field value.

func (ClustersValidationError) Key

func (e ClustersValidationError) Key() bool

Key function returns key value.

func (ClustersValidationError) Reason

func (e ClustersValidationError) Reason() string

Reason function returns reason value.

type CommandLineOptions

type CommandLineOptions struct {

	// See :option:`--base-id` for details.
	BaseId uint64 `protobuf:"varint,1,opt,name=base_id,json=baseId,proto3" json:"base_id,omitempty"`
	// See :option:`--use-dynamic-base-id` for details.
	UseDynamicBaseId bool `protobuf:"varint,31,opt,name=use_dynamic_base_id,json=useDynamicBaseId,proto3" json:"use_dynamic_base_id,omitempty"`
	// See :option:`--base-id-path` for details.
	BaseIdPath string `protobuf:"bytes,32,opt,name=base_id_path,json=baseIdPath,proto3" json:"base_id_path,omitempty"`
	// See :option:`--concurrency` for details.
	Concurrency uint32 `protobuf:"varint,2,opt,name=concurrency,proto3" json:"concurrency,omitempty"`
	// See :option:`--config-path` for details.
	ConfigPath string `protobuf:"bytes,3,opt,name=config_path,json=configPath,proto3" json:"config_path,omitempty"`
	// See :option:`--config-yaml` for details.
	ConfigYaml string `protobuf:"bytes,4,opt,name=config_yaml,json=configYaml,proto3" json:"config_yaml,omitempty"`
	// See :option:`--allow-unknown-static-fields` for details.
	AllowUnknownStaticFields bool `` /* 138-byte string literal not displayed */
	// See :option:`--reject-unknown-dynamic-fields` for details.
	RejectUnknownDynamicFields bool `` /* 145-byte string literal not displayed */
	// See :option:`--ignore-unknown-dynamic-fields` for details.
	IgnoreUnknownDynamicFields bool `` /* 145-byte string literal not displayed */
	// See :option:`--admin-address-path` for details.
	AdminAddressPath string `protobuf:"bytes,6,opt,name=admin_address_path,json=adminAddressPath,proto3" json:"admin_address_path,omitempty"`
	// See :option:`--local-address-ip-version` for details.
	LocalAddressIpVersion CommandLineOptions_IpVersion `` /* 183-byte string literal not displayed */
	// See :option:`--log-level` for details.
	LogLevel string `protobuf:"bytes,8,opt,name=log_level,json=logLevel,proto3" json:"log_level,omitempty"`
	// See :option:`--component-log-level` for details.
	ComponentLogLevel string `protobuf:"bytes,9,opt,name=component_log_level,json=componentLogLevel,proto3" json:"component_log_level,omitempty"`
	// See :option:`--log-format` for details.
	LogFormat string `protobuf:"bytes,10,opt,name=log_format,json=logFormat,proto3" json:"log_format,omitempty"`
	// See :option:`--log-format-escaped` for details.
	LogFormatEscaped bool `protobuf:"varint,27,opt,name=log_format_escaped,json=logFormatEscaped,proto3" json:"log_format_escaped,omitempty"`
	// See :option:`--log-path` for details.
	LogPath string `protobuf:"bytes,11,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
	// See :option:`--service-cluster` for details.
	ServiceCluster string `protobuf:"bytes,13,opt,name=service_cluster,json=serviceCluster,proto3" json:"service_cluster,omitempty"`
	// See :option:`--service-node` for details.
	ServiceNode string `protobuf:"bytes,14,opt,name=service_node,json=serviceNode,proto3" json:"service_node,omitempty"`
	// See :option:`--service-zone` for details.
	ServiceZone string `protobuf:"bytes,15,opt,name=service_zone,json=serviceZone,proto3" json:"service_zone,omitempty"`
	// See :option:`--file-flush-interval-msec` for details.
	FileFlushInterval *duration.Duration `protobuf:"bytes,16,opt,name=file_flush_interval,json=fileFlushInterval,proto3" json:"file_flush_interval,omitempty"`
	// See :option:`--drain-time-s` for details.
	DrainTime *duration.Duration `protobuf:"bytes,17,opt,name=drain_time,json=drainTime,proto3" json:"drain_time,omitempty"`
	// See :option:`--drain-strategy` for details.
	DrainStrategy CommandLineOptions_DrainStrategy `` /* 160-byte string literal not displayed */
	// See :option:`--parent-shutdown-time-s` for details.
	ParentShutdownTime *duration.Duration `protobuf:"bytes,18,opt,name=parent_shutdown_time,json=parentShutdownTime,proto3" json:"parent_shutdown_time,omitempty"`
	// See :option:`--mode` for details.
	Mode CommandLineOptions_Mode `protobuf:"varint,19,opt,name=mode,proto3,enum=envoy.admin.v4alpha.CommandLineOptions_Mode" json:"mode,omitempty"`
	// See :option:`--disable-hot-restart` for details.
	DisableHotRestart bool `protobuf:"varint,22,opt,name=disable_hot_restart,json=disableHotRestart,proto3" json:"disable_hot_restart,omitempty"`
	// See :option:`--enable-mutex-tracing` for details.
	EnableMutexTracing bool `protobuf:"varint,23,opt,name=enable_mutex_tracing,json=enableMutexTracing,proto3" json:"enable_mutex_tracing,omitempty"`
	// See :option:`--restart-epoch` for details.
	RestartEpoch uint32 `protobuf:"varint,24,opt,name=restart_epoch,json=restartEpoch,proto3" json:"restart_epoch,omitempty"`
	// See :option:`--cpuset-threads` for details.
	CpusetThreads bool `protobuf:"varint,25,opt,name=cpuset_threads,json=cpusetThreads,proto3" json:"cpuset_threads,omitempty"`
	// See :option:`--disable-extensions` for details.
	DisabledExtensions []string `protobuf:"bytes,28,rep,name=disabled_extensions,json=disabledExtensions,proto3" json:"disabled_extensions,omitempty"`
	// See :option:`--bootstrap-version` for details.
	BootstrapVersion uint32 `protobuf:"varint,29,opt,name=bootstrap_version,json=bootstrapVersion,proto3" json:"bootstrap_version,omitempty"`
	// See :option:`--enable-fine-grain-logging` for details.
	EnableFineGrainLogging bool `` /* 133-byte string literal not displayed */
	// See :option:`--socket-path` for details.
	SocketPath string `protobuf:"bytes,35,opt,name=socket_path,json=socketPath,proto3" json:"socket_path,omitempty"`
	// See :option:`--socket-mode` for details.
	SocketMode uint32 `protobuf:"varint,36,opt,name=socket_mode,json=socketMode,proto3" json:"socket_mode,omitempty"`
	// See :option:`--enable-core-dump` for details.
	EnableCoreDump bool `protobuf:"varint,37,opt,name=enable_core_dump,json=enableCoreDump,proto3" json:"enable_core_dump,omitempty"`
	// contains filtered or unexported fields
}

[#next-free-field: 38]

func (*CommandLineOptions) Descriptor deprecated

func (*CommandLineOptions) Descriptor() ([]byte, []int)

Deprecated: Use CommandLineOptions.ProtoReflect.Descriptor instead.

func (*CommandLineOptions) GetAdminAddressPath

func (x *CommandLineOptions) GetAdminAddressPath() string

func (*CommandLineOptions) GetAllowUnknownStaticFields

func (x *CommandLineOptions) GetAllowUnknownStaticFields() bool

func (*CommandLineOptions) GetBaseId

func (x *CommandLineOptions) GetBaseId() uint64

func (*CommandLineOptions) GetBaseIdPath

func (x *CommandLineOptions) GetBaseIdPath() string

func (*CommandLineOptions) GetBootstrapVersion

func (x *CommandLineOptions) GetBootstrapVersion() uint32

func (*CommandLineOptions) GetComponentLogLevel

func (x *CommandLineOptions) GetComponentLogLevel() string

func (*CommandLineOptions) GetConcurrency

func (x *CommandLineOptions) GetConcurrency() uint32

func (*CommandLineOptions) GetConfigPath

func (x *CommandLineOptions) GetConfigPath() string

func (*CommandLineOptions) GetConfigYaml

func (x *CommandLineOptions) GetConfigYaml() string

func (*CommandLineOptions) GetCpusetThreads

func (x *CommandLineOptions) GetCpusetThreads() bool

func (*CommandLineOptions) GetDisableHotRestart

func (x *CommandLineOptions) GetDisableHotRestart() bool

func (*CommandLineOptions) GetDisabledExtensions

func (x *CommandLineOptions) GetDisabledExtensions() []string

func (*CommandLineOptions) GetDrainStrategy

func (*CommandLineOptions) GetDrainTime

func (x *CommandLineOptions) GetDrainTime() *duration.Duration

func (*CommandLineOptions) GetEnableCoreDump added in v0.9.9

func (x *CommandLineOptions) GetEnableCoreDump() bool

func (*CommandLineOptions) GetEnableFineGrainLogging added in v0.9.7

func (x *CommandLineOptions) GetEnableFineGrainLogging() bool

func (*CommandLineOptions) GetEnableMutexTracing

func (x *CommandLineOptions) GetEnableMutexTracing() bool

func (*CommandLineOptions) GetFileFlushInterval

func (x *CommandLineOptions) GetFileFlushInterval() *duration.Duration

func (*CommandLineOptions) GetIgnoreUnknownDynamicFields

func (x *CommandLineOptions) GetIgnoreUnknownDynamicFields() bool

func (*CommandLineOptions) GetLocalAddressIpVersion

func (x *CommandLineOptions) GetLocalAddressIpVersion() CommandLineOptions_IpVersion

func (*CommandLineOptions) GetLogFormat

func (x *CommandLineOptions) GetLogFormat() string

func (*CommandLineOptions) GetLogFormatEscaped

func (x *CommandLineOptions) GetLogFormatEscaped() bool

func (*CommandLineOptions) GetLogLevel

func (x *CommandLineOptions) GetLogLevel() string

func (*CommandLineOptions) GetLogPath

func (x *CommandLineOptions) GetLogPath() string

func (*CommandLineOptions) GetMode

func (*CommandLineOptions) GetParentShutdownTime

func (x *CommandLineOptions) GetParentShutdownTime() *duration.Duration

func (*CommandLineOptions) GetRejectUnknownDynamicFields

func (x *CommandLineOptions) GetRejectUnknownDynamicFields() bool

func (*CommandLineOptions) GetRestartEpoch

func (x *CommandLineOptions) GetRestartEpoch() uint32

func (*CommandLineOptions) GetServiceCluster

func (x *CommandLineOptions) GetServiceCluster() string

func (*CommandLineOptions) GetServiceNode

func (x *CommandLineOptions) GetServiceNode() string

func (*CommandLineOptions) GetServiceZone

func (x *CommandLineOptions) GetServiceZone() string

func (*CommandLineOptions) GetSocketMode added in v0.9.7

func (x *CommandLineOptions) GetSocketMode() uint32

func (*CommandLineOptions) GetSocketPath added in v0.9.7

func (x *CommandLineOptions) GetSocketPath() string

func (*CommandLineOptions) GetUseDynamicBaseId

func (x *CommandLineOptions) GetUseDynamicBaseId() bool

func (*CommandLineOptions) ProtoMessage

func (*CommandLineOptions) ProtoMessage()

func (*CommandLineOptions) ProtoReflect

func (x *CommandLineOptions) ProtoReflect() protoreflect.Message

func (*CommandLineOptions) Reset

func (x *CommandLineOptions) Reset()

func (*CommandLineOptions) String

func (x *CommandLineOptions) String() string

func (*CommandLineOptions) Validate

func (m *CommandLineOptions) Validate() error

Validate checks the field values on CommandLineOptions with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CommandLineOptionsValidationError

type CommandLineOptionsValidationError struct {
	// contains filtered or unexported fields
}

CommandLineOptionsValidationError is the validation error returned by CommandLineOptions.Validate if the designated constraints aren't met.

func (CommandLineOptionsValidationError) Cause

Cause function returns cause value.

func (CommandLineOptionsValidationError) Error

Error satisfies the builtin error interface

func (CommandLineOptionsValidationError) ErrorName

ErrorName returns error name.

func (CommandLineOptionsValidationError) Field

Field function returns field value.

func (CommandLineOptionsValidationError) Key

Key function returns key value.

func (CommandLineOptionsValidationError) Reason

Reason function returns reason value.

type CommandLineOptions_DrainStrategy

type CommandLineOptions_DrainStrategy int32
const (
	// Gradually discourage connections over the course of the drain period.
	CommandLineOptions_Gradual CommandLineOptions_DrainStrategy = 0
	// Discourage all connections for the duration of the drain sequence.
	CommandLineOptions_Immediate CommandLineOptions_DrainStrategy = 1
)

func (CommandLineOptions_DrainStrategy) Descriptor

func (CommandLineOptions_DrainStrategy) Enum

func (CommandLineOptions_DrainStrategy) EnumDescriptor deprecated

func (CommandLineOptions_DrainStrategy) EnumDescriptor() ([]byte, []int)

Deprecated: Use CommandLineOptions_DrainStrategy.Descriptor instead.

func (CommandLineOptions_DrainStrategy) Number

func (CommandLineOptions_DrainStrategy) String

func (CommandLineOptions_DrainStrategy) Type

type CommandLineOptions_IpVersion

type CommandLineOptions_IpVersion int32
const (
	CommandLineOptions_v4 CommandLineOptions_IpVersion = 0
	CommandLineOptions_v6 CommandLineOptions_IpVersion = 1
)

func (CommandLineOptions_IpVersion) Descriptor

func (CommandLineOptions_IpVersion) Enum

func (CommandLineOptions_IpVersion) EnumDescriptor deprecated

func (CommandLineOptions_IpVersion) EnumDescriptor() ([]byte, []int)

Deprecated: Use CommandLineOptions_IpVersion.Descriptor instead.

func (CommandLineOptions_IpVersion) Number

func (CommandLineOptions_IpVersion) String

func (CommandLineOptions_IpVersion) Type

type CommandLineOptions_Mode

type CommandLineOptions_Mode int32
const (
	// Validate configs and then serve traffic normally.
	CommandLineOptions_Serve CommandLineOptions_Mode = 0
	// Validate configs and exit.
	CommandLineOptions_Validate CommandLineOptions_Mode = 1
	// Completely load and initialize the config, and then exit without running the listener loop.
	CommandLineOptions_InitOnly CommandLineOptions_Mode = 2
)

func (CommandLineOptions_Mode) Descriptor

func (CommandLineOptions_Mode) Enum

func (CommandLineOptions_Mode) EnumDescriptor deprecated

func (CommandLineOptions_Mode) EnumDescriptor() ([]byte, []int)

Deprecated: Use CommandLineOptions_Mode.Descriptor instead.

func (CommandLineOptions_Mode) Number

func (CommandLineOptions_Mode) String

func (x CommandLineOptions_Mode) String() string

func (CommandLineOptions_Mode) Type

type ConfigDump

type ConfigDump struct {

	// This list is serialized and dumped in its entirety at the
	// :ref:`/config_dump <operations_admin_interface_config_dump>` endpoint.
	//
	// The following configurations are currently supported and will be dumped in the order given
	// below:
	//
	// * *bootstrap*: :ref:`BootstrapConfigDump <envoy_v3_api_msg_admin.v3.BootstrapConfigDump>`
	// * *clusters*: :ref:`ClustersConfigDump <envoy_v3_api_msg_admin.v3.ClustersConfigDump>`
	// * *endpoints*:  :ref:`EndpointsConfigDump <envoy_v3_api_msg_admin.v3.EndpointsConfigDump>`
	// * *listeners*: :ref:`ListenersConfigDump <envoy_v3_api_msg_admin.v3.ListenersConfigDump>`
	// * *scoped_routes*: :ref:`ScopedRoutesConfigDump <envoy_v3_api_msg_admin.v3.ScopedRoutesConfigDump>`
	// * *routes*:  :ref:`RoutesConfigDump <envoy_v3_api_msg_admin.v3.RoutesConfigDump>`
	// * *secrets*:  :ref:`SecretsConfigDump <envoy_v3_api_msg_admin.v3.SecretsConfigDump>`
	//
	// EDS Configuration will only be dumped by using parameter `?include_eds`
	//
	// You can filter output with the resource and mask query parameters.
	// See :ref:`/config_dump?resource={} <operations_admin_interface_config_dump_by_resource>`,
	// :ref:`/config_dump?mask={} <operations_admin_interface_config_dump_by_mask>`,
	// or :ref:`/config_dump?resource={},mask={}
	// <operations_admin_interface_config_dump_by_resource_and_mask>` for more information.
	Configs []*any.Any `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"`
	// contains filtered or unexported fields
}

The :ref:`/config_dump <operations_admin_interface_config_dump>` admin endpoint uses this wrapper message to maintain and serve arbitrary configuration information from any component in Envoy.

func (*ConfigDump) Descriptor deprecated

func (*ConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use ConfigDump.ProtoReflect.Descriptor instead.

func (*ConfigDump) GetConfigs

func (x *ConfigDump) GetConfigs() []*any.Any

func (*ConfigDump) ProtoMessage

func (*ConfigDump) ProtoMessage()

func (*ConfigDump) ProtoReflect

func (x *ConfigDump) ProtoReflect() protoreflect.Message

func (*ConfigDump) Reset

func (x *ConfigDump) Reset()

func (*ConfigDump) String

func (x *ConfigDump) String() string

func (*ConfigDump) Validate

func (m *ConfigDump) Validate() error

Validate checks the field values on ConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ConfigDumpValidationError

type ConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

ConfigDumpValidationError is the validation error returned by ConfigDump.Validate if the designated constraints aren't met.

func (ConfigDumpValidationError) Cause

func (e ConfigDumpValidationError) Cause() error

Cause function returns cause value.

func (ConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (ConfigDumpValidationError) ErrorName

func (e ConfigDumpValidationError) ErrorName() string

ErrorName returns error name.

func (ConfigDumpValidationError) Field

Field function returns field value.

func (ConfigDumpValidationError) Key

Key function returns key value.

func (ConfigDumpValidationError) Reason

func (e ConfigDumpValidationError) Reason() string

Reason function returns reason value.

type EndpointsConfigDump

type EndpointsConfigDump struct {

	// The statically loaded endpoint configs.
	StaticEndpointConfigs []*EndpointsConfigDump_StaticEndpointConfig `` /* 126-byte string literal not displayed */
	// The dynamically loaded endpoint configs.
	DynamicEndpointConfigs []*EndpointsConfigDump_DynamicEndpointConfig `` /* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

Envoy's admin fill this message with all currently known endpoints. Endpoint configuration information can be used to recreate an Envoy configuration by populating all endpoints as static endpoints or by returning them in an EDS response.

func (*EndpointsConfigDump) Descriptor deprecated

func (*EndpointsConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use EndpointsConfigDump.ProtoReflect.Descriptor instead.

func (*EndpointsConfigDump) GetDynamicEndpointConfigs

func (x *EndpointsConfigDump) GetDynamicEndpointConfigs() []*EndpointsConfigDump_DynamicEndpointConfig

func (*EndpointsConfigDump) GetStaticEndpointConfigs

func (x *EndpointsConfigDump) GetStaticEndpointConfigs() []*EndpointsConfigDump_StaticEndpointConfig

func (*EndpointsConfigDump) ProtoMessage

func (*EndpointsConfigDump) ProtoMessage()

func (*EndpointsConfigDump) ProtoReflect

func (x *EndpointsConfigDump) ProtoReflect() protoreflect.Message

func (*EndpointsConfigDump) Reset

func (x *EndpointsConfigDump) Reset()

func (*EndpointsConfigDump) String

func (x *EndpointsConfigDump) String() string

func (*EndpointsConfigDump) Validate

func (m *EndpointsConfigDump) Validate() error

Validate checks the field values on EndpointsConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type EndpointsConfigDumpValidationError

type EndpointsConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

EndpointsConfigDumpValidationError is the validation error returned by EndpointsConfigDump.Validate if the designated constraints aren't met.

func (EndpointsConfigDumpValidationError) Cause

Cause function returns cause value.

func (EndpointsConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (EndpointsConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (EndpointsConfigDumpValidationError) Field

Field function returns field value.

func (EndpointsConfigDumpValidationError) Key

Key function returns key value.

func (EndpointsConfigDumpValidationError) Reason

Reason function returns reason value.

type EndpointsConfigDump_DynamicEndpointConfig

type EndpointsConfigDump_DynamicEndpointConfig struct {

	// [#not-implemented-hide:] This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` field at the time that
	// the endpoint configuration was loaded.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The endpoint config.
	EndpointConfig *any.Any `protobuf:"bytes,2,opt,name=endpoint_config,json=endpointConfig,proto3" json:"endpoint_config,omitempty"`
	// [#not-implemented-hide:] The timestamp when the Endpoint was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// Set if the last update failed, cleared after the next successful update.
	// The *error_state* field contains the rejected version of this particular
	// resource along with the reason and timestamp. For successfully updated or
	// acknowledged resource, this field should be empty.
	// [#not-implemented-hide:]
	ErrorState *UpdateFailureState `protobuf:"bytes,4,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
	// The client status of this resource.
	// [#not-implemented-hide:]
	ClientStatus ClientResourceStatus `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

[#next-free-field: 6]

func (*EndpointsConfigDump_DynamicEndpointConfig) Descriptor deprecated

func (*EndpointsConfigDump_DynamicEndpointConfig) Descriptor() ([]byte, []int)

Deprecated: Use EndpointsConfigDump_DynamicEndpointConfig.ProtoReflect.Descriptor instead.

func (*EndpointsConfigDump_DynamicEndpointConfig) GetClientStatus added in v0.9.9

func (*EndpointsConfigDump_DynamicEndpointConfig) GetEndpointConfig

func (x *EndpointsConfigDump_DynamicEndpointConfig) GetEndpointConfig() *any.Any

func (*EndpointsConfigDump_DynamicEndpointConfig) GetErrorState added in v0.9.9

func (*EndpointsConfigDump_DynamicEndpointConfig) GetLastUpdated

func (*EndpointsConfigDump_DynamicEndpointConfig) GetVersionInfo

func (*EndpointsConfigDump_DynamicEndpointConfig) ProtoMessage

func (*EndpointsConfigDump_DynamicEndpointConfig) ProtoReflect

func (*EndpointsConfigDump_DynamicEndpointConfig) Reset

func (*EndpointsConfigDump_DynamicEndpointConfig) String

func (*EndpointsConfigDump_DynamicEndpointConfig) Validate

Validate checks the field values on EndpointsConfigDump_DynamicEndpointConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type EndpointsConfigDump_DynamicEndpointConfigValidationError

type EndpointsConfigDump_DynamicEndpointConfigValidationError struct {
	// contains filtered or unexported fields
}

EndpointsConfigDump_DynamicEndpointConfigValidationError is the validation error returned by EndpointsConfigDump_DynamicEndpointConfig.Validate if the designated constraints aren't met.

func (EndpointsConfigDump_DynamicEndpointConfigValidationError) Cause

Cause function returns cause value.

func (EndpointsConfigDump_DynamicEndpointConfigValidationError) Error

Error satisfies the builtin error interface

func (EndpointsConfigDump_DynamicEndpointConfigValidationError) ErrorName

ErrorName returns error name.

func (EndpointsConfigDump_DynamicEndpointConfigValidationError) Field

Field function returns field value.

func (EndpointsConfigDump_DynamicEndpointConfigValidationError) Key

Key function returns key value.

func (EndpointsConfigDump_DynamicEndpointConfigValidationError) Reason

Reason function returns reason value.

type EndpointsConfigDump_StaticEndpointConfig

type EndpointsConfigDump_StaticEndpointConfig struct {

	// The endpoint config.
	EndpointConfig *any.Any `protobuf:"bytes,1,opt,name=endpoint_config,json=endpointConfig,proto3" json:"endpoint_config,omitempty"`
	// [#not-implemented-hide:] The timestamp when the Endpoint was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*EndpointsConfigDump_StaticEndpointConfig) Descriptor deprecated

func (*EndpointsConfigDump_StaticEndpointConfig) Descriptor() ([]byte, []int)

Deprecated: Use EndpointsConfigDump_StaticEndpointConfig.ProtoReflect.Descriptor instead.

func (*EndpointsConfigDump_StaticEndpointConfig) GetEndpointConfig

func (x *EndpointsConfigDump_StaticEndpointConfig) GetEndpointConfig() *any.Any

func (*EndpointsConfigDump_StaticEndpointConfig) GetLastUpdated

func (*EndpointsConfigDump_StaticEndpointConfig) ProtoMessage

func (*EndpointsConfigDump_StaticEndpointConfig) ProtoReflect

func (*EndpointsConfigDump_StaticEndpointConfig) Reset

func (*EndpointsConfigDump_StaticEndpointConfig) String

func (*EndpointsConfigDump_StaticEndpointConfig) Validate

Validate checks the field values on EndpointsConfigDump_StaticEndpointConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type EndpointsConfigDump_StaticEndpointConfigValidationError

type EndpointsConfigDump_StaticEndpointConfigValidationError struct {
	// contains filtered or unexported fields
}

EndpointsConfigDump_StaticEndpointConfigValidationError is the validation error returned by EndpointsConfigDump_StaticEndpointConfig.Validate if the designated constraints aren't met.

func (EndpointsConfigDump_StaticEndpointConfigValidationError) Cause

Cause function returns cause value.

func (EndpointsConfigDump_StaticEndpointConfigValidationError) Error

Error satisfies the builtin error interface

func (EndpointsConfigDump_StaticEndpointConfigValidationError) ErrorName

ErrorName returns error name.

func (EndpointsConfigDump_StaticEndpointConfigValidationError) Field

Field function returns field value.

func (EndpointsConfigDump_StaticEndpointConfigValidationError) Key

Key function returns key value.

func (EndpointsConfigDump_StaticEndpointConfigValidationError) Reason

Reason function returns reason value.

type HostHealthStatus

type HostHealthStatus struct {

	// The host is currently failing active health checks.
	FailedActiveHealthCheck bool `` /* 135-byte string literal not displayed */
	// The host is currently considered an outlier and has been ejected.
	FailedOutlierCheck bool `protobuf:"varint,2,opt,name=failed_outlier_check,json=failedOutlierCheck,proto3" json:"failed_outlier_check,omitempty"`
	// The host is currently being marked as degraded through active health checking.
	FailedActiveDegradedCheck bool `` /* 141-byte string literal not displayed */
	// The host has been removed from service discovery, but is being stabilized due to active
	// health checking.
	PendingDynamicRemoval bool `` /* 127-byte string literal not displayed */
	// The host has not yet been health checked.
	PendingActiveHc bool `protobuf:"varint,6,opt,name=pending_active_hc,json=pendingActiveHc,proto3" json:"pending_active_hc,omitempty"`
	// The host should be excluded from panic, spillover, etc. calculations because it was explicitly
	// taken out of rotation via protocol signal and is not meant to be routed to.
	ExcludedViaImmediateHcFail bool `` /* 146-byte string literal not displayed */
	// The host failed active HC due to timeout.
	ActiveHcTimeout bool `protobuf:"varint,8,opt,name=active_hc_timeout,json=activeHcTimeout,proto3" json:"active_hc_timeout,omitempty"`
	// Health status as reported by EDS. Note: only HEALTHY and UNHEALTHY are currently supported
	// here.
	// [#comment:TODO(mrice32): pipe through remaining EDS health status possibilities.]
	EdsHealthStatus v4alpha1.HealthStatus `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

Health status for a host. [#next-free-field: 9]

func (*HostHealthStatus) Descriptor deprecated

func (*HostHealthStatus) Descriptor() ([]byte, []int)

Deprecated: Use HostHealthStatus.ProtoReflect.Descriptor instead.

func (*HostHealthStatus) GetActiveHcTimeout added in v0.9.9

func (x *HostHealthStatus) GetActiveHcTimeout() bool

func (*HostHealthStatus) GetEdsHealthStatus

func (x *HostHealthStatus) GetEdsHealthStatus() v4alpha1.HealthStatus

func (*HostHealthStatus) GetExcludedViaImmediateHcFail added in v0.9.9

func (x *HostHealthStatus) GetExcludedViaImmediateHcFail() bool

func (*HostHealthStatus) GetFailedActiveDegradedCheck

func (x *HostHealthStatus) GetFailedActiveDegradedCheck() bool

func (*HostHealthStatus) GetFailedActiveHealthCheck

func (x *HostHealthStatus) GetFailedActiveHealthCheck() bool

func (*HostHealthStatus) GetFailedOutlierCheck

func (x *HostHealthStatus) GetFailedOutlierCheck() bool

func (*HostHealthStatus) GetPendingActiveHc

func (x *HostHealthStatus) GetPendingActiveHc() bool

func (*HostHealthStatus) GetPendingDynamicRemoval

func (x *HostHealthStatus) GetPendingDynamicRemoval() bool

func (*HostHealthStatus) ProtoMessage

func (*HostHealthStatus) ProtoMessage()

func (*HostHealthStatus) ProtoReflect

func (x *HostHealthStatus) ProtoReflect() protoreflect.Message

func (*HostHealthStatus) Reset

func (x *HostHealthStatus) Reset()

func (*HostHealthStatus) String

func (x *HostHealthStatus) String() string

func (*HostHealthStatus) Validate

func (m *HostHealthStatus) Validate() error

Validate checks the field values on HostHealthStatus with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type HostHealthStatusValidationError

type HostHealthStatusValidationError struct {
	// contains filtered or unexported fields
}

HostHealthStatusValidationError is the validation error returned by HostHealthStatus.Validate if the designated constraints aren't met.

func (HostHealthStatusValidationError) Cause

Cause function returns cause value.

func (HostHealthStatusValidationError) Error

Error satisfies the builtin error interface

func (HostHealthStatusValidationError) ErrorName

ErrorName returns error name.

func (HostHealthStatusValidationError) Field

Field function returns field value.

func (HostHealthStatusValidationError) Key

Key function returns key value.

func (HostHealthStatusValidationError) Reason

Reason function returns reason value.

type HostStatus

type HostStatus struct {

	// Address of this host.
	Address *v4alpha1.Address `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// List of stats specific to this host.
	Stats []*SimpleMetric `protobuf:"bytes,2,rep,name=stats,proto3" json:"stats,omitempty"`
	// The host's current health status.
	HealthStatus *HostHealthStatus `protobuf:"bytes,3,opt,name=health_status,json=healthStatus,proto3" json:"health_status,omitempty"`
	// Request success rate for this host over the last calculated interval.
	// If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
	// is *false*, all errors: externally and locally generated were used in success rate
	// calculation. If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
	// is *true*, only externally generated errors were used in success rate calculation.
	// See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
	// details.
	//
	// Note: the message will not be present if host did not have enough request volume to calculate
	// success rate or the cluster did not have enough hosts to run through success rate outlier
	// ejection.
	SuccessRate *v3.Percent `protobuf:"bytes,4,opt,name=success_rate,json=successRate,proto3" json:"success_rate,omitempty"`
	// The host's weight. If not configured, the value defaults to 1.
	Weight uint32 `protobuf:"varint,5,opt,name=weight,proto3" json:"weight,omitempty"`
	// The hostname of the host, if applicable.
	Hostname string `protobuf:"bytes,6,opt,name=hostname,proto3" json:"hostname,omitempty"`
	// The host's priority. If not configured, the value defaults to 0 (highest priority).
	Priority uint32 `protobuf:"varint,7,opt,name=priority,proto3" json:"priority,omitempty"`
	// Request success rate for this host over the last calculated
	// interval when only locally originated errors are taken into account and externally originated
	// errors were treated as success.
	// This field should be interpreted only when
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
	// is *true*.
	// See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
	// details.
	//
	// Note: the message will not be present if host did not have enough request volume to calculate
	// success rate or the cluster did not have enough hosts to run through success rate outlier
	// ejection.
	LocalOriginSuccessRate *v3.Percent `` /* 131-byte string literal not displayed */
	// locality of the host.
	Locality *v4alpha1.Locality `protobuf:"bytes,9,opt,name=locality,proto3" json:"locality,omitempty"`
	// contains filtered or unexported fields
}

Current state of a particular host. [#next-free-field: 10]

func (*HostStatus) Descriptor deprecated

func (*HostStatus) Descriptor() ([]byte, []int)

Deprecated: Use HostStatus.ProtoReflect.Descriptor instead.

func (*HostStatus) GetAddress

func (x *HostStatus) GetAddress() *v4alpha1.Address

func (*HostStatus) GetHealthStatus

func (x *HostStatus) GetHealthStatus() *HostHealthStatus

func (*HostStatus) GetHostname

func (x *HostStatus) GetHostname() string

func (*HostStatus) GetLocalOriginSuccessRate

func (x *HostStatus) GetLocalOriginSuccessRate() *v3.Percent

func (*HostStatus) GetLocality

func (x *HostStatus) GetLocality() *v4alpha1.Locality

func (*HostStatus) GetPriority

func (x *HostStatus) GetPriority() uint32

func (*HostStatus) GetStats

func (x *HostStatus) GetStats() []*SimpleMetric

func (*HostStatus) GetSuccessRate

func (x *HostStatus) GetSuccessRate() *v3.Percent

func (*HostStatus) GetWeight

func (x *HostStatus) GetWeight() uint32

func (*HostStatus) ProtoMessage

func (*HostStatus) ProtoMessage()

func (*HostStatus) ProtoReflect

func (x *HostStatus) ProtoReflect() protoreflect.Message

func (*HostStatus) Reset

func (x *HostStatus) Reset()

func (*HostStatus) String

func (x *HostStatus) String() string

func (*HostStatus) Validate

func (m *HostStatus) Validate() error

Validate checks the field values on HostStatus with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type HostStatusValidationError

type HostStatusValidationError struct {
	// contains filtered or unexported fields
}

HostStatusValidationError is the validation error returned by HostStatus.Validate if the designated constraints aren't met.

func (HostStatusValidationError) Cause

func (e HostStatusValidationError) Cause() error

Cause function returns cause value.

func (HostStatusValidationError) Error

Error satisfies the builtin error interface

func (HostStatusValidationError) ErrorName

func (e HostStatusValidationError) ErrorName() string

ErrorName returns error name.

func (HostStatusValidationError) Field

Field function returns field value.

func (HostStatusValidationError) Key

Key function returns key value.

func (HostStatusValidationError) Reason

func (e HostStatusValidationError) Reason() string

Reason function returns reason value.

type ListenerStatus

type ListenerStatus struct {

	// Name of the listener
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The actual local address that the listener is listening on. If a listener was configured
	// to listen on port 0, then this address has the port that was allocated by the OS.
	LocalAddress *v4alpha.Address `protobuf:"bytes,2,opt,name=local_address,json=localAddress,proto3" json:"local_address,omitempty"`
	// contains filtered or unexported fields
}

Details an individual listener's current status.

func (*ListenerStatus) Descriptor deprecated

func (*ListenerStatus) Descriptor() ([]byte, []int)

Deprecated: Use ListenerStatus.ProtoReflect.Descriptor instead.

func (*ListenerStatus) GetLocalAddress

func (x *ListenerStatus) GetLocalAddress() *v4alpha.Address

func (*ListenerStatus) GetName

func (x *ListenerStatus) GetName() string

func (*ListenerStatus) ProtoMessage

func (*ListenerStatus) ProtoMessage()

func (*ListenerStatus) ProtoReflect

func (x *ListenerStatus) ProtoReflect() protoreflect.Message

func (*ListenerStatus) Reset

func (x *ListenerStatus) Reset()

func (*ListenerStatus) String

func (x *ListenerStatus) String() string

func (*ListenerStatus) Validate

func (m *ListenerStatus) Validate() error

Validate checks the field values on ListenerStatus with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenerStatusValidationError

type ListenerStatusValidationError struct {
	// contains filtered or unexported fields
}

ListenerStatusValidationError is the validation error returned by ListenerStatus.Validate if the designated constraints aren't met.

func (ListenerStatusValidationError) Cause

Cause function returns cause value.

func (ListenerStatusValidationError) Error

Error satisfies the builtin error interface

func (ListenerStatusValidationError) ErrorName

func (e ListenerStatusValidationError) ErrorName() string

ErrorName returns error name.

func (ListenerStatusValidationError) Field

Field function returns field value.

func (ListenerStatusValidationError) Key

Key function returns key value.

func (ListenerStatusValidationError) Reason

Reason function returns reason value.

type Listeners

type Listeners struct {

	// List of listener statuses.
	ListenerStatuses []*ListenerStatus `protobuf:"bytes,1,rep,name=listener_statuses,json=listenerStatuses,proto3" json:"listener_statuses,omitempty"`
	// contains filtered or unexported fields
}

Admin endpoint uses this wrapper for `/listeners` to display listener status information. See :ref:`/listeners <operations_admin_interface_listeners>` for more information.

func (*Listeners) Descriptor deprecated

func (*Listeners) Descriptor() ([]byte, []int)

Deprecated: Use Listeners.ProtoReflect.Descriptor instead.

func (*Listeners) GetListenerStatuses

func (x *Listeners) GetListenerStatuses() []*ListenerStatus

func (*Listeners) ProtoMessage

func (*Listeners) ProtoMessage()

func (*Listeners) ProtoReflect

func (x *Listeners) ProtoReflect() protoreflect.Message

func (*Listeners) Reset

func (x *Listeners) Reset()

func (*Listeners) String

func (x *Listeners) String() string

func (*Listeners) Validate

func (m *Listeners) Validate() error

Validate checks the field values on Listeners with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenersConfigDump

type ListenersConfigDump struct {

	// This is the :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` in the
	// last processed LDS discovery response. If there are only static bootstrap listeners, this field
	// will be "".
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The statically loaded listener configs.
	StaticListeners []*ListenersConfigDump_StaticListener `protobuf:"bytes,2,rep,name=static_listeners,json=staticListeners,proto3" json:"static_listeners,omitempty"`
	// State for any warming, active, or draining listeners.
	DynamicListeners []*ListenersConfigDump_DynamicListener `protobuf:"bytes,3,rep,name=dynamic_listeners,json=dynamicListeners,proto3" json:"dynamic_listeners,omitempty"`
	// contains filtered or unexported fields
}

Envoy's listener manager fills this message with all currently known listeners. Listener configuration information can be used to recreate an Envoy configuration by populating all listeners as static listeners or by returning them in a LDS response.

func (*ListenersConfigDump) Descriptor deprecated

func (*ListenersConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use ListenersConfigDump.ProtoReflect.Descriptor instead.

func (*ListenersConfigDump) GetDynamicListeners

func (x *ListenersConfigDump) GetDynamicListeners() []*ListenersConfigDump_DynamicListener

func (*ListenersConfigDump) GetStaticListeners

func (x *ListenersConfigDump) GetStaticListeners() []*ListenersConfigDump_StaticListener

func (*ListenersConfigDump) GetVersionInfo

func (x *ListenersConfigDump) GetVersionInfo() string

func (*ListenersConfigDump) ProtoMessage

func (*ListenersConfigDump) ProtoMessage()

func (*ListenersConfigDump) ProtoReflect

func (x *ListenersConfigDump) ProtoReflect() protoreflect.Message

func (*ListenersConfigDump) Reset

func (x *ListenersConfigDump) Reset()

func (*ListenersConfigDump) String

func (x *ListenersConfigDump) String() string

func (*ListenersConfigDump) Validate

func (m *ListenersConfigDump) Validate() error

Validate checks the field values on ListenersConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenersConfigDumpValidationError

type ListenersConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

ListenersConfigDumpValidationError is the validation error returned by ListenersConfigDump.Validate if the designated constraints aren't met.

func (ListenersConfigDumpValidationError) Cause

Cause function returns cause value.

func (ListenersConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (ListenersConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (ListenersConfigDumpValidationError) Field

Field function returns field value.

func (ListenersConfigDumpValidationError) Key

Key function returns key value.

func (ListenersConfigDumpValidationError) Reason

Reason function returns reason value.

type ListenersConfigDump_DynamicListener

type ListenersConfigDump_DynamicListener struct {

	// The name or unique id of this listener, pulled from the DynamicListenerState config.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The listener state for any active listener by this name.
	// These are listeners that are available to service data plane traffic.
	ActiveState *ListenersConfigDump_DynamicListenerState `protobuf:"bytes,2,opt,name=active_state,json=activeState,proto3" json:"active_state,omitempty"`
	// The listener state for any warming listener by this name.
	// These are listeners that are currently undergoing warming in preparation to service data
	// plane traffic. Note that if attempting to recreate an Envoy configuration from a
	// configuration dump, the warming listeners should generally be discarded.
	WarmingState *ListenersConfigDump_DynamicListenerState `protobuf:"bytes,3,opt,name=warming_state,json=warmingState,proto3" json:"warming_state,omitempty"`
	// The listener state for any draining listener by this name.
	// These are listeners that are currently undergoing draining in preparation to stop servicing
	// data plane traffic. Note that if attempting to recreate an Envoy configuration from a
	// configuration dump, the draining listeners should generally be discarded.
	DrainingState *ListenersConfigDump_DynamicListenerState `protobuf:"bytes,4,opt,name=draining_state,json=drainingState,proto3" json:"draining_state,omitempty"`
	// Set if the last update failed, cleared after the next successful update.
	// The *error_state* field contains the rejected version of this particular
	// resource along with the reason and timestamp. For successfully updated or
	// acknowledged resource, this field should be empty.
	ErrorState *UpdateFailureState `protobuf:"bytes,5,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
	// The client status of this resource.
	// [#not-implemented-hide:]
	ClientStatus ClientResourceStatus `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

Describes a dynamically loaded listener via the LDS API. [#next-free-field: 7]

func (*ListenersConfigDump_DynamicListener) Descriptor deprecated

func (*ListenersConfigDump_DynamicListener) Descriptor() ([]byte, []int)

Deprecated: Use ListenersConfigDump_DynamicListener.ProtoReflect.Descriptor instead.

func (*ListenersConfigDump_DynamicListener) GetActiveState

func (*ListenersConfigDump_DynamicListener) GetClientStatus added in v0.9.9

func (*ListenersConfigDump_DynamicListener) GetDrainingState

func (*ListenersConfigDump_DynamicListener) GetErrorState

func (*ListenersConfigDump_DynamicListener) GetName

func (*ListenersConfigDump_DynamicListener) GetWarmingState

func (*ListenersConfigDump_DynamicListener) ProtoMessage

func (*ListenersConfigDump_DynamicListener) ProtoMessage()

func (*ListenersConfigDump_DynamicListener) ProtoReflect

func (*ListenersConfigDump_DynamicListener) Reset

func (*ListenersConfigDump_DynamicListener) String

func (*ListenersConfigDump_DynamicListener) Validate

Validate checks the field values on ListenersConfigDump_DynamicListener with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenersConfigDump_DynamicListenerState

type ListenersConfigDump_DynamicListenerState struct {

	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` field at the time
	// that the listener was loaded. In the future, discrete per-listener versions may be supported
	// by the API.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The listener config.
	Listener *any.Any `protobuf:"bytes,2,opt,name=listener,proto3" json:"listener,omitempty"`
	// The timestamp when the Listener was last successfully updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*ListenersConfigDump_DynamicListenerState) Descriptor deprecated

func (*ListenersConfigDump_DynamicListenerState) Descriptor() ([]byte, []int)

Deprecated: Use ListenersConfigDump_DynamicListenerState.ProtoReflect.Descriptor instead.

func (*ListenersConfigDump_DynamicListenerState) GetLastUpdated

func (*ListenersConfigDump_DynamicListenerState) GetListener

func (*ListenersConfigDump_DynamicListenerState) GetVersionInfo

func (*ListenersConfigDump_DynamicListenerState) ProtoMessage

func (*ListenersConfigDump_DynamicListenerState) ProtoReflect

func (*ListenersConfigDump_DynamicListenerState) Reset

func (*ListenersConfigDump_DynamicListenerState) String

func (*ListenersConfigDump_DynamicListenerState) Validate

Validate checks the field values on ListenersConfigDump_DynamicListenerState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenersConfigDump_DynamicListenerStateValidationError

type ListenersConfigDump_DynamicListenerStateValidationError struct {
	// contains filtered or unexported fields
}

ListenersConfigDump_DynamicListenerStateValidationError is the validation error returned by ListenersConfigDump_DynamicListenerState.Validate if the designated constraints aren't met.

func (ListenersConfigDump_DynamicListenerStateValidationError) Cause

Cause function returns cause value.

func (ListenersConfigDump_DynamicListenerStateValidationError) Error

Error satisfies the builtin error interface

func (ListenersConfigDump_DynamicListenerStateValidationError) ErrorName

ErrorName returns error name.

func (ListenersConfigDump_DynamicListenerStateValidationError) Field

Field function returns field value.

func (ListenersConfigDump_DynamicListenerStateValidationError) Key

Key function returns key value.

func (ListenersConfigDump_DynamicListenerStateValidationError) Reason

Reason function returns reason value.

type ListenersConfigDump_DynamicListenerValidationError

type ListenersConfigDump_DynamicListenerValidationError struct {
	// contains filtered or unexported fields
}

ListenersConfigDump_DynamicListenerValidationError is the validation error returned by ListenersConfigDump_DynamicListener.Validate if the designated constraints aren't met.

func (ListenersConfigDump_DynamicListenerValidationError) Cause

Cause function returns cause value.

func (ListenersConfigDump_DynamicListenerValidationError) Error

Error satisfies the builtin error interface

func (ListenersConfigDump_DynamicListenerValidationError) ErrorName

ErrorName returns error name.

func (ListenersConfigDump_DynamicListenerValidationError) Field

Field function returns field value.

func (ListenersConfigDump_DynamicListenerValidationError) Key

Key function returns key value.

func (ListenersConfigDump_DynamicListenerValidationError) Reason

Reason function returns reason value.

type ListenersConfigDump_StaticListener

type ListenersConfigDump_StaticListener struct {

	// The listener config.
	Listener *any.Any `protobuf:"bytes,1,opt,name=listener,proto3" json:"listener,omitempty"`
	// The timestamp when the Listener was last successfully updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

Describes a statically loaded listener.

func (*ListenersConfigDump_StaticListener) Descriptor deprecated

func (*ListenersConfigDump_StaticListener) Descriptor() ([]byte, []int)

Deprecated: Use ListenersConfigDump_StaticListener.ProtoReflect.Descriptor instead.

func (*ListenersConfigDump_StaticListener) GetLastUpdated

func (*ListenersConfigDump_StaticListener) GetListener

func (x *ListenersConfigDump_StaticListener) GetListener() *any.Any

func (*ListenersConfigDump_StaticListener) ProtoMessage

func (*ListenersConfigDump_StaticListener) ProtoMessage()

func (*ListenersConfigDump_StaticListener) ProtoReflect

func (*ListenersConfigDump_StaticListener) Reset

func (*ListenersConfigDump_StaticListener) String

func (*ListenersConfigDump_StaticListener) Validate

Validate checks the field values on ListenersConfigDump_StaticListener with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenersConfigDump_StaticListenerValidationError

type ListenersConfigDump_StaticListenerValidationError struct {
	// contains filtered or unexported fields
}

ListenersConfigDump_StaticListenerValidationError is the validation error returned by ListenersConfigDump_StaticListener.Validate if the designated constraints aren't met.

func (ListenersConfigDump_StaticListenerValidationError) Cause

Cause function returns cause value.

func (ListenersConfigDump_StaticListenerValidationError) Error

Error satisfies the builtin error interface

func (ListenersConfigDump_StaticListenerValidationError) ErrorName

ErrorName returns error name.

func (ListenersConfigDump_StaticListenerValidationError) Field

Field function returns field value.

func (ListenersConfigDump_StaticListenerValidationError) Key

Key function returns key value.

func (ListenersConfigDump_StaticListenerValidationError) Reason

Reason function returns reason value.

type ListenersValidationError

type ListenersValidationError struct {
	// contains filtered or unexported fields
}

ListenersValidationError is the validation error returned by Listeners.Validate if the designated constraints aren't met.

func (ListenersValidationError) Cause

func (e ListenersValidationError) Cause() error

Cause function returns cause value.

func (ListenersValidationError) Error

func (e ListenersValidationError) Error() string

Error satisfies the builtin error interface

func (ListenersValidationError) ErrorName

func (e ListenersValidationError) ErrorName() string

ErrorName returns error name.

func (ListenersValidationError) Field

func (e ListenersValidationError) Field() string

Field function returns field value.

func (ListenersValidationError) Key

Key function returns key value.

func (ListenersValidationError) Reason

func (e ListenersValidationError) Reason() string

Reason function returns reason value.

type Memory

type Memory struct {

	// The number of bytes allocated by the heap for Envoy. This is an alias for
	// `generic.current_allocated_bytes`.
	Allocated uint64 `protobuf:"varint,1,opt,name=allocated,proto3" json:"allocated,omitempty"`
	// The number of bytes reserved by the heap but not necessarily allocated. This is an alias for
	// `generic.heap_size`.
	HeapSize uint64 `protobuf:"varint,2,opt,name=heap_size,json=heapSize,proto3" json:"heap_size,omitempty"`
	// The number of bytes in free, unmapped pages in the page heap. These bytes always count towards
	// virtual memory usage, and depending on the OS, typically do not count towards physical memory
	// usage. This is an alias for `tcmalloc.pageheap_unmapped_bytes`.
	PageheapUnmapped uint64 `protobuf:"varint,3,opt,name=pageheap_unmapped,json=pageheapUnmapped,proto3" json:"pageheap_unmapped,omitempty"`
	// The number of bytes in free, mapped pages in the page heap. These bytes always count towards
	// virtual memory usage, and unless the underlying memory is swapped out by the OS, they also
	// count towards physical memory usage. This is an alias for `tcmalloc.pageheap_free_bytes`.
	PageheapFree uint64 `protobuf:"varint,4,opt,name=pageheap_free,json=pageheapFree,proto3" json:"pageheap_free,omitempty"`
	// The amount of memory used by the TCMalloc thread caches (for small objects). This is an alias
	// for `tcmalloc.current_total_thread_cache_bytes`.
	TotalThreadCache uint64 `protobuf:"varint,5,opt,name=total_thread_cache,json=totalThreadCache,proto3" json:"total_thread_cache,omitempty"`
	// The number of bytes of the physical memory usage by the allocator. This is an alias for
	// `generic.total_physical_bytes`.
	TotalPhysicalBytes uint64 `protobuf:"varint,6,opt,name=total_physical_bytes,json=totalPhysicalBytes,proto3" json:"total_physical_bytes,omitempty"`
	// contains filtered or unexported fields
}

Proto representation of the internal memory consumption of an Envoy instance. These represent values extracted from an internal TCMalloc instance. For more information, see the section of the docs entitled ["Generic Tcmalloc Status"](https://gperftools.github.io/gperftools/tcmalloc.html). [#next-free-field: 7]

func (*Memory) Descriptor deprecated

func (*Memory) Descriptor() ([]byte, []int)

Deprecated: Use Memory.ProtoReflect.Descriptor instead.

func (*Memory) GetAllocated

func (x *Memory) GetAllocated() uint64

func (*Memory) GetHeapSize

func (x *Memory) GetHeapSize() uint64

func (*Memory) GetPageheapFree

func (x *Memory) GetPageheapFree() uint64

func (*Memory) GetPageheapUnmapped

func (x *Memory) GetPageheapUnmapped() uint64

func (*Memory) GetTotalPhysicalBytes

func (x *Memory) GetTotalPhysicalBytes() uint64

func (*Memory) GetTotalThreadCache

func (x *Memory) GetTotalThreadCache() uint64

func (*Memory) ProtoMessage

func (*Memory) ProtoMessage()

func (*Memory) ProtoReflect

func (x *Memory) ProtoReflect() protoreflect.Message

func (*Memory) Reset

func (x *Memory) Reset()

func (*Memory) String

func (x *Memory) String() string

func (*Memory) Validate

func (m *Memory) Validate() error

Validate checks the field values on Memory with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type MemoryValidationError

type MemoryValidationError struct {
	// contains filtered or unexported fields
}

MemoryValidationError is the validation error returned by Memory.Validate if the designated constraints aren't met.

func (MemoryValidationError) Cause

func (e MemoryValidationError) Cause() error

Cause function returns cause value.

func (MemoryValidationError) Error

func (e MemoryValidationError) Error() string

Error satisfies the builtin error interface

func (MemoryValidationError) ErrorName

func (e MemoryValidationError) ErrorName() string

ErrorName returns error name.

func (MemoryValidationError) Field

func (e MemoryValidationError) Field() string

Field function returns field value.

func (MemoryValidationError) Key

func (e MemoryValidationError) Key() bool

Key function returns key value.

func (MemoryValidationError) Reason

func (e MemoryValidationError) Reason() string

Reason function returns reason value.

type MutexStats

type MutexStats struct {

	// The number of individual mutex contentions which have occurred since startup.
	NumContentions uint64 `protobuf:"varint,1,opt,name=num_contentions,json=numContentions,proto3" json:"num_contentions,omitempty"`
	// The length of the current contention wait cycle.
	CurrentWaitCycles uint64 `protobuf:"varint,2,opt,name=current_wait_cycles,json=currentWaitCycles,proto3" json:"current_wait_cycles,omitempty"`
	// The lifetime total of all contention wait cycles.
	LifetimeWaitCycles uint64 `protobuf:"varint,3,opt,name=lifetime_wait_cycles,json=lifetimeWaitCycles,proto3" json:"lifetime_wait_cycles,omitempty"`
	// contains filtered or unexported fields
}

Proto representation of the statistics collected upon absl::Mutex contention, if Envoy is run under :option:`--enable-mutex-tracing`. For more information, see the `absl::Mutex` [docs](https://abseil.io/about/design/mutex#extra-features).

*NB*: The wait cycles below are measured by `absl::base_internal::CycleClock`, and may not correspond to core clock frequency. For more information, see the `CycleClock` [docs](https://github.com/abseil/abseil-cpp/blob/master/absl/base/internal/cycleclock.h).

func (*MutexStats) Descriptor deprecated

func (*MutexStats) Descriptor() ([]byte, []int)

Deprecated: Use MutexStats.ProtoReflect.Descriptor instead.

func (*MutexStats) GetCurrentWaitCycles

func (x *MutexStats) GetCurrentWaitCycles() uint64

func (*MutexStats) GetLifetimeWaitCycles

func (x *MutexStats) GetLifetimeWaitCycles() uint64

func (*MutexStats) GetNumContentions

func (x *MutexStats) GetNumContentions() uint64

func (*MutexStats) ProtoMessage

func (*MutexStats) ProtoMessage()

func (*MutexStats) ProtoReflect

func (x *MutexStats) ProtoReflect() protoreflect.Message

func (*MutexStats) Reset

func (x *MutexStats) Reset()

func (*MutexStats) String

func (x *MutexStats) String() string

func (*MutexStats) Validate

func (m *MutexStats) Validate() error

Validate checks the field values on MutexStats with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type MutexStatsValidationError

type MutexStatsValidationError struct {
	// contains filtered or unexported fields
}

MutexStatsValidationError is the validation error returned by MutexStats.Validate if the designated constraints aren't met.

func (MutexStatsValidationError) Cause

func (e MutexStatsValidationError) Cause() error

Cause function returns cause value.

func (MutexStatsValidationError) Error

Error satisfies the builtin error interface

func (MutexStatsValidationError) ErrorName

func (e MutexStatsValidationError) ErrorName() string

ErrorName returns error name.

func (MutexStatsValidationError) Field

Field function returns field value.

func (MutexStatsValidationError) Key

Key function returns key value.

func (MutexStatsValidationError) Reason

func (e MutexStatsValidationError) Reason() string

Reason function returns reason value.

type RoutesConfigDump

type RoutesConfigDump struct {

	// The statically loaded route configs.
	StaticRouteConfigs []*RoutesConfigDump_StaticRouteConfig `protobuf:"bytes,2,rep,name=static_route_configs,json=staticRouteConfigs,proto3" json:"static_route_configs,omitempty"`
	// The dynamically loaded route configs.
	DynamicRouteConfigs []*RoutesConfigDump_DynamicRouteConfig `protobuf:"bytes,3,rep,name=dynamic_route_configs,json=dynamicRouteConfigs,proto3" json:"dynamic_route_configs,omitempty"`
	// contains filtered or unexported fields
}

Envoy's RDS implementation fills this message with all currently loaded routes, as described by their RouteConfiguration objects. Static routes that are either defined in the bootstrap configuration or defined inline while configuring listeners are separated from those configured dynamically via RDS. Route configuration information can be used to recreate an Envoy configuration by populating all routes as static routes or by returning them in RDS responses.

func (*RoutesConfigDump) Descriptor deprecated

func (*RoutesConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use RoutesConfigDump.ProtoReflect.Descriptor instead.

func (*RoutesConfigDump) GetDynamicRouteConfigs

func (x *RoutesConfigDump) GetDynamicRouteConfigs() []*RoutesConfigDump_DynamicRouteConfig

func (*RoutesConfigDump) GetStaticRouteConfigs

func (x *RoutesConfigDump) GetStaticRouteConfigs() []*RoutesConfigDump_StaticRouteConfig

func (*RoutesConfigDump) ProtoMessage

func (*RoutesConfigDump) ProtoMessage()

func (*RoutesConfigDump) ProtoReflect

func (x *RoutesConfigDump) ProtoReflect() protoreflect.Message

func (*RoutesConfigDump) Reset

func (x *RoutesConfigDump) Reset()

func (*RoutesConfigDump) String

func (x *RoutesConfigDump) String() string

func (*RoutesConfigDump) Validate

func (m *RoutesConfigDump) Validate() error

Validate checks the field values on RoutesConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type RoutesConfigDumpValidationError

type RoutesConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

RoutesConfigDumpValidationError is the validation error returned by RoutesConfigDump.Validate if the designated constraints aren't met.

func (RoutesConfigDumpValidationError) Cause

Cause function returns cause value.

func (RoutesConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (RoutesConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (RoutesConfigDumpValidationError) Field

Field function returns field value.

func (RoutesConfigDumpValidationError) Key

Key function returns key value.

func (RoutesConfigDumpValidationError) Reason

Reason function returns reason value.

type RoutesConfigDump_DynamicRouteConfig

type RoutesConfigDump_DynamicRouteConfig struct {

	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` field at the time that
	// the route configuration was loaded.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The route config.
	RouteConfig *any.Any `protobuf:"bytes,2,opt,name=route_config,json=routeConfig,proto3" json:"route_config,omitempty"`
	// The timestamp when the Route was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// Set if the last update failed, cleared after the next successful update.
	// The *error_state* field contains the rejected version of this particular
	// resource along with the reason and timestamp. For successfully updated or
	// acknowledged resource, this field should be empty.
	// [#not-implemented-hide:]
	ErrorState *UpdateFailureState `protobuf:"bytes,4,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
	// The client status of this resource.
	// [#not-implemented-hide:]
	ClientStatus ClientResourceStatus `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

[#next-free-field: 6]

func (*RoutesConfigDump_DynamicRouteConfig) Descriptor deprecated

func (*RoutesConfigDump_DynamicRouteConfig) Descriptor() ([]byte, []int)

Deprecated: Use RoutesConfigDump_DynamicRouteConfig.ProtoReflect.Descriptor instead.

func (*RoutesConfigDump_DynamicRouteConfig) GetClientStatus added in v0.9.9

func (*RoutesConfigDump_DynamicRouteConfig) GetErrorState added in v0.9.9

func (*RoutesConfigDump_DynamicRouteConfig) GetLastUpdated

func (*RoutesConfigDump_DynamicRouteConfig) GetRouteConfig

func (x *RoutesConfigDump_DynamicRouteConfig) GetRouteConfig() *any.Any

func (*RoutesConfigDump_DynamicRouteConfig) GetVersionInfo

func (x *RoutesConfigDump_DynamicRouteConfig) GetVersionInfo() string

func (*RoutesConfigDump_DynamicRouteConfig) ProtoMessage

func (*RoutesConfigDump_DynamicRouteConfig) ProtoMessage()

func (*RoutesConfigDump_DynamicRouteConfig) ProtoReflect

func (*RoutesConfigDump_DynamicRouteConfig) Reset

func (*RoutesConfigDump_DynamicRouteConfig) String

func (*RoutesConfigDump_DynamicRouteConfig) Validate

Validate checks the field values on RoutesConfigDump_DynamicRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type RoutesConfigDump_DynamicRouteConfigValidationError

type RoutesConfigDump_DynamicRouteConfigValidationError struct {
	// contains filtered or unexported fields
}

RoutesConfigDump_DynamicRouteConfigValidationError is the validation error returned by RoutesConfigDump_DynamicRouteConfig.Validate if the designated constraints aren't met.

func (RoutesConfigDump_DynamicRouteConfigValidationError) Cause

Cause function returns cause value.

func (RoutesConfigDump_DynamicRouteConfigValidationError) Error

Error satisfies the builtin error interface

func (RoutesConfigDump_DynamicRouteConfigValidationError) ErrorName

ErrorName returns error name.

func (RoutesConfigDump_DynamicRouteConfigValidationError) Field

Field function returns field value.

func (RoutesConfigDump_DynamicRouteConfigValidationError) Key

Key function returns key value.

func (RoutesConfigDump_DynamicRouteConfigValidationError) Reason

Reason function returns reason value.

type RoutesConfigDump_StaticRouteConfig

type RoutesConfigDump_StaticRouteConfig struct {

	// The route config.
	RouteConfig *any.Any `protobuf:"bytes,1,opt,name=route_config,json=routeConfig,proto3" json:"route_config,omitempty"`
	// The timestamp when the Route was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*RoutesConfigDump_StaticRouteConfig) Descriptor deprecated

func (*RoutesConfigDump_StaticRouteConfig) Descriptor() ([]byte, []int)

Deprecated: Use RoutesConfigDump_StaticRouteConfig.ProtoReflect.Descriptor instead.

func (*RoutesConfigDump_StaticRouteConfig) GetLastUpdated

func (*RoutesConfigDump_StaticRouteConfig) GetRouteConfig

func (x *RoutesConfigDump_StaticRouteConfig) GetRouteConfig() *any.Any

func (*RoutesConfigDump_StaticRouteConfig) ProtoMessage

func (*RoutesConfigDump_StaticRouteConfig) ProtoMessage()

func (*RoutesConfigDump_StaticRouteConfig) ProtoReflect

func (*RoutesConfigDump_StaticRouteConfig) Reset

func (*RoutesConfigDump_StaticRouteConfig) String

func (*RoutesConfigDump_StaticRouteConfig) Validate

Validate checks the field values on RoutesConfigDump_StaticRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type RoutesConfigDump_StaticRouteConfigValidationError

type RoutesConfigDump_StaticRouteConfigValidationError struct {
	// contains filtered or unexported fields
}

RoutesConfigDump_StaticRouteConfigValidationError is the validation error returned by RoutesConfigDump_StaticRouteConfig.Validate if the designated constraints aren't met.

func (RoutesConfigDump_StaticRouteConfigValidationError) Cause

Cause function returns cause value.

func (RoutesConfigDump_StaticRouteConfigValidationError) Error

Error satisfies the builtin error interface

func (RoutesConfigDump_StaticRouteConfigValidationError) ErrorName

ErrorName returns error name.

func (RoutesConfigDump_StaticRouteConfigValidationError) Field

Field function returns field value.

func (RoutesConfigDump_StaticRouteConfigValidationError) Key

Key function returns key value.

func (RoutesConfigDump_StaticRouteConfigValidationError) Reason

Reason function returns reason value.

type ScopedRoutesConfigDump

type ScopedRoutesConfigDump struct {

	// The statically loaded scoped route configs.
	InlineScopedRouteConfigs []*ScopedRoutesConfigDump_InlineScopedRouteConfigs `` /* 137-byte string literal not displayed */
	// The dynamically loaded scoped route configs.
	DynamicScopedRouteConfigs []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs `` /* 140-byte string literal not displayed */
	// contains filtered or unexported fields
}

Envoy's scoped RDS implementation fills this message with all currently loaded route configuration scopes (defined via ScopedRouteConfigurationsSet protos). This message lists both the scopes defined inline with the higher order object (i.e., the HttpConnectionManager) and the dynamically obtained scopes via the SRDS API.

func (*ScopedRoutesConfigDump) Descriptor deprecated

func (*ScopedRoutesConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use ScopedRoutesConfigDump.ProtoReflect.Descriptor instead.

func (*ScopedRoutesConfigDump) GetDynamicScopedRouteConfigs

func (x *ScopedRoutesConfigDump) GetDynamicScopedRouteConfigs() []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs

func (*ScopedRoutesConfigDump) GetInlineScopedRouteConfigs

func (x *ScopedRoutesConfigDump) GetInlineScopedRouteConfigs() []*ScopedRoutesConfigDump_InlineScopedRouteConfigs

func (*ScopedRoutesConfigDump) ProtoMessage

func (*ScopedRoutesConfigDump) ProtoMessage()

func (*ScopedRoutesConfigDump) ProtoReflect

func (x *ScopedRoutesConfigDump) ProtoReflect() protoreflect.Message

func (*ScopedRoutesConfigDump) Reset

func (x *ScopedRoutesConfigDump) Reset()

func (*ScopedRoutesConfigDump) String

func (x *ScopedRoutesConfigDump) String() string

func (*ScopedRoutesConfigDump) Validate

func (m *ScopedRoutesConfigDump) Validate() error

Validate checks the field values on ScopedRoutesConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ScopedRoutesConfigDumpValidationError

type ScopedRoutesConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

ScopedRoutesConfigDumpValidationError is the validation error returned by ScopedRoutesConfigDump.Validate if the designated constraints aren't met.

func (ScopedRoutesConfigDumpValidationError) Cause

Cause function returns cause value.

func (ScopedRoutesConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (ScopedRoutesConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (ScopedRoutesConfigDumpValidationError) Field

Field function returns field value.

func (ScopedRoutesConfigDumpValidationError) Key

Key function returns key value.

func (ScopedRoutesConfigDumpValidationError) Reason

Reason function returns reason value.

type ScopedRoutesConfigDump_DynamicScopedRouteConfigs

type ScopedRoutesConfigDump_DynamicScopedRouteConfigs struct {

	// The name assigned to the scoped route configurations.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_v3_api_field_service.discovery.v3.DiscoveryResponse.version_info>` field at the time that
	// the scoped routes configuration was loaded.
	VersionInfo string `protobuf:"bytes,2,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The scoped route configurations.
	ScopedRouteConfigs []*any.Any `protobuf:"bytes,3,rep,name=scoped_route_configs,json=scopedRouteConfigs,proto3" json:"scoped_route_configs,omitempty"`
	// The timestamp when the scoped route config set was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,4,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// Set if the last update failed, cleared after the next successful update.
	// The *error_state* field contains the rejected version of this particular
	// resource along with the reason and timestamp. For successfully updated or
	// acknowledged resource, this field should be empty.
	// [#not-implemented-hide:]
	ErrorState *UpdateFailureState `protobuf:"bytes,5,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
	// The client status of this resource.
	// [#not-implemented-hide:]
	ClientStatus ClientResourceStatus `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

[#next-free-field: 7]

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Descriptor deprecated

Deprecated: Use ScopedRoutesConfigDump_DynamicScopedRouteConfigs.ProtoReflect.Descriptor instead.

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetClientStatus added in v0.9.9

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetErrorState added in v0.9.9

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetLastUpdated

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetName

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetScopedRouteConfigs

func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetScopedRouteConfigs() []*any.Any

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetVersionInfo

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoMessage

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoReflect

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Reset

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) String

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Validate

Validate checks the field values on ScopedRoutesConfigDump_DynamicScopedRouteConfigs with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError

type ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError struct {
	// contains filtered or unexported fields
}

ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError is the validation error returned by ScopedRoutesConfigDump_DynamicScopedRouteConfigs.Validate if the designated constraints aren't met.

func (ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Cause

Cause function returns cause value.

func (ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Error

Error satisfies the builtin error interface

func (ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) ErrorName

ErrorName returns error name.

func (ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Field

Field function returns field value.

func (ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Key

Key function returns key value.

func (ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Reason

Reason function returns reason value.

type ScopedRoutesConfigDump_InlineScopedRouteConfigs

type ScopedRoutesConfigDump_InlineScopedRouteConfigs struct {

	// The name assigned to the scoped route configurations.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The scoped route configurations.
	ScopedRouteConfigs []*any.Any `protobuf:"bytes,2,rep,name=scoped_route_configs,json=scopedRouteConfigs,proto3" json:"scoped_route_configs,omitempty"`
	// The timestamp when the scoped route config set was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// contains filtered or unexported fields
}

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) Descriptor deprecated

Deprecated: Use ScopedRoutesConfigDump_InlineScopedRouteConfigs.ProtoReflect.Descriptor instead.

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetLastUpdated

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetName

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetScopedRouteConfigs

func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetScopedRouteConfigs() []*any.Any

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoMessage

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoReflect

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) Reset

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) String

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) Validate

Validate checks the field values on ScopedRoutesConfigDump_InlineScopedRouteConfigs with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError

type ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError struct {
	// contains filtered or unexported fields
}

ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError is the validation error returned by ScopedRoutesConfigDump_InlineScopedRouteConfigs.Validate if the designated constraints aren't met.

func (ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Cause

Cause function returns cause value.

func (ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Error

Error satisfies the builtin error interface

func (ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) ErrorName

ErrorName returns error name.

func (ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Field

Field function returns field value.

func (ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Key

Key function returns key value.

func (ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Reason

Reason function returns reason value.

type SecretsConfigDump

type SecretsConfigDump struct {

	// The statically loaded secrets.
	StaticSecrets []*SecretsConfigDump_StaticSecret `protobuf:"bytes,1,rep,name=static_secrets,json=staticSecrets,proto3" json:"static_secrets,omitempty"`
	// The dynamically loaded active secrets. These are secrets that are available to service
	// clusters or listeners.
	DynamicActiveSecrets []*SecretsConfigDump_DynamicSecret `protobuf:"bytes,2,rep,name=dynamic_active_secrets,json=dynamicActiveSecrets,proto3" json:"dynamic_active_secrets,omitempty"`
	// The dynamically loaded warming secrets. These are secrets that are currently undergoing
	// warming in preparation to service clusters or listeners.
	DynamicWarmingSecrets []*SecretsConfigDump_DynamicSecret `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

Envoys SDS implementation fills this message with all secrets fetched dynamically via SDS.

func (*SecretsConfigDump) Descriptor deprecated

func (*SecretsConfigDump) Descriptor() ([]byte, []int)

Deprecated: Use SecretsConfigDump.ProtoReflect.Descriptor instead.

func (*SecretsConfigDump) GetDynamicActiveSecrets

func (x *SecretsConfigDump) GetDynamicActiveSecrets() []*SecretsConfigDump_DynamicSecret

func (*SecretsConfigDump) GetDynamicWarmingSecrets

func (x *SecretsConfigDump) GetDynamicWarmingSecrets() []*SecretsConfigDump_DynamicSecret

func (*SecretsConfigDump) GetStaticSecrets

func (x *SecretsConfigDump) GetStaticSecrets() []*SecretsConfigDump_StaticSecret

func (*SecretsConfigDump) ProtoMessage

func (*SecretsConfigDump) ProtoMessage()

func (*SecretsConfigDump) ProtoReflect

func (x *SecretsConfigDump) ProtoReflect() protoreflect.Message

func (*SecretsConfigDump) Reset

func (x *SecretsConfigDump) Reset()

func (*SecretsConfigDump) String

func (x *SecretsConfigDump) String() string

func (*SecretsConfigDump) Validate

func (m *SecretsConfigDump) Validate() error

Validate checks the field values on SecretsConfigDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SecretsConfigDumpValidationError

type SecretsConfigDumpValidationError struct {
	// contains filtered or unexported fields
}

SecretsConfigDumpValidationError is the validation error returned by SecretsConfigDump.Validate if the designated constraints aren't met.

func (SecretsConfigDumpValidationError) Cause

Cause function returns cause value.

func (SecretsConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (SecretsConfigDumpValidationError) ErrorName

ErrorName returns error name.

func (SecretsConfigDumpValidationError) Field

Field function returns field value.

func (SecretsConfigDumpValidationError) Key

Key function returns key value.

func (SecretsConfigDumpValidationError) Reason

Reason function returns reason value.

type SecretsConfigDump_DynamicSecret

type SecretsConfigDump_DynamicSecret struct {

	// The name assigned to the secret.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// This is the per-resource version information.
	VersionInfo string `protobuf:"bytes,2,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The timestamp when the secret was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// The actual secret information.
	// Security sensitive information is redacted (replaced with "[redacted]") for
	// private keys and passwords in TLS certificates.
	Secret *any.Any `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"`
	// Set if the last update failed, cleared after the next successful update.
	// The *error_state* field contains the rejected version of this particular
	// resource along with the reason and timestamp. For successfully updated or
	// acknowledged resource, this field should be empty.
	// [#not-implemented-hide:]
	ErrorState *UpdateFailureState `protobuf:"bytes,5,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"`
	// The client status of this resource.
	// [#not-implemented-hide:]
	ClientStatus ClientResourceStatus `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

DynamicSecret contains secret information fetched via SDS. [#next-free-field: 7]

func (*SecretsConfigDump_DynamicSecret) Descriptor deprecated

func (*SecretsConfigDump_DynamicSecret) Descriptor() ([]byte, []int)

Deprecated: Use SecretsConfigDump_DynamicSecret.ProtoReflect.Descriptor instead.

func (*SecretsConfigDump_DynamicSecret) GetClientStatus added in v0.9.9

func (*SecretsConfigDump_DynamicSecret) GetErrorState added in v0.9.9

func (*SecretsConfigDump_DynamicSecret) GetLastUpdated

func (*SecretsConfigDump_DynamicSecret) GetName

func (*SecretsConfigDump_DynamicSecret) GetSecret

func (x *SecretsConfigDump_DynamicSecret) GetSecret() *any.Any

func (*SecretsConfigDump_DynamicSecret) GetVersionInfo

func (x *SecretsConfigDump_DynamicSecret) GetVersionInfo() string

func (*SecretsConfigDump_DynamicSecret) ProtoMessage

func (*SecretsConfigDump_DynamicSecret) ProtoMessage()

func (*SecretsConfigDump_DynamicSecret) ProtoReflect

func (*SecretsConfigDump_DynamicSecret) Reset

func (*SecretsConfigDump_DynamicSecret) String

func (*SecretsConfigDump_DynamicSecret) Validate

func (m *SecretsConfigDump_DynamicSecret) Validate() error

Validate checks the field values on SecretsConfigDump_DynamicSecret with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SecretsConfigDump_DynamicSecretValidationError

type SecretsConfigDump_DynamicSecretValidationError struct {
	// contains filtered or unexported fields
}

SecretsConfigDump_DynamicSecretValidationError is the validation error returned by SecretsConfigDump_DynamicSecret.Validate if the designated constraints aren't met.

func (SecretsConfigDump_DynamicSecretValidationError) Cause

Cause function returns cause value.

func (SecretsConfigDump_DynamicSecretValidationError) Error

Error satisfies the builtin error interface

func (SecretsConfigDump_DynamicSecretValidationError) ErrorName

ErrorName returns error name.

func (SecretsConfigDump_DynamicSecretValidationError) Field

Field function returns field value.

func (SecretsConfigDump_DynamicSecretValidationError) Key

Key function returns key value.

func (SecretsConfigDump_DynamicSecretValidationError) Reason

Reason function returns reason value.

type SecretsConfigDump_StaticSecret

type SecretsConfigDump_StaticSecret struct {

	// The name assigned to the secret.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The timestamp when the secret was last updated.
	LastUpdated *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// The actual secret information.
	// Security sensitive information is redacted (replaced with "[redacted]") for
	// private keys and passwords in TLS certificates.
	Secret *any.Any `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
	// contains filtered or unexported fields
}

StaticSecret specifies statically loaded secret in bootstrap.

func (*SecretsConfigDump_StaticSecret) Descriptor deprecated

func (*SecretsConfigDump_StaticSecret) Descriptor() ([]byte, []int)

Deprecated: Use SecretsConfigDump_StaticSecret.ProtoReflect.Descriptor instead.

func (*SecretsConfigDump_StaticSecret) GetLastUpdated

func (x *SecretsConfigDump_StaticSecret) GetLastUpdated() *timestamp.Timestamp

func (*SecretsConfigDump_StaticSecret) GetName

func (*SecretsConfigDump_StaticSecret) GetSecret

func (x *SecretsConfigDump_StaticSecret) GetSecret() *any.Any

func (*SecretsConfigDump_StaticSecret) ProtoMessage

func (*SecretsConfigDump_StaticSecret) ProtoMessage()

func (*SecretsConfigDump_StaticSecret) ProtoReflect

func (*SecretsConfigDump_StaticSecret) Reset

func (x *SecretsConfigDump_StaticSecret) Reset()

func (*SecretsConfigDump_StaticSecret) String

func (*SecretsConfigDump_StaticSecret) Validate

func (m *SecretsConfigDump_StaticSecret) Validate() error

Validate checks the field values on SecretsConfigDump_StaticSecret with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SecretsConfigDump_StaticSecretValidationError

type SecretsConfigDump_StaticSecretValidationError struct {
	// contains filtered or unexported fields
}

SecretsConfigDump_StaticSecretValidationError is the validation error returned by SecretsConfigDump_StaticSecret.Validate if the designated constraints aren't met.

func (SecretsConfigDump_StaticSecretValidationError) Cause

Cause function returns cause value.

func (SecretsConfigDump_StaticSecretValidationError) Error

Error satisfies the builtin error interface

func (SecretsConfigDump_StaticSecretValidationError) ErrorName

ErrorName returns error name.

func (SecretsConfigDump_StaticSecretValidationError) Field

Field function returns field value.

func (SecretsConfigDump_StaticSecretValidationError) Key

Key function returns key value.

func (SecretsConfigDump_StaticSecretValidationError) Reason

Reason function returns reason value.

type ServerInfo

type ServerInfo struct {

	// Server version.
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// State of the server.
	State ServerInfo_State `protobuf:"varint,2,opt,name=state,proto3,enum=envoy.admin.v4alpha.ServerInfo_State" json:"state,omitempty"`
	// Uptime since current epoch was started.
	UptimeCurrentEpoch *duration.Duration `protobuf:"bytes,3,opt,name=uptime_current_epoch,json=uptimeCurrentEpoch,proto3" json:"uptime_current_epoch,omitempty"`
	// Uptime since the start of the first epoch.
	UptimeAllEpochs *duration.Duration `protobuf:"bytes,4,opt,name=uptime_all_epochs,json=uptimeAllEpochs,proto3" json:"uptime_all_epochs,omitempty"`
	// Hot restart version.
	HotRestartVersion string `protobuf:"bytes,5,opt,name=hot_restart_version,json=hotRestartVersion,proto3" json:"hot_restart_version,omitempty"`
	// Command line options the server is currently running with.
	CommandLineOptions *CommandLineOptions `protobuf:"bytes,6,opt,name=command_line_options,json=commandLineOptions,proto3" json:"command_line_options,omitempty"`
	// Populated node identity of this server.
	Node *v4alpha.Node `protobuf:"bytes,7,opt,name=node,proto3" json:"node,omitempty"`
	// contains filtered or unexported fields
}

Proto representation of the value returned by /server_info, containing server version/server status information. [#next-free-field: 8]

func (*ServerInfo) Descriptor deprecated

func (*ServerInfo) Descriptor() ([]byte, []int)

Deprecated: Use ServerInfo.ProtoReflect.Descriptor instead.

func (*ServerInfo) GetCommandLineOptions

func (x *ServerInfo) GetCommandLineOptions() *CommandLineOptions

func (*ServerInfo) GetHotRestartVersion

func (x *ServerInfo) GetHotRestartVersion() string

func (*ServerInfo) GetNode added in v0.9.7

func (x *ServerInfo) GetNode() *v4alpha.Node

func (*ServerInfo) GetState

func (x *ServerInfo) GetState() ServerInfo_State

func (*ServerInfo) GetUptimeAllEpochs

func (x *ServerInfo) GetUptimeAllEpochs() *duration.Duration

func (*ServerInfo) GetUptimeCurrentEpoch

func (x *ServerInfo) GetUptimeCurrentEpoch() *duration.Duration

func (*ServerInfo) GetVersion

func (x *ServerInfo) GetVersion() string

func (*ServerInfo) ProtoMessage

func (*ServerInfo) ProtoMessage()

func (*ServerInfo) ProtoReflect

func (x *ServerInfo) ProtoReflect() protoreflect.Message

func (*ServerInfo) Reset

func (x *ServerInfo) Reset()

func (*ServerInfo) String

func (x *ServerInfo) String() string

func (*ServerInfo) Validate

func (m *ServerInfo) Validate() error

Validate checks the field values on ServerInfo with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ServerInfoValidationError

type ServerInfoValidationError struct {
	// contains filtered or unexported fields
}

ServerInfoValidationError is the validation error returned by ServerInfo.Validate if the designated constraints aren't met.

func (ServerInfoValidationError) Cause

func (e ServerInfoValidationError) Cause() error

Cause function returns cause value.

func (ServerInfoValidationError) Error

Error satisfies the builtin error interface

func (ServerInfoValidationError) ErrorName

func (e ServerInfoValidationError) ErrorName() string

ErrorName returns error name.

func (ServerInfoValidationError) Field

Field function returns field value.

func (ServerInfoValidationError) Key

Key function returns key value.

func (ServerInfoValidationError) Reason

func (e ServerInfoValidationError) Reason() string

Reason function returns reason value.

type ServerInfo_State

type ServerInfo_State int32
const (
	// Server is live and serving traffic.
	ServerInfo_LIVE ServerInfo_State = 0
	// Server is draining listeners in response to external health checks failing.
	ServerInfo_DRAINING ServerInfo_State = 1
	// Server has not yet completed cluster manager initialization.
	ServerInfo_PRE_INITIALIZING ServerInfo_State = 2
	// Server is running the cluster manager initialization callbacks (e.g., RDS).
	ServerInfo_INITIALIZING ServerInfo_State = 3
)

func (ServerInfo_State) Descriptor

func (ServerInfo_State) Enum

func (ServerInfo_State) EnumDescriptor deprecated

func (ServerInfo_State) EnumDescriptor() ([]byte, []int)

Deprecated: Use ServerInfo_State.Descriptor instead.

func (ServerInfo_State) Number

func (ServerInfo_State) String

func (x ServerInfo_State) String() string

func (ServerInfo_State) Type

type SimpleMetric

type SimpleMetric struct {

	// Type of the metric represented.
	Type SimpleMetric_Type `protobuf:"varint,1,opt,name=type,proto3,enum=envoy.admin.v4alpha.SimpleMetric_Type" json:"type,omitempty"`
	// Current metric value.
	Value uint64 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	// Name of the metric.
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Proto representation of an Envoy Counter or Gauge value.

func (*SimpleMetric) Descriptor deprecated

func (*SimpleMetric) Descriptor() ([]byte, []int)

Deprecated: Use SimpleMetric.ProtoReflect.Descriptor instead.

func (*SimpleMetric) GetName

func (x *SimpleMetric) GetName() string

func (*SimpleMetric) GetType

func (x *SimpleMetric) GetType() SimpleMetric_Type

func (*SimpleMetric) GetValue

func (x *SimpleMetric) GetValue() uint64

func (*SimpleMetric) ProtoMessage

func (*SimpleMetric) ProtoMessage()

func (*SimpleMetric) ProtoReflect

func (x *SimpleMetric) ProtoReflect() protoreflect.Message

func (*SimpleMetric) Reset

func (x *SimpleMetric) Reset()

func (*SimpleMetric) String

func (x *SimpleMetric) String() string

func (*SimpleMetric) Validate

func (m *SimpleMetric) Validate() error

Validate checks the field values on SimpleMetric with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SimpleMetricValidationError

type SimpleMetricValidationError struct {
	// contains filtered or unexported fields
}

SimpleMetricValidationError is the validation error returned by SimpleMetric.Validate if the designated constraints aren't met.

func (SimpleMetricValidationError) Cause

Cause function returns cause value.

func (SimpleMetricValidationError) Error

Error satisfies the builtin error interface

func (SimpleMetricValidationError) ErrorName

func (e SimpleMetricValidationError) ErrorName() string

ErrorName returns error name.

func (SimpleMetricValidationError) Field

Field function returns field value.

func (SimpleMetricValidationError) Key

Key function returns key value.

func (SimpleMetricValidationError) Reason

Reason function returns reason value.

type SimpleMetric_Type

type SimpleMetric_Type int32
const (
	SimpleMetric_COUNTER SimpleMetric_Type = 0
	SimpleMetric_GAUGE   SimpleMetric_Type = 1
)

func (SimpleMetric_Type) Descriptor

func (SimpleMetric_Type) Enum

func (SimpleMetric_Type) EnumDescriptor deprecated

func (SimpleMetric_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use SimpleMetric_Type.Descriptor instead.

func (SimpleMetric_Type) Number

func (SimpleMetric_Type) String

func (x SimpleMetric_Type) String() string

func (SimpleMetric_Type) Type

type SubjectAlternateName

type SubjectAlternateName struct {

	// Subject Alternate Name.
	//
	// Types that are assignable to Name:
	//	*SubjectAlternateName_Dns
	//	*SubjectAlternateName_Uri
	//	*SubjectAlternateName_IpAddress
	Name isSubjectAlternateName_Name `protobuf_oneof:"name"`
	// contains filtered or unexported fields
}

func (*SubjectAlternateName) Descriptor deprecated

func (*SubjectAlternateName) Descriptor() ([]byte, []int)

Deprecated: Use SubjectAlternateName.ProtoReflect.Descriptor instead.

func (*SubjectAlternateName) GetDns

func (x *SubjectAlternateName) GetDns() string

func (*SubjectAlternateName) GetIpAddress

func (x *SubjectAlternateName) GetIpAddress() string

func (*SubjectAlternateName) GetName

func (m *SubjectAlternateName) GetName() isSubjectAlternateName_Name

func (*SubjectAlternateName) GetUri

func (x *SubjectAlternateName) GetUri() string

func (*SubjectAlternateName) ProtoMessage

func (*SubjectAlternateName) ProtoMessage()

func (*SubjectAlternateName) ProtoReflect

func (x *SubjectAlternateName) ProtoReflect() protoreflect.Message

func (*SubjectAlternateName) Reset

func (x *SubjectAlternateName) Reset()

func (*SubjectAlternateName) String

func (x *SubjectAlternateName) String() string

func (*SubjectAlternateName) Validate

func (m *SubjectAlternateName) Validate() error

Validate checks the field values on SubjectAlternateName with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SubjectAlternateNameValidationError

type SubjectAlternateNameValidationError struct {
	// contains filtered or unexported fields
}

SubjectAlternateNameValidationError is the validation error returned by SubjectAlternateName.Validate if the designated constraints aren't met.

func (SubjectAlternateNameValidationError) Cause

Cause function returns cause value.

func (SubjectAlternateNameValidationError) Error

Error satisfies the builtin error interface

func (SubjectAlternateNameValidationError) ErrorName

ErrorName returns error name.

func (SubjectAlternateNameValidationError) Field

Field function returns field value.

func (SubjectAlternateNameValidationError) Key

Key function returns key value.

func (SubjectAlternateNameValidationError) Reason

Reason function returns reason value.

type SubjectAlternateName_Dns

type SubjectAlternateName_Dns struct {
	Dns string `protobuf:"bytes,1,opt,name=dns,proto3,oneof"`
}

type SubjectAlternateName_IpAddress

type SubjectAlternateName_IpAddress struct {
	IpAddress string `protobuf:"bytes,3,opt,name=ip_address,json=ipAddress,proto3,oneof"`
}

type SubjectAlternateName_Uri

type SubjectAlternateName_Uri struct {
	Uri string `protobuf:"bytes,2,opt,name=uri,proto3,oneof"`
}

type TapRequest

type TapRequest struct {

	// The opaque configuration ID used to match the configuration to a loaded extension.
	// A tap extension configures a similar opaque ID that is used to match.
	ConfigId string `protobuf:"bytes,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
	// The tap configuration to load.
	TapConfig *v4alpha.TapConfig `protobuf:"bytes,2,opt,name=tap_config,json=tapConfig,proto3" json:"tap_config,omitempty"`
	// contains filtered or unexported fields
}

The /tap admin request body that is used to configure an active tap session.

func (*TapRequest) Descriptor deprecated

func (*TapRequest) Descriptor() ([]byte, []int)

Deprecated: Use TapRequest.ProtoReflect.Descriptor instead.

func (*TapRequest) GetConfigId

func (x *TapRequest) GetConfigId() string

func (*TapRequest) GetTapConfig

func (x *TapRequest) GetTapConfig() *v4alpha.TapConfig

func (*TapRequest) ProtoMessage

func (*TapRequest) ProtoMessage()

func (*TapRequest) ProtoReflect

func (x *TapRequest) ProtoReflect() protoreflect.Message

func (*TapRequest) Reset

func (x *TapRequest) Reset()

func (*TapRequest) String

func (x *TapRequest) String() string

func (*TapRequest) Validate

func (m *TapRequest) Validate() error

Validate checks the field values on TapRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type TapRequestValidationError

type TapRequestValidationError struct {
	// contains filtered or unexported fields
}

TapRequestValidationError is the validation error returned by TapRequest.Validate if the designated constraints aren't met.

func (TapRequestValidationError) Cause

func (e TapRequestValidationError) Cause() error

Cause function returns cause value.

func (TapRequestValidationError) Error

Error satisfies the builtin error interface

func (TapRequestValidationError) ErrorName

func (e TapRequestValidationError) ErrorName() string

ErrorName returns error name.

func (TapRequestValidationError) Field

Field function returns field value.

func (TapRequestValidationError) Key

Key function returns key value.

func (TapRequestValidationError) Reason

func (e TapRequestValidationError) Reason() string

Reason function returns reason value.

type UnreadyTargetsDumps added in v0.9.7

type UnreadyTargetsDumps struct {

	// You can choose specific component to dump unready targets with mask query parameter.
	// See :ref:`/init_dump?mask={} <operations_admin_interface_init_dump_by_mask>` for more information.
	// The dumps of unready targets of all init managers.
	UnreadyTargetsDumps []*UnreadyTargetsDumps_UnreadyTargetsDump `protobuf:"bytes,1,rep,name=unready_targets_dumps,json=unreadyTargetsDumps,proto3" json:"unready_targets_dumps,omitempty"`
	// contains filtered or unexported fields
}

Dumps of unready targets of envoy init managers. Envoy's admin fills this message with init managers, which provides the information of their unready targets. The :ref:`/init_dump <operations_admin_interface_init_dump>` will dump all unready targets information.

func (*UnreadyTargetsDumps) Descriptor deprecated added in v0.9.7

func (*UnreadyTargetsDumps) Descriptor() ([]byte, []int)

Deprecated: Use UnreadyTargetsDumps.ProtoReflect.Descriptor instead.

func (*UnreadyTargetsDumps) GetUnreadyTargetsDumps added in v0.9.7

func (x *UnreadyTargetsDumps) GetUnreadyTargetsDumps() []*UnreadyTargetsDumps_UnreadyTargetsDump

func (*UnreadyTargetsDumps) ProtoMessage added in v0.9.7

func (*UnreadyTargetsDumps) ProtoMessage()

func (*UnreadyTargetsDumps) ProtoReflect added in v0.9.7

func (x *UnreadyTargetsDumps) ProtoReflect() protoreflect.Message

func (*UnreadyTargetsDumps) Reset added in v0.9.7

func (x *UnreadyTargetsDumps) Reset()

func (*UnreadyTargetsDumps) String added in v0.9.7

func (x *UnreadyTargetsDumps) String() string

func (*UnreadyTargetsDumps) Validate added in v0.9.7

func (m *UnreadyTargetsDumps) Validate() error

Validate checks the field values on UnreadyTargetsDumps with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnreadyTargetsDumpsValidationError added in v0.9.7

type UnreadyTargetsDumpsValidationError struct {
	// contains filtered or unexported fields
}

UnreadyTargetsDumpsValidationError is the validation error returned by UnreadyTargetsDumps.Validate if the designated constraints aren't met.

func (UnreadyTargetsDumpsValidationError) Cause added in v0.9.7

Cause function returns cause value.

func (UnreadyTargetsDumpsValidationError) Error added in v0.9.7

Error satisfies the builtin error interface

func (UnreadyTargetsDumpsValidationError) ErrorName added in v0.9.7

ErrorName returns error name.

func (UnreadyTargetsDumpsValidationError) Field added in v0.9.7

Field function returns field value.

func (UnreadyTargetsDumpsValidationError) Key added in v0.9.7

Key function returns key value.

func (UnreadyTargetsDumpsValidationError) Reason added in v0.9.7

Reason function returns reason value.

type UnreadyTargetsDumps_UnreadyTargetsDump added in v0.9.7

type UnreadyTargetsDumps_UnreadyTargetsDump struct {

	// Name of the init manager. Example: "init_manager_xxx".
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Names of unready targets of the init manager. Example: "target_xxx".
	TargetNames []string `protobuf:"bytes,2,rep,name=target_names,json=targetNames,proto3" json:"target_names,omitempty"`
	// contains filtered or unexported fields
}

Message of unready targets information of an init manager.

func (*UnreadyTargetsDumps_UnreadyTargetsDump) Descriptor deprecated added in v0.9.7

func (*UnreadyTargetsDumps_UnreadyTargetsDump) Descriptor() ([]byte, []int)

Deprecated: Use UnreadyTargetsDumps_UnreadyTargetsDump.ProtoReflect.Descriptor instead.

func (*UnreadyTargetsDumps_UnreadyTargetsDump) GetName added in v0.9.7

func (*UnreadyTargetsDumps_UnreadyTargetsDump) GetTargetNames added in v0.9.7

func (x *UnreadyTargetsDumps_UnreadyTargetsDump) GetTargetNames() []string

func (*UnreadyTargetsDumps_UnreadyTargetsDump) ProtoMessage added in v0.9.7

func (*UnreadyTargetsDumps_UnreadyTargetsDump) ProtoReflect added in v0.9.7

func (*UnreadyTargetsDumps_UnreadyTargetsDump) Reset added in v0.9.7

func (*UnreadyTargetsDumps_UnreadyTargetsDump) String added in v0.9.7

func (*UnreadyTargetsDumps_UnreadyTargetsDump) Validate added in v0.9.7

Validate checks the field values on UnreadyTargetsDumps_UnreadyTargetsDump with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UnreadyTargetsDumps_UnreadyTargetsDumpValidationError added in v0.9.7

type UnreadyTargetsDumps_UnreadyTargetsDumpValidationError struct {
	// contains filtered or unexported fields
}

UnreadyTargetsDumps_UnreadyTargetsDumpValidationError is the validation error returned by UnreadyTargetsDumps_UnreadyTargetsDump.Validate if the designated constraints aren't met.

func (UnreadyTargetsDumps_UnreadyTargetsDumpValidationError) Cause added in v0.9.7

Cause function returns cause value.

func (UnreadyTargetsDumps_UnreadyTargetsDumpValidationError) Error added in v0.9.7

Error satisfies the builtin error interface

func (UnreadyTargetsDumps_UnreadyTargetsDumpValidationError) ErrorName added in v0.9.7

ErrorName returns error name.

func (UnreadyTargetsDumps_UnreadyTargetsDumpValidationError) Field added in v0.9.7

Field function returns field value.

func (UnreadyTargetsDumps_UnreadyTargetsDumpValidationError) Key added in v0.9.7

Key function returns key value.

func (UnreadyTargetsDumps_UnreadyTargetsDumpValidationError) Reason added in v0.9.7

Reason function returns reason value.

type UpdateFailureState

type UpdateFailureState struct {

	// What the component configuration would have been if the update had succeeded.
	// This field may not be populated by xDS clients due to storage overhead.
	FailedConfiguration *any.Any `protobuf:"bytes,1,opt,name=failed_configuration,json=failedConfiguration,proto3" json:"failed_configuration,omitempty"`
	// Time of the latest failed update attempt.
	LastUpdateAttempt *timestamp.Timestamp `protobuf:"bytes,2,opt,name=last_update_attempt,json=lastUpdateAttempt,proto3" json:"last_update_attempt,omitempty"`
	// Details about the last failed update attempt.
	Details string `protobuf:"bytes,3,opt,name=details,proto3" json:"details,omitempty"`
	// This is the version of the rejected resource.
	// [#not-implemented-hide:]
	VersionInfo string `protobuf:"bytes,4,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateFailureState) Descriptor deprecated

func (*UpdateFailureState) Descriptor() ([]byte, []int)

Deprecated: Use UpdateFailureState.ProtoReflect.Descriptor instead.

func (*UpdateFailureState) GetDetails

func (x *UpdateFailureState) GetDetails() string

func (*UpdateFailureState) GetFailedConfiguration

func (x *UpdateFailureState) GetFailedConfiguration() *any.Any

func (*UpdateFailureState) GetLastUpdateAttempt

func (x *UpdateFailureState) GetLastUpdateAttempt() *timestamp.Timestamp

func (*UpdateFailureState) GetVersionInfo added in v0.9.9

func (x *UpdateFailureState) GetVersionInfo() string

func (*UpdateFailureState) ProtoMessage

func (*UpdateFailureState) ProtoMessage()

func (*UpdateFailureState) ProtoReflect

func (x *UpdateFailureState) ProtoReflect() protoreflect.Message

func (*UpdateFailureState) Reset

func (x *UpdateFailureState) Reset()

func (*UpdateFailureState) String

func (x *UpdateFailureState) String() string

func (*UpdateFailureState) Validate

func (m *UpdateFailureState) Validate() error

Validate checks the field values on UpdateFailureState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type UpdateFailureStateValidationError

type UpdateFailureStateValidationError struct {
	// contains filtered or unexported fields
}

UpdateFailureStateValidationError is the validation error returned by UpdateFailureState.Validate if the designated constraints aren't met.

func (UpdateFailureStateValidationError) Cause

Cause function returns cause value.

func (UpdateFailureStateValidationError) Error

Error satisfies the builtin error interface

func (UpdateFailureStateValidationError) ErrorName

ErrorName returns error name.

func (UpdateFailureStateValidationError) Field

Field function returns field value.

func (UpdateFailureStateValidationError) Key

Key function returns key value.

func (UpdateFailureStateValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL