envoytriagev1

package
v0.0.0-...-e01fbee Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2024 License: Apache-2.0 Imports: 31 Imported by: 0

Documentation

Overview

Package envoytriagev1 is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EnvoyTriageAPI_Read_FullMethodName = "/clutch.envoytriage.v1.EnvoyTriageAPI/Read"
)

Variables

View Source
var EnvoyTriageAPI_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "clutch.envoytriage.v1.EnvoyTriageAPI",
	HandlerType: (*EnvoyTriageAPIServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Read",
			Handler:    _EnvoyTriageAPI_Read_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "envoytriage/v1/envoytriage_api.proto",
}

EnvoyTriageAPI_ServiceDesc is the grpc.ServiceDesc for EnvoyTriageAPI service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_envoytriage_v1_envoytriage_api_proto protoreflect.FileDescriptor
View Source
var File_envoytriage_v1_output_proto protoreflect.FileDescriptor

Functions

func RegisterEnvoyTriageAPIHandler

func RegisterEnvoyTriageAPIHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterEnvoyTriageAPIHandler registers the http handlers for service EnvoyTriageAPI to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterEnvoyTriageAPIHandlerClient

func RegisterEnvoyTriageAPIHandlerClient(ctx context.Context, mux *runtime.ServeMux, client EnvoyTriageAPIClient) error

RegisterEnvoyTriageAPIHandlerClient registers the http handlers for service EnvoyTriageAPI to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "EnvoyTriageAPIClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "EnvoyTriageAPIClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "EnvoyTriageAPIClient" to call the correct interceptors.

func RegisterEnvoyTriageAPIHandlerFromEndpoint

func RegisterEnvoyTriageAPIHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterEnvoyTriageAPIHandlerFromEndpoint is same as RegisterEnvoyTriageAPIHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterEnvoyTriageAPIHandlerServer

func RegisterEnvoyTriageAPIHandlerServer(ctx context.Context, mux *runtime.ServeMux, server EnvoyTriageAPIServer) error

RegisterEnvoyTriageAPIHandlerServer registers the http handlers for service EnvoyTriageAPI to "mux". UnaryRPC :call EnvoyTriageAPIServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterEnvoyTriageAPIHandlerFromEndpoint instead.

func RegisterEnvoyTriageAPIServer

func RegisterEnvoyTriageAPIServer(s grpc.ServiceRegistrar, srv EnvoyTriageAPIServer)

Types

type Address

type Address struct {
	Host string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
	Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*Address) Descriptor deprecated

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

Deprecated: Use Address.ProtoReflect.Descriptor instead.

func (*Address) GetHost

func (x *Address) GetHost() string

func (*Address) GetPort

func (x *Address) GetPort() uint32

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) ProtoReflect

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

func (*Address) Reset

func (x *Address) Reset()

func (*Address) String

func (x *Address) String() string

func (*Address) Validate

func (m *Address) Validate() error

Validate checks the field values on Address 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 (*Address) ValidateAll

func (m *Address) ValidateAll() error

ValidateAll checks the field values on Address 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 AddressMultiError, or nil if none found.

type AddressMultiError

type AddressMultiError []error

AddressMultiError is an error wrapping multiple validation errors returned by Address.ValidateAll() if the designated constraints aren't met.

func (AddressMultiError) AllErrors

func (m AddressMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AddressMultiError) Error

