implv1

package
v1.31.0 Latest Latest
Warning

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

Go to latest
Published: Apr 11, 2024 License: Apache-2.0 Imports: 20 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	RelationMetadata_RelationKind_name = map[int32]string{
		0: "UNKNOWN_KIND",
		1: "RELATION",
		2: "PERMISSION",
	}
	RelationMetadata_RelationKind_value = map[string]int32{
		"UNKNOWN_KIND": 0,
		"RELATION":     1,
		"PERMISSION":   2,
	}
)

Enum value maps for RelationMetadata_RelationKind.

View Source
var File_impl_v1_impl_proto protoreflect.FileDescriptor
View Source
var File_impl_v1_pgrevision_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type DecodedCaveat added in v1.12.0

type DecodedCaveat struct {

	// we do kind_oneof in case we decide to have non-CEL expressions
	//
	// Types that are assignable to KindOneof:
	//
	//	*DecodedCaveat_Cel
	KindOneof isDecodedCaveat_KindOneof `protobuf_oneof:"kind_oneof"`
	Name      string                    `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*DecodedCaveat) CloneMessageVT added in v1.22.0

func (m *DecodedCaveat) CloneMessageVT() proto.Message

func (*DecodedCaveat) CloneVT added in v1.13.0

func (m *DecodedCaveat) CloneVT() *DecodedCaveat

func (*DecodedCaveat) Descriptor deprecated added in v1.12.0

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

Deprecated: Use DecodedCaveat.ProtoReflect.Descriptor instead.

func (*DecodedCaveat) EqualMessageVT added in v1.22.0

func (this *DecodedCaveat) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedCaveat) EqualVT added in v1.15.0

func (this *DecodedCaveat) EqualVT(that *DecodedCaveat) bool

func (*DecodedCaveat) GetCel added in v1.12.0

func (x *DecodedCaveat) GetCel() *v1alpha1.CheckedExpr

func (*DecodedCaveat) GetKindOneof added in v1.12.0

func (m *DecodedCaveat) GetKindOneof() isDecodedCaveat_KindOneof

func (*DecodedCaveat) GetName added in v1.13.0

func (x *DecodedCaveat) GetName() string

func (*DecodedCaveat) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedCaveat) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedCaveat) MarshalToVT added in v1.13.0

func (m *DecodedCaveat) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedCaveat) MarshalVT added in v1.13.0

func (m *DecodedCaveat) MarshalVT() (dAtA []byte, err error)

func (*DecodedCaveat) ProtoMessage added in v1.12.0

func (*DecodedCaveat) ProtoMessage()

func (*DecodedCaveat) ProtoReflect added in v1.12.0

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

func (*DecodedCaveat) Reset added in v1.12.0

func (x *DecodedCaveat) Reset()

func (*DecodedCaveat) SizeVT added in v1.13.0

func (m *DecodedCaveat) SizeVT() (n int)

func (*DecodedCaveat) String added in v1.12.0

func (x *DecodedCaveat) String() string

func (*DecodedCaveat) UnmarshalVT added in v1.13.0

func (m *DecodedCaveat) UnmarshalVT(dAtA []byte) error

func (*DecodedCaveat) Validate added in v1.12.0

func (m *DecodedCaveat) Validate() error

Validate checks the field values on DecodedCaveat 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 (*DecodedCaveat) ValidateAll added in v1.12.0

func (m *DecodedCaveat) ValidateAll() error

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

type DecodedCaveatMultiError added in v1.12.0

type DecodedCaveatMultiError []error

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

func (DecodedCaveatMultiError) AllErrors added in v1.12.0

func (m DecodedCaveatMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedCaveatMultiError) Error added in v1.12.0

func (m DecodedCaveatMultiError) Error() string

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

type DecodedCaveatValidationError added in v1.12.0

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

DecodedCaveatValidationError is the validation error returned by DecodedCaveat.Validate if the designated constraints aren't met.

func (DecodedCaveatValidationError) Cause added in v1.12.0

Cause function returns cause value.

func (DecodedCaveatValidationError) Error added in v1.12.0

Error satisfies the builtin error interface

func (DecodedCaveatValidationError) ErrorName added in v1.12.0

func (e DecodedCaveatValidationError) ErrorName() string

ErrorName returns error name.

func (DecodedCaveatValidationError) Field added in v1.12.0

Field function returns field value.

func (DecodedCaveatValidationError) Key added in v1.12.0

Key function returns key value.

func (DecodedCaveatValidationError) Reason added in v1.12.0

Reason function returns reason value.

type DecodedCaveat_Cel added in v1.12.0

type DecodedCaveat_Cel struct {
	Cel *v1alpha1.CheckedExpr `protobuf:"bytes,1,opt,name=cel,proto3,oneof"`
}

func (*DecodedCaveat_Cel) CloneVT added in v1.13.0

func (m *DecodedCaveat_Cel) CloneVT() isDecodedCaveat_KindOneof

func (*DecodedCaveat_Cel) EqualVT added in v1.15.0

func (this *DecodedCaveat_Cel) EqualVT(thatIface isDecodedCaveat_KindOneof) bool

func (*DecodedCaveat_Cel) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedCaveat_Cel) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedCaveat_Cel) MarshalToVT added in v1.13.0

func (m *DecodedCaveat_Cel) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedCaveat_Cel) SizeVT added in v1.13.0

func (m *DecodedCaveat_Cel) SizeVT() (n int)

type DecodedCursor added in v1.22.0

type DecodedCursor struct {

	// we do version_oneof in case we decide to add a new version.
	//
	// Types that are assignable to VersionOneof:
	//
	//	*DecodedCursor_V1
	VersionOneof isDecodedCursor_VersionOneof `protobuf_oneof:"version_oneof"`
	// contains filtered or unexported fields
}

func (*DecodedCursor) CloneMessageVT added in v1.22.0

func (m *DecodedCursor) CloneMessageVT() proto.Message

func (*DecodedCursor) CloneVT added in v1.22.0

func (m *DecodedCursor) CloneVT() *DecodedCursor

func (*DecodedCursor) Descriptor deprecated added in v1.22.0

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

Deprecated: Use DecodedCursor.ProtoReflect.Descriptor instead.

func (*DecodedCursor) EqualMessageVT added in v1.22.0

func (this *DecodedCursor) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedCursor) EqualVT added in v1.22.0

func (this *DecodedCursor) EqualVT(that *DecodedCursor) bool

func (*DecodedCursor) GetV1 added in v1.22.0

func (x *DecodedCursor) GetV1() *V1Cursor

func (*DecodedCursor) GetVersionOneof added in v1.22.0

func (m *DecodedCursor) GetVersionOneof() isDecodedCursor_VersionOneof

func (*DecodedCursor) MarshalToSizedBufferVT added in v1.22.0

func (m *DecodedCursor) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedCursor) MarshalToVT added in v1.22.0

func (m *DecodedCursor) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedCursor) MarshalVT added in v1.22.0

func (m *DecodedCursor) MarshalVT() (dAtA []byte, err error)

func (*DecodedCursor) ProtoMessage added in v1.22.0

func (*DecodedCursor) ProtoMessage()

func (*DecodedCursor) ProtoReflect added in v1.22.0

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

func (*DecodedCursor) Reset added in v1.22.0

func (x *DecodedCursor) Reset()

func (*DecodedCursor) SizeVT added in v1.22.0

func (m *DecodedCursor) SizeVT() (n int)

func (*DecodedCursor) String added in v1.22.0

func (x *DecodedCursor) String() string

func (*DecodedCursor) UnmarshalVT added in v1.22.0

func (m *DecodedCursor) UnmarshalVT(dAtA []byte) error

func (*DecodedCursor) Validate added in v1.22.0

func (m *DecodedCursor) Validate() error

Validate checks the field values on DecodedCursor 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 (*DecodedCursor) ValidateAll added in v1.22.0

func (m *DecodedCursor) ValidateAll() error

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

type DecodedCursorMultiError added in v1.22.0

type DecodedCursorMultiError []error

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

func (DecodedCursorMultiError) AllErrors added in v1.22.0

func (m DecodedCursorMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedCursorMultiError) Error added in v1.22.0

func (m DecodedCursorMultiError) Error() string

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

type DecodedCursorValidationError added in v1.22.0

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

DecodedCursorValidationError is the validation error returned by DecodedCursor.Validate if the designated constraints aren't met.

func (DecodedCursorValidationError) Cause added in v1.22.0

Cause function returns cause value.

func (DecodedCursorValidationError) Error added in v1.22.0

Error satisfies the builtin error interface

func (DecodedCursorValidationError) ErrorName added in v1.22.0

func (e DecodedCursorValidationError) ErrorName() string

ErrorName returns error name.

func (DecodedCursorValidationError) Field added in v1.22.0

Field function returns field value.

func (DecodedCursorValidationError) Key added in v1.22.0

Key function returns key value.

func (DecodedCursorValidationError) Reason added in v1.22.0

Reason function returns reason value.

type DecodedCursor_V1 added in v1.22.0

type DecodedCursor_V1 struct {
	V1 *V1Cursor `protobuf:"bytes,1,opt,name=v1,proto3,oneof"`
}

func (*DecodedCursor_V1) CloneVT added in v1.22.0

func (m *DecodedCursor_V1) CloneVT() isDecodedCursor_VersionOneof

func (*DecodedCursor_V1) EqualVT added in v1.22.0

func (this *DecodedCursor_V1) EqualVT(thatIface isDecodedCursor_VersionOneof) bool

func (*DecodedCursor_V1) MarshalToSizedBufferVT added in v1.22.0

func (m *DecodedCursor_V1) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedCursor_V1) MarshalToVT added in v1.22.0

func (m *DecodedCursor_V1) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedCursor_V1) SizeVT added in v1.22.0

func (m *DecodedCursor_V1) SizeVT() (n int)

type DecodedZedToken

type DecodedZedToken struct {

	// Types that are assignable to VersionOneof:
	//
	//	*DecodedZedToken_DeprecatedV1Zookie
	//	*DecodedZedToken_V1
	VersionOneof isDecodedZedToken_VersionOneof `protobuf_oneof:"version_oneof"`
	// contains filtered or unexported fields
}

func (*DecodedZedToken) CloneMessageVT added in v1.22.0

func (m *DecodedZedToken) CloneMessageVT() proto.Message

func (*DecodedZedToken) CloneVT added in v1.13.0

func (m *DecodedZedToken) CloneVT() *DecodedZedToken

func (*DecodedZedToken) Descriptor deprecated

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

Deprecated: Use DecodedZedToken.ProtoReflect.Descriptor instead.

func (*DecodedZedToken) EqualMessageVT added in v1.22.0

func (this *DecodedZedToken) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedZedToken) EqualVT added in v1.15.0

func (this *DecodedZedToken) EqualVT(that *DecodedZedToken) bool

func (*DecodedZedToken) GetDeprecatedV1Zookie

func (x *DecodedZedToken) GetDeprecatedV1Zookie() *DecodedZedToken_V1Zookie

func (*DecodedZedToken) GetV1

func (*DecodedZedToken) GetVersionOneof

func (m *DecodedZedToken) GetVersionOneof() isDecodedZedToken_VersionOneof

func (*DecodedZedToken) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZedToken) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZedToken) MarshalToVT added in v1.13.0

func (m *DecodedZedToken) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZedToken) MarshalVT added in v1.13.0

func (m *DecodedZedToken) MarshalVT() (dAtA []byte, err error)

func (*DecodedZedToken) ProtoMessage

func (*DecodedZedToken) ProtoMessage()

func (*DecodedZedToken) ProtoReflect

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

func (*DecodedZedToken) Reset

func (x *DecodedZedToken) Reset()

func (*DecodedZedToken) SizeVT added in v1.13.0

func (m *DecodedZedToken) SizeVT() (n int)

func (*DecodedZedToken) String

func (x *DecodedZedToken) String() string

func (*DecodedZedToken) UnmarshalVT added in v1.13.0

func (m *DecodedZedToken) UnmarshalVT(dAtA []byte) error

func (*DecodedZedToken) Validate

func (m *DecodedZedToken) Validate() error

Validate checks the field values on DecodedZedToken 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 (*DecodedZedToken) ValidateAll added in v1.6.0

func (m *DecodedZedToken) ValidateAll() error

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

type DecodedZedTokenMultiError added in v1.6.0

type DecodedZedTokenMultiError []error

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

func (DecodedZedTokenMultiError) AllErrors added in v1.6.0

func (m DecodedZedTokenMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedZedTokenMultiError) Error added in v1.6.0

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

type DecodedZedTokenValidationError

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

DecodedZedTokenValidationError is the validation error returned by DecodedZedToken.Validate if the designated constraints aren't met.

func (DecodedZedTokenValidationError) Cause

Cause function returns cause value.

func (DecodedZedTokenValidationError) Error

Error satisfies the builtin error interface

func (DecodedZedTokenValidationError) ErrorName

func (e DecodedZedTokenValidationError) ErrorName() string

ErrorName returns error name.

func (DecodedZedTokenValidationError) Field

Field function returns field value.

func (DecodedZedTokenValidationError) Key

Key function returns key value.

func (DecodedZedTokenValidationError) Reason

Reason function returns reason value.

type DecodedZedToken_DeprecatedV1Zookie

type DecodedZedToken_DeprecatedV1Zookie struct {
	DeprecatedV1Zookie *DecodedZedToken_V1Zookie `protobuf:"bytes,2,opt,name=deprecated_v1_zookie,json=deprecatedV1Zookie,proto3,oneof"`
}

func (*DecodedZedToken_DeprecatedV1Zookie) CloneVT added in v1.13.0

func (m *DecodedZedToken_DeprecatedV1Zookie) CloneVT() isDecodedZedToken_VersionOneof

func (*DecodedZedToken_DeprecatedV1Zookie) EqualVT added in v1.15.0

func (this *DecodedZedToken_DeprecatedV1Zookie) EqualVT(thatIface isDecodedZedToken_VersionOneof) bool

func (*DecodedZedToken_DeprecatedV1Zookie) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZedToken_DeprecatedV1Zookie) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZedToken_DeprecatedV1Zookie) MarshalToVT added in v1.13.0

func (m *DecodedZedToken_DeprecatedV1Zookie) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZedToken_DeprecatedV1Zookie) SizeVT added in v1.13.0

func (m *DecodedZedToken_DeprecatedV1Zookie) SizeVT() (n int)

type DecodedZedToken_V1

type DecodedZedToken_V1 struct {
	V1 *DecodedZedToken_V1ZedToken `protobuf:"bytes,3,opt,name=v1,proto3,oneof"`
}

func (*DecodedZedToken_V1) CloneVT added in v1.13.0

func (m *DecodedZedToken_V1) CloneVT() isDecodedZedToken_VersionOneof

func (*DecodedZedToken_V1) EqualVT added in v1.15.0

func (this *DecodedZedToken_V1) EqualVT(thatIface isDecodedZedToken_VersionOneof) bool

func (*DecodedZedToken_V1) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZedToken_V1) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZedToken_V1) MarshalToVT added in v1.13.0

func (m *DecodedZedToken_V1) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZedToken_V1) SizeVT added in v1.13.0

func (m *DecodedZedToken_V1) SizeVT() (n int)

type DecodedZedToken_V1ZedToken

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

func (*DecodedZedToken_V1ZedToken) CloneMessageVT added in v1.22.0

func (m *DecodedZedToken_V1ZedToken) CloneMessageVT() proto.Message

func (*DecodedZedToken_V1ZedToken) CloneVT added in v1.13.0

func (*DecodedZedToken_V1ZedToken) Descriptor deprecated

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

Deprecated: Use DecodedZedToken_V1ZedToken.ProtoReflect.Descriptor instead.

func (*DecodedZedToken_V1ZedToken) EqualMessageVT added in v1.22.0

func (this *DecodedZedToken_V1ZedToken) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedZedToken_V1ZedToken) EqualVT added in v1.15.0

func (*DecodedZedToken_V1ZedToken) GetRevision

func (x *DecodedZedToken_V1ZedToken) GetRevision() string

func (*DecodedZedToken_V1ZedToken) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZedToken_V1ZedToken) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZedToken_V1ZedToken) MarshalToVT added in v1.13.0

func (m *DecodedZedToken_V1ZedToken) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZedToken_V1ZedToken) MarshalVT added in v1.13.0

func (m *DecodedZedToken_V1ZedToken) MarshalVT() (dAtA []byte, err error)

func (*DecodedZedToken_V1ZedToken) ProtoMessage

func (*DecodedZedToken_V1ZedToken) ProtoMessage()

func (*DecodedZedToken_V1ZedToken) ProtoReflect

func (*DecodedZedToken_V1ZedToken) Reset

func (x *DecodedZedToken_V1ZedToken) Reset()

func (*DecodedZedToken_V1ZedToken) SizeVT added in v1.13.0

func (m *DecodedZedToken_V1ZedToken) SizeVT() (n int)

func (*DecodedZedToken_V1ZedToken) String

func (x *DecodedZedToken_V1ZedToken) String() string

func (*DecodedZedToken_V1ZedToken) UnmarshalVT added in v1.13.0

func (m *DecodedZedToken_V1ZedToken) UnmarshalVT(dAtA []byte) error

func (*DecodedZedToken_V1ZedToken) Validate

func (m *DecodedZedToken_V1ZedToken) Validate() error

Validate checks the field values on DecodedZedToken_V1ZedToken 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 (*DecodedZedToken_V1ZedToken) ValidateAll added in v1.6.0

func (m *DecodedZedToken_V1ZedToken) ValidateAll() error

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

type DecodedZedToken_V1ZedTokenMultiError added in v1.6.0

type DecodedZedToken_V1ZedTokenMultiError []error

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

func (DecodedZedToken_V1ZedTokenMultiError) AllErrors added in v1.6.0

AllErrors returns a list of validation violation errors.

func (DecodedZedToken_V1ZedTokenMultiError) Error added in v1.6.0

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

type DecodedZedToken_V1ZedTokenValidationError

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

DecodedZedToken_V1ZedTokenValidationError is the validation error returned by DecodedZedToken_V1ZedToken.Validate if the designated constraints aren't met.

func (DecodedZedToken_V1ZedTokenValidationError) Cause

Cause function returns cause value.

func (DecodedZedToken_V1ZedTokenValidationError) Error

Error satisfies the builtin error interface

func (DecodedZedToken_V1ZedTokenValidationError) ErrorName

ErrorName returns error name.

func (DecodedZedToken_V1ZedTokenValidationError) Field

Field function returns field value.

func (DecodedZedToken_V1ZedTokenValidationError) Key

Key function returns key value.

func (DecodedZedToken_V1ZedTokenValidationError) Reason

Reason function returns reason value.

type DecodedZedToken_V1Zookie

type DecodedZedToken_V1Zookie struct {
	Revision uint64 `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// contains filtered or unexported fields
}

