plugin

package
v0.5.3 Latest Latest
Warning

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

Go to latest
Published: Aug 8, 2023 License: MIT Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	InterfaceStatus_name = map[int32]string{
		0: "UNKNOWN",
		1: "UP",
		2: "DOWN",
	}
	InterfaceStatus_value = map[string]int32{
		"UNKNOWN": 0,
		"UP":      1,
		"DOWN":    2,
	}
)

Enum value maps for Interface_Status.

View Source
var File_tests_plugin_validate_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type IPAddress

type IPAddress struct {

	// Types that are assignable to Address:
	//
	//	*IPAddress_Ipv4
	//	*IPAddress_Ipv6
	Address isIPAddress_Address `protobuf_oneof:"Address"`
	// contains filtered or unexported fields
}

func (*IPAddress) Descriptor deprecated

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

Deprecated: Use IPAddress.ProtoReflect.Descriptor instead.

func (*IPAddress) GetAddress

func (m *IPAddress) GetAddress() isIPAddress_Address

func (*IPAddress) GetIPV4

func (x *IPAddress) GetIPV4() string

func (*IPAddress) GetIPV6

func (x *IPAddress) GetIPV6() string

func (*IPAddress) ProtoMessage

func (*IPAddress) ProtoMessage()

func (*IPAddress) ProtoReflect

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

func (*IPAddress) Reset

func (x *IPAddress) Reset()

func (*IPAddress) String

func (x *IPAddress) String() string

func (*IPAddress) Validate

func (m *IPAddress) Validate() error

Validate checks the field values on IPAddress 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 (*IPAddress) ValidateAll added in v0.5.0

func (m *IPAddress) ValidateAll() error

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

type IPAddressMultiError added in v0.3.4

type IPAddressMultiError []error

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

func (IPAddressMultiError) AllErrors added in v0.3.4

func (m IPAddressMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IPAddressMultiError) Error added in v0.3.4

func (m IPAddressMultiError) Error() string

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

type IPAddressValidationError

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

IPAddressValidationError is the validation error returned by IPAddress.Validate if the designated constraints aren't met.

func (IPAddressValidationError) Cause

func (e IPAddressValidationError) Cause() error

Cause function returns cause value.

func (IPAddressValidationError) Error

func (e IPAddressValidationError) Error() string

Error satisfies the builtin error interface

func (IPAddressValidationError) ErrorName

func (e IPAddressValidationError) ErrorName() string

ErrorName returns error name.

func (IPAddressValidationError) Field

func (e IPAddressValidationError) Field() string

Field function returns field value.

func (IPAddressValidationError) Key

Key function returns key value.

func (IPAddressValidationError) Reason

func (e IPAddressValidationError) Reason() string

Reason function returns reason value.

type IPAddress_IPV4

type IPAddress_IPV4 struct {
	IPV4 string `protobuf:"bytes,3,opt,name=ipv4,proto3,oneof"`
}

type IPAddress_IPV6

type IPAddress_IPV6 struct {
	IPV6 string `protobuf:"bytes,4,opt,name=ipv6,proto3,oneof"`
}

type IPAddresses added in v0.5.0

type IPAddresses []*IPAddress

type Interface

