cmdv1

package
v0.26.0-rc.2 Latest Latest
Warning

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

Go to latest
Published: Mar 6, 2023 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

Code generated by protoc-gen-deepcopy. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

View Source
var Controller_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "aperture.cmd.v1.Controller",
	HandlerType: (*ControllerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ListAgents",
			Handler:    _Controller_ListAgents_Handler,
		},
		{
			MethodName: "ListServices",
			Handler:    _Controller_ListServices_Handler,
		},
		{
			MethodName: "ListFlowControlPoints",
			Handler:    _Controller_ListFlowControlPoints_Handler,
		},
		{
			MethodName: "PreviewFlowLabels",
			Handler:    _Controller_PreviewFlowLabels_Handler,
		},
		{
			MethodName: "PreviewHTTPRequests",
			Handler:    _Controller_PreviewHTTPRequests_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "aperture/cmd/v1/cmd.proto",
}

Controller_ServiceDesc is the grpc.ServiceDesc for Controller 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_aperture_cmd_v1_cmd_proto protoreflect.FileDescriptor

Functions

func RegisterControllerServer

func RegisterControllerServer(s grpc.ServiceRegistrar, srv ControllerServer)

Types

type ControllerClient

type ControllerClient interface {
	ListAgents(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*ListAgentsResponse, error)
	ListServices(ctx context.Context, in *ListServicesRequest, opts ...grpc.CallOption) (*ListServicesControllerResponse, error)
	ListFlowControlPoints(ctx context.Context, in *ListFlowControlPointsRequest, opts ...grpc.CallOption) (*ListFlowControlPointsControllerResponse, error)
	// duplicating a bit preview.v1.FlowPreviewService to keep controller APIs in one place.
	PreviewFlowLabels(ctx context.Context, in *PreviewFlowLabelsRequest, opts ...grpc.CallOption) (*PreviewFlowLabelsControllerResponse, error)
	PreviewHTTPRequests(ctx context.Context, in *PreviewHTTPRequestsRequest, opts ...grpc.CallOption) (*PreviewHTTPRequestsControllerResponse, error)
}

ControllerClient is the client API for Controller 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.

func NewControllerClient

func NewControllerClient(cc grpc.ClientConnInterface) ControllerClient

type ControllerServer

type ControllerServer interface {
	ListAgents(context.Context, *emptypb.Empty) (*ListAgentsResponse, error)
	ListServices(context.Context, *ListServicesRequest) (*ListServicesControllerResponse, error)
	ListFlowControlPoints(context.Context, *ListFlowControlPointsRequest) (*ListFlowControlPointsControllerResponse, error)
	// duplicating a bit preview.v1.FlowPreviewService to keep controller APIs in one place.
	PreviewFlowLabels(context.Context, *PreviewFlowLabelsRequest) (*PreviewFlowLabelsControllerResponse, error)
	PreviewHTTPRequests(context.Context, *PreviewHTTPRequestsRequest) (*PreviewHTTPRequestsControllerResponse, error)
}

ControllerServer is the server API for Controller service. All implementations should embed UnimplementedControllerServer for forward compatibility

type GlobalFlowControlPoint added in v0.26.0

type GlobalFlowControlPoint struct {
	FlowControlPoint *v1.FlowControlPoint `protobuf:"bytes,1,opt,name=flow_control_point,json=flowControlPoint,proto3" json:"flow_control_point,omitempty"`
	AgentGroup       string               `protobuf:"bytes,2,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"`
	// contains filtered or unexported fields
}

GlobalFlowControlPoint contains info about a control point on a given service with explicit Agent Group.

func (*GlobalFlowControlPoint) DeepCopy added in v0.26.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GlobalFlowControlPoint. Required by controller-gen.

func (*GlobalFlowControlPoint) DeepCopyInterface added in v0.26.0

func (in *GlobalFlowControlPoint) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new GlobalFlowControlPoint. Required by controller-gen.

func (*GlobalFlowControlPoint) DeepCopyInto added in v0.26.0

func (in *GlobalFlowControlPoint) DeepCopyInto(out *GlobalFlowControlPoint)

DeepCopyInto supports using GlobalFlowControlPoint within kubernetes types, where deepcopy-gen is used.

func (*GlobalFlowControlPoint) Descriptor deprecated added in v0.26.0

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

Deprecated: Use GlobalFlowControlPoint.ProtoReflect.Descriptor instead.