func (*DecodedZedToken_V1Zookie) CloneMessageVT added in v1.22.0

func (m *DecodedZedToken_V1Zookie) CloneMessageVT() proto.Message

func (*DecodedZedToken_V1Zookie) CloneVT added in v1.13.0

func (*DecodedZedToken_V1Zookie) Descriptor deprecated

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

Deprecated: Use DecodedZedToken_V1Zookie.ProtoReflect.Descriptor instead.

func (*DecodedZedToken_V1Zookie) EqualMessageVT added in v1.22.0

func (this *DecodedZedToken_V1Zookie) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedZedToken_V1Zookie) EqualVT added in v1.15.0

func (*DecodedZedToken_V1Zookie) GetRevision

func (x *DecodedZedToken_V1Zookie) GetRevision() uint64

func (*DecodedZedToken_V1Zookie) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZedToken_V1Zookie) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZedToken_V1Zookie) MarshalToVT added in v1.13.0

func (m *DecodedZedToken_V1Zookie) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZedToken_V1Zookie) MarshalVT added in v1.13.0

func (m *DecodedZedToken_V1Zookie) MarshalVT() (dAtA []byte, err error)

func (*DecodedZedToken_V1Zookie) ProtoMessage

func (*DecodedZedToken_V1Zookie) ProtoMessage()