func (m AddressMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AddressValidationError

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

AddressValidationError is the validation error returned by Address.Validate if the designated constraints aren't met.

func (AddressValidationError) Cause

func (e AddressValidationError) Cause() error

Cause function returns cause value.

func (AddressValidationError) Error

func (e AddressValidationError) Error() string

Error satisfies the builtin error interface

func (AddressValidationError) ErrorName

func (e AddressValidationError) ErrorName() string

ErrorName returns error name.

func (AddressValidationError) Field

func (e AddressValidationError) Field() string

Field function returns field value.

func (AddressValidationError) Key

func (e AddressValidationError) Key() bool

Key function returns key value.

func (AddressValidationError) Reason

func (e AddressValidationError) Reason() string

Reason function returns reason value.

type ClusterStatus

type ClusterStatus struct {
	Name         string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	HostStatuses []*HostStatus `protobuf:"bytes,2,rep,name=host_statuses,json=hostStatuses,proto3" json:"host_statuses,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterStatus) Descriptor deprecated

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

Deprecated: Use ClusterStatus.ProtoReflect.Descriptor instead.

func (*ClusterStatus) GetHostStatuses

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

func (*ClusterStatus) GetName

func (x *ClusterStatus) GetName() string

func (*ClusterStatus) ProtoMessage

func (*ClusterStatus) ProtoMessage()

func (*ClusterStatus) ProtoReflect

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

func (*ClusterStatus) Reset

func (x *ClusterStatus) Reset()

func (*ClusterStatus) String

func (x *ClusterStatus) String() string

func (*ClusterStatus) Validate

func (m *ClusterStatus) Validate() error

Validate checks the field values on ClusterStatus with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterStatus) ValidateAll

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.

type ClusterStatusMultiError

type ClusterStatusMultiError []error

ClusterStatusMultiError is an error wrapping multiple validation errors returned by ClusterStatus.ValidateAll() if the designated constraints aren't met.

func (ClusterStatusMultiError) AllErrors

func (m ClusterStatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterStatusMultiError) Error

func (m ClusterStatusMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ClusterStatusValidationError

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

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

func (ClusterStatusValidationError) Cause

Cause function returns cause value.

func (ClusterStatusValidationError) Error

Error satisfies the builtin error interface

func (ClusterStatusValidationError) ErrorName

func (e ClusterStatusValidationError) ErrorName() string

ErrorName returns error name.

func (ClusterStatusValidationError) Field

Field function returns field value.

func (ClusterStatusValidationError) Key

Key function returns key value.

func (ClusterStatusValidationError) Reason

Reason function returns reason value.

type Clusters

type Clusters struct {
	ClusterStatuses []*ClusterStatus `protobuf:"bytes,1,rep,name=cluster_statuses,json=clusterStatuses,proto3" json:"cluster_statuses,omitempty"`
	// contains filtered or unexported fields
}

func (*Clusters) Descriptor deprecated

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

Deprecated: Use Clusters.ProtoReflect.Descriptor instead.

func (*Clusters) GetClusterStatuses

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

func (*Clusters) ProtoMessage

func (*Clusters) ProtoMessage()

func (*Clusters) ProtoReflect

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

func (*Clusters) Reset

func (x *Clusters) Reset()

func (*Clusters) String

func (x *Clusters) String() string

func (*Clusters) Validate

func (m *Clusters) Validate() error

Validate checks the field values on Clusters with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Clusters) ValidateAll

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.

type ClustersMultiError

type ClustersMultiError []error

ClustersMultiError is an error wrapping multiple validation errors returned by Clusters.ValidateAll() if the designated constraints aren't met.

func (ClustersMultiError) AllErrors

func (m ClustersMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClustersMultiError) Error

func (m ClustersMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ClustersValidationError

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

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

func (ClustersValidationError) Cause

func (e ClustersValidationError) Cause() error

Cause function returns cause value.

func (ClustersValidationError) Error

func (e ClustersValidationError) Error() string

Error satisfies the builtin error interface

func (ClustersValidationError) ErrorName

func (e ClustersValidationError) ErrorName() string

ErrorName returns error name.

func (ClustersValidationError) Field

func (e ClustersValidationError) Field() string

Field function returns field value.

func (ClustersValidationError) Key

func (e ClustersValidationError) Key() bool

Key function returns key value.

func (ClustersValidationError) Reason

func (e ClustersValidationError) Reason() string

Reason function returns reason value.

type ConfigDump

type ConfigDump struct {
	Value *structpb.Value `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigDump) Descriptor deprecated

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

Deprecated: Use ConfigDump.ProtoReflect.Descriptor instead.

func (*ConfigDump) GetValue

func (x *ConfigDump) GetValue() *structpb.Value

func (*ConfigDump) ProtoMessage

func (*ConfigDump) ProtoMessage()

func (*ConfigDump) ProtoReflect

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

func (*ConfigDump) Reset

func (x *ConfigDump) Reset()

func (*ConfigDump) String

func (x *ConfigDump) String() string

func (*ConfigDump) Validate

func (m *ConfigDump) Validate() error

Validate checks the field values on ConfigDump with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ConfigDump) ValidateAll

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.

type ConfigDumpMultiError

type ConfigDumpMultiError []error

ConfigDumpMultiError is an error wrapping multiple validation errors returned by ConfigDump.ValidateAll() if the designated constraints aren't met.

func (ConfigDumpMultiError) AllErrors

func (m ConfigDumpMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConfigDumpMultiError) Error

func (m ConfigDumpMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ConfigDumpValidationError

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

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

func (ConfigDumpValidationError) Cause

func (e ConfigDumpValidationError) Cause() error

Cause function returns cause value.

func (ConfigDumpValidationError) Error

Error satisfies the builtin error interface

func (ConfigDumpValidationError) ErrorName

func (e ConfigDumpValidationError) ErrorName() string

ErrorName returns error name.

func (ConfigDumpValidationError) Field

Field function returns field value.

func (ConfigDumpValidationError) Key

Key function returns key value.

func (ConfigDumpValidationError) Reason

func (e ConfigDumpValidationError) Reason() string

Reason function returns reason value.

type EnvoyTriageAPIClient

type EnvoyTriageAPIClient interface {
	Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error)
}

EnvoyTriageAPIClient is the client API for EnvoyTriageAPI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type EnvoyTriageAPIServer

type EnvoyTriageAPIServer interface {
	Read(context.Context, *ReadRequest) (*ReadResponse, error)
}

EnvoyTriageAPIServer is the server API for EnvoyTriageAPI service. All implementations should embed UnimplementedEnvoyTriageAPIServer for forward compatibility

type HostStatus

type HostStatus struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Healthy bool   `protobuf:"varint,2,opt,name=healthy,proto3" json:"healthy,omitempty"`
	// contains filtered or unexported fields
}

func (*HostStatus) Descriptor deprecated

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

Deprecated: Use HostStatus.ProtoReflect.Descriptor instead.

func (*HostStatus) GetAddress

func (x *HostStatus) GetAddress() string

func (*HostStatus) GetHealthy

func (x *HostStatus) GetHealthy() bool

func (*HostStatus) ProtoMessage

func (*HostStatus) ProtoMessage()

func (*HostStatus) ProtoReflect

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

func (*HostStatus) Reset

func (x *HostStatus) Reset()

func (*HostStatus) String

func (x *HostStatus) String() string

func (*HostStatus) Validate

func (m *HostStatus) Validate() error

