envoy_service_status_v3

package
v0.9.4 Latest Latest
Warning

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

Go to latest
Published: Feb 13, 2020 License: Apache-2.0 Imports: 23 Imported by: 56

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ConfigStatus_name = map[int32]string{
	0: "UNKNOWN",
	1: "SYNCED",
	2: "NOT_SENT",
	3: "STALE",
	4: "ERROR",
}
View Source
var ConfigStatus_value = map[string]int32{
	"UNKNOWN":  0,
	"SYNCED":   1,
	"NOT_SENT": 2,
	"STALE":    3,
	"ERROR":    4,
}

Functions

func RegisterClientStatusDiscoveryServiceServer

func RegisterClientStatusDiscoveryServiceServer(s *grpc.Server, srv ClientStatusDiscoveryServiceServer)

Types

type ClientConfig

type ClientConfig struct {
	Node                 *v32.Node       `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
	XdsConfig            []*PerXdsConfig `protobuf:"bytes,2,rep,name=xds_config,json=xdsConfig,proto3" json:"xds_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ClientConfig) Descriptor

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

func (*ClientConfig) GetNode

func (m *ClientConfig) GetNode() *v32.Node

func (*ClientConfig) GetXdsConfig

func (m *ClientConfig) GetXdsConfig() []*PerXdsConfig

func (*ClientConfig) ProtoMessage

func (*ClientConfig) ProtoMessage()

func (*ClientConfig) Reset

func (m *ClientConfig) Reset()

func (*ClientConfig) String

func (m *ClientConfig) String() string

func (*ClientConfig) Validate

func (m *ClientConfig) Validate() error

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

func (*ClientConfig) XXX_DiscardUnknown

func (m *ClientConfig) XXX_DiscardUnknown()

func (*ClientConfig) XXX_Marshal

func (m *ClientConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClientConfig) XXX_Merge

func (m *ClientConfig) XXX_Merge(src proto.Message)

func (*ClientConfig) XXX_Size

func (m *ClientConfig) XXX_Size() int

func (*ClientConfig) XXX_Unmarshal

func (m *ClientConfig) XXX_Unmarshal(b []byte) error

type ClientConfigValidationError

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

ClientConfigValidationError is the validation error returned by ClientConfig.Validate if the designated constraints aren't met.

func (ClientConfigValidationError) Cause

Cause function returns cause value.

func (ClientConfigValidationError) Error

Error satisfies the builtin error interface

func (ClientConfigValidationError) ErrorName

func (e ClientConfigValidationError) ErrorName() string

ErrorName returns error name.

func (ClientConfigValidationError) Field

Field function returns field value.

func (ClientConfigValidationError) Key

Key function returns key value.

func (ClientConfigValidationError) Reason

Reason function returns reason value.

type ClientStatusDiscoveryServiceClient

type ClientStatusDiscoveryServiceClient interface {
	StreamClientStatus(ctx context.Context, opts ...grpc.CallOption) (ClientStatusDiscoveryService_StreamClientStatusClient, error)
	FetchClientStatus(ctx context.Context, in *ClientStatusRequest, opts ...grpc.CallOption) (*ClientStatusResponse, error)
}

ClientStatusDiscoveryServiceClient is the client API for ClientStatusDiscoveryService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewClientStatusDiscoveryServiceClient

func NewClientStatusDiscoveryServiceClient(cc *grpc.ClientConn) ClientStatusDiscoveryServiceClient

type ClientStatusDiscoveryServiceServer

type ClientStatusDiscoveryServiceServer interface {
	StreamClientStatus(ClientStatusDiscoveryService_StreamClientStatusServer) error
	FetchClientStatus(context.Context, *ClientStatusRequest) (*ClientStatusResponse, error)
}

ClientStatusDiscoveryServiceServer is the server API for ClientStatusDiscoveryService service.

type ClientStatusDiscoveryService_StreamClientStatusClient

type ClientStatusDiscoveryService_StreamClientStatusClient interface {
	Send(*ClientStatusRequest) error
	Recv() (*ClientStatusResponse, error)
	grpc.ClientStream
}

type ClientStatusDiscoveryService_StreamClientStatusServer

type ClientStatusDiscoveryService_StreamClientStatusServer interface {
	Send(*ClientStatusResponse) error
	Recv() (*ClientStatusRequest, error)
	grpc.ServerStream
}

type ClientStatusRequest

type ClientStatusRequest struct {
	NodeMatchers         []*v3.NodeMatcher `protobuf:"bytes,1,rep,name=node_matchers,json=nodeMatchers,proto3" json:"node_matchers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ClientStatusRequest) Descriptor

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

func (*ClientStatusRequest) GetNodeMatchers

func (m *ClientStatusRequest) GetNodeMatchers() []*v3.NodeMatcher

func (*ClientStatusRequest) ProtoMessage

func (*ClientStatusRequest) ProtoMessage()

func (*ClientStatusRequest) Reset

func (m *ClientStatusRequest) Reset()

func (*ClientStatusRequest) String

func (m *ClientStatusRequest) String() string

func (*ClientStatusRequest) Validate

func (m *ClientStatusRequest) Validate() error

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

func (*ClientStatusRequest) XXX_DiscardUnknown

func (m *ClientStatusRequest) XXX_DiscardUnknown()

func (*ClientStatusRequest) XXX_Marshal

func (m *ClientStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClientStatusRequest) XXX_Merge

func (m *ClientStatusRequest) XXX_Merge(src proto.Message)

func (*ClientStatusRequest) XXX_Size

func (m *ClientStatusRequest) XXX_Size() int

func (*ClientStatusRequest) XXX_Unmarshal

func (m *ClientStatusRequest) XXX_Unmarshal(b []byte) error

type ClientStatusRequestValidationError

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

ClientStatusRequestValidationError is the validation error returned by ClientStatusRequest.Validate if the designated constraints aren't met.

func (ClientStatusRequestValidationError) Cause

Cause function returns cause value.

func (ClientStatusRequestValidationError) Error

Error satisfies the builtin error interface

func (ClientStatusRequestValidationError) ErrorName

ErrorName returns error name.

func (ClientStatusRequestValidationError) Field

Field function returns field value.

func (ClientStatusRequestValidationError) Key

Key function returns key value.

func (ClientStatusRequestValidationError) Reason

Reason function returns reason value.

type ClientStatusResponse

type ClientStatusResponse struct {
	Config               []*ClientConfig `protobuf:"bytes,1,rep,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ClientStatusResponse) Descriptor

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

func (*ClientStatusResponse) GetConfig

func (m *ClientStatusResponse) GetConfig() []*ClientConfig

func (*ClientStatusResponse) ProtoMessage

func (*ClientStatusResponse) ProtoMessage()

func (*ClientStatusResponse) Reset

func (m *ClientStatusResponse) Reset()

func (*ClientStatusResponse) String

func (m *ClientStatusResponse) String() string

func (*ClientStatusResponse) Validate

func (m *ClientStatusResponse) Validate() error

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

func (*ClientStatusResponse) XXX_DiscardUnknown

func (m *ClientStatusResponse) XXX_DiscardUnknown()

func (*ClientStatusResponse) XXX_Marshal

func (m *ClientStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClientStatusResponse) XXX_Merge

func (m *ClientStatusResponse) XXX_Merge(src proto.Message)

func (*ClientStatusResponse) XXX_Size

func (m *ClientStatusResponse) XXX_Size() int

func (*ClientStatusResponse) XXX_Unmarshal

func (m *ClientStatusResponse) XXX_Unmarshal(b []byte) error

type ClientStatusResponseValidationError

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

ClientStatusResponseValidationError is the validation error returned by ClientStatusResponse.Validate if the designated constraints aren't met.

func (ClientStatusResponseValidationError) Cause

Cause function returns cause value.

func (ClientStatusResponseValidationError) Error

Error satisfies the builtin error interface

func (ClientStatusResponseValidationError) ErrorName

ErrorName returns error name.

func (ClientStatusResponseValidationError) Field

Field function returns field value.

func (ClientStatusResponseValidationError) Key

Key function returns key value.

func (ClientStatusResponseValidationError) Reason

Reason function returns reason value.

type ConfigStatus

type ConfigStatus int32
const (
	ConfigStatus_UNKNOWN  ConfigStatus = 0
	ConfigStatus_SYNCED   ConfigStatus = 1
	ConfigStatus_NOT_SENT ConfigStatus = 2
	ConfigStatus_STALE    ConfigStatus = 3
	ConfigStatus_ERROR    ConfigStatus = 4
)

func (ConfigStatus) EnumDescriptor

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

func (ConfigStatus) String

func (x ConfigStatus) String() string

type PerXdsConfig

type PerXdsConfig struct {
	Status ConfigStatus `protobuf:"varint,1,opt,name=status,proto3,enum=envoy.service.status.v3.ConfigStatus" json:"status,omitempty"`
	// Types that are valid to be assigned to PerXdsConfig:
	//	*PerXdsConfig_ListenerConfig
	//	*PerXdsConfig_ClusterConfig
	//	*PerXdsConfig_RouteConfig
	//	*PerXdsConfig_ScopedRouteConfig
	PerXdsConfig         isPerXdsConfig_PerXdsConfig `protobuf_oneof:"per_xds_config"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*PerXdsConfig) Descriptor

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

func (*PerXdsConfig) GetClusterConfig

func (m *PerXdsConfig) GetClusterConfig() *v31.ClustersConfigDump

func (*PerXdsConfig) GetListenerConfig

func (m *PerXdsConfig) GetListenerConfig() *v31.ListenersConfigDump

func (*PerXdsConfig) GetPerXdsConfig

func (m *PerXdsConfig) GetPerXdsConfig() isPerXdsConfig_PerXdsConfig

func (*PerXdsConfig) GetRouteConfig

func (m *PerXdsConfig) GetRouteConfig() *v31.RoutesConfigDump

func (*PerXdsConfig) GetScopedRouteConfig

func (m *PerXdsConfig) GetScopedRouteConfig() *v31.ScopedRoutesConfigDump

func (*PerXdsConfig) GetStatus

func (m *PerXdsConfig) GetStatus() ConfigStatus

func (*PerXdsConfig) ProtoMessage

func (*PerXdsConfig) ProtoMessage()

func (*PerXdsConfig) Reset

func (m *PerXdsConfig) Reset()

func (*PerXdsConfig) String

func (m *PerXdsConfig) String() string

func (*PerXdsConfig) Validate

func (m *PerXdsConfig) Validate() error

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

func (*PerXdsConfig) XXX_DiscardUnknown

func (m *PerXdsConfig) XXX_DiscardUnknown()

func (*PerXdsConfig) XXX_Marshal

func (m *PerXdsConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PerXdsConfig) XXX_Merge

func (m *PerXdsConfig) XXX_Merge(src proto.Message)

func (*PerXdsConfig) XXX_OneofWrappers

func (*PerXdsConfig) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PerXdsConfig) XXX_Size

func (m *PerXdsConfig) XXX_Size() int

func (*PerXdsConfig) XXX_Unmarshal

func (m *PerXdsConfig) XXX_Unmarshal(b []byte) error

type PerXdsConfigValidationError

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

PerXdsConfigValidationError is the validation error returned by PerXdsConfig.Validate if the designated constraints aren't met.

func (PerXdsConfigValidationError) Cause

Cause function returns cause value.

func (PerXdsConfigValidationError) Error

Error satisfies the builtin error interface

func (PerXdsConfigValidationError) ErrorName

func (e PerXdsConfigValidationError) ErrorName() string

ErrorName returns error name.

func (PerXdsConfigValidationError) Field

Field function returns field value.

func (PerXdsConfigValidationError) Key

Key function returns key value.

func (PerXdsConfigValidationError) Reason

Reason function returns reason value.

type PerXdsConfig_ClusterConfig

type PerXdsConfig_ClusterConfig struct {
	ClusterConfig *v31.ClustersConfigDump `protobuf:"bytes,3,opt,name=cluster_config,json=clusterConfig,proto3,oneof"`
}

type PerXdsConfig_ListenerConfig

type PerXdsConfig_ListenerConfig struct {
	ListenerConfig *v31.ListenersConfigDump `protobuf:"bytes,2,opt,name=listener_config,json=listenerConfig,proto3,oneof"`
}

type PerXdsConfig_RouteConfig

type PerXdsConfig_RouteConfig struct {
	RouteConfig *v31.RoutesConfigDump `protobuf:"bytes,4,opt,name=route_config,json=routeConfig,proto3,oneof"`
}

type PerXdsConfig_ScopedRouteConfig

type PerXdsConfig_ScopedRouteConfig struct {
	ScopedRouteConfig *v31.ScopedRoutesConfigDump `protobuf:"bytes,5,opt,name=scoped_route_config,json=scopedRouteConfig,proto3,oneof"`
}

type UnimplementedClientStatusDiscoveryServiceServer

type UnimplementedClientStatusDiscoveryServiceServer struct {
}

UnimplementedClientStatusDiscoveryServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedClientStatusDiscoveryServiceServer) FetchClientStatus

func (*UnimplementedClientStatusDiscoveryServiceServer) StreamClientStatus

Jump to

Keyboard shortcuts

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