func (*DecodedZedToken_V1Zookie) ProtoReflect

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

func (*DecodedZedToken_V1Zookie) Reset

func (x *DecodedZedToken_V1Zookie) Reset()

func (*DecodedZedToken_V1Zookie) SizeVT added in v1.13.0

func (m *DecodedZedToken_V1Zookie) SizeVT() (n int)

func (*DecodedZedToken_V1Zookie) String

func (x *DecodedZedToken_V1Zookie) String() string

func (*DecodedZedToken_V1Zookie) UnmarshalVT added in v1.13.0

func (m *DecodedZedToken_V1Zookie) UnmarshalVT(dAtA []byte) error

func (*DecodedZedToken_V1Zookie) Validate

func (m *DecodedZedToken_V1Zookie) Validate() error

Validate checks the field values on DecodedZedToken_V1Zookie 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 (*DecodedZedToken_V1Zookie) ValidateAll added in v1.6.0

func (m *DecodedZedToken_V1Zookie) ValidateAll() error

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

type DecodedZedToken_V1ZookieMultiError added in v1.6.0

type DecodedZedToken_V1ZookieMultiError []error

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

func (DecodedZedToken_V1ZookieMultiError) AllErrors added in v1.6.0

func (m DecodedZedToken_V1ZookieMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedZedToken_V1ZookieMultiError) Error added in v1.6.0

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

