cmdv1

package
v1.6.0 Latest Latest
Warning

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

Go to latest
Published: May 2, 2023 License: Apache-2.0 Imports: 28 Imported by: 0

Documentation

Overview

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

Index

Constants

View Source
const (
	Controller_ListAgents_FullMethodName                 = "/aperture.cmd.v1.Controller/ListAgents"
	Controller_ListServices_FullMethodName               = "/aperture.cmd.v1.Controller/ListServices"
	Controller_ListFlowControlPoints_FullMethodName      = "/aperture.cmd.v1.Controller/ListFlowControlPoints"
	Controller_ListAutoScaleControlPoints_FullMethodName = "/aperture.cmd.v1.Controller/ListAutoScaleControlPoints"
	Controller_ListDiscoveryEntities_FullMethodName      = "/aperture.cmd.v1.Controller/ListDiscoveryEntities"
	Controller_ListDiscoveryEntity_FullMethodName        = "/aperture.cmd.v1.Controller/ListDiscoveryEntity"
	Controller_PreviewFlowLabels_FullMethodName          = "/aperture.cmd.v1.Controller/PreviewFlowLabels"
	Controller_PreviewHTTPRequests_FullMethodName        = "/aperture.cmd.v1.Controller/PreviewHTTPRequests"
	Controller_UpsertPolicy_FullMethodName               = "/aperture.cmd.v1.Controller/UpsertPolicy"
	Controller_PostDynamicConfig_FullMethodName          = "/aperture.cmd.v1.Controller/PostDynamicConfig"
	Controller_DeletePolicy_FullMethodName               = "/aperture.cmd.v1.Controller/DeletePolicy"
)

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: "ListAutoScaleControlPoints",
			Handler:    _Controller_ListAutoScaleControlPoints_Handler,
		},
		{
			MethodName: "ListDiscoveryEntities",
			Handler:    _Controller_ListDiscoveryEntities_Handler,
		},
		{
			MethodName: "ListDiscoveryEntity",
			Handler:    _Controller_ListDiscoveryEntity_Handler,
		},
		{
			MethodName: "PreviewFlowLabels",
			Handler:    _Controller_PreviewFlowLabels_Handler,
		},
		{
			MethodName: "PreviewHTTPRequests",
			Handler:    _Controller_PreviewHTTPRequests_Handler,
		},
		{
			MethodName: "UpsertPolicy",
			Handler:    _Controller_UpsertPolicy_Handler,
		},
		{
			MethodName: "PostDynamicConfig",
			Handler:    _Controller_PostDynamicConfig_Handler,
		},
		{
			MethodName: "DeletePolicy",
			Handler:    _Controller_DeletePolicy_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)
	ListAutoScaleControlPoints(ctx context.Context, in *ListAutoScaleControlPointsRequest, opts ...grpc.CallOption) (*ListAutoScaleControlPointsControllerResponse, error)
	ListDiscoveryEntities(ctx context.Context, in *ListDiscoveryEntitiesRequest, opts ...grpc.CallOption) (*ListDiscoveryEntitiesControllerResponse, error)
	ListDiscoveryEntity(ctx context.Context, in *ListDiscoveryEntityRequest, opts ...grpc.CallOption) (*ListDiscoveryEntityAgentResponse, 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)
	UpsertPolicy(ctx context.Context, in *v1.UpsertPolicyRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	PostDynamicConfig(ctx context.Context, in *v1.PostDynamicConfigRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	DeletePolicy(ctx context.Context, in *v1.DeletePolicyRequest, opts ...grpc.CallOption) (*emptypb.Empty, 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

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

type GlobalAutoScaleControlPoint added in v0.27.0

type GlobalAutoScaleControlPoint struct {
	AutoScaleControlPoint *v11.AutoScaleKubernetesControlPoint `` /* 128-byte string literal not displayed */
	AgentGroup            string                               `protobuf:"bytes,2,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"`
	// contains filtered or unexported fields
}

func (*GlobalAutoScaleControlPoint) DeepCopy added in v0.27.0

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

func (*GlobalAutoScaleControlPoint) DeepCopyInterface added in v0.27.0

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

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

func (*GlobalAutoScaleControlPoint) DeepCopyInto added in v0.27.0

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

func (*GlobalAutoScaleControlPoint) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GlobalAutoScaleControlPoint.ProtoReflect.Descriptor instead.

func (*GlobalAutoScaleControlPoint) GetAgentGroup added in v0.27.0

func (x *GlobalAutoScaleControlPoint) GetAgentGroup() string

func (*GlobalAutoScaleControlPoint) GetAutoScaleControlPoint added in v0.27.0

func (x *GlobalAutoScaleControlPoint) GetAutoScaleControlPoint() *v11.AutoScaleKubernetesControlPoint

func (*GlobalAutoScaleControlPoint) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*GlobalAutoScaleControlPoint) ProtoMessage added in v0.27.0

func (*GlobalAutoScaleControlPoint) ProtoMessage()

func (*GlobalAutoScaleControlPoint) ProtoReflect added in v0.27.0

func (*GlobalAutoScaleControlPoint) Reset added in v0.27.0

func (x *GlobalAutoScaleControlPoint) Reset()

func (*GlobalAutoScaleControlPoint) String added in v0.27.0

func (x *GlobalAutoScaleControlPoint) String() string

func (*GlobalAutoScaleControlPoint) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*GlobalAutoScaleControlPoint) Validate added in v1.2.0

func (m *GlobalAutoScaleControlPoint) Validate() error

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

func (*GlobalAutoScaleControlPoint) ValidateAll added in v1.2.0

func (m *GlobalAutoScaleControlPoint) ValidateAll() error

ValidateAll checks the field values on GlobalAutoScaleControlPoint with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GlobalAutoScaleControlPointMultiError, or nil if none found.

type GlobalAutoScaleControlPointMultiError added in v1.2.0

type GlobalAutoScaleControlPointMultiError []error

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

func (GlobalAutoScaleControlPointMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (GlobalAutoScaleControlPointMultiError) Error added in v1.2.0

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

type GlobalAutoScaleControlPointValidationError added in v1.2.0

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

GlobalAutoScaleControlPointValidationError is the validation error returned by GlobalAutoScaleControlPoint.Validate if the designated constraints aren't met.

func (GlobalAutoScaleControlPointValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (GlobalAutoScaleControlPointValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (GlobalAutoScaleControlPointValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (GlobalAutoScaleControlPointValidationError) Field added in v1.2.0

Field function returns field value.

func (GlobalAutoScaleControlPointValidationError) Key added in v1.2.0

Key function returns key value.

func (GlobalAutoScaleControlPointValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*GlobalFlowControlPoint) Validate added in v1.2.0

func (m *GlobalFlowControlPoint) Validate() error

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

func (*GlobalFlowControlPoint) ValidateAll added in v1.2.0

func (m *GlobalFlowControlPoint) ValidateAll() error

ValidateAll checks the field values on GlobalFlowControlPoint with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GlobalFlowControlPointMultiError, or nil if none found.

type GlobalFlowControlPointMultiError added in v1.2.0

type GlobalFlowControlPointMultiError []error

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

func (GlobalFlowControlPointMultiError) AllErrors added in v1.2.0

func (m GlobalFlowControlPointMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GlobalFlowControlPointMultiError) Error added in v1.2.0

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

type GlobalFlowControlPointValidationError added in v1.2.0

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

GlobalFlowControlPointValidationError is the validation error returned by GlobalFlowControlPoint.Validate if the designated constraints aren't met.

func (GlobalFlowControlPointValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (GlobalFlowControlPointValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (GlobalFlowControlPointValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (GlobalFlowControlPointValidationError) Field added in v1.2.0

Field function returns field value.

func (GlobalFlowControlPointValidationError) Key added in v1.2.0

Key function returns key value.

func (GlobalFlowControlPointValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*GlobalService) Validate added in v1.2.0

func (m *GlobalService) Validate() error

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

func (*GlobalService) ValidateAll added in v1.2.0

func (m *GlobalService) ValidateAll() error

ValidateAll checks the field values on GlobalService with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GlobalServiceMultiError, or nil if none found.

type GlobalServiceMultiError added in v1.2.0

type GlobalServiceMultiError []error

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

func (GlobalServiceMultiError) AllErrors added in v1.2.0

func (m GlobalServiceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GlobalServiceMultiError) Error added in v1.2.0

func (m GlobalServiceMultiError) Error() string

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

type GlobalServiceValidationError added in v1.2.0

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

GlobalServiceValidationError is the validation error returned by GlobalService.Validate if the designated constraints aren't met.

func (GlobalServiceValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (GlobalServiceValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (GlobalServiceValidationError) ErrorName added in v1.2.0

func (e GlobalServiceValidationError) ErrorName() string

ErrorName returns error name.

func (GlobalServiceValidationError) Field added in v1.2.0

Field function returns field value.

func (GlobalServiceValidationError) Key added in v1.2.0

Key function returns key value.

func (GlobalServiceValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*ListAgentsResponse) Validate added in v1.2.0

func (m *ListAgentsResponse) Validate() error

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

func (*ListAgentsResponse) ValidateAll added in v1.2.0

func (m *ListAgentsResponse) ValidateAll() error

ValidateAll checks the field values on ListAgentsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListAgentsResponseMultiError, or nil if none found.

type ListAgentsResponseMultiError added in v1.2.0

type ListAgentsResponseMultiError []error

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

func (ListAgentsResponseMultiError) AllErrors added in v1.2.0

func (m ListAgentsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListAgentsResponseMultiError) Error added in v1.2.0

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

type ListAgentsResponseValidationError added in v1.2.0

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

ListAgentsResponseValidationError is the validation error returned by ListAgentsResponse.Validate if the designated constraints aren't met.

func (ListAgentsResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListAgentsResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListAgentsResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListAgentsResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListAgentsResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListAgentsResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListAutoScaleControlPointsAgentResponse added in v0.27.0

type ListAutoScaleControlPointsAgentResponse struct {
	AutoScaleControlPoints *v11.AutoScaleKubernetesControlPoints `` /* 131-byte string literal not displayed */
	AgentGroup             string                                `protobuf:"bytes,2,opt,name=agent_group,json=agentGroup,proto3" json:"agent_group,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAutoScaleControlPointsAgentResponse) DeepCopy added in v0.27.0

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

func (*ListAutoScaleControlPointsAgentResponse) DeepCopyInterface added in v0.27.0

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

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

func (*ListAutoScaleControlPointsAgentResponse) DeepCopyInto added in v0.27.0

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

func (*ListAutoScaleControlPointsAgentResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListAutoScaleControlPointsAgentResponse.ProtoReflect.Descriptor instead.

func (*ListAutoScaleControlPointsAgentResponse) GetAgentGroup added in v0.27.0

func (*ListAutoScaleControlPointsAgentResponse) GetAutoScaleControlPoints added in v0.27.0

func (*ListAutoScaleControlPointsAgentResponse) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListAutoScaleControlPointsAgentResponse) ProtoMessage added in v0.27.0

func (*ListAutoScaleControlPointsAgentResponse) ProtoReflect added in v0.27.0

func (*ListAutoScaleControlPointsAgentResponse) Reset added in v0.27.0

func (*ListAutoScaleControlPointsAgentResponse) String added in v0.27.0

func (*ListAutoScaleControlPointsAgentResponse) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListAutoScaleControlPointsAgentResponse) Validate added in v1.2.0

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

func (*ListAutoScaleControlPointsAgentResponse) ValidateAll added in v1.2.0

ValidateAll checks the field values on ListAutoScaleControlPointsAgentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListAutoScaleControlPointsAgentResponseMultiError, or nil if none found.

type ListAutoScaleControlPointsAgentResponseMultiError added in v1.2.0

type ListAutoScaleControlPointsAgentResponseMultiError []error

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

func (ListAutoScaleControlPointsAgentResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListAutoScaleControlPointsAgentResponseMultiError) Error added in v1.2.0

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

type ListAutoScaleControlPointsAgentResponseValidationError added in v1.2.0

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

ListAutoScaleControlPointsAgentResponseValidationError is the validation error returned by ListAutoScaleControlPointsAgentResponse.Validate if the designated constraints aren't met.

func (ListAutoScaleControlPointsAgentResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListAutoScaleControlPointsAgentResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListAutoScaleControlPointsAgentResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListAutoScaleControlPointsAgentResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListAutoScaleControlPointsAgentResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListAutoScaleControlPointsAgentResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListAutoScaleControlPointsControllerResponse added in v0.27.0

type ListAutoScaleControlPointsControllerResponse struct {
	GlobalAutoScaleControlPoints []*GlobalAutoScaleControlPoint `` /* 151-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 (*ListAutoScaleControlPointsControllerResponse) DeepCopy added in v0.27.0

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

func (*ListAutoScaleControlPointsControllerResponse) DeepCopyInterface added in v0.27.0

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

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

func (*ListAutoScaleControlPointsControllerResponse) DeepCopyInto added in v0.27.0

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

func (*ListAutoScaleControlPointsControllerResponse) Descriptor deprecated added in v0.27.0

Deprecated: Use ListAutoScaleControlPointsControllerResponse.ProtoReflect.Descriptor instead.

func (*ListAutoScaleControlPointsControllerResponse) GetErrorsCount added in v0.27.0

func (*ListAutoScaleControlPointsControllerResponse) GetGlobalAutoScaleControlPoints added in v0.27.0

func (x *ListAutoScaleControlPointsControllerResponse) GetGlobalAutoScaleControlPoints() []*GlobalAutoScaleControlPoint

func (*ListAutoScaleControlPointsControllerResponse) MarshalJSON added in v0.27.0

MarshalJSON implements json.Marshaler

func (*ListAutoScaleControlPointsControllerResponse) ProtoMessage added in v0.27.0

func (*ListAutoScaleControlPointsControllerResponse) ProtoReflect added in v0.27.0

func (*ListAutoScaleControlPointsControllerResponse) Reset added in v0.27.0

func (*ListAutoScaleControlPointsControllerResponse) String added in v0.27.0

func (*ListAutoScaleControlPointsControllerResponse) UnmarshalJSON added in v0.27.0

UnmarshalJSON implements json.Unmarshaler

func (*ListAutoScaleControlPointsControllerResponse) Validate added in v1.2.0

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

func (*ListAutoScaleControlPointsControllerResponse) ValidateAll added in v1.2.0

ValidateAll checks the field values on ListAutoScaleControlPointsControllerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListAutoScaleControlPointsControllerResponseMultiError, or nil if none found.

type ListAutoScaleControlPointsControllerResponseMultiError added in v1.2.0

type ListAutoScaleControlPointsControllerResponseMultiError []error

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

func (ListAutoScaleControlPointsControllerResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListAutoScaleControlPointsControllerResponseMultiError) Error added in v1.2.0

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

type ListAutoScaleControlPointsControllerResponseValidationError added in v1.2.0

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

ListAutoScaleControlPointsControllerResponseValidationError is the validation error returned by ListAutoScaleControlPointsControllerResponse.Validate if the designated constraints aren't met.

func (ListAutoScaleControlPointsControllerResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListAutoScaleControlPointsControllerResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListAutoScaleControlPointsControllerResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListAutoScaleControlPointsControllerResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListAutoScaleControlPointsControllerResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListAutoScaleControlPointsControllerResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListAutoScaleControlPointsRequest added in v0.27.0

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

func (*ListAutoScaleControlPointsRequest) DeepCopy added in v0.27.0

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

func (*ListAutoScaleControlPointsRequest) DeepCopyInterface added in v0.27.0

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

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

func (*ListAutoScaleControlPointsRequest) DeepCopyInto added in v0.27.0

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

func (*ListAutoScaleControlPointsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListAutoScaleControlPointsRequest.ProtoReflect.Descriptor instead.

func (*ListAutoScaleControlPointsRequest) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListAutoScaleControlPointsRequest) ProtoMessage added in v0.27.0

func (*ListAutoScaleControlPointsRequest) ProtoMessage()

func (*ListAutoScaleControlPointsRequest) ProtoReflect added in v0.27.0

func (*ListAutoScaleControlPointsRequest) Reset added in v0.27.0

func (*ListAutoScaleControlPointsRequest) String added in v0.27.0

func (*ListAutoScaleControlPointsRequest) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListAutoScaleControlPointsRequest) Validate added in v1.2.0

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

func (*ListAutoScaleControlPointsRequest) ValidateAll added in v1.2.0

func (m *ListAutoScaleControlPointsRequest) ValidateAll() error

ValidateAll checks the field values on ListAutoScaleControlPointsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListAutoScaleControlPointsRequestMultiError, or nil if none found.

type ListAutoScaleControlPointsRequestMultiError added in v1.2.0

type ListAutoScaleControlPointsRequestMultiError []error

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

func (ListAutoScaleControlPointsRequestMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListAutoScaleControlPointsRequestMultiError) Error added in v1.2.0

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

type ListAutoScaleControlPointsRequestValidationError added in v1.2.0

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

ListAutoScaleControlPointsRequestValidationError is the validation error returned by ListAutoScaleControlPointsRequest.Validate if the designated constraints aren't met.

func (ListAutoScaleControlPointsRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListAutoScaleControlPointsRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListAutoScaleControlPointsRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListAutoScaleControlPointsRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (ListAutoScaleControlPointsRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (ListAutoScaleControlPointsRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListDiscoveryEntitiesAgentResponse added in v0.27.0

type ListDiscoveryEntitiesAgentResponse struct {
	Entities map[string]*v12.Entity `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ListDiscoveryEntitiesAgentResponse) DeepCopy added in v0.27.0

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

func (*ListDiscoveryEntitiesAgentResponse) DeepCopyInterface added in v0.27.0

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

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

func (*ListDiscoveryEntitiesAgentResponse) DeepCopyInto added in v0.27.0

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

func (*ListDiscoveryEntitiesAgentResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListDiscoveryEntitiesAgentResponse.ProtoReflect.Descriptor instead.

func (*ListDiscoveryEntitiesAgentResponse) GetEntities added in v0.27.0

func (x *ListDiscoveryEntitiesAgentResponse) GetEntities() map[string]*v12.Entity

func (*ListDiscoveryEntitiesAgentResponse) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListDiscoveryEntitiesAgentResponse) ProtoMessage added in v0.27.0

func (*ListDiscoveryEntitiesAgentResponse) ProtoMessage()

func (*ListDiscoveryEntitiesAgentResponse) ProtoReflect added in v0.27.0

func (*ListDiscoveryEntitiesAgentResponse) Reset added in v0.27.0

func (*ListDiscoveryEntitiesAgentResponse) String added in v0.27.0

func (*ListDiscoveryEntitiesAgentResponse) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListDiscoveryEntitiesAgentResponse) Validate added in v1.2.0

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

func (*ListDiscoveryEntitiesAgentResponse) ValidateAll added in v1.2.0

func (m *ListDiscoveryEntitiesAgentResponse) ValidateAll() error

ValidateAll checks the field values on ListDiscoveryEntitiesAgentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDiscoveryEntitiesAgentResponseMultiError, or nil if none found.

type ListDiscoveryEntitiesAgentResponseMultiError added in v1.2.0

type ListDiscoveryEntitiesAgentResponseMultiError []error

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

func (ListDiscoveryEntitiesAgentResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListDiscoveryEntitiesAgentResponseMultiError) Error added in v1.2.0

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

type ListDiscoveryEntitiesAgentResponseValidationError added in v1.2.0

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

ListDiscoveryEntitiesAgentResponseValidationError is the validation error returned by ListDiscoveryEntitiesAgentResponse.Validate if the designated constraints aren't met.

func (ListDiscoveryEntitiesAgentResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListDiscoveryEntitiesAgentResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListDiscoveryEntitiesAgentResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListDiscoveryEntitiesAgentResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListDiscoveryEntitiesAgentResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListDiscoveryEntitiesAgentResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListDiscoveryEntitiesControllerResponse added in v0.27.0

type ListDiscoveryEntitiesControllerResponse struct {
	Entities    *ListDiscoveryEntitiesAgentResponse `protobuf:"bytes,1,opt,name=entities,proto3" json:"entities,omitempty"`
	ErrorsCount uint32                              `protobuf:"varint,2,opt,name=errors_count,json=errorsCount,proto3" json:"errors_count,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDiscoveryEntitiesControllerResponse) DeepCopy added in v0.27.0

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

func (*ListDiscoveryEntitiesControllerResponse) DeepCopyInterface added in v0.27.0

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

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

func (*ListDiscoveryEntitiesControllerResponse) DeepCopyInto added in v0.27.0

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

func (*ListDiscoveryEntitiesControllerResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListDiscoveryEntitiesControllerResponse.ProtoReflect.Descriptor instead.

func (*ListDiscoveryEntitiesControllerResponse) GetEntities added in v0.27.0

func (*ListDiscoveryEntitiesControllerResponse) GetErrorsCount added in v0.27.0

func (x *ListDiscoveryEntitiesControllerResponse) GetErrorsCount() uint32

func (*ListDiscoveryEntitiesControllerResponse) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListDiscoveryEntitiesControllerResponse) ProtoMessage added in v0.27.0

func (*ListDiscoveryEntitiesControllerResponse) ProtoReflect added in v0.27.0

func (*ListDiscoveryEntitiesControllerResponse) Reset added in v0.27.0

func (*ListDiscoveryEntitiesControllerResponse) String added in v0.27.0

func (*ListDiscoveryEntitiesControllerResponse) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListDiscoveryEntitiesControllerResponse) Validate added in v1.2.0

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

func (*ListDiscoveryEntitiesControllerResponse) ValidateAll added in v1.2.0

ValidateAll checks the field values on ListDiscoveryEntitiesControllerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDiscoveryEntitiesControllerResponseMultiError, or nil if none found.

type ListDiscoveryEntitiesControllerResponseMultiError added in v1.2.0

type ListDiscoveryEntitiesControllerResponseMultiError []error

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

func (ListDiscoveryEntitiesControllerResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListDiscoveryEntitiesControllerResponseMultiError) Error added in v1.2.0

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

type ListDiscoveryEntitiesControllerResponseValidationError added in v1.2.0

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

ListDiscoveryEntitiesControllerResponseValidationError is the validation error returned by ListDiscoveryEntitiesControllerResponse.Validate if the designated constraints aren't met.

func (ListDiscoveryEntitiesControllerResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListDiscoveryEntitiesControllerResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListDiscoveryEntitiesControllerResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListDiscoveryEntitiesControllerResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListDiscoveryEntitiesControllerResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListDiscoveryEntitiesControllerResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListDiscoveryEntitiesRequest added in v0.27.0

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

func (*ListDiscoveryEntitiesRequest) DeepCopy added in v0.27.0

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

func (*ListDiscoveryEntitiesRequest) DeepCopyInterface added in v0.27.0

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

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

func (*ListDiscoveryEntitiesRequest) DeepCopyInto added in v0.27.0

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

func (*ListDiscoveryEntitiesRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListDiscoveryEntitiesRequest.ProtoReflect.Descriptor instead.

func (*ListDiscoveryEntitiesRequest) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListDiscoveryEntitiesRequest) ProtoMessage added in v0.27.0

func (*ListDiscoveryEntitiesRequest) ProtoMessage()

func (*ListDiscoveryEntitiesRequest) ProtoReflect added in v0.27.0

func (*ListDiscoveryEntitiesRequest) Reset added in v0.27.0

func (x *ListDiscoveryEntitiesRequest) Reset()

func (*ListDiscoveryEntitiesRequest) String added in v0.27.0

func (*ListDiscoveryEntitiesRequest) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListDiscoveryEntitiesRequest) Validate added in v1.2.0

func (m *ListDiscoveryEntitiesRequest) Validate() error

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

func (*ListDiscoveryEntitiesRequest) ValidateAll added in v1.2.0

func (m *ListDiscoveryEntitiesRequest) ValidateAll() error

ValidateAll checks the field values on ListDiscoveryEntitiesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDiscoveryEntitiesRequestMultiError, or nil if none found.

type ListDiscoveryEntitiesRequestMultiError added in v1.2.0

type ListDiscoveryEntitiesRequestMultiError []error

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

func (ListDiscoveryEntitiesRequestMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListDiscoveryEntitiesRequestMultiError) Error added in v1.2.0

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

type ListDiscoveryEntitiesRequestValidationError added in v1.2.0

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

ListDiscoveryEntitiesRequestValidationError is the validation error returned by ListDiscoveryEntitiesRequest.Validate if the designated constraints aren't met.

func (ListDiscoveryEntitiesRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListDiscoveryEntitiesRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListDiscoveryEntitiesRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListDiscoveryEntitiesRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (ListDiscoveryEntitiesRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (ListDiscoveryEntitiesRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListDiscoveryEntityAgentResponse added in v0.27.0

type ListDiscoveryEntityAgentResponse struct {
	Entity *v12.Entity `protobuf:"bytes,1,opt,name=entity,proto3" json:"entity,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDiscoveryEntityAgentResponse) DeepCopy added in v0.27.0

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

func (*ListDiscoveryEntityAgentResponse) DeepCopyInterface added in v0.27.0

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

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

func (*ListDiscoveryEntityAgentResponse) DeepCopyInto added in v0.27.0

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

func (*ListDiscoveryEntityAgentResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListDiscoveryEntityAgentResponse.ProtoReflect.Descriptor instead.

func (*ListDiscoveryEntityAgentResponse) GetEntity added in v0.27.0

func (*ListDiscoveryEntityAgentResponse) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListDiscoveryEntityAgentResponse) ProtoMessage added in v0.27.0

func (*ListDiscoveryEntityAgentResponse) ProtoMessage()

func (*ListDiscoveryEntityAgentResponse) ProtoReflect added in v0.27.0

func (*ListDiscoveryEntityAgentResponse) Reset added in v0.27.0

func (*ListDiscoveryEntityAgentResponse) String added in v0.27.0

func (*ListDiscoveryEntityAgentResponse) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListDiscoveryEntityAgentResponse) Validate added in v1.2.0

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

func (*ListDiscoveryEntityAgentResponse) ValidateAll added in v1.2.0

func (m *ListDiscoveryEntityAgentResponse) ValidateAll() error

ValidateAll checks the field values on ListDiscoveryEntityAgentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDiscoveryEntityAgentResponseMultiError, or nil if none found.

type ListDiscoveryEntityAgentResponseMultiError added in v1.2.0

type ListDiscoveryEntityAgentResponseMultiError []error

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

func (ListDiscoveryEntityAgentResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListDiscoveryEntityAgentResponseMultiError) Error added in v1.2.0

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

type ListDiscoveryEntityAgentResponseValidationError added in v1.2.0

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

ListDiscoveryEntityAgentResponseValidationError is the validation error returned by ListDiscoveryEntityAgentResponse.Validate if the designated constraints aren't met.

func (ListDiscoveryEntityAgentResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListDiscoveryEntityAgentResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListDiscoveryEntityAgentResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListDiscoveryEntityAgentResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListDiscoveryEntityAgentResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListDiscoveryEntityAgentResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListDiscoveryEntityRequest added in v0.27.0

type ListDiscoveryEntityRequest struct {

	// Types that are assignable to By:
	//
	//	*ListDiscoveryEntityRequest_IpAddress
	//	*ListDiscoveryEntityRequest_Name
	By isListDiscoveryEntityRequest_By `protobuf_oneof:"by"`
	// contains filtered or unexported fields
}

func (*ListDiscoveryEntityRequest) DeepCopy added in v0.27.0

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

func (*ListDiscoveryEntityRequest) DeepCopyInterface added in v0.27.0

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

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

func (*ListDiscoveryEntityRequest) DeepCopyInto added in v0.27.0

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

func (*ListDiscoveryEntityRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListDiscoveryEntityRequest.ProtoReflect.Descriptor instead.

func (*ListDiscoveryEntityRequest) GetBy added in v0.27.0

func (m *ListDiscoveryEntityRequest) GetBy() isListDiscoveryEntityRequest_By

func (*ListDiscoveryEntityRequest) GetIpAddress added in v0.27.0

func (x *ListDiscoveryEntityRequest) GetIpAddress() string

func (*ListDiscoveryEntityRequest) GetName added in v0.27.0

func (x *ListDiscoveryEntityRequest) GetName() string

func (*ListDiscoveryEntityRequest) MarshalJSON added in v0.27.0

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

MarshalJSON implements json.Marshaler

func (*ListDiscoveryEntityRequest) ProtoMessage added in v0.27.0

func (*ListDiscoveryEntityRequest) ProtoMessage()

func (*ListDiscoveryEntityRequest) ProtoReflect added in v0.27.0

func (*ListDiscoveryEntityRequest) Reset added in v0.27.0

func (x *ListDiscoveryEntityRequest) Reset()

func (*ListDiscoveryEntityRequest) String added in v0.27.0

func (x *ListDiscoveryEntityRequest) String() string

func (*ListDiscoveryEntityRequest) UnmarshalJSON added in v0.27.0

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

UnmarshalJSON implements json.Unmarshaler

func (*ListDiscoveryEntityRequest) Validate added in v1.2.0

func (m *ListDiscoveryEntityRequest) Validate() error

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

func (*ListDiscoveryEntityRequest) ValidateAll added in v1.2.0

func (m *ListDiscoveryEntityRequest) ValidateAll() error

ValidateAll checks the field values on ListDiscoveryEntityRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDiscoveryEntityRequestMultiError, or nil if none found.

type ListDiscoveryEntityRequestMultiError added in v1.2.0

type ListDiscoveryEntityRequestMultiError []error

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

func (ListDiscoveryEntityRequestMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListDiscoveryEntityRequestMultiError) Error added in v1.2.0

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

type ListDiscoveryEntityRequestValidationError added in v1.2.0

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

ListDiscoveryEntityRequestValidationError is the validation error returned by ListDiscoveryEntityRequest.Validate if the designated constraints aren't met.

func (ListDiscoveryEntityRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListDiscoveryEntityRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListDiscoveryEntityRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListDiscoveryEntityRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (ListDiscoveryEntityRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (ListDiscoveryEntityRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type ListDiscoveryEntityRequest_IpAddress added in v0.27.0

type ListDiscoveryEntityRequest_IpAddress struct {
	IpAddress string `protobuf:"bytes,1,opt,name=ip_address,json=ipAddress,proto3,oneof"`
}

type ListDiscoveryEntityRequest_Name added in v0.27.0

type ListDiscoveryEntityRequest_Name struct {
	Name string `protobuf:"bytes,2,opt,name=name,proto3,oneof"`
}

type ListFlowControlPointsAgentResponse added in v0.26.0

type ListFlowControlPointsAgentResponse struct {
	FlowControlPoints *v1.FlowControlPoints `protobuf:"bytes,1,opt,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.FlowControlPoints

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

func (*ListFlowControlPointsAgentResponse) Validate added in v1.2.0

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

func (*ListFlowControlPointsAgentResponse) ValidateAll added in v1.2.0

func (m *ListFlowControlPointsAgentResponse) ValidateAll() error

ValidateAll checks the field values on ListFlowControlPointsAgentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListFlowControlPointsAgentResponseMultiError, or nil if none found.

type ListFlowControlPointsAgentResponseMultiError added in v1.2.0

type ListFlowControlPointsAgentResponseMultiError []error

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

func (ListFlowControlPointsAgentResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListFlowControlPointsAgentResponseMultiError) Error added in v1.2.0

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

type ListFlowControlPointsAgentResponseValidationError added in v1.2.0

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

ListFlowControlPointsAgentResponseValidationError is the validation error returned by ListFlowControlPointsAgentResponse.Validate if the designated constraints aren't met.

func (ListFlowControlPointsAgentResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListFlowControlPointsAgentResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListFlowControlPointsAgentResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListFlowControlPointsAgentResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListFlowControlPointsAgentResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListFlowControlPointsAgentResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*ListFlowControlPointsControllerResponse) Validate added in v1.2.0

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

func (*ListFlowControlPointsControllerResponse) ValidateAll added in v1.2.0

ValidateAll checks the field values on ListFlowControlPointsControllerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListFlowControlPointsControllerResponseMultiError, or nil if none found.

type ListFlowControlPointsControllerResponseMultiError added in v1.2.0

type ListFlowControlPointsControllerResponseMultiError []error

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

func (ListFlowControlPointsControllerResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListFlowControlPointsControllerResponseMultiError) Error added in v1.2.0

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

type ListFlowControlPointsControllerResponseValidationError added in v1.2.0

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

ListFlowControlPointsControllerResponseValidationError is the validation error returned by ListFlowControlPointsControllerResponse.Validate if the designated constraints aren't met.

func (ListFlowControlPointsControllerResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListFlowControlPointsControllerResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListFlowControlPointsControllerResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListFlowControlPointsControllerResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListFlowControlPointsControllerResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListFlowControlPointsControllerResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*ListFlowControlPointsRequest) Validate added in v1.2.0

func (m *ListFlowControlPointsRequest) Validate() error

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

func (*ListFlowControlPointsRequest) ValidateAll added in v1.2.0

func (m *ListFlowControlPointsRequest) ValidateAll() error

ValidateAll checks the field values on ListFlowControlPointsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListFlowControlPointsRequestMultiError, or nil if none found.

type ListFlowControlPointsRequestMultiError added in v1.2.0

type ListFlowControlPointsRequestMultiError []error

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

func (ListFlowControlPointsRequestMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListFlowControlPointsRequestMultiError) Error added in v1.2.0

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

type ListFlowControlPointsRequestValidationError added in v1.2.0

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

ListFlowControlPointsRequestValidationError is the validation error returned by ListFlowControlPointsRequest.Validate if the designated constraints aren't met.

func (ListFlowControlPointsRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListFlowControlPointsRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListFlowControlPointsRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListFlowControlPointsRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (ListFlowControlPointsRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (ListFlowControlPointsRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*ListServicesAgentResponse) Validate added in v1.2.0

func (m *ListServicesAgentResponse) Validate() error

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

func (*ListServicesAgentResponse) ValidateAll added in v1.2.0

func (m *ListServicesAgentResponse) ValidateAll() error

ValidateAll checks the field values on ListServicesAgentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListServicesAgentResponseMultiError, or nil if none found.

type ListServicesAgentResponseMultiError added in v1.2.0

type ListServicesAgentResponseMultiError []error

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

func (ListServicesAgentResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListServicesAgentResponseMultiError) Error added in v1.2.0

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

type ListServicesAgentResponseValidationError added in v1.2.0

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

ListServicesAgentResponseValidationError is the validation error returned by ListServicesAgentResponse.Validate if the designated constraints aren't met.

func (ListServicesAgentResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListServicesAgentResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListServicesAgentResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListServicesAgentResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListServicesAgentResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListServicesAgentResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*ListServicesControllerResponse) Validate added in v1.2.0

func (m *ListServicesControllerResponse) Validate() error

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

func (*ListServicesControllerResponse) ValidateAll added in v1.2.0

func (m *ListServicesControllerResponse) ValidateAll() error

ValidateAll checks the field values on ListServicesControllerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListServicesControllerResponseMultiError, or nil if none found.

type ListServicesControllerResponseMultiError added in v1.2.0

type ListServicesControllerResponseMultiError []error

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

func (ListServicesControllerResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (ListServicesControllerResponseMultiError) Error added in v1.2.0

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

type ListServicesControllerResponseValidationError added in v1.2.0

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

ListServicesControllerResponseValidationError is the validation error returned by ListServicesControllerResponse.Validate if the designated constraints aren't met.

func (ListServicesControllerResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListServicesControllerResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListServicesControllerResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListServicesControllerResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (ListServicesControllerResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (ListServicesControllerResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

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

func (*ListServicesRequest) Validate added in v1.2.0

func (m *ListServicesRequest) Validate() error

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

func (*ListServicesRequest) ValidateAll added in v1.2.0

func (m *ListServicesRequest) ValidateAll() error

ValidateAll checks the field values on ListServicesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListServicesRequestMultiError, or nil if none found.

type ListServicesRequestMultiError added in v1.2.0

type ListServicesRequestMultiError []error

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

func (ListServicesRequestMultiError) AllErrors added in v1.2.0

func (m ListServicesRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListServicesRequestMultiError) Error added in v1.2.0

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

type ListServicesRequestValidationError added in v1.2.0

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

ListServicesRequestValidationError is the validation error returned by ListServicesRequest.Validate if the designated constraints aren't met.

func (ListServicesRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (ListServicesRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (ListServicesRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (ListServicesRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (ListServicesRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (ListServicesRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type PreviewFlowLabelsControllerResponse

type PreviewFlowLabelsControllerResponse struct {
	Response *v13.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

func (*PreviewFlowLabelsControllerResponse) Validate added in v1.2.0

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

func (*PreviewFlowLabelsControllerResponse) ValidateAll added in v1.2.0

func (m *PreviewFlowLabelsControllerResponse) ValidateAll() error

ValidateAll checks the field values on PreviewFlowLabelsControllerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PreviewFlowLabelsControllerResponseMultiError, or nil if none found.

type PreviewFlowLabelsControllerResponseMultiError added in v1.2.0

type PreviewFlowLabelsControllerResponseMultiError []error

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

func (PreviewFlowLabelsControllerResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (PreviewFlowLabelsControllerResponseMultiError) Error added in v1.2.0

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

type PreviewFlowLabelsControllerResponseValidationError added in v1.2.0

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

PreviewFlowLabelsControllerResponseValidationError is the validation error returned by PreviewFlowLabelsControllerResponse.Validate if the designated constraints aren't met.

func (PreviewFlowLabelsControllerResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (PreviewFlowLabelsControllerResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (PreviewFlowLabelsControllerResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (PreviewFlowLabelsControllerResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (PreviewFlowLabelsControllerResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (PreviewFlowLabelsControllerResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

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    *v13.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() *v13.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

func (*PreviewFlowLabelsRequest) Validate added in v1.2.0

func (m *PreviewFlowLabelsRequest) Validate() error

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

func (*PreviewFlowLabelsRequest) ValidateAll added in v1.2.0

func (m *PreviewFlowLabelsRequest) ValidateAll() error

ValidateAll checks the field values on PreviewFlowLabelsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PreviewFlowLabelsRequestMultiError, or nil if none found.

type PreviewFlowLabelsRequestMultiError added in v1.2.0

type PreviewFlowLabelsRequestMultiError []error

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

func (PreviewFlowLabelsRequestMultiError) AllErrors added in v1.2.0

func (m PreviewFlowLabelsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PreviewFlowLabelsRequestMultiError) Error added in v1.2.0

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

type PreviewFlowLabelsRequestValidationError added in v1.2.0

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

PreviewFlowLabelsRequestValidationError is the validation error returned by PreviewFlowLabelsRequest.Validate if the designated constraints aren't met.

func (PreviewFlowLabelsRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (PreviewFlowLabelsRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (PreviewFlowLabelsRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (PreviewFlowLabelsRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (PreviewFlowLabelsRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (PreviewFlowLabelsRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type PreviewHTTPRequestsControllerResponse

type PreviewHTTPRequestsControllerResponse struct {
	Response *v13.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

func (*PreviewHTTPRequestsControllerResponse) Validate added in v1.2.0

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

func (*PreviewHTTPRequestsControllerResponse) ValidateAll added in v1.2.0

ValidateAll checks the field values on PreviewHTTPRequestsControllerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PreviewHTTPRequestsControllerResponseMultiError, or nil if none found.

type PreviewHTTPRequestsControllerResponseMultiError added in v1.2.0

type PreviewHTTPRequestsControllerResponseMultiError []error

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

func (PreviewHTTPRequestsControllerResponseMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (PreviewHTTPRequestsControllerResponseMultiError) Error added in v1.2.0

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

type PreviewHTTPRequestsControllerResponseValidationError added in v1.2.0

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

PreviewHTTPRequestsControllerResponseValidationError is the validation error returned by PreviewHTTPRequestsControllerResponse.Validate if the designated constraints aren't met.

func (PreviewHTTPRequestsControllerResponseValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (PreviewHTTPRequestsControllerResponseValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (PreviewHTTPRequestsControllerResponseValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (PreviewHTTPRequestsControllerResponseValidationError) Field added in v1.2.0

Field function returns field value.

func (PreviewHTTPRequestsControllerResponseValidationError) Key added in v1.2.0

Key function returns key value.

func (PreviewHTTPRequestsControllerResponseValidationError) Reason added in v1.2.0

Reason function returns reason value.

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    *v13.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

func (*PreviewHTTPRequestsRequest) Validate added in v1.2.0

func (m *PreviewHTTPRequestsRequest) Validate() error

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

func (*PreviewHTTPRequestsRequest) ValidateAll added in v1.2.0

func (m *PreviewHTTPRequestsRequest) ValidateAll() error

ValidateAll checks the field values on PreviewHTTPRequestsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PreviewHTTPRequestsRequestMultiError, or nil if none found.

type PreviewHTTPRequestsRequestMultiError added in v1.2.0

type PreviewHTTPRequestsRequestMultiError []error

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

func (PreviewHTTPRequestsRequestMultiError) AllErrors added in v1.2.0

AllErrors returns a list of validation violation errors.

func (PreviewHTTPRequestsRequestMultiError) Error added in v1.2.0

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

type PreviewHTTPRequestsRequestValidationError added in v1.2.0

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

PreviewHTTPRequestsRequestValidationError is the validation error returned by PreviewHTTPRequestsRequest.Validate if the designated constraints aren't met.

func (PreviewHTTPRequestsRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (PreviewHTTPRequestsRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (PreviewHTTPRequestsRequestValidationError) ErrorName added in v1.2.0

ErrorName returns error name.

func (PreviewHTTPRequestsRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (PreviewHTTPRequestsRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (PreviewHTTPRequestsRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type UnimplementedControllerServer

type UnimplementedControllerServer struct {
}

UnimplementedControllerServer should be embedded to have forward compatible implementations.

func (UnimplementedControllerServer) DeletePolicy added in v1.5.0

func (UnimplementedControllerServer) ListAgents

func (UnimplementedControllerServer) ListAutoScaleControlPoints added in v0.27.0

func (UnimplementedControllerServer) ListDiscoveryEntities added in v0.27.0

func (UnimplementedControllerServer) ListDiscoveryEntity added in v0.27.0

func (UnimplementedControllerServer) ListFlowControlPoints added in v0.26.0

func (UnimplementedControllerServer) PostDynamicConfig added in v1.5.0

func (UnimplementedControllerServer) UpsertPolicy added in v1.5.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