type Interface struct {
	Name      string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Status    InterfaceStatus `protobuf:"varint,2,opt,name=status,proto3,enum=tests.plugin.Interface_Status" json:"status,omitempty"`
	Addresses []*IPAddress    `protobuf:"bytes,3,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*Interface) Descriptor deprecated

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

Deprecated: Use Interface.ProtoReflect.Descriptor instead.

func (*Interface) GetAddresses

func (x *Interface) GetAddresses() []*IPAddress

func (*Interface) GetName

func (x *Interface) GetName() string

func (*Interface) GetStatus

func (x *Interface) GetStatus() InterfaceStatus

func (*Interface) ProtoMessage

func (*Interface) ProtoMessage()

func (*Interface) ProtoReflect

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

func (*Interface) Reset

func (x *Interface) Reset()

func (*Interface) String

func (x *Interface) String() string

func (*Interface) Validate

func (m *Interface) Validate() error

Validate checks the field values on Interface 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 (*Interface) ValidateAll added in v0.5.0

func (m *Interface) ValidateAll() error

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

type InterfaceMultiError added in v0.3.4

type InterfaceMultiError []error

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

func (InterfaceMultiError) AllErrors added in v0.3.4

func (m InterfaceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InterfaceMultiError) Error added in v0.3.4

func (m InterfaceMultiError) Error() string

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

type InterfaceStatus

type InterfaceStatus int32
const (
	StatusUnknown InterfaceStatus = 0
	StatusUp      InterfaceStatus = 1
	StatusDown    InterfaceStatus = 2
)

func (InterfaceStatus) Descriptor

func (InterfaceStatus) Enum

func (x InterfaceStatus) Enum() *InterfaceStatus

func (InterfaceStatus) EnumDescriptor deprecated

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

Deprecated: Use Interface_Status.Descriptor instead.

func (InterfaceStatus) Number

func (InterfaceStatus) String

func (x InterfaceStatus) String() string

func (InterfaceStatus) Type

type InterfaceValidationError

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

InterfaceValidationError is the validation error returned by Interface.Validate if the designated constraints aren't met.

func (InterfaceValidationError) Cause

func (e InterfaceValidationError) Cause() error

Cause function returns cause value.

func (InterfaceValidationError) Error

func (e InterfaceValidationError) Error() string

Error satisfies the builtin error interface

func (InterfaceValidationError) ErrorName

func (e InterfaceValidationError) ErrorName() string

ErrorName returns error name.

func (InterfaceValidationError) Field

func (e InterfaceValidationError) Field() string

Field function returns field value.

func (InterfaceValidationError) Key

Key function returns key value.

func (InterfaceValidationError) Reason

func (e InterfaceValidationError) Reason() string

Reason function returns reason value.

type InterfaceWithCustomTypes added in v0.5.0

type InterfaceWithCustomTypes struct {
	Name      Name        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Addresses IPAddresses `protobuf:"bytes,3,rep,name=addresses,proto3" json:"addresses,omitempty"`
	Aliases   Names       `protobuf:"bytes,4,rep,name=aliases,proto3" json:"aliases,omitempty"`
	// contains filtered or unexported fields
}

func (*InterfaceWithCustomTypes) Descriptor deprecated added in v0.5.0

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

Deprecated: Use InterfaceWithCustomTypes.ProtoReflect.Descriptor instead.

func (*InterfaceWithCustomTypes) GetAddresses added in v0.5.0

func (x *InterfaceWithCustomTypes) GetAddresses() IPAddresses

func (*InterfaceWithCustomTypes) GetAliases added in v0.5.0

func (x *InterfaceWithCustomTypes) GetAliases() Names

func (*InterfaceWithCustomTypes) GetName added in v0.5.0

func (x *InterfaceWithCustomTypes) GetName() Name

func (*InterfaceWithCustomTypes) ProtoMessage added in v0.5.0

func (*InterfaceWithCustomTypes) ProtoMessage()

func (*InterfaceWithCustomTypes) ProtoReflect added in v0.5.0

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

func (*InterfaceWithCustomTypes) Reset added in v0.5.0

func (x *InterfaceWithCustomTypes) Reset()

func (*InterfaceWithCustomTypes) String added in v0.5.0

func (x *InterfaceWithCustomTypes) String() string

func (*InterfaceWithCustomTypes) Validate added in v0.5.0

func (m *InterfaceWithCustomTypes) Validate() error

Validate checks the field values on InterfaceWithCustomTypes 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 (*InterfaceWithCustomTypes) ValidateAll added in v0.5.0

func (m *InterfaceWithCustomTypes) ValidateAll() error

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

type InterfaceWithCustomTypesMultiError added in v0.5.0

type InterfaceWithCustomTypesMultiError []error

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

func (InterfaceWithCustomTypesMultiError) AllErrors added in v0.5.0

func (m InterfaceWithCustomTypesMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InterfaceWithCustomTypesMultiError) Error added in v0.5.0

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

type InterfaceWithCustomTypesValidationError added in v0.5.0

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

InterfaceWithCustomTypesValidationError is the validation error returned by InterfaceWithCustomTypes.Validate if the designated constraints aren't met.

func (InterfaceWithCustomTypesValidationError) Cause added in v0.5.0

Cause function returns cause value.

func (InterfaceWithCustomTypesValidationError) Error added in v0.5.0

Error satisfies the builtin error interface

func (InterfaceWithCustomTypesValidationError) ErrorName added in v0.5.0

ErrorName returns error name.

func (InterfaceWithCustomTypesValidationError) Field added in v0.5.0

Field function returns field value.

func (InterfaceWithCustomTypesValidationError) Key added in v0.5.0

Key function returns key value.

func (InterfaceWithCustomTypesValidationError) Reason added in v0.5.0

Reason function returns reason value.

type Name added in v0.5.0

type Name string

type Names added in v0.5.0

type Names []string

Jump to

Keyboard shortcuts

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