type DecodedZedToken_V1ZookieValidationError

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

DecodedZedToken_V1ZookieValidationError is the validation error returned by DecodedZedToken_V1Zookie.Validate if the designated constraints aren't met.

func (DecodedZedToken_V1ZookieValidationError) Cause

Cause function returns cause value.

func (DecodedZedToken_V1ZookieValidationError) Error

Error satisfies the builtin error interface

func (DecodedZedToken_V1ZookieValidationError) ErrorName

ErrorName returns error name.

func (DecodedZedToken_V1ZookieValidationError) Field

Field function returns field value.

func (DecodedZedToken_V1ZookieValidationError) Key

Key function returns key value.

func (DecodedZedToken_V1ZookieValidationError) Reason

Reason function returns reason value.

type DecodedZookie

type DecodedZookie struct {
	Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	// Types that are assignable to VersionOneof:
	//
	//	*DecodedZookie_V1
	//	*DecodedZookie_V2
	VersionOneof isDecodedZookie_VersionOneof `protobuf_oneof:"version_oneof"`
	// contains filtered or unexported fields
}

func (*DecodedZookie) CloneMessageVT added in v1.22.0

func (m *DecodedZookie) CloneMessageVT() proto.Message

func (*DecodedZookie) CloneVT added in v1.13.0

func (m *DecodedZookie) CloneVT() *DecodedZookie

func (*DecodedZookie) Descriptor deprecated

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

Deprecated: Use DecodedZookie.ProtoReflect.Descriptor instead.

func (*DecodedZookie) EqualMessageVT added in v1.22.0

func (this *DecodedZookie) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedZookie) EqualVT added in v1.15.0

func (this *DecodedZookie) EqualVT(that *DecodedZookie) bool

func (*DecodedZookie) GetV1

func (*DecodedZookie) GetV2

func (*DecodedZookie) GetVersion

func (x *DecodedZookie) GetVersion() uint32

func (*DecodedZookie) GetVersionOneof

func (m *DecodedZookie) GetVersionOneof() isDecodedZookie_VersionOneof

func (*DecodedZookie) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZookie) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZookie) MarshalToVT added in v1.13.0

func (m *DecodedZookie) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZookie) MarshalVT added in v1.13.0

func (m *DecodedZookie) MarshalVT() (dAtA []byte, err error)

func (*DecodedZookie) ProtoMessage

func (*DecodedZookie) ProtoMessage()

func (*DecodedZookie) ProtoReflect

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

func (*DecodedZookie) Reset

func (x *DecodedZookie) Reset()

func (*DecodedZookie) SizeVT added in v1.13.0

func (m *DecodedZookie) SizeVT() (n int)

func (*DecodedZookie) String

func (x *DecodedZookie) String() string

func (*DecodedZookie) UnmarshalVT added in v1.13.0

func (m *DecodedZookie) UnmarshalVT(dAtA []byte) error

func (*DecodedZookie) Validate

func (m *DecodedZookie) Validate() error

Validate checks the field values on DecodedZookie 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 (*DecodedZookie) ValidateAll added in v1.6.0

func (m *DecodedZookie) ValidateAll() error

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

type DecodedZookieMultiError added in v1.6.0

type DecodedZookieMultiError []error

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

func (DecodedZookieMultiError) AllErrors added in v1.6.0

func (m DecodedZookieMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedZookieMultiError) Error added in v1.6.0

func (m DecodedZookieMultiError) Error() string

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

type DecodedZookieValidationError

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

DecodedZookieValidationError is the validation error returned by DecodedZookie.Validate if the designated constraints aren't met.

func (DecodedZookieValidationError) Cause

Cause function returns cause value.

func (DecodedZookieValidationError) Error

Error satisfies the builtin error interface

func (DecodedZookieValidationError) ErrorName

func (e DecodedZookieValidationError) ErrorName() string

ErrorName returns error name.

func (DecodedZookieValidationError) Field

Field function returns field value.

func (DecodedZookieValidationError) Key

Key function returns key value.

func (DecodedZookieValidationError) Reason

Reason function returns reason value.

type DecodedZookie_V1

type DecodedZookie_V1 struct {
	V1 *DecodedZookie_V1Zookie `protobuf:"bytes,2,opt,name=v1,proto3,oneof"`
}

func (*DecodedZookie_V1) CloneVT added in v1.13.0

func (m *DecodedZookie_V1) CloneVT() isDecodedZookie_VersionOneof

func (*DecodedZookie_V1) EqualVT added in v1.15.0

func (this *DecodedZookie_V1) EqualVT(thatIface isDecodedZookie_VersionOneof) bool

func (*DecodedZookie_V1) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZookie_V1) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZookie_V1) MarshalToVT added in v1.13.0

func (m *DecodedZookie_V1) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZookie_V1) SizeVT added in v1.13.0

func (m *DecodedZookie_V1) SizeVT() (n int)

type DecodedZookie_V1Zookie

