Enum value maps for SimpleMetric_Type.
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 ServerInfo_State.
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 CommandLineOptions_IpVersion.
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_Mode.
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, } )
var File_envoy_admin_v2alpha_certs_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_clusters_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_config_dump_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_listeners_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_memory_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_metrics_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_mutex_stats_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_server_info_proto protoreflect.FileDescriptor
var File_envoy_admin_v2alpha_tap_proto protoreflect.FileDescriptor
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.
type BootstrapConfigDump struct { Bootstrap *v2.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 }
func (*BootstrapConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use BootstrapConfigDump.ProtoReflect.Descriptor instead.
func (x *BootstrapConfigDump) GetBootstrap() *v2.Bootstrap
func (x *BootstrapConfigDump) GetLastUpdated() *timestamp.Timestamp
func (*BootstrapConfigDump) ProtoMessage()
func (x *BootstrapConfigDump) ProtoReflect() protoreflect.Message
func (x *BootstrapConfigDump) Reset()
func (x *BootstrapConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *BootstrapConfigDump) ValidateAll() error
ValidateAll checks the field values on BootstrapConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in BootstrapConfigDumpMultiError, or nil if none found.
BootstrapConfigDumpMultiError is an error wrapping multiple validation errors returned by BootstrapConfigDump.ValidateAll() if the designated constraints aren't met.
type BootstrapConfigDumpMultiError []error
func (m BootstrapConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m BootstrapConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
BootstrapConfigDumpValidationError is the validation error returned by BootstrapConfigDump.Validate if the designated constraints aren't met.
type BootstrapConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e BootstrapConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e BootstrapConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e BootstrapConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e BootstrapConfigDumpValidationError) Field() string
Field function returns field value.
func (e BootstrapConfigDumpValidationError) Key() bool
Key function returns key value.
func (e BootstrapConfigDumpValidationError) Reason() string
Reason function returns reason value.
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() ([]byte, []int)
Deprecated: Use Certificate.ProtoReflect.Descriptor instead.
func (x *Certificate) GetCaCert() []*CertificateDetails
func (x *Certificate) GetCertChain() []*CertificateDetails
func (*Certificate) ProtoMessage()
func (x *Certificate) ProtoReflect() protoreflect.Message
func (x *Certificate) Reset()
func (x *Certificate) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *Certificate) ValidateAll() error
ValidateAll checks the field values on Certificate with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CertificateMultiError, or nil if none found.
[#next-free-field: 7]
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"` // contains filtered or unexported fields }
func (*CertificateDetails) Descriptor() ([]byte, []int)
Deprecated: Use CertificateDetails.ProtoReflect.Descriptor instead.
func (x *CertificateDetails) GetDaysUntilExpiration() uint64
func (x *CertificateDetails) GetExpirationTime() *timestamp.Timestamp
func (x *CertificateDetails) GetPath() string
func (x *CertificateDetails) GetSerialNumber() string
func (x *CertificateDetails) GetSubjectAltNames() []*SubjectAlternateName
func (x *CertificateDetails) GetValidFrom() *timestamp.Timestamp
func (*CertificateDetails) ProtoMessage()
func (x *CertificateDetails) ProtoReflect() protoreflect.Message
func (x *CertificateDetails) Reset()
func (x *CertificateDetails) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *CertificateDetails) ValidateAll() error
ValidateAll checks the field values on CertificateDetails with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CertificateDetailsMultiError, or nil if none found.
CertificateDetailsMultiError is an error wrapping multiple validation errors returned by CertificateDetails.ValidateAll() if the designated constraints aren't met.
type CertificateDetailsMultiError []error
func (m CertificateDetailsMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m CertificateDetailsMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
CertificateDetailsValidationError is the validation error returned by CertificateDetails.Validate if the designated constraints aren't met.
type CertificateDetailsValidationError struct {
// contains filtered or unexported fields
}
func (e CertificateDetailsValidationError) Cause() error
Cause function returns cause value.
func (e CertificateDetailsValidationError) Error() string
Error satisfies the builtin error interface
func (e CertificateDetailsValidationError) ErrorName() string
ErrorName returns error name.
func (e CertificateDetailsValidationError) Field() string
Field function returns field value.
func (e CertificateDetailsValidationError) Key() bool
Key function returns key value.
func (e CertificateDetailsValidationError) Reason() string
Reason function returns reason value.
CertificateMultiError is an error wrapping multiple validation errors returned by Certificate.ValidateAll() if the designated constraints aren't met.
type CertificateMultiError []error
func (m CertificateMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m CertificateMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
CertificateValidationError is the validation error returned by Certificate.Validate if the designated constraints aren't met.
type CertificateValidationError struct {
// contains filtered or unexported fields
}
func (e CertificateValidationError) Cause() error
Cause function returns cause value.
func (e CertificateValidationError) Error() string
Error satisfies the builtin error interface
func (e CertificateValidationError) ErrorName() string
ErrorName returns error name.
func (e CertificateValidationError) Field() string
Field function returns field value.
func (e CertificateValidationError) Key() bool
Key function returns key value.
func (e CertificateValidationError) Reason() string
Reason function returns reason value.
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.
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 }
func (*Certificates) Descriptor() ([]byte, []int)
Deprecated: Use Certificates.ProtoReflect.Descriptor instead.
func (x *Certificates) GetCertificates() []*Certificate
func (*Certificates) ProtoMessage()
func (x *Certificates) ProtoReflect() protoreflect.Message
func (x *Certificates) Reset()
func (x *Certificates) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *Certificates) ValidateAll() error
ValidateAll checks the field values on Certificates with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CertificatesMultiError, or nil if none found.
CertificatesMultiError is an error wrapping multiple validation errors returned by Certificates.ValidateAll() if the designated constraints aren't met.
type CertificatesMultiError []error
func (m CertificatesMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m CertificatesMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
CertificatesValidationError is the validation error returned by Certificates.Validate if the designated constraints aren't met.
type CertificatesValidationError struct {
// contains filtered or unexported fields
}
func (e CertificatesValidationError) Cause() error
Cause function returns cause value.
func (e CertificatesValidationError) Error() string
Error satisfies the builtin error interface
func (e CertificatesValidationError) ErrorName() string
ErrorName returns error name.
func (e CertificatesValidationError) Field() string
Field function returns field value.
func (e CertificatesValidationError) Key() bool
Key function returns key value.
func (e CertificatesValidationError) Reason() string
Reason function returns reason value.
Details an individual cluster's current status. [#next-free-field: 6]
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_api_field_cluster.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_api_field_cluster.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 *_type.Percent `protobuf:"bytes,3,opt,name=success_rate_ejection_threshold,json=successRateEjectionThreshold,proto3" json:"success_rate_ejection_threshold,omitempty"` // 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_api_field_cluster.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 *_type.Percent `protobuf:"bytes,5,opt,name=local_origin_success_rate_ejection_threshold,json=localOriginSuccessRateEjectionThreshold,proto3" json:"local_origin_success_rate_ejection_threshold,omitempty"` // contains filtered or unexported fields }
func (*ClusterStatus) Descriptor() ([]byte, []int)
Deprecated: Use ClusterStatus.ProtoReflect.Descriptor instead.
func (x *ClusterStatus) GetAddedViaApi() bool
func (x *ClusterStatus) GetHostStatuses() []*HostStatus
func (x *ClusterStatus) GetLocalOriginSuccessRateEjectionThreshold() *_type.Percent
func (x *ClusterStatus) GetName() string
func (x *ClusterStatus) GetSuccessRateEjectionThreshold() *_type.Percent
func (*ClusterStatus) ProtoMessage()
func (x *ClusterStatus) ProtoReflect() protoreflect.Message
func (x *ClusterStatus) Reset()
func (x *ClusterStatus) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ClusterStatus) ValidateAll() error
ValidateAll checks the field values on ClusterStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterStatusMultiError, or nil if none found.
ClusterStatusMultiError is an error wrapping multiple validation errors returned by ClusterStatus.ValidateAll() if the designated constraints aren't met.
type ClusterStatusMultiError []error
func (m ClusterStatusMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ClusterStatusMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ClusterStatusValidationError is the validation error returned by ClusterStatus.Validate if the designated constraints aren't met.
type ClusterStatusValidationError struct {
// contains filtered or unexported fields
}
func (e ClusterStatusValidationError) Cause() error
Cause function returns cause value.
func (e ClusterStatusValidationError) Error() string
Error satisfies the builtin error interface
func (e ClusterStatusValidationError) ErrorName() string
ErrorName returns error name.
func (e ClusterStatusValidationError) Field() string
Field function returns field value.
func (e ClusterStatusValidationError) Key() bool
Key function returns key value.
func (e ClusterStatusValidationError) Reason() string
Reason function returns reason value.
Admin endpoint uses this wrapper for `/clusters` to display cluster status information. See :ref:`/clusters <operations_admin_interface_clusters>` for more information.
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 }
func (*Clusters) Descriptor() ([]byte, []int)
Deprecated: Use Clusters.ProtoReflect.Descriptor instead.
func (x *Clusters) GetClusterStatuses() []*ClusterStatus
func (*Clusters) ProtoMessage()
func (x *Clusters) ProtoReflect() protoreflect.Message
func (x *Clusters) Reset()
func (x *Clusters) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *Clusters) ValidateAll() error
ValidateAll checks the field values on Clusters with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClustersMultiError, or nil if none found.
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.
type ClustersConfigDump struct { // This is the :ref:`version_info <envoy_api_field_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 `protobuf:"bytes,3,rep,name=dynamic_active_clusters,json=dynamicActiveClusters,proto3" json:"dynamic_active_clusters,omitempty"` // 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 `protobuf:"bytes,4,rep,name=dynamic_warming_clusters,json=dynamicWarmingClusters,proto3" json:"dynamic_warming_clusters,omitempty"` // contains filtered or unexported fields }
func (*ClustersConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use ClustersConfigDump.ProtoReflect.Descriptor instead.
func (x *ClustersConfigDump) GetDynamicActiveClusters() []*ClustersConfigDump_DynamicCluster
func (x *ClustersConfigDump) GetDynamicWarmingClusters() []*ClustersConfigDump_DynamicCluster
func (x *ClustersConfigDump) GetStaticClusters() []*ClustersConfigDump_StaticCluster
func (x *ClustersConfigDump) GetVersionInfo() string
func (*ClustersConfigDump) ProtoMessage()
func (x *ClustersConfigDump) ProtoReflect() protoreflect.Message
func (x *ClustersConfigDump) Reset()
func (x *ClustersConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ClustersConfigDump) ValidateAll() error
ValidateAll checks the field values on ClustersConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClustersConfigDumpMultiError, or nil if none found.
ClustersConfigDumpMultiError is an error wrapping multiple validation errors returned by ClustersConfigDump.ValidateAll() if the designated constraints aren't met.
type ClustersConfigDumpMultiError []error
func (m ClustersConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ClustersConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ClustersConfigDumpValidationError is the validation error returned by ClustersConfigDump.Validate if the designated constraints aren't met.
type ClustersConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e ClustersConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e ClustersConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e ClustersConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e ClustersConfigDumpValidationError) Field() string
Field function returns field value.
func (e ClustersConfigDumpValidationError) Key() bool
Key function returns key value.
func (e ClustersConfigDumpValidationError) Reason() string
Reason function returns reason value.
Describes a dynamically loaded cluster via the CDS API.
type ClustersConfigDump_DynamicCluster struct { // This is the per-resource version information. This version is currently taken from the // :ref:`version_info <envoy_api_field_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 *any1.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"` // contains filtered or unexported fields }
func (*ClustersConfigDump_DynamicCluster) Descriptor() ([]byte, []int)
Deprecated: Use ClustersConfigDump_DynamicCluster.ProtoReflect.Descriptor instead.
func (x *ClustersConfigDump_DynamicCluster) GetCluster() *any1.Any
func (x *ClustersConfigDump_DynamicCluster) GetLastUpdated() *timestamp.Timestamp
func (x *ClustersConfigDump_DynamicCluster) GetVersionInfo() string
func (*ClustersConfigDump_DynamicCluster) ProtoMessage()
func (x *ClustersConfigDump_DynamicCluster) ProtoReflect() protoreflect.Message
func (x *ClustersConfigDump_DynamicCluster) Reset()
func (x *ClustersConfigDump_DynamicCluster) String() string
func (m *ClustersConfigDump_DynamicCluster) Validate() error
Validate checks the field values on ClustersConfigDump_DynamicCluster with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ClustersConfigDump_DynamicCluster) ValidateAll() error
ValidateAll checks the field values on ClustersConfigDump_DynamicCluster with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClustersConfigDump_DynamicClusterMultiError, or nil if none found.
ClustersConfigDump_DynamicClusterMultiError is an error wrapping multiple validation errors returned by ClustersConfigDump_DynamicCluster.ValidateAll() if the designated constraints aren't met.
type ClustersConfigDump_DynamicClusterMultiError []error
func (m ClustersConfigDump_DynamicClusterMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ClustersConfigDump_DynamicClusterMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ClustersConfigDump_DynamicClusterValidationError is the validation error returned by ClustersConfigDump_DynamicCluster.Validate if the designated constraints aren't met.
type ClustersConfigDump_DynamicClusterValidationError struct {
// contains filtered or unexported fields
}
func (e ClustersConfigDump_DynamicClusterValidationError) Cause() error
Cause function returns cause value.
func (e ClustersConfigDump_DynamicClusterValidationError) Error() string
Error satisfies the builtin error interface
func (e ClustersConfigDump_DynamicClusterValidationError) ErrorName() string
ErrorName returns error name.
func (e ClustersConfigDump_DynamicClusterValidationError) Field() string
Field function returns field value.
func (e ClustersConfigDump_DynamicClusterValidationError) Key() bool
Key function returns key value.
func (e ClustersConfigDump_DynamicClusterValidationError) Reason() string
Reason function returns reason value.
Describes a statically loaded cluster.
type ClustersConfigDump_StaticCluster struct { // The cluster config. Cluster *any1.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 }
func (*ClustersConfigDump_StaticCluster) Descriptor() ([]byte, []int)
Deprecated: Use ClustersConfigDump_StaticCluster.ProtoReflect.Descriptor instead.
func (x *ClustersConfigDump_StaticCluster) GetCluster() *any1.Any
func (x *ClustersConfigDump_StaticCluster) GetLastUpdated() *timestamp.Timestamp
func (*ClustersConfigDump_StaticCluster) ProtoMessage()
func (x *ClustersConfigDump_StaticCluster) ProtoReflect() protoreflect.Message
func (x *ClustersConfigDump_StaticCluster) Reset()
func (x *ClustersConfigDump_StaticCluster) String() string
func (m *ClustersConfigDump_StaticCluster) Validate() error
Validate checks the field values on ClustersConfigDump_StaticCluster with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ClustersConfigDump_StaticCluster) ValidateAll() error
ValidateAll checks the field values on ClustersConfigDump_StaticCluster with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClustersConfigDump_StaticClusterMultiError, or nil if none found.
ClustersConfigDump_StaticClusterMultiError is an error wrapping multiple validation errors returned by ClustersConfigDump_StaticCluster.ValidateAll() if the designated constraints aren't met.
type ClustersConfigDump_StaticClusterMultiError []error
func (m ClustersConfigDump_StaticClusterMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ClustersConfigDump_StaticClusterMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ClustersConfigDump_StaticClusterValidationError is the validation error returned by ClustersConfigDump_StaticCluster.Validate if the designated constraints aren't met.
type ClustersConfigDump_StaticClusterValidationError struct {
// contains filtered or unexported fields
}
func (e ClustersConfigDump_StaticClusterValidationError) Cause() error
Cause function returns cause value.
func (e ClustersConfigDump_StaticClusterValidationError) Error() string
Error satisfies the builtin error interface
func (e ClustersConfigDump_StaticClusterValidationError) ErrorName() string
ErrorName returns error name.
func (e ClustersConfigDump_StaticClusterValidationError) Field() string
Field function returns field value.
func (e ClustersConfigDump_StaticClusterValidationError) Key() bool
Key function returns key value.
func (e ClustersConfigDump_StaticClusterValidationError) Reason() string
Reason function returns reason value.
ClustersMultiError is an error wrapping multiple validation errors returned by Clusters.ValidateAll() if the designated constraints aren't met.
type ClustersMultiError []error
func (m ClustersMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ClustersMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ClustersValidationError is the validation error returned by Clusters.Validate if the designated constraints aren't met.
type ClustersValidationError struct {
// contains filtered or unexported fields
}
func (e ClustersValidationError) Cause() error
Cause function returns cause value.
func (e ClustersValidationError) Error() string
Error satisfies the builtin error interface
func (e ClustersValidationError) ErrorName() string
ErrorName returns error name.
func (e ClustersValidationError) Field() string
Field function returns field value.
func (e ClustersValidationError) Key() bool
Key function returns key value.
func (e ClustersValidationError) Reason() string
Reason function returns reason value.
[#next-free-field: 29]
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:`--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 `protobuf:"varint,5,opt,name=allow_unknown_static_fields,json=allowUnknownStaticFields,proto3" json:"allow_unknown_static_fields,omitempty"` // See :option:`--reject-unknown-dynamic-fields` for details. RejectUnknownDynamicFields bool `protobuf:"varint,26,opt,name=reject_unknown_dynamic_fields,json=rejectUnknownDynamicFields,proto3" json:"reject_unknown_dynamic_fields,omitempty"` // 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 `protobuf:"varint,7,opt,name=local_address_ip_version,json=localAddressIpVersion,proto3,enum=envoy.admin.v2alpha.CommandLineOptions_IpVersion" json:"local_address_ip_version,omitempty"` // 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:`--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.v2alpha.CommandLineOptions_Mode" json:"mode,omitempty"` // max_stats and max_obj_name_len are now unused and have no effect. // // Deprecated: Do not use. MaxStats uint64 `protobuf:"varint,20,opt,name=max_stats,json=maxStats,proto3" json:"max_stats,omitempty"` // Deprecated: Do not use. MaxObjNameLen uint64 `protobuf:"varint,21,opt,name=max_obj_name_len,json=maxObjNameLen,proto3" json:"max_obj_name_len,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"` // contains filtered or unexported fields }
func (*CommandLineOptions) Descriptor() ([]byte, []int)
Deprecated: Use CommandLineOptions.ProtoReflect.Descriptor instead.
func (x *CommandLineOptions) GetAdminAddressPath() string
func (x *CommandLineOptions) GetAllowUnknownStaticFields() bool
func (x *CommandLineOptions) GetBaseId() uint64
func (x *CommandLineOptions) GetComponentLogLevel() string
func (x *CommandLineOptions) GetConcurrency() uint32
func (x *CommandLineOptions) GetConfigPath() string
func (x *CommandLineOptions) GetConfigYaml() string
func (x *CommandLineOptions) GetCpusetThreads() bool
func (x *CommandLineOptions) GetDisableHotRestart() bool
func (x *CommandLineOptions) GetDisabledExtensions() []string
func (x *CommandLineOptions) GetDrainTime() *duration.Duration
func (x *CommandLineOptions) GetEnableMutexTracing() bool
func (x *CommandLineOptions) GetFileFlushInterval() *duration.Duration
func (x *CommandLineOptions) GetLocalAddressIpVersion() CommandLineOptions_IpVersion
func (x *CommandLineOptions) GetLogFormat() string
func (x *CommandLineOptions) GetLogFormatEscaped() bool
func (x *CommandLineOptions) GetLogLevel() string
func (x *CommandLineOptions) GetLogPath() string
func (x *CommandLineOptions) GetMaxObjNameLen() uint64
Deprecated: Do not use.
func (x *CommandLineOptions) GetMaxStats() uint64
Deprecated: Do not use.
func (x *CommandLineOptions) GetMode() CommandLineOptions_Mode
func (x *CommandLineOptions) GetParentShutdownTime() *duration.Duration
func (x *CommandLineOptions) GetRejectUnknownDynamicFields() bool
func (x *CommandLineOptions) GetRestartEpoch() uint32
func (x *CommandLineOptions) GetServiceCluster() string
func (x *CommandLineOptions) GetServiceNode() string
func (x *CommandLineOptions) GetServiceZone() string
func (*CommandLineOptions) ProtoMessage()
func (x *CommandLineOptions) ProtoReflect() protoreflect.Message
func (x *CommandLineOptions) Reset()
func (x *CommandLineOptions) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *CommandLineOptions) ValidateAll() error
ValidateAll checks the field values on CommandLineOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommandLineOptionsMultiError, or nil if none found.
CommandLineOptionsMultiError is an error wrapping multiple validation errors returned by CommandLineOptions.ValidateAll() if the designated constraints aren't met.
type CommandLineOptionsMultiError []error
func (m CommandLineOptionsMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m CommandLineOptionsMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
CommandLineOptionsValidationError is the validation error returned by CommandLineOptions.Validate if the designated constraints aren't met.
type CommandLineOptionsValidationError struct {
// contains filtered or unexported fields
}
func (e CommandLineOptionsValidationError) Cause() error
Cause function returns cause value.
func (e CommandLineOptionsValidationError) Error() string
Error satisfies the builtin error interface
func (e CommandLineOptionsValidationError) ErrorName() string
ErrorName returns error name.
func (e CommandLineOptionsValidationError) Field() string
Field function returns field value.
func (e CommandLineOptionsValidationError) Key() bool
Key function returns key value.
func (e CommandLineOptionsValidationError) Reason() string
Reason function returns reason value.
type CommandLineOptions_IpVersion int32
const ( CommandLineOptions_v4 CommandLineOptions_IpVersion = 0 CommandLineOptions_v6 CommandLineOptions_IpVersion = 1 )
func (CommandLineOptions_IpVersion) Descriptor() protoreflect.EnumDescriptor
func (x CommandLineOptions_IpVersion) Enum() *CommandLineOptions_IpVersion
func (CommandLineOptions_IpVersion) EnumDescriptor() ([]byte, []int)
Deprecated: Use CommandLineOptions_IpVersion.Descriptor instead.
func (x CommandLineOptions_IpVersion) Number() protoreflect.EnumNumber
func (x CommandLineOptions_IpVersion) String() string
func (CommandLineOptions_IpVersion) Type() protoreflect.EnumType
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() protoreflect.EnumDescriptor
func (x CommandLineOptions_Mode) Enum() *CommandLineOptions_Mode
func (CommandLineOptions_Mode) EnumDescriptor() ([]byte, []int)
Deprecated: Use CommandLineOptions_Mode.Descriptor instead.
func (x CommandLineOptions_Mode) Number() protoreflect.EnumNumber
func (x CommandLineOptions_Mode) String() string
func (CommandLineOptions_Mode) Type() protoreflect.EnumType
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.
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_api_msg_admin.v2alpha.BootstrapConfigDump>` // * *clusters*: :ref:`ClustersConfigDump <envoy_api_msg_admin.v2alpha.ClustersConfigDump>` // * *listeners*: :ref:`ListenersConfigDump <envoy_api_msg_admin.v2alpha.ListenersConfigDump>` // * *routes*: :ref:`RoutesConfigDump <envoy_api_msg_admin.v2alpha.RoutesConfigDump>` // // 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 []*any1.Any `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"` // contains filtered or unexported fields }
func (*ConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use ConfigDump.ProtoReflect.Descriptor instead.
func (x *ConfigDump) GetConfigs() []*any1.Any
func (*ConfigDump) ProtoMessage()
func (x *ConfigDump) ProtoReflect() protoreflect.Message
func (x *ConfigDump) Reset()
func (x *ConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ConfigDump) ValidateAll() error
ValidateAll checks the field values on ConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ConfigDumpMultiError, or nil if none found.
ConfigDumpMultiError is an error wrapping multiple validation errors returned by ConfigDump.ValidateAll() if the designated constraints aren't met.
type ConfigDumpMultiError []error
func (m ConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ConfigDumpValidationError is the validation error returned by ConfigDump.Validate if the designated constraints aren't met.
type ConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e ConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e ConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e ConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e ConfigDumpValidationError) Field() string
Field function returns field value.
func (e ConfigDumpValidationError) Key() bool
Key function returns key value.
func (e ConfigDumpValidationError) Reason() string
Reason function returns reason value.
Health status for a host. [#next-free-field: 7]
type HostHealthStatus struct { // The host is currently failing active health checks. FailedActiveHealthCheck bool `protobuf:"varint,1,opt,name=failed_active_health_check,json=failedActiveHealthCheck,proto3" json:"failed_active_health_check,omitempty"` // 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 `protobuf:"varint,4,opt,name=failed_active_degraded_check,json=failedActiveDegradedCheck,proto3" json:"failed_active_degraded_check,omitempty"` // The host has been removed from service discovery, but is being stabilized due to active // health checking. PendingDynamicRemoval bool `protobuf:"varint,5,opt,name=pending_dynamic_removal,json=pendingDynamicRemoval,proto3" json:"pending_dynamic_removal,omitempty"` // 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"` // 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 core.HealthStatus `protobuf:"varint,3,opt,name=eds_health_status,json=edsHealthStatus,proto3,enum=envoy.api.v2.core.HealthStatus" json:"eds_health_status,omitempty"` // contains filtered or unexported fields }
func (*HostHealthStatus) Descriptor() ([]byte, []int)
Deprecated: Use HostHealthStatus.ProtoReflect.Descriptor instead.
func (x *HostHealthStatus) GetEdsHealthStatus() core.HealthStatus
func (x *HostHealthStatus) GetFailedActiveDegradedCheck() bool
func (x *HostHealthStatus) GetFailedActiveHealthCheck() bool
func (x *HostHealthStatus) GetFailedOutlierCheck() bool
func (x *HostHealthStatus) GetPendingActiveHc() bool
func (x *HostHealthStatus) GetPendingDynamicRemoval() bool
func (*HostHealthStatus) ProtoMessage()
func (x *HostHealthStatus) ProtoReflect() protoreflect.Message
func (x *HostHealthStatus) Reset()
func (x *HostHealthStatus) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *HostHealthStatus) ValidateAll() error
ValidateAll checks the field values on HostHealthStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in HostHealthStatusMultiError, or nil if none found.
HostHealthStatusMultiError is an error wrapping multiple validation errors returned by HostHealthStatus.ValidateAll() if the designated constraints aren't met.
type HostHealthStatusMultiError []error
func (m HostHealthStatusMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m HostHealthStatusMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
HostHealthStatusValidationError is the validation error returned by HostHealthStatus.Validate if the designated constraints aren't met.
type HostHealthStatusValidationError struct {
// contains filtered or unexported fields
}
func (e HostHealthStatusValidationError) Cause() error
Cause function returns cause value.
func (e HostHealthStatusValidationError) Error() string
Error satisfies the builtin error interface
func (e HostHealthStatusValidationError) ErrorName() string
ErrorName returns error name.
func (e HostHealthStatusValidationError) Field() string
Field function returns field value.
func (e HostHealthStatusValidationError) Key() bool
Key function returns key value.
func (e HostHealthStatusValidationError) Reason() string
Reason function returns reason value.
Current state of a particular host. [#next-free-field: 10]
type HostStatus struct { // Address of this host. Address *core.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_api_field_cluster.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_api_field_cluster.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 *_type.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_api_field_cluster.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 *_type.Percent `protobuf:"bytes,8,opt,name=local_origin_success_rate,json=localOriginSuccessRate,proto3" json:"local_origin_success_rate,omitempty"` // locality of the host. Locality *core.Locality `protobuf:"bytes,9,opt,name=locality,proto3" json:"locality,omitempty"` // contains filtered or unexported fields }
func (*HostStatus) Descriptor() ([]byte, []int)
Deprecated: Use HostStatus.ProtoReflect.Descriptor instead.
func (x *HostStatus) GetAddress() *core.Address
func (x *HostStatus) GetHealthStatus() *HostHealthStatus
func (x *HostStatus) GetHostname() string
func (x *HostStatus) GetLocalOriginSuccessRate() *_type.Percent
func (x *HostStatus) GetLocality() *core.Locality
func (x *HostStatus) GetPriority() uint32
func (x *HostStatus) GetStats() []*SimpleMetric
func (x *HostStatus) GetSuccessRate() *_type.Percent
func (x *HostStatus) GetWeight() uint32
func (*HostStatus) ProtoMessage()
func (x *HostStatus) ProtoReflect() protoreflect.Message
func (x *HostStatus) Reset()
func (x *HostStatus) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *HostStatus) ValidateAll() error
ValidateAll checks the field values on HostStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in HostStatusMultiError, or nil if none found.
HostStatusMultiError is an error wrapping multiple validation errors returned by HostStatus.ValidateAll() if the designated constraints aren't met.
type HostStatusMultiError []error
func (m HostStatusMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m HostStatusMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
HostStatusValidationError is the validation error returned by HostStatus.Validate if the designated constraints aren't met.
type HostStatusValidationError struct {
// contains filtered or unexported fields
}
func (e HostStatusValidationError) Cause() error
Cause function returns cause value.
func (e HostStatusValidationError) Error() string
Error satisfies the builtin error interface
func (e HostStatusValidationError) ErrorName() string
ErrorName returns error name.
func (e HostStatusValidationError) Field() string
Field function returns field value.
func (e HostStatusValidationError) Key() bool
Key function returns key value.
func (e HostStatusValidationError) Reason() string
Reason function returns reason value.
Details an individual listener's current status.
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 *core.Address `protobuf:"bytes,2,opt,name=local_address,json=localAddress,proto3" json:"local_address,omitempty"` // contains filtered or unexported fields }
func (*ListenerStatus) Descriptor() ([]byte, []int)
Deprecated: Use ListenerStatus.ProtoReflect.Descriptor instead.
func (x *ListenerStatus) GetLocalAddress() *core.Address
func (x *ListenerStatus) GetName() string
func (*ListenerStatus) ProtoMessage()
func (x *ListenerStatus) ProtoReflect() protoreflect.Message
func (x *ListenerStatus) Reset()
func (x *ListenerStatus) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ListenerStatus) ValidateAll() error
ValidateAll checks the field values on ListenerStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListenerStatusMultiError, or nil if none found.
ListenerStatusMultiError is an error wrapping multiple validation errors returned by ListenerStatus.ValidateAll() if the designated constraints aren't met.
type ListenerStatusMultiError []error
func (m ListenerStatusMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ListenerStatusMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ListenerStatusValidationError is the validation error returned by ListenerStatus.Validate if the designated constraints aren't met.
type ListenerStatusValidationError struct {
// contains filtered or unexported fields
}
func (e ListenerStatusValidationError) Cause() error
Cause function returns cause value.
func (e ListenerStatusValidationError) Error() string
Error satisfies the builtin error interface
func (e ListenerStatusValidationError) ErrorName() string
ErrorName returns error name.
func (e ListenerStatusValidationError) Field() string
Field function returns field value.
func (e ListenerStatusValidationError) Key() bool
Key function returns key value.
func (e ListenerStatusValidationError) Reason() string
Reason function returns reason value.
Admin endpoint uses this wrapper for `/listeners` to display listener status information. See :ref:`/listeners <operations_admin_interface_listeners>` for more information.
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 }
func (*Listeners) Descriptor() ([]byte, []int)
Deprecated: Use Listeners.ProtoReflect.Descriptor instead.
func (x *Listeners) GetListenerStatuses() []*ListenerStatus
func (*Listeners) ProtoMessage()
func (x *Listeners) ProtoReflect() protoreflect.Message
func (x *Listeners) Reset()
func (x *Listeners) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *Listeners) ValidateAll() error
ValidateAll checks the field values on Listeners with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListenersMultiError, or nil if none found.
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.
type ListenersConfigDump struct { // This is the :ref:`version_info <envoy_api_field_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 }
func (*ListenersConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use ListenersConfigDump.ProtoReflect.Descriptor instead.
func (x *ListenersConfigDump) GetDynamicListeners() []*ListenersConfigDump_DynamicListener
func (x *ListenersConfigDump) GetStaticListeners() []*ListenersConfigDump_StaticListener
func (x *ListenersConfigDump) GetVersionInfo() string
func (*ListenersConfigDump) ProtoMessage()
func (x *ListenersConfigDump) ProtoReflect() protoreflect.Message
func (x *ListenersConfigDump) Reset()
func (x *ListenersConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ListenersConfigDump) ValidateAll() error
ValidateAll checks the field values on ListenersConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListenersConfigDumpMultiError, or nil if none found.
ListenersConfigDumpMultiError is an error wrapping multiple validation errors returned by ListenersConfigDump.ValidateAll() if the designated constraints aren't met.
type ListenersConfigDumpMultiError []error
func (m ListenersConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ListenersConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ListenersConfigDumpValidationError is the validation error returned by ListenersConfigDump.Validate if the designated constraints aren't met.
type ListenersConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e ListenersConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e ListenersConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e ListenersConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e ListenersConfigDumpValidationError) Field() string
Field function returns field value.
func (e ListenersConfigDumpValidationError) Key() bool
Key function returns key value.
func (e ListenersConfigDumpValidationError) Reason() string
Reason function returns reason value.
Describes a dynamically loaded listener via the LDS API. [#next-free-field: 6]
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. ErrorState *UpdateFailureState `protobuf:"bytes,5,opt,name=error_state,json=errorState,proto3" json:"error_state,omitempty"` // contains filtered or unexported fields }
func (*ListenersConfigDump_DynamicListener) Descriptor() ([]byte, []int)
Deprecated: Use ListenersConfigDump_DynamicListener.ProtoReflect.Descriptor instead.
func (x *ListenersConfigDump_DynamicListener) GetActiveState() *ListenersConfigDump_DynamicListenerState
func (x *ListenersConfigDump_DynamicListener) GetDrainingState() *ListenersConfigDump_DynamicListenerState
func (x *ListenersConfigDump_DynamicListener) GetErrorState() *UpdateFailureState
func (x *ListenersConfigDump_DynamicListener) GetName() string
func (x *ListenersConfigDump_DynamicListener) GetWarmingState() *ListenersConfigDump_DynamicListenerState
func (*ListenersConfigDump_DynamicListener) ProtoMessage()
func (x *ListenersConfigDump_DynamicListener) ProtoReflect() protoreflect.Message
func (x *ListenersConfigDump_DynamicListener) Reset()
func (x *ListenersConfigDump_DynamicListener) String() string
func (m *ListenersConfigDump_DynamicListener) Validate() error
Validate checks the field values on ListenersConfigDump_DynamicListener with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ListenersConfigDump_DynamicListener) ValidateAll() error
ValidateAll checks the field values on ListenersConfigDump_DynamicListener with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListenersConfigDump_DynamicListenerMultiError, or nil if none found.
ListenersConfigDump_DynamicListenerMultiError is an error wrapping multiple validation errors returned by ListenersConfigDump_DynamicListener.ValidateAll() if the designated constraints aren't met.
type ListenersConfigDump_DynamicListenerMultiError []error
func (m ListenersConfigDump_DynamicListenerMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ListenersConfigDump_DynamicListenerMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type ListenersConfigDump_DynamicListenerState struct { // This is the per-resource version information. This version is currently taken from the // :ref:`version_info <envoy_api_field_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 *any1.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() ([]byte, []int)
Deprecated: Use ListenersConfigDump_DynamicListenerState.ProtoReflect.Descriptor instead.
func (x *ListenersConfigDump_DynamicListenerState) GetLastUpdated() *timestamp.Timestamp
func (x *ListenersConfigDump_DynamicListenerState) GetListener() *any1.Any
func (x *ListenersConfigDump_DynamicListenerState) GetVersionInfo() string
func (*ListenersConfigDump_DynamicListenerState) ProtoMessage()
func (x *ListenersConfigDump_DynamicListenerState) ProtoReflect() protoreflect.Message
func (x *ListenersConfigDump_DynamicListenerState) Reset()
func (x *ListenersConfigDump_DynamicListenerState) String() string
func (m *ListenersConfigDump_DynamicListenerState) Validate() error
Validate checks the field values on ListenersConfigDump_DynamicListenerState with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ListenersConfigDump_DynamicListenerState) ValidateAll() error
ValidateAll checks the field values on ListenersConfigDump_DynamicListenerState with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListenersConfigDump_DynamicListenerStateMultiError, or nil if none found.
ListenersConfigDump_DynamicListenerStateMultiError is an error wrapping multiple validation errors returned by ListenersConfigDump_DynamicListenerState.ValidateAll() if the designated constraints aren't met.
type ListenersConfigDump_DynamicListenerStateMultiError []error
func (m ListenersConfigDump_DynamicListenerStateMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ListenersConfigDump_DynamicListenerStateMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ListenersConfigDump_DynamicListenerStateValidationError is the validation error returned by ListenersConfigDump_DynamicListenerState.Validate if the designated constraints aren't met.
type ListenersConfigDump_DynamicListenerStateValidationError struct {
// contains filtered or unexported fields
}
func (e ListenersConfigDump_DynamicListenerStateValidationError) Cause() error
Cause function returns cause value.
func (e ListenersConfigDump_DynamicListenerStateValidationError) Error() string
Error satisfies the builtin error interface
func (e ListenersConfigDump_DynamicListenerStateValidationError) ErrorName() string
ErrorName returns error name.
func (e ListenersConfigDump_DynamicListenerStateValidationError) Field() string
Field function returns field value.
func (e ListenersConfigDump_DynamicListenerStateValidationError) Key() bool
Key function returns key value.
func (e ListenersConfigDump_DynamicListenerStateValidationError) Reason() string
Reason function returns reason value.
ListenersConfigDump_DynamicListenerValidationError is the validation error returned by ListenersConfigDump_DynamicListener.Validate if the designated constraints aren't met.
type ListenersConfigDump_DynamicListenerValidationError struct {
// contains filtered or unexported fields
}
func (e ListenersConfigDump_DynamicListenerValidationError) Cause() error
Cause function returns cause value.
func (e ListenersConfigDump_DynamicListenerValidationError) Error() string
Error satisfies the builtin error interface
func (e ListenersConfigDump_DynamicListenerValidationError) ErrorName() string
ErrorName returns error name.
func (e ListenersConfigDump_DynamicListenerValidationError) Field() string
Field function returns field value.
func (e ListenersConfigDump_DynamicListenerValidationError) Key() bool
Key function returns key value.
func (e ListenersConfigDump_DynamicListenerValidationError) Reason() string
Reason function returns reason value.
Describes a statically loaded listener.
type ListenersConfigDump_StaticListener struct { // The listener config. Listener *any1.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 }
func (*ListenersConfigDump_StaticListener) Descriptor() ([]byte, []int)
Deprecated: Use ListenersConfigDump_StaticListener.ProtoReflect.Descriptor instead.
func (x *ListenersConfigDump_StaticListener) GetLastUpdated() *timestamp.Timestamp
func (x *ListenersConfigDump_StaticListener) GetListener() *any1.Any
func (*ListenersConfigDump_StaticListener) ProtoMessage()
func (x *ListenersConfigDump_StaticListener) ProtoReflect() protoreflect.Message
func (x *ListenersConfigDump_StaticListener) Reset()
func (x *ListenersConfigDump_StaticListener) String() string
func (m *ListenersConfigDump_StaticListener) Validate() error
Validate checks the field values on ListenersConfigDump_StaticListener with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ListenersConfigDump_StaticListener) ValidateAll() error
ValidateAll checks the field values on ListenersConfigDump_StaticListener with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListenersConfigDump_StaticListenerMultiError, or nil if none found.
ListenersConfigDump_StaticListenerMultiError is an error wrapping multiple validation errors returned by ListenersConfigDump_StaticListener.ValidateAll() if the designated constraints aren't met.
type ListenersConfigDump_StaticListenerMultiError []error
func (m ListenersConfigDump_StaticListenerMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ListenersConfigDump_StaticListenerMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ListenersConfigDump_StaticListenerValidationError is the validation error returned by ListenersConfigDump_StaticListener.Validate if the designated constraints aren't met.
type ListenersConfigDump_StaticListenerValidationError struct {
// contains filtered or unexported fields
}
func (e ListenersConfigDump_StaticListenerValidationError) Cause() error
Cause function returns cause value.
func (e ListenersConfigDump_StaticListenerValidationError) Error() string
Error satisfies the builtin error interface
func (e ListenersConfigDump_StaticListenerValidationError) ErrorName() string
ErrorName returns error name.
func (e ListenersConfigDump_StaticListenerValidationError) Field() string
Field function returns field value.
func (e ListenersConfigDump_StaticListenerValidationError) Key() bool
Key function returns key value.
func (e ListenersConfigDump_StaticListenerValidationError) Reason() string
Reason function returns reason value.
ListenersMultiError is an error wrapping multiple validation errors returned by Listeners.ValidateAll() if the designated constraints aren't met.
type ListenersMultiError []error
func (m ListenersMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ListenersMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ListenersValidationError is the validation error returned by Listeners.Validate if the designated constraints aren't met.
type ListenersValidationError struct {
// contains filtered or unexported fields
}
func (e ListenersValidationError) Cause() error
Cause function returns cause value.
func (e ListenersValidationError) Error() string
Error satisfies the builtin error interface
func (e ListenersValidationError) ErrorName() string
ErrorName returns error name.
func (e ListenersValidationError) Field() string
Field function returns field value.
func (e ListenersValidationError) Key() bool
Key function returns key value.
func (e ListenersValidationError) Reason() string
Reason function returns reason value.
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]
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 }
func (*Memory) Descriptor() ([]byte, []int)
Deprecated: Use Memory.ProtoReflect.Descriptor instead.
func (x *Memory) GetAllocated() uint64
func (x *Memory) GetHeapSize() uint64
func (x *Memory) GetPageheapFree() uint64
func (x *Memory) GetPageheapUnmapped() uint64
func (x *Memory) GetTotalPhysicalBytes() uint64
func (x *Memory) GetTotalThreadCache() uint64
func (*Memory) ProtoMessage()
func (x *Memory) ProtoReflect() protoreflect.Message
func (x *Memory) Reset()
func (x *Memory) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *Memory) ValidateAll() error
ValidateAll checks the field values on Memory with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MemoryMultiError, or nil if none found.
MemoryMultiError is an error wrapping multiple validation errors returned by Memory.ValidateAll() if the designated constraints aren't met.
type MemoryMultiError []error
func (m MemoryMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m MemoryMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
MemoryValidationError is the validation error returned by Memory.Validate if the designated constraints aren't met.
type MemoryValidationError struct {
// contains filtered or unexported fields
}
func (e MemoryValidationError) Cause() error
Cause function returns cause value.
func (e MemoryValidationError) Error() string
Error satisfies the builtin error interface
func (e MemoryValidationError) ErrorName() string
ErrorName returns error name.
func (e MemoryValidationError) Field() string
Field function returns field value.
func (e MemoryValidationError) Key() bool
Key function returns key value.
func (e MemoryValidationError) Reason() string
Reason function returns reason value.
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).
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 }
func (*MutexStats) Descriptor() ([]byte, []int)
Deprecated: Use MutexStats.ProtoReflect.Descriptor instead.
func (x *MutexStats) GetCurrentWaitCycles() uint64
func (x *MutexStats) GetLifetimeWaitCycles() uint64
func (x *MutexStats) GetNumContentions() uint64
func (*MutexStats) ProtoMessage()
func (x *MutexStats) ProtoReflect() protoreflect.Message
func (x *MutexStats) Reset()
func (x *MutexStats) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *MutexStats) ValidateAll() error
ValidateAll checks the field values on MutexStats with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MutexStatsMultiError, or nil if none found.
MutexStatsMultiError is an error wrapping multiple validation errors returned by MutexStats.ValidateAll() if the designated constraints aren't met.
type MutexStatsMultiError []error
func (m MutexStatsMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m MutexStatsMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
MutexStatsValidationError is the validation error returned by MutexStats.Validate if the designated constraints aren't met.
type MutexStatsValidationError struct {
// contains filtered or unexported fields
}
func (e MutexStatsValidationError) Cause() error
Cause function returns cause value.
func (e MutexStatsValidationError) Error() string
Error satisfies the builtin error interface
func (e MutexStatsValidationError) ErrorName() string
ErrorName returns error name.
func (e MutexStatsValidationError) Field() string
Field function returns field value.
func (e MutexStatsValidationError) Key() bool
Key function returns key value.
func (e MutexStatsValidationError) Reason() string
Reason function returns reason value.
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.
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 }
func (*RoutesConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use RoutesConfigDump.ProtoReflect.Descriptor instead.
func (x *RoutesConfigDump) GetDynamicRouteConfigs() []*RoutesConfigDump_DynamicRouteConfig
func (x *RoutesConfigDump) GetStaticRouteConfigs() []*RoutesConfigDump_StaticRouteConfig
func (*RoutesConfigDump) ProtoMessage()
func (x *RoutesConfigDump) ProtoReflect() protoreflect.Message
func (x *RoutesConfigDump) Reset()
func (x *RoutesConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *RoutesConfigDump) ValidateAll() error
ValidateAll checks the field values on RoutesConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RoutesConfigDumpMultiError, or nil if none found.
RoutesConfigDumpMultiError is an error wrapping multiple validation errors returned by RoutesConfigDump.ValidateAll() if the designated constraints aren't met.
type RoutesConfigDumpMultiError []error
func (m RoutesConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m RoutesConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
RoutesConfigDumpValidationError is the validation error returned by RoutesConfigDump.Validate if the designated constraints aren't met.
type RoutesConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e RoutesConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e RoutesConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e RoutesConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e RoutesConfigDumpValidationError) Field() string
Field function returns field value.
func (e RoutesConfigDumpValidationError) Key() bool
Key function returns key value.
func (e RoutesConfigDumpValidationError) Reason() string
Reason function returns reason value.
type RoutesConfigDump_DynamicRouteConfig struct { // This is the per-resource version information. This version is currently taken from the // :ref:`version_info <envoy_api_field_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 *any1.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"` // contains filtered or unexported fields }
func (*RoutesConfigDump_DynamicRouteConfig) Descriptor() ([]byte, []int)
Deprecated: Use RoutesConfigDump_DynamicRouteConfig.ProtoReflect.Descriptor instead.
func (x *RoutesConfigDump_DynamicRouteConfig) GetLastUpdated() *timestamp.Timestamp
func (x *RoutesConfigDump_DynamicRouteConfig) GetRouteConfig() *any1.Any
func (x *RoutesConfigDump_DynamicRouteConfig) GetVersionInfo() string
func (*RoutesConfigDump_DynamicRouteConfig) ProtoMessage()
func (x *RoutesConfigDump_DynamicRouteConfig) ProtoReflect() protoreflect.Message
func (x *RoutesConfigDump_DynamicRouteConfig) Reset()
func (x *RoutesConfigDump_DynamicRouteConfig) String() string
func (m *RoutesConfigDump_DynamicRouteConfig) Validate() error
Validate checks the field values on RoutesConfigDump_DynamicRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *RoutesConfigDump_DynamicRouteConfig) ValidateAll() error
ValidateAll checks the field values on RoutesConfigDump_DynamicRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RoutesConfigDump_DynamicRouteConfigMultiError, or nil if none found.
RoutesConfigDump_DynamicRouteConfigMultiError is an error wrapping multiple validation errors returned by RoutesConfigDump_DynamicRouteConfig.ValidateAll() if the designated constraints aren't met.
type RoutesConfigDump_DynamicRouteConfigMultiError []error
func (m RoutesConfigDump_DynamicRouteConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m RoutesConfigDump_DynamicRouteConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
RoutesConfigDump_DynamicRouteConfigValidationError is the validation error returned by RoutesConfigDump_DynamicRouteConfig.Validate if the designated constraints aren't met.
type RoutesConfigDump_DynamicRouteConfigValidationError struct {
// contains filtered or unexported fields
}
func (e RoutesConfigDump_DynamicRouteConfigValidationError) Cause() error
Cause function returns cause value.
func (e RoutesConfigDump_DynamicRouteConfigValidationError) Error() string
Error satisfies the builtin error interface
func (e RoutesConfigDump_DynamicRouteConfigValidationError) ErrorName() string
ErrorName returns error name.
func (e RoutesConfigDump_DynamicRouteConfigValidationError) Field() string
Field function returns field value.
func (e RoutesConfigDump_DynamicRouteConfigValidationError) Key() bool
Key function returns key value.
func (e RoutesConfigDump_DynamicRouteConfigValidationError) Reason() string
Reason function returns reason value.
type RoutesConfigDump_StaticRouteConfig struct { // The route config. RouteConfig *any1.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() ([]byte, []int)
Deprecated: Use RoutesConfigDump_StaticRouteConfig.ProtoReflect.Descriptor instead.
func (x *RoutesConfigDump_StaticRouteConfig) GetLastUpdated() *timestamp.Timestamp
func (x *RoutesConfigDump_StaticRouteConfig) GetRouteConfig() *any1.Any
func (*RoutesConfigDump_StaticRouteConfig) ProtoMessage()
func (x *RoutesConfigDump_StaticRouteConfig) ProtoReflect() protoreflect.Message
func (x *RoutesConfigDump_StaticRouteConfig) Reset()
func (x *RoutesConfigDump_StaticRouteConfig) String() string
func (m *RoutesConfigDump_StaticRouteConfig) Validate() error
Validate checks the field values on RoutesConfigDump_StaticRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *RoutesConfigDump_StaticRouteConfig) ValidateAll() error
ValidateAll checks the field values on RoutesConfigDump_StaticRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RoutesConfigDump_StaticRouteConfigMultiError, or nil if none found.
RoutesConfigDump_StaticRouteConfigMultiError is an error wrapping multiple validation errors returned by RoutesConfigDump_StaticRouteConfig.ValidateAll() if the designated constraints aren't met.
type RoutesConfigDump_StaticRouteConfigMultiError []error
func (m RoutesConfigDump_StaticRouteConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m RoutesConfigDump_StaticRouteConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
RoutesConfigDump_StaticRouteConfigValidationError is the validation error returned by RoutesConfigDump_StaticRouteConfig.Validate if the designated constraints aren't met.
type RoutesConfigDump_StaticRouteConfigValidationError struct {
// contains filtered or unexported fields
}
func (e RoutesConfigDump_StaticRouteConfigValidationError) Cause() error
Cause function returns cause value.
func (e RoutesConfigDump_StaticRouteConfigValidationError) Error() string
Error satisfies the builtin error interface
func (e RoutesConfigDump_StaticRouteConfigValidationError) ErrorName() string
ErrorName returns error name.
func (e RoutesConfigDump_StaticRouteConfigValidationError) Field() string
Field function returns field value.
func (e RoutesConfigDump_StaticRouteConfigValidationError) Key() bool
Key function returns key value.
func (e RoutesConfigDump_StaticRouteConfigValidationError) Reason() string
Reason function returns reason value.
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.
type ScopedRoutesConfigDump struct { // The statically loaded scoped route configs. InlineScopedRouteConfigs []*ScopedRoutesConfigDump_InlineScopedRouteConfigs `protobuf:"bytes,1,rep,name=inline_scoped_route_configs,json=inlineScopedRouteConfigs,proto3" json:"inline_scoped_route_configs,omitempty"` // The dynamically loaded scoped route configs. DynamicScopedRouteConfigs []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs `protobuf:"bytes,2,rep,name=dynamic_scoped_route_configs,json=dynamicScopedRouteConfigs,proto3" json:"dynamic_scoped_route_configs,omitempty"` // contains filtered or unexported fields }
func (*ScopedRoutesConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use ScopedRoutesConfigDump.ProtoReflect.Descriptor instead.
func (x *ScopedRoutesConfigDump) GetDynamicScopedRouteConfigs() []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs
func (x *ScopedRoutesConfigDump) GetInlineScopedRouteConfigs() []*ScopedRoutesConfigDump_InlineScopedRouteConfigs
func (*ScopedRoutesConfigDump) ProtoMessage()
func (x *ScopedRoutesConfigDump) ProtoReflect() protoreflect.Message
func (x *ScopedRoutesConfigDump) Reset()
func (x *ScopedRoutesConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ScopedRoutesConfigDump) ValidateAll() error
ValidateAll checks the field values on ScopedRoutesConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ScopedRoutesConfigDumpMultiError, or nil if none found.
ScopedRoutesConfigDumpMultiError is an error wrapping multiple validation errors returned by ScopedRoutesConfigDump.ValidateAll() if the designated constraints aren't met.
type ScopedRoutesConfigDumpMultiError []error
func (m ScopedRoutesConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ScopedRoutesConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ScopedRoutesConfigDumpValidationError is the validation error returned by ScopedRoutesConfigDump.Validate if the designated constraints aren't met.
type ScopedRoutesConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e ScopedRoutesConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e ScopedRoutesConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e ScopedRoutesConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e ScopedRoutesConfigDumpValidationError) Field() string
Field function returns field value.
func (e ScopedRoutesConfigDumpValidationError) Key() bool
Key function returns key value.
func (e ScopedRoutesConfigDumpValidationError) Reason() string
Reason function returns reason value.
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_api_field_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 []*any1.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"` // contains filtered or unexported fields }
func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Descriptor() ([]byte, []int)
Deprecated: Use ScopedRoutesConfigDump_DynamicScopedRouteConfigs.ProtoReflect.Descriptor instead.
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetLastUpdated() *timestamp.Timestamp
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetName() string
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetScopedRouteConfigs() []*any1.Any
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetVersionInfo() string
func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoMessage()
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoReflect() protoreflect.Message
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Reset()
func (x *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) String() string
func (m *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Validate() error
Validate checks the field values on ScopedRoutesConfigDump_DynamicScopedRouteConfigs with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ValidateAll() error
ValidateAll checks the field values on ScopedRoutesConfigDump_DynamicScopedRouteConfigs with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ScopedRoutesConfigDump_DynamicScopedRouteConfigsMultiError, or nil if none found.
ScopedRoutesConfigDump_DynamicScopedRouteConfigsMultiError is an error wrapping multiple validation errors returned by ScopedRoutesConfigDump_DynamicScopedRouteConfigs.ValidateAll() if the designated constraints aren't met.
type ScopedRoutesConfigDump_DynamicScopedRouteConfigsMultiError []error
func (m ScopedRoutesConfigDump_DynamicScopedRouteConfigsMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ScopedRoutesConfigDump_DynamicScopedRouteConfigsMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError is the validation error returned by ScopedRoutesConfigDump_DynamicScopedRouteConfigs.Validate if the designated constraints aren't met.
type ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError struct {
// contains filtered or unexported fields
}
func (e ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Cause() error
Cause function returns cause value.
func (e ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Error() string
Error satisfies the builtin error interface
func (e ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) ErrorName() string
ErrorName returns error name.
func (e ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Field() string
Field function returns field value.
func (e ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Key() bool
Key function returns key value.
func (e ScopedRoutesConfigDump_DynamicScopedRouteConfigsValidationError) Reason() string
Reason function returns reason value.
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 []*any1.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() ([]byte, []int)
Deprecated: Use ScopedRoutesConfigDump_InlineScopedRouteConfigs.ProtoReflect.Descriptor instead.
func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetLastUpdated() *timestamp.Timestamp
func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetName() string
func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetScopedRouteConfigs() []*any1.Any
func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoMessage()
func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoReflect() protoreflect.Message
func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) Reset()
func (x *ScopedRoutesConfigDump_InlineScopedRouteConfigs) String() string
func (m *ScopedRoutesConfigDump_InlineScopedRouteConfigs) Validate() error
Validate checks the field values on ScopedRoutesConfigDump_InlineScopedRouteConfigs with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (m *ScopedRoutesConfigDump_InlineScopedRouteConfigs) ValidateAll() error
ValidateAll checks the field values on ScopedRoutesConfigDump_InlineScopedRouteConfigs with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ScopedRoutesConfigDump_InlineScopedRouteConfigsMultiError, or nil if none found.
ScopedRoutesConfigDump_InlineScopedRouteConfigsMultiError is an error wrapping multiple validation errors returned by ScopedRoutesConfigDump_InlineScopedRouteConfigs.ValidateAll() if the designated constraints aren't met.
type ScopedRoutesConfigDump_InlineScopedRouteConfigsMultiError []error
func (m ScopedRoutesConfigDump_InlineScopedRouteConfigsMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ScopedRoutesConfigDump_InlineScopedRouteConfigsMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError is the validation error returned by ScopedRoutesConfigDump_InlineScopedRouteConfigs.Validate if the designated constraints aren't met.
type ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError struct {
// contains filtered or unexported fields
}
func (e ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Cause() error
Cause function returns cause value.
func (e ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Error() string
Error satisfies the builtin error interface
func (e ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) ErrorName() string
ErrorName returns error name.
func (e ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Field() string
Field function returns field value.
func (e ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Key() bool
Key function returns key value.
func (e ScopedRoutesConfigDump_InlineScopedRouteConfigsValidationError) Reason() string
Reason function returns reason value.
Envoys SDS implementation fills this message with all secrets fetched dynamically via SDS.
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 `protobuf:"bytes,3,rep,name=dynamic_warming_secrets,json=dynamicWarmingSecrets,proto3" json:"dynamic_warming_secrets,omitempty"` // contains filtered or unexported fields }
func (*SecretsConfigDump) Descriptor() ([]byte, []int)
Deprecated: Use SecretsConfigDump.ProtoReflect.Descriptor instead.
func (x *SecretsConfigDump) GetDynamicActiveSecrets() []*SecretsConfigDump_DynamicSecret
func (x *SecretsConfigDump) GetDynamicWarmingSecrets() []*SecretsConfigDump_DynamicSecret
func (x *SecretsConfigDump) GetStaticSecrets() []*SecretsConfigDump_StaticSecret
func (*SecretsConfigDump) ProtoMessage()
func (x *SecretsConfigDump) ProtoReflect() protoreflect.Message
func (x *SecretsConfigDump) Reset()
func (x *SecretsConfigDump) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *SecretsConfigDump) ValidateAll() error
ValidateAll checks the field values on SecretsConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretsConfigDumpMultiError, or nil if none found.
SecretsConfigDumpMultiError is an error wrapping multiple validation errors returned by SecretsConfigDump.ValidateAll() if the designated constraints aren't met.
type SecretsConfigDumpMultiError []error
func (m SecretsConfigDumpMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m SecretsConfigDumpMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
SecretsConfigDumpValidationError is the validation error returned by SecretsConfigDump.Validate if the designated constraints aren't met.
type SecretsConfigDumpValidationError struct {
// contains filtered or unexported fields
}
func (e SecretsConfigDumpValidationError) Cause() error
Cause function returns cause value.
func (e SecretsConfigDumpValidationError) Error() string
Error satisfies the builtin error interface
func (e SecretsConfigDumpValidationError) ErrorName() string
ErrorName returns error name.
func (e SecretsConfigDumpValidationError) Field() string
Field function returns field value.
func (e SecretsConfigDumpValidationError) Key() bool
Key function returns key value.
func (e SecretsConfigDumpValidationError) Reason() string
Reason function returns reason value.
DynamicSecret contains secret information fetched via SDS.
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 *any1.Any `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"` // contains filtered or unexported fields }
func (*SecretsConfigDump_DynamicSecret) Descriptor() ([]byte, []int)
Deprecated: Use SecretsConfigDump_DynamicSecret.ProtoReflect.Descriptor instead.
func (x *SecretsConfigDump_DynamicSecret) GetLastUpdated() *timestamp.Timestamp
func (x *SecretsConfigDump_DynamicSecret) GetName() string
func (x *SecretsConfigDump_DynamicSecret) GetSecret() *any1.Any
func (x *SecretsConfigDump_DynamicSecret) GetVersionInfo() string
func (*SecretsConfigDump_DynamicSecret) ProtoMessage()
func (x *SecretsConfigDump_DynamicSecret) ProtoReflect() protoreflect.Message
func (x *SecretsConfigDump_DynamicSecret) Reset()
func (x *SecretsConfigDump_DynamicSecret) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *SecretsConfigDump_DynamicSecret) ValidateAll() error
ValidateAll checks the field values on SecretsConfigDump_DynamicSecret with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretsConfigDump_DynamicSecretMultiError, or nil if none found.
SecretsConfigDump_DynamicSecretMultiError is an error wrapping multiple validation errors returned by SecretsConfigDump_DynamicSecret.ValidateAll() if the designated constraints aren't met.
type SecretsConfigDump_DynamicSecretMultiError []error
func (m SecretsConfigDump_DynamicSecretMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m SecretsConfigDump_DynamicSecretMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
SecretsConfigDump_DynamicSecretValidationError is the validation error returned by SecretsConfigDump_DynamicSecret.Validate if the designated constraints aren't met.
type SecretsConfigDump_DynamicSecretValidationError struct {
// contains filtered or unexported fields
}
func (e SecretsConfigDump_DynamicSecretValidationError) Cause() error
Cause function returns cause value.
func (e SecretsConfigDump_DynamicSecretValidationError) Error() string
Error satisfies the builtin error interface
func (e SecretsConfigDump_DynamicSecretValidationError) ErrorName() string
ErrorName returns error name.
func (e SecretsConfigDump_DynamicSecretValidationError) Field() string
Field function returns field value.
func (e SecretsConfigDump_DynamicSecretValidationError) Key() bool
Key function returns key value.
func (e SecretsConfigDump_DynamicSecretValidationError) Reason() string
Reason function returns reason value.
StaticSecret specifies statically loaded secret in bootstrap.
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 *any1.Any `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"` // contains filtered or unexported fields }
func (*SecretsConfigDump_StaticSecret) Descriptor() ([]byte, []int)
Deprecated: Use SecretsConfigDump_StaticSecret.ProtoReflect.Descriptor instead.
func (x *SecretsConfigDump_StaticSecret) GetLastUpdated() *timestamp.Timestamp
func (x *SecretsConfigDump_StaticSecret) GetName() string
func (x *SecretsConfigDump_StaticSecret) GetSecret() *any1.Any
func (*SecretsConfigDump_StaticSecret) ProtoMessage()
func (x *SecretsConfigDump_StaticSecret) ProtoReflect() protoreflect.Message
func (x *SecretsConfigDump_StaticSecret) Reset()
func (x *SecretsConfigDump_StaticSecret) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *SecretsConfigDump_StaticSecret) ValidateAll() error
ValidateAll checks the field values on SecretsConfigDump_StaticSecret with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretsConfigDump_StaticSecretMultiError, or nil if none found.
SecretsConfigDump_StaticSecretMultiError is an error wrapping multiple validation errors returned by SecretsConfigDump_StaticSecret.ValidateAll() if the designated constraints aren't met.
type SecretsConfigDump_StaticSecretMultiError []error
func (m SecretsConfigDump_StaticSecretMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m SecretsConfigDump_StaticSecretMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
SecretsConfigDump_StaticSecretValidationError is the validation error returned by SecretsConfigDump_StaticSecret.Validate if the designated constraints aren't met.
type SecretsConfigDump_StaticSecretValidationError struct {
// contains filtered or unexported fields
}
func (e SecretsConfigDump_StaticSecretValidationError) Cause() error
Cause function returns cause value.
func (e SecretsConfigDump_StaticSecretValidationError) Error() string
Error satisfies the builtin error interface
func (e SecretsConfigDump_StaticSecretValidationError) ErrorName() string
ErrorName returns error name.
func (e SecretsConfigDump_StaticSecretValidationError) Field() string
Field function returns field value.
func (e SecretsConfigDump_StaticSecretValidationError) Key() bool
Key function returns key value.
func (e SecretsConfigDump_StaticSecretValidationError) Reason() string
Reason function returns reason value.
Proto representation of the value returned by /server_info, containing server version/server status information. [#next-free-field: 7]
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.v2alpha.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"` // contains filtered or unexported fields }
func (*ServerInfo) Descriptor() ([]byte, []int)
Deprecated: Use ServerInfo.ProtoReflect.Descriptor instead.
func (x *ServerInfo) GetCommandLineOptions() *CommandLineOptions
func (x *ServerInfo) GetHotRestartVersion() string
func (x *ServerInfo) GetState() ServerInfo_State
func (x *ServerInfo) GetUptimeAllEpochs() *duration.Duration
func (x *ServerInfo) GetUptimeCurrentEpoch() *duration.Duration
func (x *ServerInfo) GetVersion() string
func (*ServerInfo) ProtoMessage()
func (x *ServerInfo) ProtoReflect() protoreflect.Message
func (x *ServerInfo) Reset()
func (x *ServerInfo) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *ServerInfo) ValidateAll() error
ValidateAll checks the field values on ServerInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServerInfoMultiError, or nil if none found.
ServerInfoMultiError is an error wrapping multiple validation errors returned by ServerInfo.ValidateAll() if the designated constraints aren't met.
type ServerInfoMultiError []error
func (m ServerInfoMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m ServerInfoMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
ServerInfoValidationError is the validation error returned by ServerInfo.Validate if the designated constraints aren't met.
type ServerInfoValidationError struct {
// contains filtered or unexported fields
}
func (e ServerInfoValidationError) Cause() error
Cause function returns cause value.
func (e ServerInfoValidationError) Error() string
Error satisfies the builtin error interface
func (e ServerInfoValidationError) ErrorName() string
ErrorName returns error name.
func (e ServerInfoValidationError) Field() string
Field function returns field value.
func (e ServerInfoValidationError) Key() bool
Key function returns key value.
func (e ServerInfoValidationError) Reason() string
Reason function returns reason value.
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() protoreflect.EnumDescriptor
func (x ServerInfo_State) Enum() *ServerInfo_State
func (ServerInfo_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use ServerInfo_State.Descriptor instead.
func (x ServerInfo_State) Number() protoreflect.EnumNumber
func (x ServerInfo_State) String() string
func (ServerInfo_State) Type() protoreflect.EnumType
Proto representation of an Envoy Counter or Gauge value.
type SimpleMetric struct { // Type of the metric represented. Type SimpleMetric_Type `protobuf:"varint,1,opt,name=type,proto3,enum=envoy.admin.v2alpha.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 }
func (*SimpleMetric) Descriptor() ([]byte, []int)
Deprecated: Use SimpleMetric.ProtoReflect.Descriptor instead.
func (x *SimpleMetric) GetName() string
func (x *SimpleMetric) GetType() SimpleMetric_Type
func (x *SimpleMetric) GetValue() uint64
func (*SimpleMetric) ProtoMessage()
func (x *SimpleMetric) ProtoReflect() protoreflect.Message
func (x *SimpleMetric) Reset()
func (x *SimpleMetric) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *SimpleMetric) ValidateAll() error
ValidateAll checks the field values on SimpleMetric with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SimpleMetricMultiError, or nil if none found.
SimpleMetricMultiError is an error wrapping multiple validation errors returned by SimpleMetric.ValidateAll() if the designated constraints aren't met.
type SimpleMetricMultiError []error
func (m SimpleMetricMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m SimpleMetricMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
SimpleMetricValidationError is the validation error returned by SimpleMetric.Validate if the designated constraints aren't met.
type SimpleMetricValidationError struct {
// contains filtered or unexported fields
}
func (e SimpleMetricValidationError) Cause() error
Cause function returns cause value.
func (e SimpleMetricValidationError) Error() string
Error satisfies the builtin error interface
func (e SimpleMetricValidationError) ErrorName() string
ErrorName returns error name.
func (e SimpleMetricValidationError) Field() string
Field function returns field value.
func (e SimpleMetricValidationError) Key() bool
Key function returns key value.
func (e SimpleMetricValidationError) Reason() string
Reason function returns reason value.
type SimpleMetric_Type int32
const ( SimpleMetric_COUNTER SimpleMetric_Type = 0 SimpleMetric_GAUGE SimpleMetric_Type = 1 )
func (SimpleMetric_Type) Descriptor() protoreflect.EnumDescriptor
func (x SimpleMetric_Type) Enum() *SimpleMetric_Type
func (SimpleMetric_Type) EnumDescriptor() ([]byte, []int)
Deprecated: Use SimpleMetric_Type.Descriptor instead.
func (x SimpleMetric_Type) Number() protoreflect.EnumNumber
func (x SimpleMetric_Type) String() string
func (SimpleMetric_Type) Type() protoreflect.EnumType
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() ([]byte, []int)
Deprecated: Use SubjectAlternateName.ProtoReflect.Descriptor instead.
func (x *SubjectAlternateName) GetDns() string
func (x *SubjectAlternateName) GetIpAddress() string
func (m *SubjectAlternateName) GetName() isSubjectAlternateName_Name
func (x *SubjectAlternateName) GetUri() string
func (*SubjectAlternateName) ProtoMessage()
func (x *SubjectAlternateName) ProtoReflect() protoreflect.Message
func (x *SubjectAlternateName) Reset()
func (x *SubjectAlternateName) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *SubjectAlternateName) ValidateAll() error
ValidateAll checks the field values on SubjectAlternateName with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SubjectAlternateNameMultiError, or nil if none found.
SubjectAlternateNameMultiError is an error wrapping multiple validation errors returned by SubjectAlternateName.ValidateAll() if the designated constraints aren't met.
type SubjectAlternateNameMultiError []error
func (m SubjectAlternateNameMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m SubjectAlternateNameMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
SubjectAlternateNameValidationError is the validation error returned by SubjectAlternateName.Validate if the designated constraints aren't met.
type SubjectAlternateNameValidationError struct {
// contains filtered or unexported fields
}
func (e SubjectAlternateNameValidationError) Cause() error
Cause function returns cause value.
func (e SubjectAlternateNameValidationError) Error() string
Error satisfies the builtin error interface
func (e SubjectAlternateNameValidationError) ErrorName() string
ErrorName returns error name.
func (e SubjectAlternateNameValidationError) Field() string
Field function returns field value.
func (e SubjectAlternateNameValidationError) Key() bool
Key function returns key value.
func (e SubjectAlternateNameValidationError) Reason() string
Reason function returns reason value.
type SubjectAlternateName_Dns struct { Dns string `protobuf:"bytes,1,opt,name=dns,proto3,oneof"` }
type SubjectAlternateName_IpAddress struct { IpAddress string `protobuf:"bytes,3,opt,name=ip_address,json=ipAddress,proto3,oneof"` }
type SubjectAlternateName_Uri struct { Uri string `protobuf:"bytes,2,opt,name=uri,proto3,oneof"` }
The /tap admin request body that is used to configure an active tap session.
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 *v2alpha.TapConfig `protobuf:"bytes,2,opt,name=tap_config,json=tapConfig,proto3" json:"tap_config,omitempty"` // contains filtered or unexported fields }
func (*TapRequest) Descriptor() ([]byte, []int)
Deprecated: Use TapRequest.ProtoReflect.Descriptor instead.
func (x *TapRequest) GetConfigId() string
func (x *TapRequest) GetTapConfig() *v2alpha.TapConfig
func (*TapRequest) ProtoMessage()
func (x *TapRequest) ProtoReflect() protoreflect.Message
func (x *TapRequest) Reset()
func (x *TapRequest) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *TapRequest) ValidateAll() error
ValidateAll checks the field values on TapRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TapRequestMultiError, or nil if none found.
TapRequestMultiError is an error wrapping multiple validation errors returned by TapRequest.ValidateAll() if the designated constraints aren't met.
type TapRequestMultiError []error
func (m TapRequestMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m TapRequestMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
TapRequestValidationError is the validation error returned by TapRequest.Validate if the designated constraints aren't met.
type TapRequestValidationError struct {
// contains filtered or unexported fields
}
func (e TapRequestValidationError) Cause() error
Cause function returns cause value.
func (e TapRequestValidationError) Error() string
Error satisfies the builtin error interface
func (e TapRequestValidationError) ErrorName() string
ErrorName returns error name.
func (e TapRequestValidationError) Field() string
Field function returns field value.
func (e TapRequestValidationError) Key() bool
Key function returns key value.
func (e TapRequestValidationError) Reason() string
Reason function returns reason value.
type UpdateFailureState struct { // What the component configuration would have been if the update had succeeded. FailedConfiguration *any1.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"` // contains filtered or unexported fields }
func (*UpdateFailureState) Descriptor() ([]byte, []int)
Deprecated: Use UpdateFailureState.ProtoReflect.Descriptor instead.
func (x *UpdateFailureState) GetDetails() string
func (x *UpdateFailureState) GetFailedConfiguration() *any1.Any
func (x *UpdateFailureState) GetLastUpdateAttempt() *timestamp.Timestamp
func (*UpdateFailureState) ProtoMessage()
func (x *UpdateFailureState) ProtoReflect() protoreflect.Message
func (x *UpdateFailureState) Reset()
func (x *UpdateFailureState) String() string
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, the first error encountered is returned, or nil if there are no violations.
func (m *UpdateFailureState) ValidateAll() error
ValidateAll checks the field values on UpdateFailureState with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateFailureStateMultiError, or nil if none found.
UpdateFailureStateMultiError is an error wrapping multiple validation errors returned by UpdateFailureState.ValidateAll() if the designated constraints aren't met.
type UpdateFailureStateMultiError []error
func (m UpdateFailureStateMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (m UpdateFailureStateMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
UpdateFailureStateValidationError is the validation error returned by UpdateFailureState.Validate if the designated constraints aren't met.
type UpdateFailureStateValidationError struct {
// contains filtered or unexported fields
}
func (e UpdateFailureStateValidationError) Cause() error
Cause function returns cause value.
func (e UpdateFailureStateValidationError) Error() string
Error satisfies the builtin error interface
func (e UpdateFailureStateValidationError) ErrorName() string
ErrorName returns error name.
func (e UpdateFailureStateValidationError) Field() string
Field function returns field value.
func (e UpdateFailureStateValidationError) Key() bool
Key function returns key value.
func (e UpdateFailureStateValidationError) Reason() string
Reason function returns reason value.