mgmt_pb

package
v0.16.66 Latest Latest
Warning

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

Go to latest
Published: Jun 9, 2021 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const DECODER = "mgmt"

Variables

View Source
var (
	ContentType_name = map[int32]string{
		0:     "Zero",
		10001: "ListServicesRequestType",
		10002: "ListServicesResponseType",
		10003: "CreateServiceRequestType",
		10005: "RemoveServiceRequestType",
		10006: "GetServiceRequestType",
		10007: "GetServiceResponseType",
		10050: "CreateTerminatorRequestType",
		10051: "RemoveTerminatorRequestType",
		10052: "ListTerminatorsRequestType",
		10053: "ListTerminatorsResponseType",
		10054: "GetTerminatorRequestType",
		10055: "GetTerminatorResponseType",
		10056: "SetTerminatorCostRequestType",
		10010: "ListRoutersRequestType",
		10011: "ListRoutersResponseType",
		10012: "CreateRouterRequestType",
		10013: "RemoveRouterRequestType",
		10020: "ListLinksRequestType",
		10021: "ListLinksResponseType",
		10022: "SetLinkCostRequestType",
		10023: "SetLinkDownRequestType",
		10030: "ListSessionsRequestType",
		10031: "ListSessionsResponseType",
		10032: "RemoveSessionRequestType",
		10040: "StreamMetricsRequestType",
		10041: "StreamMetricsEventType",
		10042: "StreamSessionsRequestType",
		10043: "StreamSessionsEventType",
		10044: "TogglePipeTracesRequestType",
		10045: "ToggleSessionTracesRequestType",
		10046: "StreamTracesRequestType",
		10047: "StreamTracesEventType",
		10048: "InspectRequestType",
		10049: "InspectResponseType",
		10070: "SnapshotDbRequestType",
	}
	ContentType_value = map[string]int32{
		"Zero":                           0,
		"ListServicesRequestType":        10001,
		"ListServicesResponseType":       10002,
		"CreateServiceRequestType":       10003,
		"RemoveServiceRequestType":       10005,
		"GetServiceRequestType":          10006,
		"GetServiceResponseType":         10007,
		"CreateTerminatorRequestType":    10050,
		"RemoveTerminatorRequestType":    10051,
		"ListTerminatorsRequestType":     10052,
		"ListTerminatorsResponseType":    10053,
		"GetTerminatorRequestType":       10054,
		"GetTerminatorResponseType":      10055,
		"SetTerminatorCostRequestType":   10056,
		"ListRoutersRequestType":         10010,
		"ListRoutersResponseType":        10011,
		"CreateRouterRequestType":        10012,
		"RemoveRouterRequestType":        10013,
		"ListLinksRequestType":           10020,
		"ListLinksResponseType":          10021,
		"SetLinkCostRequestType":         10022,
		"SetLinkDownRequestType":         10023,
		"ListSessionsRequestType":        10030,
		"ListSessionsResponseType":       10031,
		"RemoveSessionRequestType":       10032,
		"StreamMetricsRequestType":       10040,
		"StreamMetricsEventType":         10041,
		"StreamSessionsRequestType":      10042,
		"StreamSessionsEventType":        10043,
		"TogglePipeTracesRequestType":    10044,
		"ToggleSessionTracesRequestType": 10045,
		"StreamTracesRequestType":        10046,
		"StreamTracesEventType":          10047,
		"InspectRequestType":             10048,
		"InspectResponseType":            10049,
		"SnapshotDbRequestType":          10070,
	}
)

Enum value maps for ContentType.

View Source
var (
	TerminatorPrecedence_name = map[int32]string{
		0: "Default",
		1: "Required",
		2: "Failed",
	}
	TerminatorPrecedence_value = map[string]int32{
		"Default":  0,
		"Required": 1,
		"Failed":   2,
	}
)

Enum value maps for TerminatorPrecedence.

View Source
var (
	TerminatorChangeMask_name = map[int32]string{
		0: "None",
		1: "StaticCost",
		2: "Precedence",
		4: "DynamicCost",
	}
	TerminatorChangeMask_value = map[string]int32{
		"None":        0,
		"StaticCost":  1,
		"Precedence":  2,
		"DynamicCost": 4,
	}
)

Enum value maps for TerminatorChangeMask.

View Source
var (
	StreamSessionEventType_name = map[int32]string{
		0: "SessionCreated",
		1: "SessionDeleted",
		2: "SessionPresent",
		3: "CircuitUpdated",
	}
	StreamSessionEventType_value = map[string]int32{
		"SessionCreated": 0,
		"SessionDeleted": 1,
		"SessionPresent": 2,
		"CircuitUpdated": 3,
	}
)

Enum value maps for StreamSessionEventType.

View Source
var (
	TraceFilterType_name = map[int32]string{
		0: "EXCLUDE",
		1: "INCLUDE",
	}
	TraceFilterType_value = map[string]int32{
		"EXCLUDE": 0,
		"INCLUDE": 1,
	}
)

Enum value maps for TraceFilterType.

Functions

This section is empty.

Types

type Circuit

type Circuit struct {
	Path  []string `protobuf:"bytes,1,rep,name=path,proto3" json:"path,omitempty"`
	Links []string `protobuf:"bytes,2,rep,name=links,proto3" json:"links,omitempty"`
	// contains filtered or unexported fields
}

func (*Circuit) CalculateDisplayPath

func (circuit *Circuit) CalculateDisplayPath() string

func (*Circuit) Descriptor deprecated

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

Deprecated: Use Circuit.ProtoReflect.Descriptor instead.

func (x *Circuit) GetLinks() []string

func (*Circuit) GetPath

func (x *Circuit) GetPath() []string

func (*Circuit) ProtoMessage

func (*Circuit) ProtoMessage()

func (*Circuit) ProtoReflect added in v0.16.65

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

func (*Circuit) Reset

func (x *Circuit) Reset()

func (*Circuit) String

func (x *Circuit) String() string

type ContentType