type DecodedZookie_V1Zookie struct {
	Revision uint64 `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// contains filtered or unexported fields
}

func (*DecodedZookie_V1Zookie) CloneMessageVT added in v1.22.0

func (m *DecodedZookie_V1Zookie) CloneMessageVT() proto.Message

func (*DecodedZookie_V1Zookie) CloneVT added in v1.13.0

func (*DecodedZookie_V1Zookie) Descriptor deprecated

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

Deprecated: Use DecodedZookie_V1Zookie.ProtoReflect.Descriptor instead.

func (*DecodedZookie_V1Zookie) EqualMessageVT added in v1.22.0

func (this *DecodedZookie_V1Zookie) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedZookie_V1Zookie) EqualVT added in v1.15.0

func (this *DecodedZookie_V1Zookie) EqualVT(that *DecodedZookie_V1Zookie) bool

func (*DecodedZookie_V1Zookie) GetRevision

func (x *DecodedZookie_V1Zookie) GetRevision() uint64

func (*DecodedZookie_V1Zookie) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZookie_V1Zookie) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZookie_V1Zookie) MarshalToVT added in v1.13.0

func (m *DecodedZookie_V1Zookie) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZookie_V1Zookie) MarshalVT added in v1.13.0

func (m *DecodedZookie_V1Zookie) MarshalVT() (dAtA []byte, err error)

func (*DecodedZookie_V1Zookie) ProtoMessage

func (*DecodedZookie_V1Zookie) ProtoMessage()

func (*DecodedZookie_V1Zookie) ProtoReflect

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

func (*DecodedZookie_V1Zookie) Reset

func (x *DecodedZookie_V1Zookie) Reset()

func (*DecodedZookie_V1Zookie) SizeVT added in v1.13.0

func (m *DecodedZookie_V1Zookie) SizeVT() (n int)

func (*DecodedZookie_V1Zookie) String

func (x *DecodedZookie_V1Zookie) String() string

func (*DecodedZookie_V1Zookie) UnmarshalVT added in v1.13.0

func (m *DecodedZookie_V1Zookie) UnmarshalVT(dAtA []byte) error

func (*DecodedZookie_V1Zookie) Validate

func (m *DecodedZookie_V1Zookie) Validate() error

Validate checks the field values on DecodedZookie_V1Zookie 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 (*DecodedZookie_V1Zookie) ValidateAll added in v1.6.0

func (m *DecodedZookie_V1Zookie) ValidateAll() error

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

type DecodedZookie_V1ZookieMultiError added in v1.6.0

type DecodedZookie_V1ZookieMultiError []error

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

func (DecodedZookie_V1ZookieMultiError) AllErrors added in v1.6.0

func (m DecodedZookie_V1ZookieMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedZookie_V1ZookieMultiError) Error added in v1.6.0

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

type DecodedZookie_V1ZookieValidationError

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

DecodedZookie_V1ZookieValidationError is the validation error returned by DecodedZookie_V1Zookie.Validate if the designated constraints aren't met.

func (DecodedZookie_V1ZookieValidationError) Cause

Cause function returns cause value.

func (DecodedZookie_V1ZookieValidationError) Error

Error satisfies the builtin error interface

func (DecodedZookie_V1ZookieValidationError) ErrorName

ErrorName returns error name.

func (DecodedZookie_V1ZookieValidationError) Field

Field function returns field value.

func (DecodedZookie_V1ZookieValidationError) Key

Key function returns key value.

func (DecodedZookie_V1ZookieValidationError) Reason

Reason function returns reason value.

type DecodedZookie_V2

type DecodedZookie_V2 struct {
	V2 *DecodedZookie_V2Zookie `protobuf:"bytes,3,opt,name=v2,proto3,oneof"`
}

func (*DecodedZookie_V2) CloneVT added in v1.13.0

func (m *DecodedZookie_V2) CloneVT() isDecodedZookie_VersionOneof

func (*DecodedZookie_V2) EqualVT added in v1.15.0

func (this *DecodedZookie_V2) EqualVT(thatIface isDecodedZookie_VersionOneof) bool

func (*DecodedZookie_V2) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZookie_V2) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZookie_V2) MarshalToVT added in v1.13.0

func (m *DecodedZookie_V2) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZookie_V2) SizeVT added in v1.13.0

func (m *DecodedZookie_V2) SizeVT() (n int)

type DecodedZookie_V2Zookie

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

func (*DecodedZookie_V2Zookie) CloneMessageVT added in v1.22.0

func (m *DecodedZookie_V2Zookie) CloneMessageVT() proto.Message

func (*DecodedZookie_V2Zookie) CloneVT added in v1.13.0

func (*DecodedZookie_V2Zookie) Descriptor deprecated

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

Deprecated: Use DecodedZookie_V2Zookie.ProtoReflect.Descriptor instead.

func (*DecodedZookie_V2Zookie) EqualMessageVT added in v1.22.0

func (this *DecodedZookie_V2Zookie) EqualMessageVT(thatMsg proto.Message) bool

func (*DecodedZookie_V2Zookie) EqualVT added in v1.15.0

func (this *DecodedZookie_V2Zookie) EqualVT(that *DecodedZookie_V2Zookie) bool

func (*DecodedZookie_V2Zookie) GetRevision

func (x *DecodedZookie_V2Zookie) GetRevision() string

func (*DecodedZookie_V2Zookie) MarshalToSizedBufferVT added in v1.13.0

func (m *DecodedZookie_V2Zookie) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DecodedZookie_V2Zookie) MarshalToVT added in v1.13.0

func (m *DecodedZookie_V2Zookie) MarshalToVT(dAtA []byte) (int, error)

func (*DecodedZookie_V2Zookie) MarshalVT added in v1.13.0

func (m *DecodedZookie_V2Zookie) MarshalVT() (dAtA []byte, err error)

func (*DecodedZookie_V2Zookie) ProtoMessage

func (*DecodedZookie_V2Zookie) ProtoMessage()

func (*DecodedZookie_V2Zookie) ProtoReflect

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

func (*DecodedZookie_V2Zookie) Reset

func (x *DecodedZookie_V2Zookie) Reset()

func (*DecodedZookie_V2Zookie) SizeVT added in v1.13.0

func (m *DecodedZookie_V2Zookie) SizeVT() (n int)

func (*DecodedZookie_V2Zookie) String

func (x *DecodedZookie_V2Zookie) String() string

func (*DecodedZookie_V2Zookie) UnmarshalVT added in v1.13.0

func (m *DecodedZookie_V2Zookie) UnmarshalVT(dAtA []byte) error

func (*DecodedZookie_V2Zookie) Validate

func (m *DecodedZookie_V2Zookie) Validate() error

Validate checks the field values on DecodedZookie_V2Zookie 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 (*DecodedZookie_V2Zookie) ValidateAll added in v1.6.0

func (m *DecodedZookie_V2Zookie) ValidateAll() error

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

type DecodedZookie_V2ZookieMultiError added in v1.6.0

type DecodedZookie_V2ZookieMultiError []error

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

func (DecodedZookie_V2ZookieMultiError) AllErrors added in v1.6.0

func (m DecodedZookie_V2ZookieMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DecodedZookie_V2ZookieMultiError) Error added in v1.6.0

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

type DecodedZookie_V2ZookieValidationError

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

DecodedZookie_V2ZookieValidationError is the validation error returned by DecodedZookie_V2Zookie.Validate if the designated constraints aren't met.

func (DecodedZookie_V2ZookieValidationError) Cause

Cause function returns cause value.

func (DecodedZookie_V2ZookieValidationError) Error

Error satisfies the builtin error interface

func (DecodedZookie_V2ZookieValidationError) ErrorName

ErrorName returns error name.

func (DecodedZookie_V2ZookieValidationError) Field

Field function returns field value.

func (DecodedZookie_V2ZookieValidationError) Key

Key function returns key value.

func (DecodedZookie_V2ZookieValidationError) Reason

Reason function returns reason value.

type DocComment

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

func (*DocComment) CloneMessageVT added in v1.22.0

func (m *DocComment) CloneMessageVT() proto.Message

func (*DocComment) CloneVT added in v1.13.0

func (m *DocComment) CloneVT() *DocComment

func (*DocComment) Descriptor deprecated

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

Deprecated: Use DocComment.ProtoReflect.Descriptor instead.

func (*DocComment) EqualMessageVT added in v1.22.0

func (this *DocComment) EqualMessageVT(thatMsg proto.Message) bool

func (*DocComment) EqualVT added in v1.15.0

func (this *DocComment) EqualVT(that *DocComment) bool

func (*DocComment) GetComment

func (x *DocComment) GetComment() string

func (*DocComment) MarshalToSizedBufferVT added in v1.13.0

func (m *DocComment) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DocComment) MarshalToVT added in v1.13.0

func (m *DocComment) MarshalToVT(dAtA []byte) (int, error)

func (*DocComment) MarshalVT added in v1.13.0

func (m *DocComment) MarshalVT() (dAtA []byte, err error)

func (*DocComment) ProtoMessage

func (*DocComment) ProtoMessage()

func (*DocComment) ProtoReflect

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

func (*DocComment) Reset

func (x *DocComment) Reset()

func (*DocComment) SizeVT added in v1.13.0

func (m *DocComment) SizeVT() (n int)

func (*DocComment) String

func (x *DocComment) String() string

func (*DocComment) UnmarshalVT added in v1.13.0

func (m *DocComment) UnmarshalVT(dAtA []byte) error

func (*DocComment) Validate

func (m *DocComment) Validate() error

Validate checks the field values on DocComment 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 (*DocComment) ValidateAll added in v1.6.0

func (m *DocComment) ValidateAll() error

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

type DocCommentMultiError added in v1.6.0

type DocCommentMultiError []error

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

func (DocCommentMultiError) AllErrors added in v1.6.0

func (m DocCommentMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DocCommentMultiError) Error added in v1.6.0

func (m DocCommentMultiError) Error() string

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

type DocCommentValidationError

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

DocCommentValidationError is the validation error returned by DocComment.Validate if the designated constraints aren't met.

func (DocCommentValidationError) Cause

func (e DocCommentValidationError) Cause() error

Cause function returns cause value.

func (DocCommentValidationError) Error

Error satisfies the builtin error interface

func (DocCommentValidationError) ErrorName

func (e DocCommentValidationError) ErrorName() string

ErrorName returns error name.

func (DocCommentValidationError) Field

Field function returns field value.

func (DocCommentValidationError) Key

Key function returns key value.

func (DocCommentValidationError) Reason

func (e DocCommentValidationError) Reason() string

Reason function returns reason value.

type NamespaceAndRevision

type NamespaceAndRevision struct {
	NamespaceName string `protobuf:"bytes,1,opt,name=namespace_name,json=namespaceName,proto3" json:"namespace_name,omitempty"`
	Revision      string `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
	// contains filtered or unexported fields
}