Validate checks the field values on HostStatus with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*HostStatus) ValidateAll

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.

type HostStatusMultiError

type HostStatusMultiError []error

HostStatusMultiError is an error wrapping multiple validation errors returned by HostStatus.ValidateAll() if the designated constraints aren't met.

func (HostStatusMultiError) AllErrors

func (m HostStatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HostStatusMultiError) Error

func (m HostStatusMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type HostStatusValidationError

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

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

func (HostStatusValidationError) Cause

func (e HostStatusValidationError) Cause() error

Cause function returns cause value.

func (HostStatusValidationError) Error

Error satisfies the builtin error interface

func (HostStatusValidationError) ErrorName

func (e HostStatusValidationError) ErrorName() string

ErrorName returns error name.

func (HostStatusValidationError) Field

Field function returns field value.

func (HostStatusValidationError) Key

Key function returns key value.

func (HostStatusValidationError) Reason

func (e HostStatusValidationError) Reason() string

Reason function returns reason value.

type ListenerStatus

type ListenerStatus struct {
	Name         string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	LocalAddress string `protobuf:"bytes,2,opt,name=local_address,json=localAddress,proto3" json:"local_address,omitempty"`
	// contains filtered or unexported fields
}

func (*ListenerStatus) Descriptor deprecated

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

Deprecated: Use ListenerStatus.ProtoReflect.Descriptor instead.

func (*ListenerStatus) GetLocalAddress

func (x *ListenerStatus) GetLocalAddress() string

func (*ListenerStatus) GetName

func (x *ListenerStatus) GetName() string

func (*ListenerStatus) ProtoMessage

func (*ListenerStatus) ProtoMessage()

func (*ListenerStatus) ProtoReflect

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

func (*ListenerStatus) Reset

func (x *ListenerStatus) Reset()

func (*ListenerStatus) String

func (x *ListenerStatus) String() string

func (*ListenerStatus) Validate

func (m *ListenerStatus) Validate() error

Validate checks the field values on ListenerStatus with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListenerStatus) ValidateAll

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.

type ListenerStatusMultiError

type ListenerStatusMultiError []error

ListenerStatusMultiError is an error wrapping multiple validation errors returned by ListenerStatus.ValidateAll() if the designated constraints aren't met.

func (ListenerStatusMultiError) AllErrors

func (m ListenerStatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListenerStatusMultiError) Error

func (m ListenerStatusMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ListenerStatusValidationError

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

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

func (ListenerStatusValidationError) Cause

Cause function returns cause value.

func (ListenerStatusValidationError) Error

Error satisfies the builtin error interface

func (ListenerStatusValidationError) ErrorName

func (e ListenerStatusValidationError) ErrorName() string

ErrorName returns error name.

func (ListenerStatusValidationError) Field

Field function returns field value.

func (ListenerStatusValidationError) Key

Key function returns key value.

func (ListenerStatusValidationError) Reason

Reason function returns reason value.

type Listeners

type Listeners struct {
	ListenerStatuses []*ListenerStatus `protobuf:"bytes,1,rep,name=listener_statuses,json=listenerStatuses,proto3" json:"listener_statuses,omitempty"`
	// contains filtered or unexported fields
}

func (*Listeners) Descriptor deprecated

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

Deprecated: Use Listeners.ProtoReflect.Descriptor instead.

func (*Listeners) GetListenerStatuses

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

func (*Listeners) ProtoMessage

func (*Listeners) ProtoMessage()

func (*Listeners) ProtoReflect

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

func (*Listeners) Reset

func (x *Listeners) Reset()

func (*Listeners) String

func (x *Listeners) String() string

func (*Listeners) Validate

func (m *Listeners) Validate() error

Validate checks the field values on Listeners with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Listeners) ValidateAll

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.

type ListenersMultiError

type ListenersMultiError []error

ListenersMultiError is an error wrapping multiple validation errors returned by Listeners.ValidateAll() if the designated constraints aren't met.

func (ListenersMultiError) AllErrors

func (m ListenersMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListenersMultiError) Error