type ContentType int32
const (
	// Protoc says this has to be here
	ContentType_Zero ContentType = 0
	// Services
	ContentType_ListServicesRequestType  ContentType = 10001
	ContentType_ListServicesResponseType ContentType = 10002
	ContentType_CreateServiceRequestType ContentType = 10003
	ContentType_RemoveServiceRequestType ContentType = 10005
	ContentType_GetServiceRequestType    ContentType = 10006
	ContentType_GetServiceResponseType   ContentType = 10007
	// Service Terminators
	ContentType_CreateTerminatorRequestType  ContentType = 10050
	ContentType_RemoveTerminatorRequestType  ContentType = 10051
	ContentType_ListTerminatorsRequestType   ContentType = 10052
	ContentType_ListTerminatorsResponseType  ContentType = 10053
	ContentType_GetTerminatorRequestType     ContentType = 10054
	ContentType_GetTerminatorResponseType    ContentType = 10055
	ContentType_SetTerminatorCostRequestType ContentType = 10056
	// Routers
	ContentType_ListRoutersRequestType  ContentType = 10010
	ContentType_ListRoutersResponseType ContentType = 10011
	ContentType_CreateRouterRequestType ContentType = 10012
	ContentType_RemoveRouterRequestType ContentType = 10013
	// Links
	ContentType_ListLinksRequestType   ContentType = 10020
	ContentType_ListLinksResponseType  ContentType = 10021
	ContentType_SetLinkCostRequestType ContentType = 10022
	ContentType_SetLinkDownRequestType ContentType = 10023
	// Sessions
	ContentType_ListSessionsRequestType  ContentType = 10030
	ContentType_ListSessionsResponseType ContentType = 10031
	ContentType_RemoveSessionRequestType ContentType = 10032
	// Streams
	ContentType_StreamMetricsRequestType       ContentType = 10040
	ContentType_StreamMetricsEventType         ContentType = 10041
	ContentType_StreamSessionsRequestType      ContentType = 10042
	ContentType_StreamSessionsEventType        ContentType = 10043
	ContentType_TogglePipeTracesRequestType    ContentType = 10044
	ContentType_ToggleSessionTracesRequestType ContentType = 10045
	ContentType_StreamTracesRequestType        ContentType = 10046
	ContentType_StreamTracesEventType          ContentType = 10047
	// Inspect
	ContentType_InspectRequestType  ContentType = 10048
	ContentType_InspectResponseType ContentType = 10049
	// Snapshot db
	ContentType_SnapshotDbRequestType ContentType = 10070
)

func (ContentType) Descriptor added in v0.16.65

func (ContentType) Enum added in v0.16.65

func (x ContentType) Enum() *ContentType

func (ContentType) EnumDescriptor deprecated

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

Deprecated: Use ContentType.Descriptor instead.

func (ContentType) Number added in v0.16.65

func (x ContentType) Number() protoreflect.EnumNumber

func (ContentType) String

func (x ContentType) String() string

func (ContentType) Type added in v0.16.65

type CreateRouterRequest

type CreateRouterRequest struct {
	Router *Router `protobuf:"bytes,1,opt,name=router,proto3" json:"router,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRouterRequest) Descriptor deprecated

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

Deprecated: Use CreateRouterRequest.ProtoReflect.Descriptor instead.

func (*CreateRouterRequest) GetRouter

func (x *CreateRouterRequest) GetRouter() *Router

func (*CreateRouterRequest) ProtoMessage

func (*CreateRouterRequest) ProtoMessage()

func (*CreateRouterRequest) ProtoReflect added in v0.16.65

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

func (*CreateRouterRequest) Reset

func (x *CreateRouterRequest) Reset()

func (*CreateRouterRequest) String

func (x *CreateRouterRequest) String() string

type CreateServiceRequest

type CreateServiceRequest struct {
	Service *Service `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateServiceRequest) Descriptor deprecated

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

Deprecated: Use CreateServiceRequest.ProtoReflect.Descriptor instead.

func (*CreateServiceRequest) GetService

func (x *CreateServiceRequest) GetService() *Service

func (*CreateServiceRequest) ProtoMessage

func (*CreateServiceRequest) ProtoMessage()

func (*CreateServiceRequest) ProtoReflect added in v0.16.65

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

func (*CreateServiceRequest) Reset

func (x *CreateServiceRequest) Reset()

func (*CreateServiceRequest) String

func (x *CreateServiceRequest) String() string

type CreateTerminatorRequest