func (*NamespaceAndRevision) CloneMessageVT added in v1.22.0

func (m *NamespaceAndRevision) CloneMessageVT() proto.Message

func (*NamespaceAndRevision) CloneVT added in v1.13.0

func (*NamespaceAndRevision) Descriptor deprecated

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

Deprecated: Use NamespaceAndRevision.ProtoReflect.Descriptor instead.

func (*NamespaceAndRevision) EqualMessageVT added in v1.22.0

func (this *NamespaceAndRevision) EqualMessageVT(thatMsg proto.Message) bool

func (*NamespaceAndRevision) EqualVT added in v1.15.0

func (this *NamespaceAndRevision) EqualVT(that *NamespaceAndRevision) bool

func (*NamespaceAndRevision) GetNamespaceName

func (x *NamespaceAndRevision) GetNamespaceName() string

func (*NamespaceAndRevision) GetRevision

func (x *NamespaceAndRevision) GetRevision() string

func (*NamespaceAndRevision) MarshalToSizedBufferVT added in v1.13.0

func (m *NamespaceAndRevision) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*NamespaceAndRevision) MarshalToVT added in v1.13.0

func (m *NamespaceAndRevision) MarshalToVT(dAtA []byte) (int, error)

func (*NamespaceAndRevision) MarshalVT added in v1.13.0

func (m *NamespaceAndRevision) MarshalVT() (dAtA []byte, err error)

func (*NamespaceAndRevision) ProtoMessage

func (*NamespaceAndRevision) ProtoMessage()

func (*NamespaceAndRevision) ProtoReflect

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

func (*NamespaceAndRevision) Reset

func (x *NamespaceAndRevision) Reset()

func (*NamespaceAndRevision) SizeVT added in v1.13.0

func (m *NamespaceAndRevision) SizeVT() (n int)

func (*NamespaceAndRevision) String

func (x *NamespaceAndRevision) String() string

func (*NamespaceAndRevision) UnmarshalVT added in v1.13.0

func (m *NamespaceAndRevision) UnmarshalVT(dAtA []byte) error

func (*NamespaceAndRevision) Validate

func (m *NamespaceAndRevision) Validate() error

Validate checks the field values on NamespaceAndRevision 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 (*NamespaceAndRevision) ValidateAll added in v1.6.0

func (m *NamespaceAndRevision) ValidateAll() error

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

type NamespaceAndRevisionMultiError added in v1.6.0

type NamespaceAndRevisionMultiError []error

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

func (NamespaceAndRevisionMultiError) AllErrors added in v1.6.0

func (m NamespaceAndRevisionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NamespaceAndRevisionMultiError) Error added in v1.6.0

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

type NamespaceAndRevisionValidationError

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

NamespaceAndRevisionValidationError is the validation error returned by NamespaceAndRevision.Validate if the designated constraints aren't met.

func (NamespaceAndRevisionValidationError) Cause

Cause function returns cause value.

func (NamespaceAndRevisionValidationError) Error

Error satisfies the builtin error interface

func (NamespaceAndRevisionValidationError) ErrorName

ErrorName returns error name.

func (NamespaceAndRevisionValidationError) Field

Field function returns field value.

func (NamespaceAndRevisionValidationError) Key

Key function returns key value.

func (NamespaceAndRevisionValidationError) Reason

Reason function returns reason value.

type PostgresRevision added in v1.18.0

type PostgresRevision struct {
	Xmin         uint64  `protobuf:"varint,1,opt,name=xmin,proto3" json:"xmin,omitempty"`
	RelativeXmax int64   `protobuf:"varint,2,opt,name=relative_xmax,json=relativeXmax,proto3" json:"relative_xmax,omitempty"`
	RelativeXips []int64 `protobuf:"varint,3,rep,packed,name=relative_xips,json=relativeXips,proto3" json:"relative_xips,omitempty"`
	// contains filtered or unexported fields
}

* PostgresRevision is a compact binary encoding of a postgres snapshot as described in the offial documentation here: https://www.postgresql.org/docs/current/functions-info.html#FUNCTIONS-PG-SNAPSHOT-PARTS

We use relative offsets for xmax and the xips to reduce the number of bytes required for binary encoding using the protobuf varint datatype: https://protobuf.dev/programming-guides/encoding/#varints

func (*PostgresRevision) CloneMessageVT added in v1.22.0

func (m *PostgresRevision) CloneMessageVT() proto.Message

func (*PostgresRevision) CloneVT added in v1.18.0

func (m *PostgresRevision) CloneVT() *PostgresRevision

func (*PostgresRevision) Descriptor deprecated added in v1.18.0

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

Deprecated: Use PostgresRevision.ProtoReflect.Descriptor instead.

func (*PostgresRevision) EqualMessageVT added in v1.22.0

func (this *PostgresRevision) EqualMessageVT(thatMsg proto.Message) bool

func (*PostgresRevision) EqualVT added in v1.18.0

func (this *PostgresRevision) EqualVT(that *PostgresRevision) bool

func (*PostgresRevision) GetRelativeXips added in v1.18.0

func (x *PostgresRevision) GetRelativeXips() []int64

func (*PostgresRevision) GetRelativeXmax added in v1.18.0

func (x *PostgresRevision) GetRelativeXmax() int64