func (m ListenersMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ListenersValidationError

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

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

func (ListenersValidationError) Cause

func (e ListenersValidationError) Cause() error

Cause function returns cause value.

func (ListenersValidationError) Error

func (e ListenersValidationError) Error() string

Error satisfies the builtin error interface

func (ListenersValidationError) ErrorName

func (e ListenersValidationError) ErrorName() string

ErrorName returns error name.

func (ListenersValidationError) Field

func (e ListenersValidationError) Field() string

Field function returns field value.

func (ListenersValidationError) Key

Key function returns key value.

func (ListenersValidationError) Reason

func (e ListenersValidationError) Reason() string

Reason function returns reason value.

type NodeMetadata

type NodeMetadata struct {
	ServiceNode    string `protobuf:"bytes,1,opt,name=service_node,json=serviceNode,proto3" json:"service_node,omitempty"`
	ServiceCluster string `protobuf:"bytes,2,opt,name=service_cluster,json=serviceCluster,proto3" json:"service_cluster,omitempty"`
	ServiceZone    string `protobuf:"bytes,3,opt,name=service_zone,json=serviceZone,proto3" json:"service_zone,omitempty"`
	Version        string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeMetadata) Descriptor deprecated

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

Deprecated: Use NodeMetadata.ProtoReflect.Descriptor instead.

func (*NodeMetadata) GetServiceCluster

func (x *NodeMetadata) GetServiceCluster() string

func (*NodeMetadata) GetServiceNode

func (x *NodeMetadata) GetServiceNode() string

func (*NodeMetadata) GetServiceZone

func (x *NodeMetadata) GetServiceZone() string

func (*NodeMetadata) GetVersion

func (x *NodeMetadata) GetVersion() string

func (*NodeMetadata) ProtoMessage

func (*NodeMetadata) ProtoMessage()

func (*NodeMetadata) ProtoReflect

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

func (*NodeMetadata) Reset

func (x *NodeMetadata) Reset()

func (*NodeMetadata) String

func (x *NodeMetadata) String() string

func (*NodeMetadata) Validate

func (m *NodeMetadata) Validate() error

Validate checks the field values on NodeMetadata 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 (*NodeMetadata) ValidateAll

func (m *NodeMetadata) ValidateAll() error

ValidateAll checks the field values on NodeMetadata 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 NodeMetadataMultiError, or nil if none found.

type NodeMetadataMultiError

type NodeMetadataMultiError []error

NodeMetadataMultiError is an error wrapping multiple validation errors returned by NodeMetadata.ValidateAll() if the designated constraints aren't met.

func (NodeMetadataMultiError) AllErrors

func (m NodeMetadataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NodeMetadataMultiError) Error

func (m NodeMetadataMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type NodeMetadataValidationError

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

NodeMetadataValidationError is the validation error returned by NodeMetadata.Validate if the designated constraints aren't met.

func (NodeMetadataValidationError) Cause

Cause function returns cause value.

func (NodeMetadataValidationError) Error

Error satisfies the builtin error interface

func (NodeMetadataValidationError) ErrorName

func (e NodeMetadataValidationError) ErrorName() string

ErrorName returns error name.

func (NodeMetadataValidationError) Field

Field function returns field value.

func (NodeMetadataValidationError) Key

Key function returns key value.

func (NodeMetadataValidationError) Reason

Reason function returns reason value.

type ReadOperation

type ReadOperation struct {
	Address *Address               `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Include *ReadOperation_Include `protobuf:"bytes,2,opt,name=include,proto3" json:"include,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadOperation) Descriptor deprecated

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

Deprecated: Use ReadOperation.ProtoReflect.Descriptor instead.

func (*ReadOperation) GetAddress

func (x *ReadOperation) GetAddress() *Address

func (*ReadOperation) GetInclude

func (x *ReadOperation) GetInclude() *ReadOperation_Include

func (*ReadOperation) ProtoMessage

func (*ReadOperation) ProtoMessage()

func (*ReadOperation) ProtoReflect

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

func (*ReadOperation) Reset

func (x *ReadOperation) Reset()

func (*ReadOperation) String

func (x *ReadOperation) String() string

func (*ReadOperation) Validate

func (m *ReadOperation) Validate() error

Validate checks the field values on ReadOperation 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 (*ReadOperation) ValidateAll

func (m *ReadOperation) ValidateAll() error

ValidateAll checks the field values on ReadOperation 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 ReadOperationMultiError, or nil if none found.

type ReadOperationMultiError

type ReadOperationMultiError []error

ReadOperationMultiError is an error wrapping multiple validation errors returned by ReadOperation.ValidateAll() if the designated constraints aren't met.

func (ReadOperationMultiError) AllErrors

func (m ReadOperationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadOperationMultiError) Error

func (m ReadOperationMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ReadOperationValidationError

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

ReadOperationValidationError is the validation error returned by ReadOperation.Validate if the designated constraints aren't met.

func (ReadOperationValidationError) Cause

Cause function returns cause value.

func (ReadOperationValidationError) Error

Error satisfies the builtin error interface

func (ReadOperationValidationError) ErrorName

func (e ReadOperationValidationError) ErrorName() string

ErrorName returns error name.

func (ReadOperationValidationError) Field

Field function returns field value.

func (ReadOperationValidationError) Key

Key function returns key value.

func (ReadOperationValidationError) Reason

Reason function returns reason value.

type ReadOperation_Include

type ReadOperation_Include struct {
	Clusters   bool `protobuf:"varint,1,opt,name=clusters,proto3" json:"clusters,omitempty"`
	ConfigDump bool `protobuf:"varint,2,opt,name=config_dump,json=configDump,proto3" json:"config_dump,omitempty"`
	Listeners  bool `protobuf:"varint,3,opt,name=listeners,proto3" json:"listeners,omitempty"`
	Runtime    bool `protobuf:"varint,4,opt,name=runtime,proto3" json:"runtime,omitempty"`
	Stats      bool `protobuf:"varint,5,opt,name=stats,proto3" json:"stats,omitempty"`
	ServerInfo bool `protobuf:"varint,6,opt,name=server_info,json=serverInfo,proto3" json:"server_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadOperation_Include) Descriptor deprecated

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

Deprecated: Use ReadOperation_Include.ProtoReflect.Descriptor instead.

func (*ReadOperation_Include) GetClusters

func (x *ReadOperation_Include) GetClusters() bool

func (*ReadOperation_Include) GetConfigDump

func (x *ReadOperation_Include) GetConfigDump() bool

func (*ReadOperation_Include) GetListeners

func (x *ReadOperation_Include) GetListeners() bool

func (*ReadOperation_Include) GetRuntime

func (x *ReadOperation_Include) GetRuntime() bool

func (*ReadOperation_Include) GetServerInfo

func (x *ReadOperation_Include) GetServerInfo() bool

func (*ReadOperation_Include) GetStats

func (x *ReadOperation_Include) GetStats() bool

func (*ReadOperation_Include) ProtoMessage

func (*ReadOperation_Include) ProtoMessage()

func (*ReadOperation_Include) ProtoReflect

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

func (*ReadOperation_Include) Reset

func (x *ReadOperation_Include) Reset()

func (*ReadOperation_Include) String

func (x *ReadOperation_Include) String() string

func (*ReadOperation_Include) Validate

func (m *ReadOperation_Include) Validate() error

Validate checks the field values on ReadOperation_Include 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 (*ReadOperation_Include) ValidateAll

func (m *ReadOperation_Include) ValidateAll() error

ValidateAll checks the field values on ReadOperation_Include 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 ReadOperation_IncludeMultiError, or nil if none found.

type ReadOperation_IncludeMultiError

type ReadOperation_IncludeMultiError []error

ReadOperation_IncludeMultiError is an error wrapping multiple validation errors returned by ReadOperation_Include.ValidateAll() if the designated constraints aren't met.

func (ReadOperation_IncludeMultiError) AllErrors

func (m ReadOperation_IncludeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadOperation_IncludeMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ReadOperation_IncludeValidationError

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

ReadOperation_IncludeValidationError is the validation error returned by ReadOperation_Include.Validate if the designated constraints aren't met.

func (ReadOperation_IncludeValidationError) Cause

Cause function returns cause value.

func (ReadOperation_IncludeValidationError) Error

Error satisfies the builtin error interface

func (ReadOperation_IncludeValidationError) ErrorName

ErrorName returns error name.

func (ReadOperation_IncludeValidationError) Field

Field function returns field value.

func (ReadOperation_IncludeValidationError) Key

Key function returns key value.

func (ReadOperation_IncludeValidationError) Reason

Reason function returns reason value.

type ReadRequest

type ReadRequest struct {
	Operations []*ReadOperation `protobuf:"bytes,1,rep,name=operations,proto3" json:"operations,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadRequest) Descriptor deprecated

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

Deprecated: Use ReadRequest.ProtoReflect.Descriptor instead.

func (*ReadRequest) GetOperations

func (x *ReadRequest) GetOperations() []*ReadOperation

func (*ReadRequest) ProtoMessage

func (*ReadRequest) ProtoMessage()

func (*ReadRequest) ProtoReflect

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

func (*ReadRequest) Reset

func (x *ReadRequest) Reset()

func (*ReadRequest) String

func (x *ReadRequest) String() string

func (*ReadRequest) Validate

func (m *ReadRequest) Validate() error

Validate checks the field values on ReadRequest 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 (*ReadRequest) ValidateAll

func (m *ReadRequest) ValidateAll() error

ValidateAll checks the field values on ReadRequest 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 ReadRequestMultiError, or nil if none found.

type ReadRequestMultiError

type ReadRequestMultiError []error

ReadRequestMultiError is an error wrapping multiple validation errors returned by ReadRequest.ValidateAll() if the designated constraints aren't met.

func (ReadRequestMultiError) AllErrors

func (m ReadRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadRequestMultiError) Error

func (m ReadRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ReadRequestValidationError

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

ReadRequestValidationError is the validation error returned by ReadRequest.Validate if the designated constraints aren't met.

func (ReadRequestValidationError) Cause

Cause function returns cause value.

func (ReadRequestValidationError) Error

Error satisfies the builtin error interface

func (ReadRequestValidationError) ErrorName

func (e ReadRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ReadRequestValidationError) Field

Field function returns field value.

func (ReadRequestValidationError) Key

Key function returns key value.

func (ReadRequestValidationError) Reason

Reason function returns reason value.

type ReadResponse

type ReadResponse struct {
	Results []*Result `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadResponse) Descriptor deprecated

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

Deprecated: Use ReadResponse.ProtoReflect.Descriptor instead.

func (*ReadResponse) GetResults

func (x *ReadResponse) GetResults() []*Result

func (*ReadResponse) ProtoMessage

func (*ReadResponse) ProtoMessage()

func (*ReadResponse) ProtoReflect

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

func (*ReadResponse) Reset

func (x *ReadResponse) Reset()

func (*ReadResponse) String

func (x *ReadResponse) String() string

func (*ReadResponse) Validate

func (m *ReadResponse) Validate() error

Validate checks the field values on ReadResponse 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 (*ReadResponse) ValidateAll

func (m *ReadResponse) ValidateAll() error

ValidateAll checks the field values on ReadResponse 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 ReadResponseMultiError, or nil if none found.

type ReadResponseMultiError

type ReadResponseMultiError []error

ReadResponseMultiError is an error wrapping multiple validation errors returned by ReadResponse.ValidateAll() if the designated constraints aren't met.

func (ReadResponseMultiError) AllErrors

func (m ReadResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadResponseMultiError) Error

func (m ReadResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ReadResponseValidationError

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

ReadResponseValidationError is the validation error returned by ReadResponse.Validate if the designated constraints aren't met.

func (ReadResponseValidationError) Cause

Cause function returns cause value.

func (ReadResponseValidationError) Error

Error satisfies the builtin error interface

func (ReadResponseValidationError) ErrorName

func (e ReadResponseValidationError) ErrorName() string

ErrorName returns error name.

func (ReadResponseValidationError) Field

Field function returns field value.

func (ReadResponseValidationError) Key

Key function returns key value.

func (ReadResponseValidationError) Reason

Reason function returns reason value.

type Result

type Result struct {
	Address      *Address       `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	NodeMetadata *NodeMetadata  `protobuf:"bytes,2,opt,name=node_metadata,json=nodeMetadata,proto3" json:"node_metadata,omitempty"`
	Output       *Result_Output `protobuf:"bytes,3,opt,name=output,proto3" json:"output,omitempty"`
	// contains filtered or unexported fields
}

func (*Result) Descriptor deprecated

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

Deprecated: Use Result.ProtoReflect.Descriptor instead.

func (*Result) GetAddress

func (x *Result) GetAddress() *Address

func (*Result) GetNodeMetadata

func (x *Result) GetNodeMetadata() *NodeMetadata

func (*Result) GetOutput

func (x *Result) GetOutput() *Result_Output

func (*Result) ProtoMessage

func (*Result) ProtoMessage()

func (*Result) ProtoReflect

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

func (*Result) Reset

func (x *Result) Reset()

func (*Result) String

func (x *Result) String() string

func (*Result) Validate

func (m *Result) Validate() error

Validate checks the field values on Result 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 (*Result) ValidateAll

func (m *Result) ValidateAll() error

ValidateAll checks the field values on Result 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 ResultMultiError, or nil if none found.

type ResultMultiError

type ResultMultiError []error

ResultMultiError is an error wrapping multiple validation errors returned by Result.ValidateAll() if the designated constraints aren't met.

func (ResultMultiError) AllErrors

func (m ResultMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ResultMultiError) Error

func (m ResultMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ResultValidationError

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

ResultValidationError is the validation error returned by Result.Validate if the designated constraints aren't met.

func (ResultValidationError) Cause

func (e ResultValidationError) Cause() error

Cause function returns cause value.

func (ResultValidationError) Error

func (e ResultValidationError) Error() string

Error satisfies the builtin error interface

func (ResultValidationError) ErrorName

func (e ResultValidationError) ErrorName() string

ErrorName returns error name.

func (ResultValidationError) Field

func (e ResultValidationError) Field() string

Field function returns field value.

func (ResultValidationError) Key

func (e ResultValidationError) Key() bool

Key function returns key value.

func (ResultValidationError) Reason

func (e ResultValidationError) Reason() string

Reason function returns reason value.

type Result_Output

type Result_Output struct {
	Clusters   *Clusters   `protobuf:"bytes,1,opt,name=clusters,proto3" json:"clusters,omitempty"`
	ConfigDump *ConfigDump `protobuf:"bytes,2,opt,name=config_dump,json=configDump,proto3" json:"config_dump,omitempty"`
	Listeners  *Listeners  `protobuf:"bytes,3,opt,name=listeners,proto3" json:"listeners,omitempty"`
	Runtime    *Runtime    `protobuf:"bytes,4,opt,name=runtime,proto3" json:"runtime,omitempty"`
	Stats      *Stats      `protobuf:"bytes,5,opt,name=stats,proto3" json:"stats,omitempty"`
	ServerInfo *ServerInfo `protobuf:"bytes,6,opt,name=server_info,json=serverInfo,proto3" json:"server_info,omitempty"`
	// contains filtered or unexported fields
}

func (*Result_Output) Descriptor deprecated

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

Deprecated: Use Result_Output.ProtoReflect.Descriptor instead.

func (*Result_Output) GetClusters

func (x *Result_Output) GetClusters() *Clusters

func (*Result_Output) GetConfigDump

func (x *Result_Output) GetConfigDump() *ConfigDump

func (*Result_Output) GetListeners

func (x *Result_Output) GetListeners() *Listeners

func (*Result_Output) GetRuntime

func (x *Result_Output) GetRuntime() *Runtime

func (*Result_Output) GetServerInfo

func (x *Result_Output) GetServerInfo() *ServerInfo

func (*Result_Output) GetStats

func (x *Result_Output) GetStats() *Stats

func (*Result_Output) ProtoMessage

func (*Result_Output) ProtoMessage()

func (*Result_Output) ProtoReflect

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

func (*Result_Output) Reset

func (x *Result_Output) Reset()

func (*Result_Output) String

func (x *Result_Output) String() string

func (*Result_Output) Validate

func (m *Result_Output) Validate() error

Validate checks the field values on Result_Output 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 (*Result_Output) ValidateAll

func (m *Result_Output) ValidateAll() error

ValidateAll checks the field values on Result_Output 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 Result_OutputMultiError, or nil if none found.

type Result_OutputMultiError

type Result_OutputMultiError []error

Result_OutputMultiError is an error wrapping multiple validation errors returned by Result_Output.ValidateAll() if the designated constraints aren't met.

func (Result_OutputMultiError) AllErrors

func (m Result_OutputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Result_OutputMultiError) Error

func (m Result_OutputMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type Result_OutputValidationError

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

Result_OutputValidationError is the validation error returned by Result_Output.Validate if the designated constraints aren't met.

func (Result_OutputValidationError) Cause

Cause function returns cause value.

func (Result_OutputValidationError) Error

Error satisfies the builtin error interface

func (Result_OutputValidationError) ErrorName

func (e Result_OutputValidationError) ErrorName() string

ErrorName returns error name.

func (Result_OutputValidationError) Field

Field function returns field value.

func (Result_OutputValidationError) Key

Key function returns key value.

func (Result_OutputValidationError) Reason

Reason function returns reason value.

type Runtime

type Runtime struct {
	Entries []*Runtime_Entry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*Runtime) Descriptor deprecated

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

Deprecated: Use Runtime.ProtoReflect.Descriptor instead.

func (*Runtime) GetEntries

func (x *Runtime) GetEntries() []*Runtime_Entry

func (*Runtime) ProtoMessage

func (*Runtime) ProtoMessage()

func (*Runtime) ProtoReflect

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

func (*Runtime) Reset

func (x *Runtime) Reset()

func (*Runtime) String

func (x *Runtime) String() string

func (*Runtime) Validate

func (m *Runtime) Validate() error

Validate checks the field values on Runtime 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 (*Runtime) ValidateAll

func (m *Runtime) ValidateAll() error

ValidateAll checks the field values on Runtime 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 RuntimeMultiError, or nil if none found.

type RuntimeMultiError

type RuntimeMultiError []error

RuntimeMultiError is an error wrapping multiple validation errors returned by Runtime.ValidateAll() if the designated constraints aren't met.

func (RuntimeMultiError) AllErrors

func (m RuntimeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RuntimeMultiError) Error

func (m RuntimeMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RuntimeValidationError

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

RuntimeValidationError is the validation error returned by Runtime.Validate if the designated constraints aren't met.

func (RuntimeValidationError) Cause

func (e RuntimeValidationError) Cause() error

Cause function returns cause value.

func (RuntimeValidationError) Error

func (e RuntimeValidationError) Error() string

Error satisfies the builtin error interface

func (RuntimeValidationError) ErrorName

func (e RuntimeValidationError) ErrorName() string

ErrorName returns error name.

func (RuntimeValidationError) Field

func (e RuntimeValidationError) Field() string

Field function returns field value.

func (RuntimeValidationError) Key

func (e RuntimeValidationError) Key() bool

Key function returns key value.

func (RuntimeValidationError) Reason

func (e RuntimeValidationError) Reason() string

Reason function returns reason value.

type Runtime_Entry

type Runtime_Entry struct {
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// Types that are assignable to Type:
	//
	//	*Runtime_Entry_Value
	Type isRuntime_Entry_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*Runtime_Entry) Descriptor deprecated

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

Deprecated: Use Runtime_Entry.ProtoReflect.Descriptor instead.

func (*Runtime_Entry) GetKey

func (x *Runtime_Entry) GetKey() string

func (*Runtime_Entry) GetType

func (m *Runtime_Entry) GetType() isRuntime_Entry_Type

func (*Runtime_Entry) GetValue

func (x *Runtime_Entry) GetValue() string

func (*Runtime_Entry) ProtoMessage

func (*Runtime_Entry) ProtoMessage()

func (*Runtime_Entry) ProtoReflect

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

func (*Runtime_Entry) Reset

func (x *Runtime_Entry) Reset()

func (*Runtime_Entry) String

func (x *Runtime_Entry) String() string

func (*Runtime_Entry) Validate

func (m *Runtime_Entry) Validate() error

Validate checks the field values on Runtime_Entry 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 (*Runtime_Entry) ValidateAll

func (m *Runtime_Entry) ValidateAll() error

ValidateAll checks the field values on Runtime_Entry 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 Runtime_EntryMultiError, or nil if none found.

type Runtime_EntryMultiError

type Runtime_EntryMultiError []error

Runtime_EntryMultiError is an error wrapping multiple validation errors returned by Runtime_Entry.ValidateAll() if the designated constraints aren't met.

func (Runtime_EntryMultiError) AllErrors

func (m Runtime_EntryMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Runtime_EntryMultiError) Error

func (m Runtime_EntryMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type Runtime_EntryValidationError

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

Runtime_EntryValidationError is the validation error returned by Runtime_Entry.Validate if the designated constraints aren't met.

func (Runtime_EntryValidationError) Cause

Cause function returns cause value.

func (Runtime_EntryValidationError) Error

Error satisfies the builtin error interface

func (Runtime_EntryValidationError) ErrorName

func (e Runtime_EntryValidationError) ErrorName() string

ErrorName returns error name.

func (Runtime_EntryValidationError) Field

Field function returns field value.

func (Runtime_EntryValidationError) Key

Key function returns key value.

func (Runtime_EntryValidationError) Reason

Reason function returns reason value.

type Runtime_Entry_Value

type Runtime_Entry_Value struct {
	Value string `protobuf:"bytes,2,opt,name=value,proto3,oneof"`
}

type ServerInfo

type ServerInfo struct {
	Value *structpb.Value `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ServerInfo) Descriptor deprecated

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

Deprecated: Use ServerInfo.ProtoReflect.Descriptor instead.

func (*ServerInfo) GetValue

func (x *ServerInfo) GetValue() *structpb.Value

func (*ServerInfo) ProtoMessage

func (*ServerInfo) ProtoMessage()

func (*ServerInfo) ProtoReflect

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

func (*ServerInfo) Reset

func (x *ServerInfo) Reset()

func (*ServerInfo) String

func (x *ServerInfo) String() string

func (*ServerInfo) Validate

func (m *ServerInfo) Validate() error

Validate checks the field values on ServerInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServerInfo) ValidateAll

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.

type ServerInfoMultiError

type ServerInfoMultiError []error

ServerInfoMultiError is an error wrapping multiple validation errors returned by ServerInfo.ValidateAll() if the designated constraints aren't met.

func (ServerInfoMultiError) AllErrors

func (m ServerInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServerInfoMultiError) Error

func (m ServerInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ServerInfoValidationError

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

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

func (ServerInfoValidationError) Cause

func (e ServerInfoValidationError) Cause() error

Cause function returns cause value.

func (ServerInfoValidationError) Error

Error satisfies the builtin error interface

func (ServerInfoValidationError) ErrorName

func (e ServerInfoValidationError) ErrorName() string

ErrorName returns error name.

func (ServerInfoValidationError) Field

Field function returns field value.

func (ServerInfoValidationError) Key

Key function returns key value.

func (ServerInfoValidationError) Reason

func (e ServerInfoValidationError) Reason() string

Reason function returns reason value.

type Stats

type Stats struct {

	// Counters and gauges are returned here.
	Stats []*Stats_Stat `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,omitempty"`
	// contains filtered or unexported fields
}

func (*Stats) Descriptor deprecated

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

Deprecated: Use Stats.ProtoReflect.Descriptor instead.

func (*Stats) GetStats

func (x *Stats) GetStats() []*Stats_Stat

func (*Stats) ProtoMessage

func (*Stats) ProtoMessage()

func (*Stats) ProtoReflect

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

func (*Stats) Reset

func (x *Stats) Reset()

func (*Stats) String

func (x *Stats) String() string

func (*Stats) Validate

func (m *Stats) Validate() error

Validate checks the field values on Stats 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 (*Stats) ValidateAll

func (m *Stats) ValidateAll() error

ValidateAll checks the field values on Stats 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 StatsMultiError, or nil if none found.

type StatsMultiError

type StatsMultiError []error

StatsMultiError is an error wrapping multiple validation errors returned by Stats.ValidateAll() if the designated constraints aren't met.

func (StatsMultiError) AllErrors

func (m StatsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StatsMultiError) Error

func (m StatsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type StatsValidationError

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

StatsValidationError is the validation error returned by Stats.Validate if the designated constraints aren't met.

func (StatsValidationError) Cause

func (e StatsValidationError) Cause() error

Cause function returns cause value.

func (StatsValidationError) Error

func (e StatsValidationError) Error() string

Error satisfies the builtin error interface

func (StatsValidationError) ErrorName

func (e StatsValidationError) ErrorName() string

ErrorName returns error name.

func (StatsValidationError) Field

func (e StatsValidationError) Field() string

Field function returns field value.

func (StatsValidationError) Key

func (e StatsValidationError) Key() bool

Key function returns key value.

func (StatsValidationError) Reason

func (e StatsValidationError) Reason() string

Reason function returns reason value.

type Stats_Stat

type Stats_Stat struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value uint64 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Stats_Stat) Descriptor deprecated

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

Deprecated: Use Stats_Stat.ProtoReflect.Descriptor instead.

func (*Stats_Stat) GetKey

func (x *Stats_Stat) GetKey() string

func (*Stats_Stat) GetValue

func (x *Stats_Stat) GetValue() uint64

func (*Stats_Stat) ProtoMessage

func (*Stats_Stat) ProtoMessage()

func (*Stats_Stat) ProtoReflect

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

func (*Stats_Stat) Reset

func (x *Stats_Stat) Reset()

func (*Stats_Stat) String

func (x *Stats_Stat) String() string

func (*Stats_Stat) Validate

func (m *Stats_Stat) Validate() error

Validate checks the field values on Stats_Stat 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 (*Stats_Stat) ValidateAll

func (m *Stats_Stat) ValidateAll() error

ValidateAll checks the field values on Stats_Stat 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 Stats_StatMultiError, or nil if none found.

type Stats_StatMultiError

type Stats_StatMultiError []error

Stats_StatMultiError is an error wrapping multiple validation errors returned by Stats_Stat.ValidateAll() if the designated constraints aren't met.

func (Stats_StatMultiError) AllErrors

func (m Stats_StatMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Stats_StatMultiError) Error

func (m Stats_StatMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type Stats_StatValidationError

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

Stats_StatValidationError is the validation error returned by Stats_Stat.Validate if the designated constraints aren't met.

func (Stats_StatValidationError) Cause

func (e Stats_StatValidationError) Cause() error

Cause function returns cause value.

func (Stats_StatValidationError) Error

Error satisfies the builtin error interface

func (Stats_StatValidationError) ErrorName

func (e Stats_StatValidationError) ErrorName() string

ErrorName returns error name.

func (Stats_StatValidationError) Field

Field function returns field value.

func (Stats_StatValidationError) Key

Key function returns key value.

func (Stats_StatValidationError) Reason

func (e Stats_StatValidationError) Reason() string

Reason function returns reason value.

type UnimplementedEnvoyTriageAPIServer

type UnimplementedEnvoyTriageAPIServer struct {
}

UnimplementedEnvoyTriageAPIServer should be embedded to have forward compatible implementations.

func (UnimplementedEnvoyTriageAPIServer) Read

type UnsafeEnvoyTriageAPIServer

type UnsafeEnvoyTriageAPIServer interface {
	// contains filtered or unexported methods
}

UnsafeEnvoyTriageAPIServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to EnvoyTriageAPIServer will result in compilation errors.

Jump to

Keyboard shortcuts

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