resourcev1

package
v0.0.10 Latest Latest
Warning

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

Go to latest
Published: Dec 13, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_api_uuid_service_v1_resources_uuid_resource_v1_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type NextIDReq

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

func (*NextIDReq) Descriptor deprecated

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

Deprecated: Use NextIDReq.ProtoReflect.Descriptor instead.

func (*NextIDReq) ProtoMessage

func (*NextIDReq) ProtoMessage()

func (*NextIDReq) ProtoReflect

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

func (*NextIDReq) Reset

func (x *NextIDReq) Reset()

func (*NextIDReq) String

func (x *NextIDReq) String() string

func (*NextIDReq) Validate

func (m *NextIDReq) Validate() error

Validate checks the field values on NextIDReq 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 (*NextIDReq) ValidateAll

func (m *NextIDReq) ValidateAll() error

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

type NextIDReqMultiError

type NextIDReqMultiError []error

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

func (NextIDReqMultiError) AllErrors

func (m NextIDReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NextIDReqMultiError) Error

func (m NextIDReqMultiError) Error() string

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

type NextIDReqValidationError

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

NextIDReqValidationError is the validation error returned by NextIDReq.Validate if the designated constraints aren't met.

func (NextIDReqValidationError) Cause

func (e NextIDReqValidationError) Cause() error

Cause function returns cause value.

func (NextIDReqValidationError) Error

func (e NextIDReqValidationError) Error() string

Error satisfies the builtin error interface

func (NextIDReqValidationError) ErrorName

func (e NextIDReqValidationError) ErrorName() string

ErrorName returns error name.

func (NextIDReqValidationError) Field

func (e NextIDReqValidationError) Field() string

Field function returns field value.

func (NextIDReqValidationError) Key

Key function returns key value.

func (NextIDReqValidationError) Reason

func (e NextIDReqValidationError) Reason() string

Reason function returns reason value.

type NextIDResp

type NextIDResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     *NextIDRespData   `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*NextIDResp) Descriptor deprecated

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

Deprecated: Use NextIDResp.ProtoReflect.Descriptor instead.

func (*NextIDResp) GetCode

func (x *NextIDResp) GetCode() int32

func (*NextIDResp) GetData

func (x *NextIDResp) GetData() *NextIDRespData

func (*NextIDResp) GetMessage

func (x *NextIDResp) GetMessage() string

func (*NextIDResp) GetMetadata

func (x *NextIDResp) GetMetadata() map[string]string

func (*NextIDResp) GetReason

func (x *NextIDResp) GetReason() string

func (*NextIDResp) ProtoMessage

func (*NextIDResp) ProtoMessage()

func (*NextIDResp) ProtoReflect

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

func (*NextIDResp) Reset

func (x *NextIDResp) Reset()

func (*NextIDResp) String

func (x *NextIDResp) String() string

func (*NextIDResp) Validate

func (m *NextIDResp) Validate() error

Validate checks the field values on NextIDResp 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 (*NextIDResp) ValidateAll

func (m *NextIDResp) ValidateAll() error

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

type NextIDRespData

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

func (*NextIDRespData) Descriptor deprecated

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

Deprecated: Use NextIDRespData.ProtoReflect.Descriptor instead.

func (*NextIDRespData) GetId

func (x *NextIDRespData) GetId() uint64

func (*NextIDRespData) ProtoMessage

func (*NextIDRespData) ProtoMessage()

func (*NextIDRespData) ProtoReflect

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

func (*NextIDRespData) Reset

func (x *NextIDRespData) Reset()

func (*NextIDRespData) String

func (x *NextIDRespData) String() string

func (*NextIDRespData) Validate

func (m *NextIDRespData) Validate() error

Validate checks the field values on NextIDRespData 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 (*NextIDRespData) ValidateAll

func (m *NextIDRespData) ValidateAll() error

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

type NextIDRespDataMultiError

type NextIDRespDataMultiError []error

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

func (NextIDRespDataMultiError) AllErrors

func (m NextIDRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NextIDRespDataMultiError) Error

func (m NextIDRespDataMultiError) Error() string

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

type NextIDRespDataValidationError

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

NextIDRespDataValidationError is the validation error returned by NextIDRespData.Validate if the designated constraints aren't met.

func (NextIDRespDataValidationError) Cause

Cause function returns cause value.

func (NextIDRespDataValidationError) Error

Error satisfies the builtin error interface

func (NextIDRespDataValidationError) ErrorName

func (e NextIDRespDataValidationError) ErrorName() string

ErrorName returns error name.

func (NextIDRespDataValidationError) Field

Field function returns field value.

func (NextIDRespDataValidationError) Key

Key function returns key value.

func (NextIDRespDataValidationError) Reason

Reason function returns reason value.

type NextIDRespMultiError

type NextIDRespMultiError []error

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

func (NextIDRespMultiError) AllErrors

func (m NextIDRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NextIDRespMultiError) Error

func (m NextIDRespMultiError) Error() string

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

type NextIDRespValidationError

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

NextIDRespValidationError is the validation error returned by NextIDResp.Validate if the designated constraints aren't met.

func (NextIDRespValidationError) Cause

func (e NextIDRespValidationError) Cause() error

Cause function returns cause value.

func (NextIDRespValidationError) Error

Error satisfies the builtin error interface

func (NextIDRespValidationError) ErrorName

func (e NextIDRespValidationError) ErrorName() string

ErrorName returns error name.

func (NextIDRespValidationError) Field

Field function returns field value.

func (NextIDRespValidationError) Key

Key function returns key value.

func (NextIDRespValidationError) Reason

func (e NextIDRespValidationError) 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