func (*PostgresRevision) GetXmin added in v1.18.0

func (x *PostgresRevision) GetXmin() uint64

func (*PostgresRevision) MarshalToSizedBufferVT added in v1.18.0

func (m *PostgresRevision) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*PostgresRevision) MarshalToVT added in v1.18.0

func (m *PostgresRevision) MarshalToVT(dAtA []byte) (int, error)

func (*PostgresRevision) MarshalVT added in v1.18.0

func (m *PostgresRevision) MarshalVT() (dAtA []byte, err error)

func (*PostgresRevision) ProtoMessage added in v1.18.0

func (*PostgresRevision) ProtoMessage()

func (*PostgresRevision) ProtoReflect added in v1.18.0

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

func (*PostgresRevision) Reset added in v1.18.0

func (x *PostgresRevision) Reset()

func (*PostgresRevision) SizeVT added in v1.18.0

func (m *PostgresRevision) SizeVT() (n int)

func (*PostgresRevision) String added in v1.18.0

func (x *PostgresRevision) String() string

func (*PostgresRevision) UnmarshalVT added in v1.18.0

func (m *PostgresRevision) UnmarshalVT(dAtA []byte) error

func (*PostgresRevision) Validate added in v1.18.0

func (m *PostgresRevision) Validate() error

Validate checks the field values on PostgresRevision 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 (*PostgresRevision) ValidateAll added in v1.18.0

func (m *PostgresRevision) ValidateAll() error

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

type PostgresRevisionMultiError added in v1.18.0

type PostgresRevisionMultiError []error

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

func (PostgresRevisionMultiError) AllErrors added in v1.18.0

func (m PostgresRevisionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PostgresRevisionMultiError) Error added in v1.18.0

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

type PostgresRevisionValidationError added in v1.18.0

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

PostgresRevisionValidationError is the validation error returned by PostgresRevision.Validate if the designated constraints aren't met.

func (PostgresRevisionValidationError) Cause added in v1.18.0

Cause function returns cause value.

func (PostgresRevisionValidationError) Error added in v1.18.0

Error satisfies the builtin error interface

func (PostgresRevisionValidationError) ErrorName added in v1.18.0

ErrorName returns error name.

func (PostgresRevisionValidationError) Field added in v1.18.0

Field function returns field value.

func (PostgresRevisionValidationError) Key added in v1.18.0

Key function returns key value.

func (PostgresRevisionValidationError) Reason added in v1.18.0

Reason function returns reason value.

type RelationMetadata

type RelationMetadata struct {
	Kind RelationMetadata_RelationKind `protobuf:"varint,1,opt,name=kind,proto3,enum=impl.v1.RelationMetadata_RelationKind" json:"kind,omitempty"`
	// contains filtered or unexported fields
}

func (*RelationMetadata) CloneMessageVT added in v1.22.0

func (m *RelationMetadata) CloneMessageVT() proto.Message

func (*RelationMetadata) CloneVT added in v1.13.0

func (m *RelationMetadata) CloneVT() *RelationMetadata

func (*RelationMetadata) Descriptor deprecated

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

Deprecated: Use RelationMetadata.ProtoReflect.Descriptor instead.

func (*RelationMetadata) EqualMessageVT added in v1.22.0

func (this *RelationMetadata) EqualMessageVT(thatMsg proto.Message) bool

func (*RelationMetadata) EqualVT added in v1.15.0

func (this *RelationMetadata) EqualVT(that *RelationMetadata) bool

func (*RelationMetadata) GetKind

func (*RelationMetadata) MarshalToSizedBufferVT added in v1.13.0

func (m *RelationMetadata) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RelationMetadata) MarshalToVT added in v1.13.0

func (m *RelationMetadata) MarshalToVT(dAtA []byte) (int, error)

func (*RelationMetadata) MarshalVT added in v1.13.0

func (m *RelationMetadata) MarshalVT() (dAtA []byte, err error)

func (*RelationMetadata) ProtoMessage

func (*RelationMetadata) ProtoMessage()

func (*RelationMetadata) ProtoReflect

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

func (*RelationMetadata) Reset

func (x *RelationMetadata) Reset()

func (*RelationMetadata) SizeVT added in v1.13.0

func (m *RelationMetadata) SizeVT() (n int)

func (*RelationMetadata) String

func (x *RelationMetadata) String() string

func (*RelationMetadata) UnmarshalVT added in v1.13.0

func (m *RelationMetadata) UnmarshalVT(dAtA []byte) error

func (*RelationMetadata) Validate

func (m *RelationMetadata) Validate() error

Validate checks the field values on RelationMetadata 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 (*RelationMetadata) ValidateAll added in v1.6.0

func (m *RelationMetadata) ValidateAll() error

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

type RelationMetadataMultiError added in v1.6.0

type RelationMetadataMultiError []error

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

func (RelationMetadataMultiError) AllErrors added in v1.6.0

func (m RelationMetadataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RelationMetadataMultiError) Error added in v1.6.0

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

type RelationMetadataValidationError

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

RelationMetadataValidationError is the validation error returned by RelationMetadata.Validate if the designated constraints aren't met.

func (RelationMetadataValidationError) Cause

Cause function returns cause value.

func (RelationMetadataValidationError) Error

Error satisfies the builtin error interface

func (RelationMetadataValidationError) ErrorName

ErrorName returns error name.

func (RelationMetadataValidationError) Field

Field function returns field value.

func (RelationMetadataValidationError) Key

Key function returns key value.

func (RelationMetadataValidationError) Reason

Reason function returns reason value.

type RelationMetadata_RelationKind

type RelationMetadata_RelationKind int32
const (
	RelationMetadata_UNKNOWN_KIND RelationMetadata_RelationKind = 0
	RelationMetadata_RELATION     RelationMetadata_RelationKind = 1
	RelationMetadata_PERMISSION   RelationMetadata_RelationKind = 2
)

func (RelationMetadata_RelationKind) Descriptor

func (RelationMetadata_RelationKind) Enum

func (RelationMetadata_RelationKind) EnumDescriptor deprecated

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

Deprecated: Use RelationMetadata_RelationKind.Descriptor instead.

func (RelationMetadata_RelationKind) Number

func (RelationMetadata_RelationKind) String

func (RelationMetadata_RelationKind) Type

type V1Alpha1Revision

type V1Alpha1Revision struct {
	NsRevisions []*NamespaceAndRevision `protobuf:"bytes,1,rep,name=ns_revisions,json=nsRevisions,proto3" json:"ns_revisions,omitempty"`
	// contains filtered or unexported fields
}

func (*V1Alpha1Revision) CloneMessageVT added in v1.22.0

func (m *V1Alpha1Revision) CloneMessageVT() proto.Message

func (*V1Alpha1Revision) CloneVT added in v1.13.0

func (m *V1Alpha1Revision) CloneVT() *V1Alpha1Revision

func (*V1Alpha1Revision) Descriptor deprecated

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

Deprecated: Use V1Alpha1Revision.ProtoReflect.Descriptor instead.

func (*V1Alpha1Revision) EqualMessageVT added in v1.22.0

func (this *V1Alpha1Revision) EqualMessageVT(thatMsg proto.Message) bool