func (*GlobalFlowControlPoint) GetAgentGroup added in v0.26.0

func (x *GlobalFlowControlPoint) GetAgentGroup() string

func (*GlobalFlowControlPoint) GetFlowControlPoint added in v0.26.0

func (x *GlobalFlowControlPoint) GetFlowControlPoint() *v1.FlowControlPoint

func (*GlobalFlowControlPoint) MarshalJSON added in v0.26.0

func (msg *GlobalFlowControlPoint) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*GlobalFlowControlPoint) ProtoMessage added in v0.26.0

func (*GlobalFlowControlPoint) ProtoMessage()

func (*GlobalFlowControlPoint) ProtoReflect added in v0.26.0

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

func (*GlobalFlowControlPoint) Reset added in v0.26.0

func (x *GlobalFlowControlPoint) Reset()

func (*GlobalFlowControlPoint) String added in v0.26.0

func (x *GlobalFlowControlPoint) String() string

func (*GlobalFlowControlPoint) UnmarshalJSON added in v0.26.0

func (msg *GlobalFlowControlPoint) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type GlobalService

type GlobalService struct {
	Name       string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	AgentGroup string `protobuf:"bytes,2,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"`
	// contains filtered or unexported fields
}

GlobalService is a service with explicit agent group.

func (*GlobalService) DeepCopy

func (in *GlobalService) DeepCopy() *GlobalService

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GlobalService. Required by controller-gen.

func (*GlobalService) DeepCopyInterface

func (in *GlobalService) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new GlobalService. Required by controller-gen.

func (*GlobalService) DeepCopyInto

func (in *GlobalService) DeepCopyInto(out *GlobalService)

DeepCopyInto supports using GlobalService within kubernetes types, where deepcopy-gen is used.

func (*GlobalService) Descriptor deprecated

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

Deprecated: Use GlobalService.ProtoReflect.Descriptor instead.

func (*GlobalService) GetAgentGroup

func (x *GlobalService) GetAgentGroup() string

func (*GlobalService) GetName

func (x *GlobalService) GetName() string

func (*GlobalService) MarshalJSON

func (msg *GlobalService) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*GlobalService) ProtoMessage

func (*GlobalService) ProtoMessage()

func (*GlobalService) ProtoReflect

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

func (*GlobalService) Reset

func (x *GlobalService) Reset()

func (*GlobalService) String

func (x *GlobalService) String() string

func (*GlobalService) UnmarshalJSON

func (msg *GlobalService) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListAgentsResponse

type ListAgentsResponse struct {
	Agents []string `protobuf:"bytes,1,rep,name=agents,proto3" json:"agents,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentsResponse) DeepCopy

func (in *ListAgentsResponse) DeepCopy() *ListAgentsResponse

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListAgentsResponse. Required by controller-gen.

func (*ListAgentsResponse) DeepCopyInterface

func (in *ListAgentsResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListAgentsResponse. Required by controller-gen.

func (*ListAgentsResponse) DeepCopyInto

func (in *ListAgentsResponse) DeepCopyInto(out *ListAgentsResponse)

DeepCopyInto supports using ListAgentsResponse within kubernetes types, where deepcopy-gen is used.

func (*ListAgentsResponse) Descriptor deprecated

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

Deprecated: Use ListAgentsResponse.ProtoReflect.Descriptor instead.

func (*ListAgentsResponse) GetAgents

func (x *ListAgentsResponse) GetAgents() []string

func (*ListAgentsResponse) MarshalJSON

func (msg *ListAgentsResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListAgentsResponse) ProtoMessage

func (*ListAgentsResponse) ProtoMessage()

func (*ListAgentsResponse) ProtoReflect

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

func (*ListAgentsResponse) Reset

func (x *ListAgentsResponse) Reset()

func (*ListAgentsResponse) String

func (x *ListAgentsResponse) String() string

func (*ListAgentsResponse) UnmarshalJSON

func (msg *ListAgentsResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListFlowControlPointsAgentResponse added in v0.26.0

type ListFlowControlPointsAgentResponse struct {
	FlowControlPoints []*v1.FlowControlPoint `protobuf:"bytes,1,rep,name=flow_control_points,json=flowControlPoints,proto3" json:"flow_control_points,omitempty"`
	// FIXME: Remove. Controller should be aware which agent group agent belongs to.
	AgentGroup string `protobuf:"bytes,2,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFlowControlPointsAgentResponse) DeepCopy added in v0.26.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListFlowControlPointsAgentResponse. Required by controller-gen.

func (*ListFlowControlPointsAgentResponse) DeepCopyInterface added in v0.26.0

func (in *ListFlowControlPointsAgentResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListFlowControlPointsAgentResponse. Required by controller-gen.

func (*ListFlowControlPointsAgentResponse) DeepCopyInto added in v0.26.0

DeepCopyInto supports using ListFlowControlPointsAgentResponse within kubernetes types, where deepcopy-gen is used.

func (*ListFlowControlPointsAgentResponse) Descriptor deprecated added in v0.26.0

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

Deprecated: Use ListFlowControlPointsAgentResponse.ProtoReflect.Descriptor instead.

func (*ListFlowControlPointsAgentResponse) GetAgentGroup added in v0.26.0

func (x *ListFlowControlPointsAgentResponse) GetAgentGroup() string

func (*ListFlowControlPointsAgentResponse) GetFlowControlPoints added in v0.26.0

func (x *ListFlowControlPointsAgentResponse) GetFlowControlPoints() []*v1.FlowControlPoint

func (*ListFlowControlPointsAgentResponse) MarshalJSON added in v0.26.0

func (msg *ListFlowControlPointsAgentResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListFlowControlPointsAgentResponse) ProtoMessage added in v0.26.0

func (*ListFlowControlPointsAgentResponse) ProtoMessage()

func (*ListFlowControlPointsAgentResponse) ProtoReflect added in v0.26.0

func (*ListFlowControlPointsAgentResponse) Reset added in v0.26.0

func (*ListFlowControlPointsAgentResponse) String added in v0.26.0

func (*ListFlowControlPointsAgentResponse) UnmarshalJSON added in v0.26.0

func (msg *ListFlowControlPointsAgentResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListFlowControlPointsControllerResponse added in v0.26.0

type ListFlowControlPointsControllerResponse struct {
	GlobalFlowControlPoints []*GlobalFlowControlPoint `` /* 134-byte string literal not displayed */
	ErrorsCount             uint32                    `protobuf:"varint,2,opt,name=errors_count,json=errorsCount,proto3" json:"errors_count,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFlowControlPointsControllerResponse) DeepCopy added in v0.26.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListFlowControlPointsControllerResponse. Required by controller-gen.

func (*ListFlowControlPointsControllerResponse) DeepCopyInterface added in v0.26.0

func (in *ListFlowControlPointsControllerResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListFlowControlPointsControllerResponse. Required by controller-gen.

func (*ListFlowControlPointsControllerResponse) DeepCopyInto added in v0.26.0

DeepCopyInto supports using ListFlowControlPointsControllerResponse within kubernetes types, where deepcopy-gen is used.

func (*ListFlowControlPointsControllerResponse) Descriptor deprecated added in v0.26.0

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

Deprecated: Use ListFlowControlPointsControllerResponse.ProtoReflect.Descriptor instead.

func (*ListFlowControlPointsControllerResponse) GetErrorsCount added in v0.26.0

func (x *ListFlowControlPointsControllerResponse) GetErrorsCount() uint32

func (*ListFlowControlPointsControllerResponse) GetGlobalFlowControlPoints added in v0.26.0

func (x *ListFlowControlPointsControllerResponse) GetGlobalFlowControlPoints() []*GlobalFlowControlPoint

func (*ListFlowControlPointsControllerResponse) MarshalJSON added in v0.26.0

func (msg *ListFlowControlPointsControllerResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListFlowControlPointsControllerResponse) ProtoMessage added in v0.26.0

func (*ListFlowControlPointsControllerResponse) ProtoReflect added in v0.26.0

func (*ListFlowControlPointsControllerResponse) Reset added in v0.26.0

func (*ListFlowControlPointsControllerResponse) String added in v0.26.0

func (*ListFlowControlPointsControllerResponse) UnmarshalJSON added in v0.26.0

func (msg *ListFlowControlPointsControllerResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListFlowControlPointsRequest added in v0.26.0

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

func (*ListFlowControlPointsRequest) DeepCopy added in v0.26.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListFlowControlPointsRequest. Required by controller-gen.

func (*ListFlowControlPointsRequest) DeepCopyInterface added in v0.26.0

func (in *ListFlowControlPointsRequest) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListFlowControlPointsRequest. Required by controller-gen.

func (*ListFlowControlPointsRequest) DeepCopyInto added in v0.26.0

DeepCopyInto supports using ListFlowControlPointsRequest within kubernetes types, where deepcopy-gen is used.

func (*ListFlowControlPointsRequest) Descriptor deprecated added in v0.26.0

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

Deprecated: Use ListFlowControlPointsRequest.ProtoReflect.Descriptor instead.

func (*ListFlowControlPointsRequest) MarshalJSON added in v0.26.0

func (msg *ListFlowControlPointsRequest) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListFlowControlPointsRequest) ProtoMessage added in v0.26.0

func (*ListFlowControlPointsRequest) ProtoMessage()

func (*ListFlowControlPointsRequest) ProtoReflect added in v0.26.0

func (*ListFlowControlPointsRequest) Reset added in v0.26.0

func (x *ListFlowControlPointsRequest) Reset()

func (*ListFlowControlPointsRequest) String added in v0.26.0

func (*ListFlowControlPointsRequest) UnmarshalJSON added in v0.26.0

func (msg *ListFlowControlPointsRequest) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListServicesAgentResponse

type ListServicesAgentResponse struct {
	Services []string `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	// FIXME: Remove. Controller should be aware which agent group agent belongs to.
	AgentGroup string `protobuf:"bytes,2,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"`
	// contains filtered or unexported fields
}

func (*ListServicesAgentResponse) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListServicesAgentResponse. Required by controller-gen.

func (*ListServicesAgentResponse) DeepCopyInterface

func (in *ListServicesAgentResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListServicesAgentResponse. Required by controller-gen.

func (*ListServicesAgentResponse) DeepCopyInto

DeepCopyInto supports using ListServicesAgentResponse within kubernetes types, where deepcopy-gen is used.

func (*ListServicesAgentResponse) Descriptor deprecated

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

Deprecated: Use ListServicesAgentResponse.ProtoReflect.Descriptor instead.

func (*ListServicesAgentResponse) GetAgentGroup

func (x *ListServicesAgentResponse) GetAgentGroup() string

func (*ListServicesAgentResponse) GetServices

func (x *ListServicesAgentResponse) GetServices() []string

func (*ListServicesAgentResponse) MarshalJSON

func (msg *ListServicesAgentResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListServicesAgentResponse) ProtoMessage

func (*ListServicesAgentResponse) ProtoMessage()

func (*ListServicesAgentResponse) ProtoReflect

func (*ListServicesAgentResponse) Reset

func (x *ListServicesAgentResponse) Reset()

func (*ListServicesAgentResponse) String

func (x *ListServicesAgentResponse) String() string

func (*ListServicesAgentResponse) UnmarshalJSON

func (msg *ListServicesAgentResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListServicesControllerResponse

type ListServicesControllerResponse struct {
	Services    []*GlobalService `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	ErrorsCount uint32           `protobuf:"varint,2,opt,name=errors_count,json=errorsCount,proto3" json:"errors_count,omitempty"`
	// contains filtered or unexported fields
}

func (*ListServicesControllerResponse) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListServicesControllerResponse. Required by controller-gen.

func (*ListServicesControllerResponse) DeepCopyInterface

func (in *ListServicesControllerResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListServicesControllerResponse. Required by controller-gen.

func (*ListServicesControllerResponse) DeepCopyInto

DeepCopyInto supports using ListServicesControllerResponse within kubernetes types, where deepcopy-gen is used.

func (*ListServicesControllerResponse) Descriptor deprecated

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

Deprecated: Use ListServicesControllerResponse.ProtoReflect.Descriptor instead.

func (*ListServicesControllerResponse) GetErrorsCount

func (x *ListServicesControllerResponse) GetErrorsCount() uint32

func (*ListServicesControllerResponse) GetServices

func (x *ListServicesControllerResponse) GetServices() []*GlobalService

func (*ListServicesControllerResponse) MarshalJSON

func (msg *ListServicesControllerResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListServicesControllerResponse) ProtoMessage

func (*ListServicesControllerResponse) ProtoMessage()

func (*ListServicesControllerResponse) ProtoReflect

func (*ListServicesControllerResponse) Reset

func (x *ListServicesControllerResponse) Reset()

func (*ListServicesControllerResponse) String

func (*ListServicesControllerResponse) UnmarshalJSON

func (msg *ListServicesControllerResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type ListServicesRequest

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

func (*ListServicesRequest) DeepCopy

func (in *ListServicesRequest) DeepCopy() *ListServicesRequest

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListServicesRequest. Required by controller-gen.

func (*ListServicesRequest) DeepCopyInterface

func (in *ListServicesRequest) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ListServicesRequest. Required by controller-gen.

func (*ListServicesRequest) DeepCopyInto

func (in *ListServicesRequest) DeepCopyInto(out *ListServicesRequest)

DeepCopyInto supports using ListServicesRequest within kubernetes types, where deepcopy-gen is used.

func (*ListServicesRequest) Descriptor deprecated

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

Deprecated: Use ListServicesRequest.ProtoReflect.Descriptor instead.

func (*ListServicesRequest) MarshalJSON

func (msg *ListServicesRequest) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*ListServicesRequest) ProtoMessage

func (*ListServicesRequest) ProtoMessage()

func (*ListServicesRequest) ProtoReflect

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

func (*ListServicesRequest) Reset

func (x *ListServicesRequest) Reset()

func (*ListServicesRequest) String

func (x *ListServicesRequest) String() string

func (*ListServicesRequest) UnmarshalJSON

func (msg *ListServicesRequest) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type PreviewFlowLabelsControllerResponse

type PreviewFlowLabelsControllerResponse struct {
	Response *v11.PreviewFlowLabelsResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
	// contains filtered or unexported fields
}

func (*PreviewFlowLabelsControllerResponse) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviewFlowLabelsControllerResponse. Required by controller-gen.

func (*PreviewFlowLabelsControllerResponse) DeepCopyInterface

func (in *PreviewFlowLabelsControllerResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new PreviewFlowLabelsControllerResponse. Required by controller-gen.

func (*PreviewFlowLabelsControllerResponse) DeepCopyInto

DeepCopyInto supports using PreviewFlowLabelsControllerResponse within kubernetes types, where deepcopy-gen is used.

func (*PreviewFlowLabelsControllerResponse) Descriptor deprecated

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

Deprecated: Use PreviewFlowLabelsControllerResponse.ProtoReflect.Descriptor instead.

func (*PreviewFlowLabelsControllerResponse) GetResponse

func (*PreviewFlowLabelsControllerResponse) MarshalJSON

func (msg *PreviewFlowLabelsControllerResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*PreviewFlowLabelsControllerResponse) ProtoMessage

func (*PreviewFlowLabelsControllerResponse) ProtoMessage()

func (*PreviewFlowLabelsControllerResponse) ProtoReflect

func (*PreviewFlowLabelsControllerResponse) Reset

func (*PreviewFlowLabelsControllerResponse) String

func (*PreviewFlowLabelsControllerResponse) UnmarshalJSON

func (msg *PreviewFlowLabelsControllerResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type PreviewFlowLabelsRequest

type PreviewFlowLabelsRequest struct {
	AgentGroup string              `protobuf:"bytes,1,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"` // Used only in ctl→controller communication.
	Request    *v11.PreviewRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
	// contains filtered or unexported fields
}

func (*PreviewFlowLabelsRequest) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviewFlowLabelsRequest. Required by controller-gen.

func (*PreviewFlowLabelsRequest) DeepCopyInterface

func (in *PreviewFlowLabelsRequest) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new PreviewFlowLabelsRequest. Required by controller-gen.

func (*PreviewFlowLabelsRequest) DeepCopyInto

func (in *PreviewFlowLabelsRequest) DeepCopyInto(out *PreviewFlowLabelsRequest)

DeepCopyInto supports using PreviewFlowLabelsRequest within kubernetes types, where deepcopy-gen is used.

func (*PreviewFlowLabelsRequest) Descriptor deprecated

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

Deprecated: Use PreviewFlowLabelsRequest.ProtoReflect.Descriptor instead.

func (*PreviewFlowLabelsRequest) GetAgentGroup

func (x *PreviewFlowLabelsRequest) GetAgentGroup() string

func (*PreviewFlowLabelsRequest) GetRequest

func (x *PreviewFlowLabelsRequest) GetRequest() *v11.PreviewRequest

func (*PreviewFlowLabelsRequest) MarshalJSON

func (msg *PreviewFlowLabelsRequest) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*PreviewFlowLabelsRequest) ProtoMessage

func (*PreviewFlowLabelsRequest) ProtoMessage()

func (*PreviewFlowLabelsRequest) ProtoReflect

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

func (*PreviewFlowLabelsRequest) Reset

func (x *PreviewFlowLabelsRequest) Reset()

func (*PreviewFlowLabelsRequest) String

func (x *PreviewFlowLabelsRequest) String() string

func (*PreviewFlowLabelsRequest) UnmarshalJSON

func (msg *PreviewFlowLabelsRequest) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type PreviewHTTPRequestsControllerResponse

type PreviewHTTPRequestsControllerResponse struct {
	Response *v11.PreviewHTTPRequestsResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
	// contains filtered or unexported fields
}

func (*PreviewHTTPRequestsControllerResponse) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviewHTTPRequestsControllerResponse. Required by controller-gen.

func (*PreviewHTTPRequestsControllerResponse) DeepCopyInterface

func (in *PreviewHTTPRequestsControllerResponse) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new PreviewHTTPRequestsControllerResponse. Required by controller-gen.

func (*PreviewHTTPRequestsControllerResponse) DeepCopyInto

DeepCopyInto supports using PreviewHTTPRequestsControllerResponse within kubernetes types, where deepcopy-gen is used.

func (*PreviewHTTPRequestsControllerResponse) Descriptor deprecated

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

Deprecated: Use PreviewHTTPRequestsControllerResponse.ProtoReflect.Descriptor instead.

func (*PreviewHTTPRequestsControllerResponse) GetResponse

func (*PreviewHTTPRequestsControllerResponse) MarshalJSON

func (msg *PreviewHTTPRequestsControllerResponse) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*PreviewHTTPRequestsControllerResponse) ProtoMessage

func (*PreviewHTTPRequestsControllerResponse) ProtoMessage()

func (*PreviewHTTPRequestsControllerResponse) ProtoReflect

func (*PreviewHTTPRequestsControllerResponse) Reset

func (*PreviewHTTPRequestsControllerResponse) String

func (*PreviewHTTPRequestsControllerResponse) UnmarshalJSON

func (msg *PreviewHTTPRequestsControllerResponse) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type PreviewHTTPRequestsRequest

type PreviewHTTPRequestsRequest struct {
	AgentGroup string              `protobuf:"bytes,1,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"` // Used only in ctl→controller communication.
	Request    *v11.PreviewRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
	// contains filtered or unexported fields
}

func (*PreviewHTTPRequestsRequest) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviewHTTPRequestsRequest. Required by controller-gen.

func (*PreviewHTTPRequestsRequest) DeepCopyInterface

func (in *PreviewHTTPRequestsRequest) DeepCopyInterface() interface{}

DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new PreviewHTTPRequestsRequest. Required by controller-gen.

func (*PreviewHTTPRequestsRequest) DeepCopyInto

DeepCopyInto supports using PreviewHTTPRequestsRequest within kubernetes types, where deepcopy-gen is used.

func (*PreviewHTTPRequestsRequest) Descriptor deprecated

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

Deprecated: Use PreviewHTTPRequestsRequest.ProtoReflect.Descriptor instead.

func (*PreviewHTTPRequestsRequest) GetAgentGroup

func (x *PreviewHTTPRequestsRequest) GetAgentGroup() string

func (*PreviewHTTPRequestsRequest) GetRequest

func (*PreviewHTTPRequestsRequest) MarshalJSON

func (msg *PreviewHTTPRequestsRequest) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*PreviewHTTPRequestsRequest) ProtoMessage

func (*PreviewHTTPRequestsRequest) ProtoMessage()

func (*PreviewHTTPRequestsRequest) ProtoReflect

func (*PreviewHTTPRequestsRequest) Reset

func (x *PreviewHTTPRequestsRequest) Reset()

func (*PreviewHTTPRequestsRequest) String

func (x *PreviewHTTPRequestsRequest) String() string

func (*PreviewHTTPRequestsRequest) UnmarshalJSON

func (msg *PreviewHTTPRequestsRequest) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

type UnimplementedControllerServer

type UnimplementedControllerServer struct {
}

UnimplementedControllerServer should be embedded to have forward compatible implementations.

func (UnimplementedControllerServer) ListAgents

func (UnimplementedControllerServer) ListFlowControlPoints added in v0.26.0

type UnsafeControllerServer

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

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

Jump to

Keyboard shortcuts

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