type CreateTerminatorRequest struct {
	Terminator *Terminator `protobuf:"bytes,1,opt,name=terminator,proto3" json:"terminator,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTerminatorRequest) Descriptor deprecated

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

Deprecated: Use CreateTerminatorRequest.ProtoReflect.Descriptor instead.

func (*CreateTerminatorRequest) GetTerminator

func (x *CreateTerminatorRequest) GetTerminator() *Terminator

func (*CreateTerminatorRequest) ProtoMessage

func (*CreateTerminatorRequest) ProtoMessage()

func (*CreateTerminatorRequest) ProtoReflect added in v0.16.65

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

func (*CreateTerminatorRequest) Reset

func (x *CreateTerminatorRequest) Reset()

func (*CreateTerminatorRequest) String

func (x *CreateTerminatorRequest) String() string

type Decoder

type Decoder struct{}

func (Decoder) Decode

func (d Decoder) Decode(msg *channel2.Message) ([]byte, bool)

type GetServiceRequest

type GetServiceRequest struct {
	ServiceId string `protobuf:"bytes,1,opt,name=serviceId,proto3" json:"serviceId,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServiceRequest) Descriptor deprecated

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

Deprecated: Use GetServiceRequest.ProtoReflect.Descriptor instead.

func (*GetServiceRequest) GetServiceId

func (x *GetServiceRequest) GetServiceId() string

func (*GetServiceRequest) ProtoMessage

func (*GetServiceRequest) ProtoMessage()

func (*GetServiceRequest) ProtoReflect added in v0.16.65

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

func (*GetServiceRequest) Reset

func (x *GetServiceRequest) Reset()

func (*GetServiceRequest) String

func (x *GetServiceRequest) String() string

type GetServiceResponse

type GetServiceResponse struct {
	Service *Service `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServiceResponse) Descriptor deprecated

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

Deprecated: Use GetServiceResponse.ProtoReflect.Descriptor instead.

func (*GetServiceResponse) GetService

func (x *GetServiceResponse) GetService() *Service

func (*GetServiceResponse) ProtoMessage

func (*GetServiceResponse) ProtoMessage()

func (*GetServiceResponse) ProtoReflect added in v0.16.65

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

func (*GetServiceResponse) Reset

func (x *GetServiceResponse) Reset()

func (*GetServiceResponse) String

func (x *GetServiceResponse) String() string

type GetTerminatorRequest

type GetTerminatorRequest struct {
	TerminatorId string `protobuf:"bytes,1,opt,name=terminatorId,proto3" json:"terminatorId,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTerminatorRequest) Descriptor deprecated

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

Deprecated: Use GetTerminatorRequest.ProtoReflect.Descriptor instead.

func (*GetTerminatorRequest) GetTerminatorId

func (x *GetTerminatorRequest) GetTerminatorId() string

func (*GetTerminatorRequest) ProtoMessage

func (*GetTerminatorRequest) ProtoMessage()

func (*GetTerminatorRequest) ProtoReflect added in v0.16.65

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

func (*GetTerminatorRequest) Reset

func (x *GetTerminatorRequest) Reset()

func (*GetTerminatorRequest) String

func (x *GetTerminatorRequest) String() string

type GetTerminatorResponse

type GetTerminatorResponse struct {
	Terminator *Terminator `protobuf:"bytes,1,opt,name=terminator,proto3" json:"terminator,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTerminatorResponse) Descriptor deprecated

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

Deprecated: Use GetTerminatorResponse.ProtoReflect.Descriptor instead.

func (*GetTerminatorResponse) GetTerminator

func (x *GetTerminatorResponse) GetTerminator() *Terminator

func (*GetTerminatorResponse) ProtoMessage

func (*GetTerminatorResponse) ProtoMessage()

func (*GetTerminatorResponse) ProtoReflect added in v0.16.65

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

func (*GetTerminatorResponse) Reset

func (x *GetTerminatorResponse) Reset()

func (*GetTerminatorResponse) String

func (x *GetTerminatorResponse) String() string

type InspectRequest

type InspectRequest struct {
	AppRegex        string   `protobuf:"bytes,1,opt,name=appRegex,proto3" json:"appRegex,omitempty"`
	RequestedValues []string `protobuf:"bytes,2,rep,name=requestedValues,proto3" json:"requestedValues,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectRequest) Descriptor deprecated

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

Deprecated: Use InspectRequest.ProtoReflect.Descriptor instead.

func (*InspectRequest) GetAppRegex

func (x *InspectRequest) GetAppRegex() string

func (*InspectRequest) GetRequestedValues

func (x *InspectRequest) GetRequestedValues() []string

func (*InspectRequest) ProtoMessage

func (*InspectRequest) ProtoMessage()

func (*InspectRequest) ProtoReflect added in v0.16.65

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

func (*InspectRequest) Reset

func (x *InspectRequest) Reset()

func (*InspectRequest) String

func (x *InspectRequest) String() string

type InspectResponse

type InspectResponse struct {
	Success bool                            `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Errors  []string                        `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
	Values  []*InspectResponse_InspectValue `protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectResponse) Descriptor deprecated

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

Deprecated: Use InspectResponse.ProtoReflect.Descriptor instead.

func (*InspectResponse) GetErrors

func (x *InspectResponse) GetErrors() []string

func (*InspectResponse) GetSuccess

func (x *InspectResponse) GetSuccess() bool

func (*InspectResponse) GetValues

func (*InspectResponse) ProtoMessage

func (*InspectResponse) ProtoMessage()

func (*InspectResponse) ProtoReflect added in v0.16.65

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

func (*InspectResponse) Reset

func (x *InspectResponse) Reset()

func (*InspectResponse) String

func (x *InspectResponse) String() string

type InspectResponse_InspectValue

type InspectResponse_InspectValue struct {
	AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
	Name  string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectResponse_InspectValue) Descriptor deprecated

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

Deprecated: Use InspectResponse_InspectValue.ProtoReflect.Descriptor instead.

func (*InspectResponse_InspectValue) GetAppId

func (x *InspectResponse_InspectValue) GetAppId() string

func (*InspectResponse_InspectValue) GetName

func (x *InspectResponse_InspectValue) GetName() string

func (*InspectResponse_InspectValue) GetValue

func (x *InspectResponse_InspectValue) GetValue() string

func (*InspectResponse_InspectValue) ProtoMessage

func (*InspectResponse_InspectValue) ProtoMessage()

func (*InspectResponse_InspectValue) ProtoReflect added in v0.16.65

func (*InspectResponse_InspectValue) Reset

func (x *InspectResponse_InspectValue) Reset()

func (*InspectResponse_InspectValue) String

type Link struct {
	Id         string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Src        string `protobuf:"bytes,2,opt,name=src,proto3" json:"src,omitempty"`
	Dst        string `protobuf:"bytes,3,opt,name=dst,proto3" json:"dst,omitempty"`
	State      string `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	Down       bool   `protobuf:"varint,5,opt,name=down,proto3" json:"down,omitempty"`
	Cost       int32  `protobuf:"varint,6,opt,name=cost,proto3" json:"cost,omitempty"`
	SrcLatency int64  `protobuf:"varint,7,opt,name=srcLatency,proto3" json:"srcLatency,omitempty"`
	DstLatency int64  `protobuf:"varint,8,opt,name=dstLatency,proto3" json:"dstLatency,omitempty"`
	// contains filtered or unexported fields
}

func (*Link) Descriptor deprecated

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

Deprecated: Use Link.ProtoReflect.Descriptor instead.

func (*Link) GetCost

func (x *Link) GetCost() int32

func (*Link) GetDown

func (x *Link) GetDown() bool

func (*Link) GetDst

func (x *Link) GetDst() string

func (*Link) GetDstLatency

func (x *Link) GetDstLatency() int64

func (*Link) GetId

func (x *Link) GetId() string

func (*Link) GetSrc

func (x *Link) GetSrc() string

func (*Link) GetSrcLatency

func (x *Link) GetSrcLatency() int64

func (*Link) GetState

func (x *Link) GetState() string

func (*Link) ProtoMessage

func (*Link) ProtoMessage()

func (*Link) ProtoReflect added in v0.16.65

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

func (*Link) Reset

func (x *Link) Reset()

func (*Link) String

func (x *Link) String() string

type ListLinksRequest

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

func (*ListLinksRequest) Descriptor deprecated

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

Deprecated: Use ListLinksRequest.ProtoReflect.Descriptor instead.

func (*ListLinksRequest) ProtoMessage

func (*ListLinksRequest) ProtoMessage()

func (*ListLinksRequest) ProtoReflect added in v0.16.65

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

func (*ListLinksRequest) Reset

func (x *ListLinksRequest) Reset()

func (*ListLinksRequest) String

func (x *ListLinksRequest) String() string

type ListLinksResponse

type ListLinksResponse struct {
	Links []*Link `protobuf:"bytes,1,rep,name=links,proto3" json:"links,omitempty"`
	// contains filtered or unexported fields
}

func (*ListLinksResponse) Descriptor deprecated

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

Deprecated: Use ListLinksResponse.ProtoReflect.Descriptor instead.

func (x *ListLinksResponse) GetLinks() []*Link

func (*ListLinksResponse) ProtoMessage

func (*ListLinksResponse) ProtoMessage()

func (*ListLinksResponse) ProtoReflect added in v0.16.65

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

func (*ListLinksResponse) Reset

func (x *ListLinksResponse) Reset()

func (*ListLinksResponse) String

func (x *ListLinksResponse) String() string

type ListRoutersRequest

type ListRoutersRequest struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRoutersRequest) Descriptor deprecated

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

Deprecated: Use ListRoutersRequest.ProtoReflect.Descriptor instead.

func (*ListRoutersRequest) GetQuery

func (x *ListRoutersRequest) GetQuery() string

func (*ListRoutersRequest) ProtoMessage

func (*ListRoutersRequest) ProtoMessage()

func (*ListRoutersRequest) ProtoReflect added in v0.16.65

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

func (*ListRoutersRequest) Reset

func (x *ListRoutersRequest) Reset()

func (*ListRoutersRequest) String

func (x *ListRoutersRequest) String() string

type ListRoutersResponse

type ListRoutersResponse struct {
	Routers []*Router `protobuf:"bytes,1,rep,name=routers,proto3" json:"routers,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRoutersResponse) Descriptor deprecated

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

Deprecated: Use ListRoutersResponse.ProtoReflect.Descriptor instead.

func (*ListRoutersResponse) GetRouters

func (x *ListRoutersResponse) GetRouters() []*Router

func (*ListRoutersResponse) ProtoMessage

func (*ListRoutersResponse) ProtoMessage()

func (*ListRoutersResponse) ProtoReflect added in v0.16.65

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

func (*ListRoutersResponse) Reset

func (x *ListRoutersResponse) Reset()

func (*ListRoutersResponse) String

func (x *ListRoutersResponse) String() string

type ListServicesRequest

type ListServicesRequest struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListServicesRequest) Descriptor deprecated

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

Deprecated: Use ListServicesRequest.ProtoReflect.Descriptor instead.

func (*ListServicesRequest) GetQuery

func (x *ListServicesRequest) GetQuery() string

func (*ListServicesRequest) ProtoMessage

func (*ListServicesRequest) ProtoMessage()

func (*ListServicesRequest) ProtoReflect added in v0.16.65

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

func (*ListServicesRequest) Reset

func (x *ListServicesRequest) Reset()

func (*ListServicesRequest) String

func (x *ListServicesRequest) String() string

type ListServicesResponse

type ListServicesResponse struct {
	Services []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	// contains filtered or unexported fields
}

func (*ListServicesResponse) Descriptor deprecated

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

Deprecated: Use ListServicesResponse.ProtoReflect.Descriptor instead.

func (*ListServicesResponse) GetServices

func (x *ListServicesResponse) GetServices() []*Service

func (*ListServicesResponse) ProtoMessage

func (*ListServicesResponse) ProtoMessage()

func (*ListServicesResponse) ProtoReflect added in v0.16.65

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

func (*ListServicesResponse) Reset

func (x *ListServicesResponse) Reset()

func (*ListServicesResponse) String

func (x *ListServicesResponse) String() string

type ListSessionsRequest

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

func (*ListSessionsRequest) Descriptor deprecated

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

Deprecated: Use ListSessionsRequest.ProtoReflect.Descriptor instead.

func (*ListSessionsRequest) ProtoMessage

func (*ListSessionsRequest) ProtoMessage()

func (*ListSessionsRequest) ProtoReflect added in v0.16.65

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

func (*ListSessionsRequest) Reset

func (x *ListSessionsRequest) Reset()

func (*ListSessionsRequest) String

func (x *ListSessionsRequest) String() string

type ListSessionsResponse

type ListSessionsResponse struct {
	Sessions []*Session `protobuf:"bytes,1,rep,name=sessions,proto3" json:"sessions,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSessionsResponse) Descriptor deprecated

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

Deprecated: Use ListSessionsResponse.ProtoReflect.Descriptor instead.

func (*ListSessionsResponse) GetSessions

func (x *ListSessionsResponse) GetSessions() []*Session

func (*ListSessionsResponse) ProtoMessage

func (*ListSessionsResponse) ProtoMessage()

func (*ListSessionsResponse) ProtoReflect added in v0.16.65

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

func (*ListSessionsResponse) Reset

func (x *ListSessionsResponse) Reset()

func (*ListSessionsResponse) String

func (x *ListSessionsResponse) String() string

type ListTerminatorsRequest

type ListTerminatorsRequest struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

service terminators

func (*ListTerminatorsRequest) Descriptor deprecated

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

Deprecated: Use ListTerminatorsRequest.ProtoReflect.Descriptor instead.

func (*ListTerminatorsRequest) GetQuery

func (x *ListTerminatorsRequest) GetQuery() string

func (*ListTerminatorsRequest) ProtoMessage

func (*ListTerminatorsRequest) ProtoMessage()

func (*ListTerminatorsRequest) ProtoReflect added in v0.16.65

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

func (*ListTerminatorsRequest) Reset

func (x *ListTerminatorsRequest) Reset()

func (*ListTerminatorsRequest) String

func (x *ListTerminatorsRequest) String() string

type ListTerminatorsResponse

type ListTerminatorsResponse struct {
	Terminators []*Terminator `protobuf:"bytes,1,rep,name=terminators,proto3" json:"terminators,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTerminatorsResponse) Descriptor deprecated

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

Deprecated: Use ListTerminatorsResponse.ProtoReflect.Descriptor instead.

func (*ListTerminatorsResponse) GetTerminators

func (x *ListTerminatorsResponse) GetTerminators() []*Terminator

func (*ListTerminatorsResponse) ProtoMessage

func (*ListTerminatorsResponse) ProtoMessage()

func (*ListTerminatorsResponse) ProtoReflect added in v0.16.65

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

func (*ListTerminatorsResponse) Reset

func (x *ListTerminatorsResponse) Reset()

func (*ListTerminatorsResponse) String

func (x *ListTerminatorsResponse) String() string

type RemoveRouterRequest

type RemoveRouterRequest struct {
	RouterId string `protobuf:"bytes,1,opt,name=routerId,proto3" json:"routerId,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveRouterRequest) Descriptor deprecated

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

Deprecated: Use RemoveRouterRequest.ProtoReflect.Descriptor instead.

func (*RemoveRouterRequest) GetRouterId

func (x *RemoveRouterRequest) GetRouterId() string

func (*RemoveRouterRequest) ProtoMessage

func (*RemoveRouterRequest) ProtoMessage()

func (*RemoveRouterRequest) ProtoReflect added in v0.16.65

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

func (*RemoveRouterRequest) Reset

func (x *RemoveRouterRequest) Reset()

func (*RemoveRouterRequest) String

func (x *RemoveRouterRequest) String() string

type RemoveServiceRequest

type RemoveServiceRequest struct {
	ServiceId string `protobuf:"bytes,1,opt,name=serviceId,proto3" json:"serviceId,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveServiceRequest) Descriptor deprecated

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

Deprecated: Use RemoveServiceRequest.ProtoReflect.Descriptor instead.

func (*RemoveServiceRequest) GetServiceId

func (x *RemoveServiceRequest) GetServiceId() string

func (*RemoveServiceRequest) ProtoMessage

func (*RemoveServiceRequest) ProtoMessage()

func (*RemoveServiceRequest) ProtoReflect added in v0.16.65

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

func (*RemoveServiceRequest) Reset

func (x *RemoveServiceRequest) Reset()

func (*RemoveServiceRequest) String

func (x *RemoveServiceRequest) String() string

type RemoveSessionRequest

type RemoveSessionRequest struct {
	SessionId string `protobuf:"bytes,1,opt,name=sessionId,proto3" json:"sessionId,omitempty"`
	Now       bool   `protobuf:"varint,2,opt,name=now,proto3" json:"now,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveSessionRequest) Descriptor deprecated

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

Deprecated: Use RemoveSessionRequest.ProtoReflect.Descriptor instead.

func (*RemoveSessionRequest) GetNow

func (x *RemoveSessionRequest) GetNow() bool

func (*RemoveSessionRequest) GetSessionId

func (x *RemoveSessionRequest) GetSessionId() string

func (*RemoveSessionRequest) ProtoMessage

func (*RemoveSessionRequest) ProtoMessage()

func (*RemoveSessionRequest) ProtoReflect added in v0.16.65

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

func (*RemoveSessionRequest) Reset

func (x *RemoveSessionRequest) Reset()

func (*RemoveSessionRequest) String

func (x *RemoveSessionRequest) String() string

type RemoveTerminatorRequest

type RemoveTerminatorRequest struct {
	TerminatorId string `protobuf:"bytes,1,opt,name=terminatorId,proto3" json:"terminatorId,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveTerminatorRequest) Descriptor deprecated

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

Deprecated: Use RemoveTerminatorRequest.ProtoReflect.Descriptor instead.

func (*RemoveTerminatorRequest) GetTerminatorId

func (x *RemoveTerminatorRequest) GetTerminatorId() string

func (*RemoveTerminatorRequest) ProtoMessage

func (*RemoveTerminatorRequest) ProtoMessage()

func (*RemoveTerminatorRequest) ProtoReflect added in v0.16.65

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

func (*RemoveTerminatorRequest) Reset

func (x *RemoveTerminatorRequest) Reset()

func (*RemoveTerminatorRequest) String

func (x *RemoveTerminatorRequest) String() string

type Router

type Router struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name            string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Fingerprint     string `protobuf:"bytes,3,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"`
	ListenerAddress string `protobuf:"bytes,4,opt,name=listenerAddress,proto3" json:"listenerAddress,omitempty"`
	Connected       bool   `protobuf:"varint,5,opt,name=connected,proto3" json:"connected,omitempty"`
	Version         string `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"`
	Revision        string `protobuf:"bytes,7,opt,name=revision,proto3" json:"revision,omitempty"`
	BuildDate       string `protobuf:"bytes,8,opt,name=buildDate,proto3" json:"buildDate,omitempty"`
	Os              string `protobuf:"bytes,9,opt,name=os,proto3" json:"os,omitempty"`
	Arch            string `protobuf:"bytes,10,opt,name=arch,proto3" json:"arch,omitempty"`
	// contains filtered or unexported fields
}

func (*Router) Descriptor deprecated

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

Deprecated: Use Router.ProtoReflect.Descriptor instead.

func (*Router) GetArch added in v0.14.6

func (x *Router) GetArch() string

func (*Router) GetBuildDate added in v0.14.6

func (x *Router) GetBuildDate() string

func (*Router) GetConnected

func (x *Router) GetConnected() bool

func (*Router) GetFingerprint

func (x *Router) GetFingerprint() string

func (*Router) GetId

func (x *Router) GetId() string

func (*Router) GetListenerAddress

func (x *Router) GetListenerAddress() string

func (*Router) GetName added in v0.11.48

func (x *Router) GetName() string

func (*Router) GetOs added in v0.14.6

func (x *Router) GetOs() string

func (*Router) GetRevision added in v0.14.6

func (x *Router) GetRevision() string

func (*Router) GetVersion added in v0.14.6

func (x *Router) GetVersion() string

func (*Router) ProtoMessage

func (*Router) ProtoMessage()

func (*Router) ProtoReflect added in v0.16.65

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

func (*Router) Reset

func (x *Router) Reset()

func (*Router) String

func (x *Router) String() string

type Service

type Service struct {
	Id                 string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name               string        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	TerminatorStrategy string        `protobuf:"bytes,3,opt,name=terminatorStrategy,proto3" json:"terminatorStrategy,omitempty"`
	Terminators        []*Terminator `protobuf:"bytes,4,rep,name=terminators,proto3" json:"terminators,omitempty"`
	// contains filtered or unexported fields
}

func (*Service) Descriptor deprecated

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

Deprecated: Use Service.ProtoReflect.Descriptor instead.

func (*Service) GetId

func (x *Service) GetId() string

func (*Service) GetName added in v0.11.48

func (x *Service) GetName() string

func (*Service) GetTerminatorStrategy

func (x *Service) GetTerminatorStrategy() string

func (*Service) GetTerminators

func (x *Service) GetTerminators() []*Terminator

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) ProtoReflect added in v0.16.65

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

func (*Service) Reset

func (x *Service) Reset()

func (*Service) String

func (x *Service) String() string

type Session

type Session struct {
	Id           string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ClientId     string   `protobuf:"bytes,2,opt,name=clientId,proto3" json:"clientId,omitempty"`
	ServiceId    string   `protobuf:"bytes,3,opt,name=serviceId,proto3" json:"serviceId,omitempty"`
	TerminatorId string   `protobuf:"bytes,4,opt,name=terminatorId,proto3" json:"terminatorId,omitempty"`
	Circuit      *Circuit `protobuf:"bytes,5,opt,name=circuit,proto3" json:"circuit,omitempty"`
	// contains filtered or unexported fields
}

func (*Session) Descriptor deprecated

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

Deprecated: Use Session.ProtoReflect.Descriptor instead.

func (*Session) GetCircuit

func (x *Session) GetCircuit() *Circuit

func (*Session) GetClientId

func (x *Session) GetClientId() string

func (*Session) GetId

func (x *Session) GetId() string

func (*Session) GetServiceId

func (x *Session) GetServiceId() string

func (*Session) GetTerminatorId

func (x *Session) GetTerminatorId() string

func (*Session) ProtoMessage

func (*Session) ProtoMessage()

func (*Session) ProtoReflect added in v0.16.65

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

func (*Session) Reset

func (x *Session) Reset()

func (*Session) String

func (x *Session) String() string

type SetLinkCostRequest

type SetLinkCostRequest struct {
	LinkId string `protobuf:"bytes,1,opt,name=linkId,proto3" json:"linkId,omitempty"`
	Cost   int32  `protobuf:"varint,2,opt,name=cost,proto3" json:"cost,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLinkCostRequest) Descriptor deprecated

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

Deprecated: Use SetLinkCostRequest.ProtoReflect.Descriptor instead.

func (*SetLinkCostRequest) GetCost

func (x *SetLinkCostRequest) GetCost() int32

func (*SetLinkCostRequest) GetLinkId

func (x *SetLinkCostRequest) GetLinkId() string

func (*SetLinkCostRequest) ProtoMessage

func (*SetLinkCostRequest) ProtoMessage()

func (*SetLinkCostRequest) ProtoReflect added in v0.16.65

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

func (*SetLinkCostRequest) Reset

func (x *SetLinkCostRequest) Reset()

func (*SetLinkCostRequest) String

func (x *SetLinkCostRequest) String() string

type SetLinkDownRequest

type SetLinkDownRequest struct {
	LinkId string `protobuf:"bytes,1,opt,name=linkId,proto3" json:"linkId,omitempty"`
	Down   bool   `protobuf:"varint,2,opt,name=down,proto3" json:"down,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLinkDownRequest) Descriptor deprecated

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

Deprecated: Use SetLinkDownRequest.ProtoReflect.Descriptor instead.

func (*SetLinkDownRequest) GetDown

func (x *SetLinkDownRequest) GetDown() bool

func (*SetLinkDownRequest) GetLinkId

func (x *SetLinkDownRequest) GetLinkId() string

func (*SetLinkDownRequest) ProtoMessage

func (*SetLinkDownRequest) ProtoMessage()

func (*SetLinkDownRequest) ProtoReflect added in v0.16.65

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

func (*SetLinkDownRequest) Reset

func (x *SetLinkDownRequest) Reset()

func (*SetLinkDownRequest) String

func (x *SetLinkDownRequest) String() string

type SetTerminatorCostRequest

type SetTerminatorCostRequest struct {
	TerminatorId string               `protobuf:"bytes,1,opt,name=terminatorId,proto3" json:"terminatorId,omitempty"`
	Precedence   TerminatorPrecedence `protobuf:"varint,2,opt,name=precedence,proto3,enum=mgmt_pb.TerminatorPrecedence" json:"precedence,omitempty"`
	StaticCost   uint32               `protobuf:"varint,3,opt,name=staticCost,proto3" json:"staticCost,omitempty"`
	DynamicCost  uint32               `protobuf:"varint,4,opt,name=dynamicCost,proto3" json:"dynamicCost,omitempty"`
	UpdateMask   int32                `protobuf:"varint,5,opt,name=updateMask,proto3" json:"updateMask,omitempty"`
	// contains filtered or unexported fields
}

func (*SetTerminatorCostRequest) Descriptor deprecated

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

Deprecated: Use SetTerminatorCostRequest.ProtoReflect.Descriptor instead.

func (*SetTerminatorCostRequest) GetDynamicCost

func (x *SetTerminatorCostRequest) GetDynamicCost() uint32

func (*SetTerminatorCostRequest) GetPrecedence

func (*SetTerminatorCostRequest) GetStaticCost

func (x *SetTerminatorCostRequest) GetStaticCost() uint32

func (*SetTerminatorCostRequest) GetTerminatorId

func (x *SetTerminatorCostRequest) GetTerminatorId() string

func (*SetTerminatorCostRequest) GetUpdateMask

func (x *SetTerminatorCostRequest) GetUpdateMask() int32

func (*SetTerminatorCostRequest) ProtoMessage

func (*SetTerminatorCostRequest) ProtoMessage()

func (*SetTerminatorCostRequest) ProtoReflect added in v0.16.65

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

func (*SetTerminatorCostRequest) Reset

func (x *SetTerminatorCostRequest) Reset()

func (*SetTerminatorCostRequest) String

func (x *SetTerminatorCostRequest) String() string

type StreamMetricsEvent

type StreamMetricsEvent struct {
	SourceId        string                               `protobuf:"bytes,1,opt,name=sourceId,proto3" json:"sourceId,omitempty"`
	Timestamp       *timestamppb.Timestamp               `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Tags            map[string]string                    `` /* 149-byte string literal not displayed */
	IntMetrics      map[string]int64                     `` /* 162-byte string literal not displayed */
	FloatMetrics    map[string]float64                   `` /* 167-byte string literal not displayed */
	IntervalMetrics []*StreamMetricsEvent_IntervalMetric `protobuf:"bytes,6,rep,name=intervalMetrics,proto3" json:"intervalMetrics,omitempty"`
	MetricGroup     map[string]string                    `` /* 163-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*StreamMetricsEvent) Descriptor deprecated

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

Deprecated: Use StreamMetricsEvent.ProtoReflect.Descriptor instead.

func (*StreamMetricsEvent) GetFloatMetrics

func (x *StreamMetricsEvent) GetFloatMetrics() map[string]float64

func (*StreamMetricsEvent) GetIntMetrics

func (x *StreamMetricsEvent) GetIntMetrics() map[string]int64

func (*StreamMetricsEvent) GetIntervalMetrics

func (x *StreamMetricsEvent) GetIntervalMetrics() []*StreamMetricsEvent_IntervalMetric

func (*StreamMetricsEvent) GetMetricGroup added in v0.13.2

func (x *StreamMetricsEvent) GetMetricGroup() map[string]string

func (*StreamMetricsEvent) GetSourceId

func (x *StreamMetricsEvent) GetSourceId() string

func (*StreamMetricsEvent) GetTags

func (x *StreamMetricsEvent) GetTags() map[string]string

func (*StreamMetricsEvent) GetTimestamp

func (x *StreamMetricsEvent) GetTimestamp() *timestamppb.Timestamp

func (*StreamMetricsEvent) ProtoMessage

func (*StreamMetricsEvent) ProtoMessage()

func (*StreamMetricsEvent) ProtoReflect added in v0.16.65

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

func (*StreamMetricsEvent) Reset

func (x *StreamMetricsEvent) Reset()

func (*StreamMetricsEvent) String

func (x *StreamMetricsEvent) String() string

type StreamMetricsEvent_IntervalMetric

type StreamMetricsEvent_IntervalMetric struct {
	Name             string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	IntervalStartUTC *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=intervalStartUTC,proto3" json:"intervalStartUTC,omitempty"`
	IntervalEndUTC   *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=intervalEndUTC,proto3" json:"intervalEndUTC,omitempty"`
	Values           map[string]uint64      `` /* 154-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*StreamMetricsEvent_IntervalMetric) Descriptor deprecated

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

Deprecated: Use StreamMetricsEvent_IntervalMetric.ProtoReflect.Descriptor instead.

func (*StreamMetricsEvent_IntervalMetric) GetIntervalEndUTC

func (*StreamMetricsEvent_IntervalMetric) GetIntervalStartUTC

func (x *StreamMetricsEvent_IntervalMetric) GetIntervalStartUTC() *timestamppb.Timestamp

func (*StreamMetricsEvent_IntervalMetric) GetName

func (*StreamMetricsEvent_IntervalMetric) GetValues

func (x *StreamMetricsEvent_IntervalMetric) GetValues() map[string]uint64

func (*StreamMetricsEvent_IntervalMetric) ProtoMessage

func (*StreamMetricsEvent_IntervalMetric) ProtoMessage()

func (*StreamMetricsEvent_IntervalMetric) ProtoReflect added in v0.16.65

func (*StreamMetricsEvent_IntervalMetric) Reset

func (*StreamMetricsEvent_IntervalMetric) String

type StreamMetricsRequest

type StreamMetricsRequest struct {
	Matchers []*StreamMetricsRequest_MetricMatcher `protobuf:"bytes,1,rep,name=matchers,proto3" json:"matchers,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamMetricsRequest) Descriptor deprecated

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

Deprecated: Use StreamMetricsRequest.ProtoReflect.Descriptor instead.

func (*StreamMetricsRequest) GetMatchers

func (*StreamMetricsRequest) ProtoMessage

func (*StreamMetricsRequest) ProtoMessage()

func (*StreamMetricsRequest) ProtoReflect added in v0.16.65

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

func (*StreamMetricsRequest) Reset

func (x *StreamMetricsRequest) Reset()

func (*StreamMetricsRequest) String

func (x *StreamMetricsRequest) String() string

type StreamMetricsRequest_MetricMatcher

type StreamMetricsRequest_MetricMatcher struct {
	NameRegex     string `protobuf:"bytes,1,opt,name=nameRegex,proto3" json:"nameRegex,omitempty"`
	SourceIDRegex string `protobuf:"bytes,2,opt,name=sourceIDRegex,proto3" json:"sourceIDRegex,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamMetricsRequest_MetricMatcher) Descriptor deprecated

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

Deprecated: Use StreamMetricsRequest_MetricMatcher.ProtoReflect.Descriptor instead.

func (*StreamMetricsRequest_MetricMatcher) GetNameRegex

func (x *StreamMetricsRequest_MetricMatcher) GetNameRegex() string

func (*StreamMetricsRequest_MetricMatcher) GetSourceIDRegex

func (x *StreamMetricsRequest_MetricMatcher) GetSourceIDRegex() string

func (*StreamMetricsRequest_MetricMatcher) ProtoMessage

func (*StreamMetricsRequest_MetricMatcher) ProtoMessage()

func (*StreamMetricsRequest_MetricMatcher) ProtoReflect added in v0.16.65

func (*StreamMetricsRequest_MetricMatcher) Reset

func (*StreamMetricsRequest_MetricMatcher) String

type StreamSessionEventType

type StreamSessionEventType int32
const (
	StreamSessionEventType_SessionCreated StreamSessionEventType = 0
	StreamSessionEventType_SessionDeleted StreamSessionEventType = 1
	StreamSessionEventType_SessionPresent StreamSessionEventType = 2
	StreamSessionEventType_CircuitUpdated StreamSessionEventType = 3
)

func (StreamSessionEventType) Descriptor added in v0.16.65

func (StreamSessionEventType) Enum added in v0.16.65

func (StreamSessionEventType) EnumDescriptor deprecated

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

Deprecated: Use StreamSessionEventType.Descriptor instead.

func (StreamSessionEventType) Number added in v0.16.65

func (StreamSessionEventType) String

func (x StreamSessionEventType) String() string

func (StreamSessionEventType) Type added in v0.16.65

type StreamSessionsEvent

type StreamSessionsEvent struct {
	EventType StreamSessionEventType `protobuf:"varint,1,opt,name=eventType,proto3,enum=mgmt_pb.StreamSessionEventType" json:"eventType,omitempty"`
	SessionId string                 `protobuf:"bytes,2,opt,name=sessionId,proto3" json:"sessionId,omitempty"`
	ClientId  string                 `protobuf:"bytes,3,opt,name=clientId,proto3" json:"clientId,omitempty"`
	ServiceId string                 `protobuf:"bytes,4,opt,name=serviceId,proto3" json:"serviceId,omitempty"`
	Circuit   *Circuit               `protobuf:"bytes,5,opt,name=circuit,proto3" json:"circuit,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamSessionsEvent) Descriptor deprecated

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

Deprecated: Use StreamSessionsEvent.ProtoReflect.Descriptor instead.

func (*StreamSessionsEvent) GetCircuit

func (x *StreamSessionsEvent) GetCircuit() *Circuit

func (*StreamSessionsEvent) GetClientId

func (x *StreamSessionsEvent) GetClientId() string

func (*StreamSessionsEvent) GetEventType

func (x *StreamSessionsEvent) GetEventType() StreamSessionEventType

func (*StreamSessionsEvent) GetServiceId

func (x *StreamSessionsEvent) GetServiceId() string

func (*StreamSessionsEvent) GetSessionId

func (x *StreamSessionsEvent) GetSessionId() string

func (*StreamSessionsEvent) ProtoMessage

func (*StreamSessionsEvent) ProtoMessage()

func (*StreamSessionsEvent) ProtoReflect added in v0.16.65

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

func (*StreamSessionsEvent) Reset

func (x *StreamSessionsEvent) Reset()

func (*StreamSessionsEvent) String

func (x *StreamSessionsEvent) String() string

type StreamSessionsRequest

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

func (*StreamSessionsRequest) Descriptor deprecated

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

Deprecated: Use StreamSessionsRequest.ProtoReflect.Descriptor instead.

func (*StreamSessionsRequest) ProtoMessage

func (*StreamSessionsRequest) ProtoMessage()

func (*StreamSessionsRequest) ProtoReflect added in v0.16.65

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

func (*StreamSessionsRequest) Reset

func (x *StreamSessionsRequest) Reset()

func (*StreamSessionsRequest) String

func (x *StreamSessionsRequest) String() string

type StreamTracesRequest

type StreamTracesRequest struct {
	EnabledFilter bool            `protobuf:"varint,1,opt,name=enabledFilter,proto3" json:"enabledFilter,omitempty"`
	FilterType    TraceFilterType `protobuf:"varint,2,opt,name=filterType,proto3,enum=mgmt_pb.TraceFilterType" json:"filterType,omitempty"`
	ContentTypes  []int32         `protobuf:"varint,3,rep,packed,name=contentTypes,proto3" json:"contentTypes,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamTracesRequest) Descriptor deprecated

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

Deprecated: Use StreamTracesRequest.ProtoReflect.Descriptor instead.

func (*StreamTracesRequest) GetContentTypes

func (x *StreamTracesRequest) GetContentTypes() []int32

func (*StreamTracesRequest) GetEnabledFilter

func (x *StreamTracesRequest) GetEnabledFilter() bool

func (*StreamTracesRequest) GetFilterType

func (x *StreamTracesRequest) GetFilterType() TraceFilterType

func (*StreamTracesRequest) ProtoMessage

func (*StreamTracesRequest) ProtoMessage()

func (*StreamTracesRequest) ProtoReflect added in v0.16.65

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

func (*StreamTracesRequest) Reset

func (x *StreamTracesRequest) Reset()

func (*StreamTracesRequest) String

func (x *StreamTracesRequest) String() string

type Terminator

type Terminator struct {
	Id             string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ServiceId      string               `protobuf:"bytes,2,opt,name=serviceId,proto3" json:"serviceId,omitempty"`
	RouterId       string               `protobuf:"bytes,3,opt,name=routerId,proto3" json:"routerId,omitempty"`
	Binding        string               `protobuf:"bytes,4,opt,name=binding,proto3" json:"binding,omitempty"`
	Address        string               `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"`
	Precedence     TerminatorPrecedence `protobuf:"varint,8,opt,name=precedence,proto3,enum=mgmt_pb.TerminatorPrecedence" json:"precedence,omitempty"`
	Cost           uint32               `protobuf:"varint,9,opt,name=cost,proto3" json:"cost,omitempty"`
	Identity       string               `protobuf:"bytes,10,opt,name=identity,proto3" json:"identity,omitempty"`
	IdentitySecret []byte               `protobuf:"bytes,11,opt,name=identitySecret,proto3" json:"identitySecret,omitempty"`
	// contains filtered or unexported fields
}

func (*Terminator) Descriptor deprecated

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

Deprecated: Use Terminator.ProtoReflect.Descriptor instead.

func (*Terminator) GetAddress

func (x *Terminator) GetAddress() string

func (*Terminator) GetBinding

func (x *Terminator) GetBinding() string

func (*Terminator) GetCost added in v0.13.0

func (x *Terminator) GetCost() uint32

func (*Terminator) GetId

func (x *Terminator) GetId() string

func (*Terminator) GetIdentity added in v0.14.0

func (x *Terminator) GetIdentity() string

func (*Terminator) GetIdentitySecret added in v0.14.0

func (x *Terminator) GetIdentitySecret() []byte

func (*Terminator) GetPrecedence added in v0.13.0

func (x *Terminator) GetPrecedence() TerminatorPrecedence

func (*Terminator) GetRouterId

func (x *Terminator) GetRouterId() string

func (*Terminator) GetServiceId

func (x *Terminator) GetServiceId() string

func (*Terminator) ProtoMessage

func (*Terminator) ProtoMessage()

func (*Terminator) ProtoReflect added in v0.16.65

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

func (*Terminator) Reset

func (x *Terminator) Reset()

func (*Terminator) String

func (x *Terminator) String() string

type TerminatorChangeMask

type TerminatorChangeMask int32
const (
	TerminatorChangeMask_None        TerminatorChangeMask = 0
	TerminatorChangeMask_StaticCost  TerminatorChangeMask = 1
	TerminatorChangeMask_Precedence  TerminatorChangeMask = 2
	TerminatorChangeMask_DynamicCost TerminatorChangeMask = 4
)

func (TerminatorChangeMask) Descriptor added in v0.16.65

func (TerminatorChangeMask) Enum added in v0.16.65

func (TerminatorChangeMask) EnumDescriptor deprecated

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

Deprecated: Use TerminatorChangeMask.Descriptor instead.

func (TerminatorChangeMask) Number added in v0.16.65

func (TerminatorChangeMask) String

func (x TerminatorChangeMask) String() string

func (TerminatorChangeMask) Type added in v0.16.65

type TerminatorPrecedence

type TerminatorPrecedence int32
const (
	TerminatorPrecedence_Default  TerminatorPrecedence = 0
	TerminatorPrecedence_Required TerminatorPrecedence = 1
	TerminatorPrecedence_Failed   TerminatorPrecedence = 2
)

func (TerminatorPrecedence) Descriptor added in v0.16.65

func (TerminatorPrecedence) Enum added in v0.16.65

func (TerminatorPrecedence) EnumDescriptor deprecated

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

Deprecated: Use TerminatorPrecedence.Descriptor instead.

func (TerminatorPrecedence) Number added in v0.16.65

func (TerminatorPrecedence) String

func (x TerminatorPrecedence) String() string

func (TerminatorPrecedence) Type added in v0.16.65

type ToggleSessionTracesRequest

type ToggleSessionTracesRequest struct {
	Enable       bool   `protobuf:"varint,1,opt,name=enable,proto3" json:"enable,omitempty"`
	ServiceRegex string `protobuf:"bytes,2,opt,name=serviceRegex,proto3" json:"serviceRegex,omitempty"`
	ClientRegex  string `protobuf:"bytes,3,opt,name=clientRegex,proto3" json:"clientRegex,omitempty"`
	// contains filtered or unexported fields
}

func (*ToggleSessionTracesRequest) Descriptor deprecated

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

Deprecated: Use ToggleSessionTracesRequest.ProtoReflect.Descriptor instead.

func (*ToggleSessionTracesRequest) GetClientRegex

func (x *ToggleSessionTracesRequest) GetClientRegex() string

func (*ToggleSessionTracesRequest) GetEnable

func (x *ToggleSessionTracesRequest) GetEnable() bool

func (*ToggleSessionTracesRequest) GetServiceRegex

func (x *ToggleSessionTracesRequest) GetServiceRegex() string

func (*ToggleSessionTracesRequest) ProtoMessage

func (*ToggleSessionTracesRequest) ProtoMessage()

func (*ToggleSessionTracesRequest) ProtoReflect added in v0.16.65

func (*ToggleSessionTracesRequest) Reset

func (x *ToggleSessionTracesRequest) Reset()

func (*ToggleSessionTracesRequest) String

func (x *ToggleSessionTracesRequest) String() string

type TraceFilterType

type TraceFilterType int32
const (
	TraceFilterType_EXCLUDE TraceFilterType = 0
	TraceFilterType_INCLUDE TraceFilterType = 1
)

func (TraceFilterType) Descriptor added in v0.16.65

func (TraceFilterType) Enum added in v0.16.65

func (x TraceFilterType) Enum() *TraceFilterType

func (TraceFilterType) EnumDescriptor deprecated

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

Deprecated: Use TraceFilterType.Descriptor instead.

func (TraceFilterType) Number added in v0.16.65

func (TraceFilterType) String

func (x TraceFilterType) String() string

func (TraceFilterType) Type added in v0.16.65

Jump to

Keyboard shortcuts

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