func (*V1Alpha1Revision) EqualVT added in v1.15.0

func (this *V1Alpha1Revision) EqualVT(that *V1Alpha1Revision) bool

func (*V1Alpha1Revision) GetNsRevisions

func (x *V1Alpha1Revision) GetNsRevisions() []*NamespaceAndRevision

func (*V1Alpha1Revision) MarshalToSizedBufferVT added in v1.13.0

func (m *V1Alpha1Revision) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*V1Alpha1Revision) MarshalToVT added in v1.13.0

func (m *V1Alpha1Revision) MarshalToVT(dAtA []byte) (int, error)

func (*V1Alpha1Revision) MarshalVT added in v1.13.0

func (m *V1Alpha1Revision) MarshalVT() (dAtA []byte, err error)

func (*V1Alpha1Revision) ProtoMessage

func (*V1Alpha1Revision) ProtoMessage()

func (*V1Alpha1Revision) ProtoReflect

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

func (*V1Alpha1Revision) Reset

func (x *V1Alpha1Revision) Reset()

func (*V1Alpha1Revision) SizeVT added in v1.13.0

func (m *V1Alpha1Revision) SizeVT() (n int)

func (*V1Alpha1Revision) String

func (x *V1Alpha1Revision) String() string

func (*V1Alpha1Revision) UnmarshalVT added in v1.13.0

func (m *V1Alpha1Revision) UnmarshalVT(dAtA []byte) error

func (*V1Alpha1Revision) Validate

func (m *V1Alpha1Revision) Validate() error

Validate checks the field values on V1Alpha1Revision 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 (*V1Alpha1Revision) ValidateAll added in v1.6.0

func (m *V1Alpha1Revision) ValidateAll() error

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

type V1Alpha1RevisionMultiError added in v1.6.0

type V1Alpha1RevisionMultiError []error

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

func (V1Alpha1RevisionMultiError) AllErrors added in v1.6.0

func (m V1Alpha1RevisionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (V1Alpha1RevisionMultiError) Error added in v1.6.0

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

type V1Alpha1RevisionValidationError

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

V1Alpha1RevisionValidationError is the validation error returned by V1Alpha1Revision.Validate if the designated constraints aren't met.

func (V1Alpha1RevisionValidationError) Cause

Cause function returns cause value.

func (V1Alpha1RevisionValidationError) Error

Error satisfies the builtin error interface

func (V1Alpha1RevisionValidationError) ErrorName

ErrorName returns error name.

func (V1Alpha1RevisionValidationError) Field

Field function returns field value.

func (V1Alpha1RevisionValidationError) Key

Key function returns key value.

func (V1Alpha1RevisionValidationError) Reason

Reason function returns reason value.

type V1Cursor added in v1.22.0

type V1Cursor struct {

	// revision is the string form of the revision for the cursor.
	Revision string `protobuf:"bytes,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// sections are the sections of the dispatching cursor.
	Sections []string `protobuf:"bytes,2,rep,name=sections,proto3" json:"sections,omitempty"`
	// call_and_parameters_hash is a hash of the call that manufactured this cursor and all its
	// parameters, including limits and zedtoken, to ensure no inputs changed when using this cursor.
	CallAndParametersHash string `` /* 128-byte string literal not displayed */
	// dispatch_version is the version of the dispatcher which created the cursor.
	DispatchVersion uint32 `protobuf:"varint,4,opt,name=dispatch_version,json=dispatchVersion,proto3" json:"dispatch_version,omitempty"`
	// contains filtered or unexported fields
}

func (*V1Cursor) CloneMessageVT added in v1.22.0

func (m *V1Cursor) CloneMessageVT() proto.Message

func (*V1Cursor) CloneVT added in v1.22.0

func (m *V1Cursor) CloneVT() *V1Cursor

func (*V1Cursor) Descriptor deprecated added in v1.22.0

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

Deprecated: Use V1Cursor.ProtoReflect.Descriptor instead.

func (*V1Cursor) EqualMessageVT added in v1.22.0

func (this *V1Cursor) EqualMessageVT(thatMsg proto.Message) bool

func (*V1Cursor) EqualVT added in v1.22.0

func (this *V1Cursor) EqualVT(that *V1Cursor) bool

func (*V1Cursor) GetCallAndParametersHash added in v1.22.0

func (x *V1Cursor) GetCallAndParametersHash() string

func (*V1Cursor) GetDispatchVersion added in v1.23.0

func (x *V1Cursor) GetDispatchVersion() uint32

func (*V1Cursor) GetRevision added in v1.22.0

func (x *V1Cursor) GetRevision() string

func (*V1Cursor) GetSections added in v1.22.0

func (x *V1Cursor) GetSections() []string

func (*V1Cursor) MarshalToSizedBufferVT added in v1.22.0

func (m *V1Cursor) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*V1Cursor) MarshalToVT added in v1.22.0

func (m *V1Cursor) MarshalToVT(dAtA []byte) (int, error)

func (*V1Cursor) MarshalVT added in v1.22.0

func (m *V1Cursor) MarshalVT() (dAtA []byte, err error)

func (*V1Cursor) ProtoMessage added in v1.22.0

func (*V1Cursor) ProtoMessage()

func (*V1Cursor) ProtoReflect added in v1.22.0

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

func (*V1Cursor) Reset added in v1.22.0

func (x *V1Cursor) Reset()

func (*V1Cursor) SizeVT added in v1.22.0

func (m *V1Cursor) SizeVT() (n int)

func (*V1Cursor) String added in v1.22.0

func (x *V1Cursor) String() string

func (*V1Cursor) UnmarshalVT added in v1.22.0

func (m *V1Cursor) UnmarshalVT(dAtA []byte) error

func (*V1Cursor) Validate added in v1.22.0

func (m *V1Cursor) Validate() error

Validate checks the field values on V1Cursor 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 (*V1Cursor) ValidateAll added in v1.22.0

func (m *V1Cursor) ValidateAll() error

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

type V1CursorMultiError added in v1.22.0

type V1CursorMultiError []error

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

func (V1CursorMultiError) AllErrors added in v1.22.0

func (m V1CursorMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (V1CursorMultiError) Error added in v1.22.0

func (m V1CursorMultiError) Error() string

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

type V1CursorValidationError added in v1.22.0

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

V1CursorValidationError is the validation error returned by V1Cursor.Validate if the designated constraints aren't met.

func (V1CursorValidationError) Cause added in v1.22.0

func (e V1CursorValidationError) Cause() error

Cause function returns cause value.

func (V1CursorValidationError) Error added in v1.22.0

func (e V1CursorValidationError) Error() string

Error satisfies the builtin error interface

func (V1CursorValidationError) ErrorName added in v1.22.0

func (e V1CursorValidationError) ErrorName() string

ErrorName returns error name.

func (V1CursorValidationError) Field added in v1.22.0

func (e V1CursorValidationError) Field() string

Field function returns field value.

func (V1CursorValidationError) Key added in v1.22.0

func (e V1CursorValidationError) Key() bool

Key function returns key value.

func (V1CursorValidationError) Reason added in v1.22.0

func (e V1CursorValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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